hyperstack 1.45.2a0__py3-none-any.whl → 1.46.1a0__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.
Files changed (41) hide show
  1. hyperstack/__init__.py +2 -1
  2. hyperstack/api/__init__.py +1 -0
  3. hyperstack/api/alive_api.py +10 -10
  4. hyperstack/api/api_key_api.py +7 -7
  5. hyperstack/api/auth_api.py +69 -69
  6. hyperstack/api/beta_access_api.py +50 -50
  7. hyperstack/api/billing_api.py +1659 -1659
  8. hyperstack/api/calculate_api.py +7 -7
  9. hyperstack/api/callbacks_api.py +21 -21
  10. hyperstack/api/cluster_events_api.py +7 -7
  11. hyperstack/api/clusters_api.py +445 -445
  12. hyperstack/api/compliance_api.py +21 -21
  13. hyperstack/api/credit_api.py +7 -7
  14. hyperstack/api/customer_contract_api.py +139 -139
  15. hyperstack/api/dashboard_api.py +7 -7
  16. hyperstack/api/deployment_api.py +7 -7
  17. hyperstack/api/environment_api.py +107 -107
  18. hyperstack/api/fip_exclusions_api.py +313 -0
  19. hyperstack/api/firewall_attachment_api.py +7 -7
  20. hyperstack/api/firewalls_api.py +145 -145
  21. hyperstack/api/floating_ip_api.py +14 -14
  22. hyperstack/api/image_api.py +14 -14
  23. hyperstack/api/payment_api.py +102 -102
  24. hyperstack/api/profile_api.py +56 -56
  25. hyperstack/api/snapshot_events_api.py +7 -7
  26. hyperstack/api/snapshots_api.py +167 -167
  27. hyperstack/api/stock_api.py +7 -7
  28. hyperstack/api/template_api.py +76 -76
  29. hyperstack/api/user_api.py +76 -76
  30. hyperstack/api/user_detail_choice_api.py +10 -10
  31. hyperstack/api/virtual_machine_api.py +799 -782
  32. hyperstack/api/virtual_machine_events_api.py +7 -7
  33. hyperstack/api/vnc_url_api.py +53 -53
  34. hyperstack/api/volume_api.py +77 -77
  35. hyperstack/api/volume_attachment_api.py +21 -21
  36. hyperstack/api_client.py +1 -1
  37. hyperstack/configuration.py +1 -1
  38. {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.1a0.dist-info}/METADATA +1 -1
  39. {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.1a0.dist-info}/RECORD +41 -40
  40. {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.1a0.dist-info}/WHEEL +0 -0
  41. {hyperstack-1.45.2a0.dist-info → hyperstack-1.46.1a0.dist-info}/top_level.txt +0 -0
@@ -38,7 +38,7 @@ class FloatingIpApi:
38
38
 
39
39
 
40
40
  @validate_call
