hyperstack 1.46.2a0__py3-none-any.whl → 1.46.4a0__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 +18 -1
- hyperstack/api/__init__.py +4 -0
- hyperstack/api/access_keys_api.py +885 -0
- hyperstack/api/api_key_api.py +1 -0
- hyperstack/api/buckets_api.py +865 -0
- hyperstack/api/health_api.py +282 -0
- hyperstack/api/partner_config_api.py +2 -0
- hyperstack/api/regions_api.py +282 -0
- hyperstack/api_client.py +1 -1
- hyperstack/configuration.py +1 -1
- hyperstack/models/__init__.py +13 -0
- hyperstack/models/object_storage_access_key_create_request.py +90 -0
- hyperstack/models/object_storage_access_key_create_response.py +101 -0
- hyperstack/models/object_storage_access_key_list_response.py +101 -0
- hyperstack/models/object_storage_access_key_response.py +99 -0
- hyperstack/models/object_storage_bucket_list_response.py +95 -0
- hyperstack/models/object_storage_bucket_response.py +101 -0
- hyperstack/models/object_storage_delete_response.py +87 -0
- hyperstack/models/object_storage_error_response.py +91 -0
- hyperstack/models/object_storage_health_response.py +87 -0
- hyperstack/models/object_storage_pagination_meta.py +91 -0
- hyperstack/models/object_storage_region_list_response.py +95 -0
- hyperstack/models/object_storage_region_response.py +87 -0
- hyperstack/models/object_storage_regions_enum.py +36 -0
- {hyperstack-1.46.2a0.dist-info → hyperstack-1.46.4a0.dist-info}/METADATA +1 -1
- {hyperstack-1.46.2a0.dist-info → hyperstack-1.46.4a0.dist-info}/RECORD +28 -11
- {hyperstack-1.46.2a0.dist-info → hyperstack-1.46.4a0.dist-info}/WHEEL +0 -0
- {hyperstack-1.46.2a0.dist-info → hyperstack-1.46.4a0.dist-info}/top_level.txt +0 -0
hyperstack/__init__.py
CHANGED
|
@@ -14,13 +14,17 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "v1.46.
|
|
17
|
+
__version__ = "v1.46.4-alpha"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
|
+
from .api.access_keys_api import AccessKeysApi
|
|
21
|
+
from .api.buckets_api import BucketsApi
|
|
20
22
|
from .api.calculate_api import CalculateApi
|
|
21
23
|
from .api.customer_contract_api import CustomerContractApi
|
|
22
24
|
from .api.fip_exclusions_api import FIPExclusionsApi
|
|
25
|
+
from .api.health_api import HealthApi
|
|
23
26
|
from .api.pricebook_api import PricebookApi
|
|
27
|
+
from .api.regions_api import RegionsApi
|
|
24
28
|
from .api.snapshots_api import SnapshotsApi
|
|
25
29
|
from .api.alive_api import AliveApi
|
|
26
30
|
from .api.api_key_api import ApiKeyApi
|
|
@@ -242,6 +246,19 @@ from .models.new_configurations_response import NewConfigurationsResponse
|
|
|
242
246
|
from .models.new_model_response import NewModelResponse
|
|
243
247
|
from .models.new_stock_response import NewStockResponse
|
|
244
248
|
from .models.new_stock_retrive_response import NewStockRetriveResponse
|
|
249
|
+
from .models.object_storage_access_key_create_request import ObjectStorageAccessKeyCreateRequest
|
|
250
|
+
from .models.object_storage_access_key_create_response import ObjectStorageAccessKeyCreateResponse
|
|
251
|
+
from .models.object_storage_access_key_list_response import ObjectStorageAccessKeyListResponse
|
|
252
|
+
from .models.object_storage_access_key_response import ObjectStorageAccessKeyResponse
|
|
253
|
+
from .models.object_storage_bucket_list_response import ObjectStorageBucketListResponse
|
|
254
|
+
from .models.object_storage_bucket_response import ObjectStorageBucketResponse
|
|
255
|
+
from .models.object_storage_delete_response import ObjectStorageDeleteResponse
|
|
256
|
+
from .models.object_storage_error_response import ObjectStorageErrorResponse
|
|
257
|
+
from .models.object_storage_health_response import ObjectStorageHealthResponse
|
|
258
|
+
from .models.object_storage_pagination_meta import ObjectStoragePaginationMeta
|
|
259
|
+
from .models.object_storage_region_list_response import ObjectStorageRegionListResponse
|
|
260
|
+
from .models.object_storage_region_response import ObjectStorageRegionResponse
|
|
261
|
+
from .models.object_storage_regions_enum import ObjectStorageRegionsEnum
|
|
245
262
|
from .models.organization_fields import OrganizationFields
|
|
246
263
|
from .models.organization_level_billing_history import OrganizationLevelBillingHistory
|
|
247
264
|
from .models.organization_level_billing_history_resources import OrganizationLevelBillingHistoryResources
|
hyperstack/api/__init__.py
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# flake8: noqa
|
|
2
2
|
|
|
3
3
|
# import apis into api package
|
|
4
|
+
from .access_keys_api import AccessKeysApi
|
|
5
|
+
from .buckets_api import BucketsApi
|
|
4
6
|
from .calculate_api import CalculateApi
|
|
5
7
|
from .customer_contract_api import CustomerContractApi
|
|
6
8
|
from .fip_exclusions_api import FIPExclusionsApi
|
|
9
|
+
from .health_api import HealthApi
|
|
7
10
|
from .pricebook_api import PricebookApi
|
|
11
|
+
from .regions_api import RegionsApi
|
|
8
12
|
from .snapshots_api import SnapshotsApi
|
|
9
13
|
from .alive_api import AliveApi
|
|
10
14
|
from .api_key_api import ApiKeyApi
|