hyperstack 1.45.2a0__py3-none-any.whl → 1.46.2a0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hyperstack/__init__.py +2 -1
- hyperstack/api/__init__.py +1 -0
- hyperstack/api/alive_api.py +10 -10
- hyperstack/api/api_key_api.py +7 -7
- hyperstack/api/beta_access_api.py +50 -50
- hyperstack/api/billing_api.py +1659 -1659
- hyperstack/api/calculate_api.py +7 -7
- hyperstack/api/callbacks_api.py +21 -21
- hyperstack/api/cluster_events_api.py +7 -7
- hyperstack/api/clusters_api.py +445 -445
- hyperstack/api/compliance_api.py +21 -21
- hyperstack/api/credit_api.py +7 -7
- hyperstack/api/customer_contract_api.py +139 -139
- hyperstack/api/dashboard_api.py +7 -7
- hyperstack/api/deployment_api.py +7 -7
- hyperstack/api/environment_api.py +107 -107
- hyperstack/api/fip_exclusions_api.py +313 -0
- hyperstack/api/firewall_attachment_api.py +7 -7
- hyperstack/api/firewalls_api.py +145 -145
- hyperstack/api/floating_ip_api.py +14 -14
- hyperstack/api/image_api.py +14 -14
- hyperstack/api/payment_api.py +102 -102
- hyperstack/api/profile_api.py +56 -56
- hyperstack/api/snapshot_events_api.py +7 -7
- hyperstack/api/snapshots_api.py +167 -167
- hyperstack/api/stock_api.py +7 -7
- hyperstack/api/template_api.py +76 -76
- hyperstack/api/user_api.py +76 -76
- hyperstack/api/user_detail_choice_api.py +10 -10
- hyperstack/api/virtual_machine_api.py +799 -782
- hyperstack/api/virtual_machine_events_api.py +7 -7
- hyperstack/api/vnc_url_api.py +53 -53
- hyperstack/api/volume_api.py +77 -77
- hyperstack/api/volume_attachment_api.py +21 -21
- hyperstack/api_client.py +1 -1
- hyperstack/configuration.py +1 -1
- hyperstack/models/generate_update_api_key_payload.py +3 -2
- {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.2a0.dist-info}/METADATA +1 -1
- {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.2a0.dist-info}/RECORD +41 -40
- {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.2a0.dist-info}/WHEEL +0 -0
- {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.2a0.dist-info}/top_level.txt +0 -0
hyperstack/api/compliance_api.py
CHANGED
|
@@ -332,7 +332,7 @@ class ComplianceApi:
|
|
|
332
332
|
|
|
333
333
|
|
|
334
334
|
@validate_call
|
|
335
|
-
def
|
|
335
|
+
def delete_compliance(
|
|
336
336
|
self,
|
|
337
337
|
gpu_model: StrictStr,
|
|
338
338
|
_request_timeout: Union[
|
|
@@ -375,7 +375,7 @@ class ComplianceApi:
|
|
|
375
375
|
:return: Returns the result object.
|
|
376
376
|
""" # noqa: E501
|
|
377
377
|
|
|
378
|
-
_param = self.
|
|
378
|
+
_param = self._delete_compliance_serialize(
|
|
379
379
|
gpu_model=gpu_model,
|
|
380
380
|
_request_auth=_request_auth,
|
|
381
381
|
_content_type=_content_type,
|
|
@@ -402,7 +402,7 @@ class ComplianceApi:
|
|
|
402
402
|
|
|
403
403
|
|
|
404
404
|
@validate_call
|
|
405
|
-
def
|
|
405
|
+
def delete_compliance_with_http_info(
|
|
406
406
|
self,
|
|
407
407
|
gpu_model: StrictStr,
|
|
408
408
|
_request_timeout: Union[
|
|
@@ -445,7 +445,7 @@ class ComplianceApi:
|
|
|
445
445
|
:return: Returns the result object.
|
|
446
446
|
""" # noqa: E501
|
|
447
447
|
|
|
448
|
-
_param = self.
|
|
448
|
+
_param = self._delete_compliance_serialize(
|
|
449
449
|
gpu_model=gpu_model,
|
|
450
450
|
_request_auth=_request_auth,
|
|
451
451
|
_content_type=_content_type,
|
|
@@ -472,7 +472,7 @@ class ComplianceApi:
|
|
|
472
472
|
|
|
473
473
|
|
|
474
474
|
@validate_call
|
|
475
|
-
def
|
|
475
|
+
def delete_compliance_without_preload_content(
|
|
476
476
|
self,
|
|
477
477
|
gpu_model: StrictStr,
|
|
478
478
|
_request_timeout: Union[
|
|
@@ -515,7 +515,7 @@ class ComplianceApi:
|
|
|
515
515
|
:return: Returns the result object.
|
|
516
516
|
""" # noqa: E501
|
|
517
517
|
|
|
518
|
-
_param = self.
|
|
518
|
+
_param = self._delete_compliance_serialize(
|
|
519
519
|
gpu_model=gpu_model,
|
|
520
520
|
_request_auth=_request_auth,
|
|
521
521
|
_content_type=_content_type,
|
|
@@ -537,7 +537,7 @@ class ComplianceApi:
|
|
|
537
537
|
return response_data.response
|
|
538
538
|
|
|
539
539
|
|
|
540
|
-
def
|
|
540
|
+
def _delete_compliance_serialize(
|
|
541
541
|
self,
|
|
542
542
|
gpu_model,
|
|
543
543
|
_request_auth,
|
|
@@ -602,7 +602,7 @@ class ComplianceApi:
|
|
|
602
602
|
|
|
603
603
|
|
|
604
604
|
@validate_call
|
|
605
|
-
def
|
|
605
|
+
def get_compliance(
|
|
606
606
|
self,
|
|
607
607
|
gpu: Annotated[Optional[StrictStr], Field(description="This is for gpu model")] = None,
|
|
608
608
|
_request_timeout: Union[
|
|
@@ -646,7 +646,7 @@ class ComplianceApi:
|
|
|
646
646
|
:return: Returns the result object.
|
|
647
647
|
""" # noqa: E501
|
|
648
648
|
|
|
649
|
-
_param = self.
|
|
649
|
+
_param = self._get_compliance_serialize(
|
|
650
650
|
gpu=gpu,
|
|
651
651
|
_request_auth=_request_auth,
|
|
652
652
|
_content_type=_content_type,
|
|
@@ -674,7 +674,7 @@ class ComplianceApi:
|
|
|
674
674
|
|
|
675
675
|
|
|
676
676
|
@validate_call
|
|
677
|
-
def
|
|
677
|
+
def get_compliance_with_http_info(
|
|
678
678
|
self,
|
|
679
679
|
gpu: Annotated[Optional[StrictStr], Field(description="This is for gpu model")] = None,
|
|
680
680
|
_request_timeout: Union[
|
|
@@ -718,7 +718,7 @@ class ComplianceApi:
|
|
|
718
718
|
:return: Returns the result object.
|
|
719
719
|
""" # noqa: E501
|
|
720
720
|
|
|
721
|
-
_param = self.
|
|
721
|
+
_param = self._get_compliance_serialize(
|
|
722
722
|
gpu=gpu,
|
|
723
723
|
_request_auth=_request_auth,
|
|
724
724
|
_content_type=_content_type,
|
|
@@ -746,7 +746,7 @@ class ComplianceApi:
|
|
|
746
746
|
|
|
747
747
|
|
|
748
748
|
@validate_call
|
|
749
|
-
def
|
|
749
|
+
def get_compliance_without_preload_content(
|
|
750
750
|
self,
|
|
751
751
|
gpu: Annotated[Optional[StrictStr], Field(description="This is for gpu model")] = None,
|
|
752
752
|
_request_timeout: Union[
|
|
@@ -790,7 +790,7 @@ class ComplianceApi:
|
|
|
790
790
|
:return: Returns the result object.
|
|
791
791
|
""" # noqa: E501
|
|
792
792
|
|
|
793
|
-
_param = self.
|
|
793
|
+
_param = self._get_compliance_serialize(
|
|
794
794
|
gpu=gpu,
|
|
795
795
|
_request_auth=_request_auth,
|
|
796
796
|
_content_type=_content_type,
|
|
@@ -813,7 +813,7 @@ class ComplianceApi:
|
|
|
813
813
|
return response_data.response
|
|
814
814
|
|
|
815
815
|
|
|
816
|
-
def
|
|
816
|
+
def _get_compliance_serialize(
|
|
817
817
|
self,
|
|
818
818
|
gpu,
|
|
819
819
|
_request_auth,
|
|
@@ -880,7 +880,7 @@ class ComplianceApi:
|
|
|
880
880
|
|
|
881
881
|
|
|
882
882
|
@validate_call
|
|
883
|
-
def
|
|
883
|
+
def update_compliance(
|
|
884
884
|
self,
|
|
885
885
|
payload: CompliancePayload,
|
|
886
886
|
_request_timeout: Union[
|
|
@@ -923,7 +923,7 @@ class ComplianceApi:
|
|
|
923
923
|
:return: Returns the result object.
|
|
924
924
|
""" # noqa: E501
|
|
925
925
|
|
|
926
|
-
_param = self.
|
|
926
|
+
_param = self._update_compliance_serialize(
|
|
927
927
|
payload=payload,
|
|
928
928
|
_request_auth=_request_auth,
|
|
929
929
|
_content_type=_content_type,
|
|
@@ -951,7 +951,7 @@ class ComplianceApi:
|
|
|
951
951
|
|
|
952
952
|
|
|
953
953
|
@validate_call
|
|
954
|
-
def
|
|
954
|
+
def update_compliance_with_http_info(
|
|
955
955
|
self,
|
|
956
956
|
payload: CompliancePayload,
|
|
957
957
|
_request_timeout: Union[
|
|
@@ -994,7 +994,7 @@ class ComplianceApi:
|
|
|
994
994
|
:return: Returns the result object.
|
|
995
995
|
""" # noqa: E501
|
|
996
996
|
|
|
997
|
-
_param = self.
|
|
997
|
+
_param = self._update_compliance_serialize(
|
|
998
998
|
payload=payload,
|
|
999
999
|
_request_auth=_request_auth,
|
|
1000
1000
|
_content_type=_content_type,
|
|
@@ -1022,7 +1022,7 @@ class ComplianceApi:
|
|
|
1022
1022
|
|
|
1023
1023
|
|
|
1024
1024
|
@validate_call
|
|
1025
|
-
def
|
|
1025
|
+
def update_compliance_without_preload_content(
|
|
1026
1026
|
self,
|
|
1027
1027
|
payload: CompliancePayload,
|
|
1028
1028
|
_request_timeout: Union[
|
|
@@ -1065,7 +1065,7 @@ class ComplianceApi:
|
|
|
1065
1065
|
:return: Returns the result object.
|
|
1066
1066
|
""" # noqa: E501
|
|
1067
1067
|
|
|
1068
|
-
_param = self.
|
|
1068
|
+
_param = self._update_compliance_serialize(
|
|
1069
1069
|
payload=payload,
|
|
1070
1070
|
_request_auth=_request_auth,
|
|
1071
1071
|
_content_type=_content_type,
|
|
@@ -1088,7 +1088,7 @@ class ComplianceApi:
|
|
|
1088
1088
|
return response_data.response
|
|
1089
1089
|
|
|
1090
1090
|
|
|
1091
|
-
def
|
|
1091
|
+
def _update_compliance_serialize(
|
|
1092
1092
|
self,
|
|
1093
1093
|
payload,
|
|
1094
1094
|
_request_auth,
|
hyperstack/api/credit_api.py
CHANGED
|
@@ -37,7 +37,7 @@ class CreditApi:
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
@validate_call
|
|
40
|
-
def
|
|
40
|
+
def get_user_credit(
|
|
41
41
|
self,
|
|
42
42
|
_request_timeout: Union[
|
|
43
43
|
None,
|
|
@@ -78,7 +78,7 @@ class CreditApi:
|
|
|
78
78
|
:return: Returns the result object.
|
|
79
79
|
""" # noqa: E501
|
|
80
80
|
|
|
81
|
-
_param = self.
|
|
81
|
+
_param = self._get_user_credit_serialize(
|
|
82
82
|
_request_auth=_request_auth,
|
|
83
83
|
_content_type=_content_type,
|
|
84
84
|
_headers=_headers,
|
|
@@ -105,7 +105,7 @@ class CreditApi:
|
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
@validate_call
|
|
108
|
-
def
|
|
108
|
+
def get_user_credit_with_http_info(
|
|
109
109
|
self,
|
|
110
110
|
_request_timeout: Union[
|
|
111
111
|
None,
|
|
@@ -146,7 +146,7 @@ class CreditApi:
|
|
|
146
146
|
:return: Returns the result object.
|
|
147
147
|
""" # noqa: E501
|
|
148
148
|
|
|
149
|
-
_param = self.
|
|
149
|
+
_param = self._get_user_credit_serialize(
|
|
150
150
|
_request_auth=_request_auth,
|
|
151
151
|
_content_type=_content_type,
|
|
152
152
|
_headers=_headers,
|
|
@@ -173,7 +173,7 @@ class CreditApi:
|
|
|
173
173
|
|
|
174
174
|
|
|
175
175
|
@validate_call
|
|
176
|
-
def
|
|
176
|
+
def get_user_credit_without_preload_content(
|
|
177
177
|
self,
|
|
178
178
|
_request_timeout: Union[
|
|
179
179
|
None,
|
|
@@ -214,7 +214,7 @@ class CreditApi:
|
|
|
214
214
|
:return: Returns the result object.
|
|
215
215
|
""" # noqa: E501
|
|
216
216
|
|
|
217
|
-
_param = self.
|
|
217
|
+
_param = self._get_user_credit_serialize(
|
|
218
218
|
_request_auth=_request_auth,
|
|
219
219
|
_content_type=_content_type,
|
|
220
220
|
_headers=_headers,
|
|
@@ -236,7 +236,7 @@ class CreditApi:
|
|
|
236
236
|
return response_data.response
|
|
237
237
|
|
|
238
238
|
|
|
239
|
-
def
|
|
239
|
+
def _get_user_credit_serialize(
|
|
240
240
|
self,
|
|
241
241
|
_request_auth,
|
|
242
242
|
_content_type,
|