41
- def attach_public_ipto_virtual_machine(
41
+ def attach_public_ipto_vm(
42
42
  self,
43
43
  vm_id: StrictInt,
44
44
  _request_timeout: Union[
@@ -82,7 +82,7 @@ class FloatingIpApi:
82
82
  :return: Returns the result object.
83
83
  """ # noqa: E501
84
84
 
85
- _param = self._attach_public_ipto_virtual_machine_serialize(
85
+ _param = self._attach_public_ipto_vm_serialize(
86
86
  vm_id=vm_id,
87
87
  _request_auth=_request_auth,
88
88
  _content_type=_content_type,
@@ -110,7 +110,7 @@ class FloatingIpApi:
110
110
 
111
111
 
112
112
  @validate_call
113
- def attach_public_ipto_virtual_machine_with_http_info(
113
+ def attach_public_ipto_vm_with_http_info(
114
114
  self,
115
115
  vm_id: StrictInt,
116
116
  _request_timeout: Union[
@@ -154,7 +154,7 @@ class FloatingIpApi:
154
154
  :return: Returns the result object.
155
155
  """ # noqa: E501
156
156
 
157
- _param = self._attach_public_ipto_virtual_machine_serialize(
157
+ _param = self._attach_public_ipto_vm_serialize(
158
158
  vm_id=vm_id,
159
159
  _request_auth=_request_auth,
160
160
  _content_type=_content_type,
@@ -182,7 +182,7 @@ class FloatingIpApi:
182
182
 
183
183
 
184
184
  @validate_call
185
- def attach_public_ipto_virtual_machine_without_preload_content(
185
+ def attach_public_ipto_vm_without_preload_content(
186
186
  self,
187
187
  vm_id: StrictInt,
188
188
  _request_timeout: Union[
@@ -226,7 +226,7 @@ class FloatingIpApi:
226
226
  :return: Returns the result object.
227
227
  """ # noqa: E501
228
228
 
229
- _param = self._attach_public_ipto_virtual_machine_serialize(
229
+ _param = self._attach_public_ipto_vm_serialize(
230
230
  vm_id=vm_id,
231
231
  _request_auth=_request_auth,
232
232
  _content_type=_content_type,
@@ -249,7 +249,7 @@ class FloatingIpApi:
249
249
  return response_data.response
250
250
 
251
251
 
252
- def _attach_public_ipto_virtual_machine_serialize(
252
+ def _attach_public_ipto_vm_serialize(
253
253
  self,
254
254
  vm_id,
255
255
  _request_auth,
@@ -314,7 +314,7 @@ class FloatingIpApi:
314
314
 
315
315
 
316
316
  @validate_call
317
- def detach_public_ip_from_virtual_machine(
317
+ def detach_public_ip_from_vm(
318
318
  self,
319
319
  vm_id: StrictInt,
320
320
  _request_timeout: Union[
@@ -358,7 +358,7 @@ class FloatingIpApi:
358
358
  :return: Returns the result object.
359
359
  """ # noqa: E501
360
360
 
361
- _param = self._detach_public_ip_from_virtual_machine_serialize(
361
+ _param = self._detach_public_ip_from_vm_serialize(
362
362
  vm_id=vm_id,
363
363
  _request_auth=_request_auth,
364
364
  _content_type=_content_type,
@@ -385,7 +385,7 @@ class FloatingIpApi:
385
385
 
386
386
 
387
387
  @validate_call
388
- def detach_public_ip_from_virtual_machine_with_http_info(
388
+ def detach_public_ip_from_vm_with_http_info(
389
389
  self,
390
390
  vm_id: StrictInt,
391
391
  _request_timeout: Union[
@@ -429,7 +429,7 @@ class FloatingIpApi:
429
429
  :return: Returns the result object.
430
430
  """ # noqa: E501
431
431
 
432
- _param = self._detach_public_ip_from_virtual_machine_serialize(
432
+ _param = self._detach_public_ip_from_vm_serialize(
433
433
  vm_id=vm_id,
434
434
  _request_auth=_request_auth,
435
435
  _content_type=_content_type,
@@ -456,7 +456,7 @@ class FloatingIpApi:
456
456
 
457
457
 
458
458
  @validate_call
459
- def detach_public_ip_from_virtual_machine_without_preload_content(
459
+ def detach_public_ip_from_vm_without_preload_content(
460
460
  self,
461
461
  vm_id: StrictInt,
462
462
  _request_timeout: Union[
@@ -500,7 +500,7 @@ class FloatingIpApi:
500
500
  :return: Returns the result object.
501
501
  """ # noqa: E501
502
502
 
503
- _param = self._detach_public_ip_from_virtual_machine_serialize(
503
+ _param = self._detach_public_ip_from_vm_serialize(
504
504
  vm_id=vm_id,
505
505
  _request_auth=_request_auth,
506
506
  _content_type=_content_type,
@@ -522,7 +522,7 @@ class FloatingIpApi:
522
522
  return response_data.response
523
523
 
524
524
 
525
- def _detach_public_ip_from_virtual_machine_serialize(
525
+ def _detach_public_ip_from_vm_serialize(
526
526
  self,
527
527
  vm_id,
528
528
  _request_auth,
@@ -589,7 +589,7 @@ class ImageApi:
589
589
 
590
590
 
591
591
  @validate_call
592
- def get_image_details(
592
+ def get_image(
593
593
  self,
594
594
  id: StrictInt,
595
595
  include_related_vms: Optional[StrictBool] = None,
@@ -636,7 +636,7 @@ class ImageApi:
636
636
  :return: Returns the result object.
637
637
  """ # noqa: E501
638
638
 
639
- _param = self._get_image_details_serialize(
639
+ _param = self._get_image_serialize(
640
640
  id=id,
641
641
  include_related_vms=include_related_vms,
642
642
  _request_auth=_request_auth,
@@ -664,7 +664,7 @@ class ImageApi:
664
664
 
665
665
 
666
666
  @validate_call
667
- def get_image_details_with_http_info(
667
+ def get_image_with_http_info(
668
668
  self,
669
669
  id: StrictInt,
670
670
  include_related_vms: Optional[StrictBool] = None,
@@ -711,7 +711,7 @@ class ImageApi:
711
711
  :return: Returns the result object.
712
712
  """ # noqa: E501
713
713
 
714
- _param = self._get_image_details_serialize(
714
+ _param = self._get_image_serialize(
715
715
  id=id,
716
716
  include_related_vms=include_related_vms,
717
717
  _request_auth=_request_auth,
@@ -739,7 +739,7 @@ class ImageApi:
739
739
 
740
740
 
741
741
  @validate_call
742
- def get_image_details_without_preload_content(
742
+ def get_image_without_preload_content(
743
743
  self,
744
744
  id: StrictInt,
745
745
  include_related_vms: Optional[StrictBool] = None,
@@ -786,7 +786,7 @@ class ImageApi:
786
786
  :return: Returns the result object.
787
787
  """ # noqa: E501
788
788
 
789
- _param = self._get_image_details_serialize(
789
+ _param = self._get_image_serialize(
790
790
  id=id,
791
791
  include_related_vms=include_related_vms,
792
792
  _request_auth=_request_auth,
@@ -809,7 +809,7 @@ class ImageApi:
809
809
  return response_data.response
810
810
 
811
811
 
812
- def _get_image_details_serialize(
812
+ def _get_image_serialize(
813
813
  self,
814
814
  id,
815
815
  include_related_vms,
@@ -879,7 +879,7 @@ class ImageApi:
879
879
 
880
880
 
881
881
  @validate_call
882
- def list_images2(
882
+ def list_images(
883
883
  self,
884
884
  region: Annotated[Optional[StrictStr], Field(description="Region Name")] = None,
885
885
  include_public: Annotated[Optional[StrictBool], Field(description="Flag to include public images in the response (true/false). Default is true.")] = None,
@@ -935,7 +935,7 @@ class ImageApi:
935
935
  :return: Returns the result object.
936
936
  """ # noqa: E501
937
937
 
938
- _param = self._list_images2_serialize(
938
+ _param = self._list_images_serialize(
939
939
  region=region,
940
940
  include_public=include_public,
941
941
  search=search,
@@ -967,7 +967,7 @@ class ImageApi:
967
967
 
968
968
 
969
969
  @validate_call
970
- def list_images2_with_http_info(
970
+ def list_images_with_http_info(
971
971
  self,
972
972
  region: Annotated[Optional[StrictStr], Field(description="Region Name")] = None,
973
973
  include_public: Annotated[Optional[StrictBool], Field(description="Flag to include public images in the response (true/false). Default is true.")] = None,
@@ -1023,7 +1023,7 @@ class ImageApi:
1023
1023
  :return: Returns the result object.
1024
1024
  """ # noqa: E501
1025
1025
 
1026
- _param = self._list_images2_serialize(
1026
+ _param = self._list_images_serialize(
1027
1027
  region=region,
1028
1028
  include_public=include_public,
1029
1029
  search=search,
@@ -1055,7 +1055,7 @@ class ImageApi:
1055
1055
 
1056
1056
 
1057
1057
  @validate_call
1058
- def list_images2_without_preload_content(
1058
+ def list_images_without_preload_content(
1059
1059
  self,
1060
1060
  region: Annotated[Optional[StrictStr], Field(description="Region Name")] = None,
1061
1061
  include_public: Annotated[Optional[StrictBool], Field(description="Flag to include public images in the response (true/false). Default is true.")] = None,
@@ -1111,7 +1111,7 @@ class ImageApi:
1111
1111
  :return: Returns the result object.
1112
1112
  """ # noqa: E501
1113
1113
 
1114
- _param = self._list_images2_serialize(
1114
+ _param = self._list_images_serialize(
1115
1115
  region=region,
1116
1116
  include_public=include_public,
1117
1117
  search=search,
@@ -1138,7 +1138,7 @@ class ImageApi:
1138
1138
  return response_data.response
1139
1139
 
1140
1140
 
1141
- def _list_images2_serialize(
1141
+ def _list_images_serialize(
1142
1142
  self,
1143
1143
  region,
1144
1144
  include_public,