Skip to content

Commit 48cf97e

Browse files
updated typing with https policy for missing bearer apis
1 parent ba535d1 commit 48cf97e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

platform_api_client/api/external_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3234,6 +3234,7 @@ def _get_hardware_instances_hardware_instances_get_serialize(
32343234

32353235
# authentication setting
32363236
_auth_settings: List[str] = [
3237+
'HTTPBearer'
32373238
]
32383239

32393240
return self.api_client.param_serialize(
@@ -3991,6 +3992,7 @@ def _get_prebuilt_images_prebuilt_images_get_serialize(
39913992

39923993
# authentication setting
39933994
_auth_settings: List[str] = [
3995+
'HTTPBearer'
39943996
]
39953997

39963998
return self.api_client.param_serialize(

platform_api_client/models/endpoint_ready_state.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ class EndpointReadyState(str, Enum):
3737
CONTAINER_MISSING = 'CONTAINER_MISSING'
3838
PROGRESS_DEADLINE_EXCEEDED = 'PROGRESS_DEADLINE_EXCEEDED'
3939
REVISION_MISSING = 'REVISION_MISSING'
40+
COMPLETE = 'COMPLETE'
41+
FAILED_JOB = 'FAILED_JOB'
4042

4143
@classmethod
4244
def from_json(cls, json_str: str) -> Self:

0 commit comments

Comments
 (0)