Skip to content

Commit 9bc5429

Browse files
Update clients to latest platform release (4.1.2) (#49)
1 parent e28877f commit 9bc5429

16 files changed

+8
-618
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 0.1.0
7-
- Package version: 4.0.17
7+
- Package version: 4.1.2
88
- Generator version: 7.9.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

@@ -104,7 +104,6 @@ Class | Method | HTTP request | Description
104104
*EXTERNALApi* | [**create_new_organization_organizations_post**](docs/EXTERNALApi.md#create_new_organization_organizations_post) | **POST** /organizations | Create New Organization
105105
*EXTERNALApi* | [**create_rag_deployment_deployments_rag_post**](docs/EXTERNALApi.md#create_rag_deployment_deployments_rag_post) | **POST** /deployments/rag | Create Rag Deployment
106106
*EXTERNALApi* | [**create_setup_payments_setup_checkout_post**](docs/EXTERNALApi.md#create_setup_payments_setup_checkout_post) | **POST** /payments/setup_checkout | Create Setup
107-
*EXTERNALApi* | [**create_support_ticket_support_post**](docs/EXTERNALApi.md#create_support_ticket_support_post) | **POST** /support | Create Support Ticket
108107
*EXTERNALApi* | [**delete_api_key_credentials_api_key_id_delete**](docs/EXTERNALApi.md#delete_api_key_credentials_api_key_id_delete) | **DELETE** /credentials/api-key/{id} | Delete Api Key
109108
*EXTERNALApi* | [**delete_autocharge_preferences_autocharge_preferences_delete**](docs/EXTERNALApi.md#delete_autocharge_preferences_autocharge_preferences_delete) | **DELETE** /autocharge/preferences | Delete Autocharge Preferences
110109
*EXTERNALApi* | [**delete_payment_method_payments_methods_delete**](docs/EXTERNALApi.md#delete_payment_method_payments_methods_delete) | **DELETE** /payments/methods | Delete Payment Method
@@ -205,8 +204,6 @@ Class | Method | HTTP request | Description
205204
- [PodStatus](docs/PodStatus.md)
206205
- [PrebuiltImageResponse](docs/PrebuiltImageResponse.md)
207206
- [ServiceStatus](docs/ServiceStatus.md)
208-
- [TicketCategory](docs/TicketCategory.md)
209-
- [TicketPriority](docs/TicketPriority.md)
210207
- [UpdateAutochargePreferencesRequest](docs/UpdateAutochargePreferencesRequest.md)
211208
- [UpdateDeploymentResponse](docs/UpdateDeploymentResponse.md)
212209
- [UserVaultItem](docs/UserVaultItem.md)

docs/EXTERNALApi.md

Lines changed: 0 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Method | HTTP request | Description
1414
[**create_new_organization_organizations_post**](EXTERNALApi.md#create_new_organization_organizations_post) | **POST** /organizations | Create New Organization
1515
[**create_rag_deployment_deployments_rag_post**](EXTERNALApi.md#create_rag_deployment_deployments_rag_post) | **POST** /deployments/rag | Create Rag Deployment
1616
[**create_setup_payments_setup_checkout_post**](EXTERNALApi.md#create_setup_payments_setup_checkout_post) | **POST** /payments/setup_checkout | Create Setup
17-
[**create_support_ticket_support_post**](EXTERNALApi.md#create_support_ticket_support_post) | **POST** /support | Create Support Ticket
1817
[**delete_api_key_credentials_api_key_id_delete**](EXTERNALApi.md#delete_api_key_credentials_api_key_id_delete) | **DELETE** /credentials/api-key/{id} | Delete Api Key
1918
[**delete_autocharge_preferences_autocharge_preferences_delete**](EXTERNALApi.md#delete_autocharge_preferences_autocharge_preferences_delete) | **DELETE** /autocharge/preferences | Delete Autocharge Preferences
2019
[**delete_payment_method_payments_methods_delete**](EXTERNALApi.md#delete_payment_method_payments_methods_delete) | **DELETE** /payments/methods | Delete Payment Method
@@ -834,90 +833,6 @@ Name | Type | Description | Notes
834833

835834
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
836835

837-
# **create_support_ticket_support_post**
838-
> object create_support_ticket_support_post(message, category, priority, upload_file=upload_file)
839-
840-
Create Support Ticket
841-
842-
### Example
843-
844-
* Bearer Authentication (HTTPBearer):
845-
846-
```python
847-
import platform_api_python_client
848-
from platform_api_python_client.models.ticket_category import TicketCategory
849-
from platform_api_python_client.models.ticket_priority import TicketPriority
850-
from platform_api_python_client.rest import ApiException
851-
from pprint import pprint
852-
853-
# Defining the host is optional and defaults to http://localhost
854-
# See configuration.py for a list of all supported configuration parameters.
855-
configuration = platform_api_python_client.Configuration(
856-
host = "http://localhost"
857-
)
858-
859-
# The client must configure the authentication and authorization parameters
860-
# in accordance with the API server security policy.
861-
# Examples for each auth method are provided below, use the example that
862-
# satisfies your auth use case.
863-
864-
# Configure Bearer authorization: HTTPBearer
865-
configuration = platform_api_python_client.Configuration(
866-
access_token = os.environ["BEARER_TOKEN"]
867-
)
868-
869-
# Enter a context with an instance of the API client
870-
with platform_api_python_client.ApiClient(configuration) as api_client:
871-
# Create an instance of the API class
872-
api_instance = platform_api_python_client.EXTERNALApi(api_client)
873-
message = 'message_example' # str |
874-
category = platform_api_python_client.TicketCategory() # TicketCategory |
875-
priority = platform_api_python_client.TicketPriority() # TicketPriority |
876-
upload_file = None # bytearray | (optional)
877-
878-
try:
879-
# Create Support Ticket
880-
api_response = api_instance.create_support_ticket_support_post(message, category, priority, upload_file=upload_file)
881-
print("The response of EXTERNALApi->create_support_ticket_support_post:\n")
882-
pprint(api_response)
883-
except Exception as e:
884-
print("Exception when calling EXTERNALApi->create_support_ticket_support_post: %s\n" % e)
885-
```
886-
887-
888-
889-
### Parameters
890-
891-
892-
Name | Type | Description | Notes
893-
------------- | ------------- | ------------- | -------------
894-
**message** | **str**| |
895-
**category** | [**TicketCategory**](TicketCategory.md)| |
896-
**priority** | [**TicketPriority**](TicketPriority.md)| |
897-
**upload_file** | **bytearray**| | [optional]
898-
899-
### Return type
900-
901-
**object**
902-
903-
### Authorization
904-
905-
[HTTPBearer](../README.md#HTTPBearer)
906-
907-
### HTTP request headers
908-
909-
- **Content-Type**: multipart/form-data
910-
- **Accept**: application/json
911-
912-
### HTTP response details
913-
914-
| Status code | Description | Response headers |
915-
|-------------|-------------|------------------|
916-
**200** | Successful Response | - |
917-
**422** | Validation Error | - |
918-
919-
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
920-
921836
# **delete_api_key_credentials_api_key_id_delete**
922837
> object delete_api_key_credentials_api_key_id_delete(id)
923838

docs/TicketCategory.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/TicketPriority.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

platform_api_python_client/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "4.0.17"
18-
17+
__version__ = "4.1.2"
1918

2019
# import apis into sdk package
2120
from platform_api_python_client.api.external_api import EXTERNALApi
@@ -91,8 +90,6 @@
9190
from platform_api_python_client.models.pod_status import PodStatus
9291
from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse
9392
from platform_api_python_client.models.service_status import ServiceStatus
94-
from platform_api_python_client.models.ticket_category import TicketCategory
95-
from platform_api_python_client.models.ticket_priority import TicketPriority
9693
from platform_api_python_client.models.update_autocharge_preferences_request import UpdateAutochargePreferencesRequest
9794
from platform_api_python_client.models.update_deployment_response import UpdateDeploymentResponse
9895
from platform_api_python_client.models.user_vault_item import UserVaultItem

0 commit comments

Comments
 (0)