Skip to content

Commit dbef985

Browse files
author
Flexify
committed
v2.12.19-SNAPSHOT build 1328
1 parent 385d55a commit dbef985

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flexify_api/models/bucket_stat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def state(self, state):
184184
:param state: The state of this BucketStat. # noqa: E501
185185
:type: str
186186
"""
187-
allowed_values = ["ERROR", "NONE", "OK", "REFRESHING", "REFRESH_REQUESTED", "WARNING"] # noqa: E501
187+
allowed_values = ["AUTH_EXPIRED", "ERROR", "NONE", "OK", "REFRESHING", "REFRESH_REQUESTED", "WARNING"] # noqa: E501
188188
if (self._configuration.client_side_validation and
189189
state not in allowed_values):
190190
raise ValueError(

flexify_api/models/storage_account_stat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def state(self, state):
173173
:param state: The state of this StorageAccountStat. # noqa: E501
174174
:type: str
175175
"""
176-
allowed_values = ["ERROR", "NONE", "OK", "REFRESHING", "REFRESH_REQUESTED", "WARNING"] # noqa: E501
176+
allowed_values = ["AUTH_EXPIRED", "ERROR", "NONE", "OK", "REFRESHING", "REFRESH_REQUESTED", "WARNING"] # noqa: E501
177177
if (self._configuration.client_side_validation and
178178
state not in allowed_values):
179179
raise ValueError(

0 commit comments

Comments
 (0)