platform-api-python-client 3.2.4__py3-none-any.whl → 3.2.7__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.
- platform_api_python_client/__init__.py +5 -2
- platform_api_python_client/api/external_api.py +3078 -939
- platform_api_python_client/api_client.py +1 -1
- platform_api_python_client/configuration.py +1 -1
- platform_api_python_client/models/__init__.py +4 -1
- platform_api_python_client/models/{user_vault_item_input.py → get_autocharge_preferences_response.py} +11 -19
- platform_api_python_client/models/{user_vault_item_output.py → payment_method_response.py} +11 -16
- platform_api_python_client/models/{update_autopay_request.py → update_autocharge_preferences_request.py} +10 -20
- platform_api_python_client/models/{c_serve_v2_recipe_output.py → update_deployment_response.py} +13 -23
- {platform_api_python_client-3.2.4.dist-info → platform_api_python_client-3.2.7.dist-info}/METADATA +2 -2
- {platform_api_python_client-3.2.4.dist-info → platform_api_python_client-3.2.7.dist-info}/RECORD +13 -14
- {platform_api_python_client-3.2.4.dist-info → platform_api_python_client-3.2.7.dist-info}/WHEEL +1 -1
- platform_api_python_client/models/c_serve_v2_recipe_input.py +0 -102
- {platform_api_python_client-3.2.4.dist-info → platform_api_python_client-3.2.7.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "3.2.
|
|
17
|
+
__version__ = "3.2.7"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from platform_api_python_client.api.external_api import EXTERNALApi
|
|
@@ -59,6 +59,7 @@ from platform_api_python_client.models.deployment_status_request import Deployme
|
|
|
59
59
|
from platform_api_python_client.models.deployment_status_response import DeploymentStatusResponse
|
|
60
60
|
from platform_api_python_client.models.deployment_type import DeploymentType
|
|
61
61
|
from platform_api_python_client.models.deployment_usage_value import DeploymentUsageValue
|
|
62
|
+
from platform_api_python_client.models.get_autocharge_preferences_response import GetAutochargePreferencesResponse
|
|
62
63
|
from platform_api_python_client.models.get_c_serve_deployment_response import GetCServeDeploymentResponse
|
|
63
64
|
from platform_api_python_client.models.get_c_serve_v2_deployment_response import GetCServeV2DeploymentResponse
|
|
64
65
|
from platform_api_python_client.models.get_cluster_response import GetClusterResponse
|
|
@@ -81,9 +82,11 @@ from platform_api_python_client.models.list_payments_response import ListPayment
|
|
|
81
82
|
from platform_api_python_client.models.list_prebuilt_image_response import ListPrebuiltImageResponse
|
|
82
83
|
from platform_api_python_client.models.list_user_vault_items_response import ListUserVaultItemsResponse
|
|
83
84
|
from platform_api_python_client.models.metric import Metric
|
|
85
|
+
from platform_api_python_client.models.payment_method_response import PaymentMethodResponse
|
|
84
86
|
from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse
|
|
85
87
|
from platform_api_python_client.models.service_status import ServiceStatus
|
|
86
|
-
from platform_api_python_client.models.
|
|
88
|
+
from platform_api_python_client.models.update_autocharge_preferences_request import UpdateAutochargePreferencesRequest
|
|
89
|
+
from platform_api_python_client.models.update_deployment_response import UpdateDeploymentResponse
|
|
87
90
|
from platform_api_python_client.models.user_support_email_request import UserSupportEmailRequest
|
|
88
91
|
from platform_api_python_client.models.user_vault_item import UserVaultItem
|
|
89
92
|
from platform_api_python_client.models.user_vault_type import UserVaultType
|