File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
sdk/python/feast/infra/offline_stores Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1919import pandas as pd
2020import pyarrow
2121import pyarrow .parquet
22- from pydantic import StrictStr , validator , ConstrainedStr
22+ from pydantic import ConstrainedStr , StrictStr , validator
2323from pydantic .typing import Literal
2424from tenacity import Retrying , retry_if_exception_type , stop_after_delay , wait_fixed
2525
7171def get_http_client_info ():
7272 return http_client_info .ClientInfo (user_agent = get_user_agent ())
7373
74+
7475class BigQueryTableCreateDisposition (ConstrainedStr ):
7576 """Custom constraint for table_create_disposition. To understand more, see:
7677 https://cloud.google.com/bigquery/docs/reference/rest/v2/Job#JobConfigurationLoad.FIELDS.create_disposition"""
78+
7779 values = {"CREATE_NEVER" , "CREATE_IF_NEEDED" }
7880
7981
You can’t perform that action at this time.
0 commit comments