You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skyflow/utils/_skyflow_messages.py
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ class Error(Enum):
77
77
INVALID_TOKEN_TYPE_VALUE=f"{error_prefix} Validation error. Invalid value for token type {{}}. Specify as list of DetectEntities enum."
78
78
INVALID_MAXIMUM_RESOLUTION=f"{error_prefix} Validation error. Invalid type of maximum resolution. Specify maximum resolution as a number."
79
79
INVALID_OUTPUT_DIRECTORY_VALUE=f"{error_prefix} Validation error. Invalid type of output directory. Specify output directory as a string."
80
-
WAIT_TIME_GREATER_THEN_64=f"{error_prefix} Validation error. Invalid wait time. Wait time should be less than or equal to 64 seconds."
80
+
WAIT_TIME_GREATER_THEN_64=f"{error_prefix} Validation error. Invalid wait time. The waitTime value must be between 0 and 64 seconds."
81
81
OUTPUT_DIRECTORY_NOT_FOUND=f"{error_prefix} Validation error. Invalid output directory. Directory {{}} not found."
82
82
83
83
MISSING_TABLE_NAME_IN_INSERT=f"{error_prefix} Validation error. Table name cannot be empty in insert request. Specify a table name."
@@ -158,8 +158,8 @@ class Error(Enum):
158
158
159
159
INVALID_TEXT_IN_DEIDENTIFY=f"{error_prefix} Validation error. The text field is required and must be a non-empty string. Specify a valid text."
160
160
INVALID_ENTITIES_IN_DEIDENTIFY=f"{error_prefix} Validation error. The entities field must be an array of DetectEntities enums. Specify a valid entities."
161
-
INVALID_ALLOW_REGEX_LIST=f"{error_prefix} Validation error. The allowRegexList field must be an array of strings. Specify a valid allowRegexList."
162
-
INVALID_RESTRICT_REGEX_LIST=f"{error_prefix} Validation error. The restrictRegexList field must be an array of strings. Specify a valid restrictRegexList."
161
+
INVALID_ALLOW_REGEX_LIST=f"{error_prefix} Validation error. The allowRegexList field must be an array of strings. Specify a valid allow_regex_list."
162
+
INVALID_RESTRICT_REGEX_LIST=f"{error_prefix} Validation error. The restrictRegexList field must be an array of strings. Specify a valid restrict_regex_list."
163
163
INVALID_TOKEN_FORMAT=f"{error_prefix} Validation error. The tokenFormat key must be an instance of TokenFormat. Specify a valid token format."
164
164
INVALID_TRANSFORMATIONS=f"{error_prefix} Validation error. The transformations key must be an instance of Transformations. Specify a valid transformations."
165
165
@@ -181,25 +181,25 @@ class Error(Enum):
181
181
INVALID_ALLOW_REGEX=f"{error_prefix} Validation error. Invalid allow regex. Specify valid allow regex at index {{}}."
182
182
EMPTY_RESTRICT_REGEX_LIST=f"{error_prefix} Validation error. Restrict regex list cannot be empty. Specify valid restrict regex list."
183
183
INVALID_RESTRICT_REGEX=f"{error_prefix} Validation error. Invalid restrict regex. Specify valid restrict regex at index {{}}."
0 commit comments