Skip to content

Commit

Permalink
Update snowflake model
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristineTChen committed Oct 2, 2021
1 parent 056f7a5 commit 1feca04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snowflake/datadog_checks/snowflake/config_models/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from typing import Any, Mapping, Optional, Sequence

from pydantic import BaseModel, root_validator, validator
from pydantic import BaseModel, Field, root_validator, validator

from datadog_checks.base.utils.functions import identity
from datadog_checks.base.utils.models import validation
Expand Down Expand Up @@ -41,7 +41,7 @@ class Config:
only_custom_queries: Optional[bool]
password: str
role: str
schema: Optional[str]
schema_: Optional[str] = Field(None, alias='schema')
service: Optional[str]
tags: Optional[Sequence[str]]
token: Optional[str]
Expand Down

0 comments on commit 1feca04

Please sign in to comment.