Skip to content

Commit 7f34aef

Browse files
Update clients to latest platform release (4.6.0)
1 parent ac7ec30 commit 7f34aef

20 files changed

+119
-20
lines changed

README.md

Lines changed: 2 additions & 1 deletion
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.5.1
7+
- Package version: 4.6.0
88
- Generator version: 7.9.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

@@ -211,6 +211,7 @@ Class | Method | HTTP request | Description
211211
- [UserVaultType](docs/UserVaultType.md)
212212
- [ValidationError](docs/ValidationError.md)
213213
- [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)
214+
- [VaultScope](docs/VaultScope.md)
214215

215216

216217
<a id="documentation-for-authorization"></a>

docs/EXTERNALApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ Name | Type | Description | Notes
913913
914914
Get All User Vault Items Endpoint
915915

916-
Retrieve all items of a specific type for the user.
916+
Retrieve all items the user has access to (both USER and ORG scoped).
917917

918918
### Example
919919

@@ -3441,7 +3441,7 @@ Name | Type | Description | Notes
34413441
34423442
Update User Vault Item Endpoint
34433443

3444-
Update or add multiple items of a specific type for the user.
3444+
Update or add an item of a specific type for the user.
34453445

34463446
### Example
34473447

docs/GetClusterResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**id** | **int** | |
9+
**cluster_name** | **str** | |
910
**display_name** | **str** | |
1011
**region** | **str** | | [optional]
1112

docs/UserVaultItem.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**type** | [**UserVaultType**](UserVaultType.md) | |
99
**key** | **str** | |
1010
**value** | **str** | | [optional]
11+
**visibility** | [**VaultScope**](VaultScope.md) | | [optional]
1112

1213
## Example
1314

docs/VaultScope.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# VaultScope
2+
3+
4+
## Enum
5+
6+
* `USER` (value: `'USER'`)
7+
8+
* `ORG` (value: `'ORG'`)
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+

platform_api_python_client/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "4.5.1"
17+
__version__ = "4.6.0"
1818

1919
# import apis into sdk package
2020
from platform_api_python_client.api.external_api import EXTERNALApi
@@ -99,3 +99,4 @@
9999
from platform_api_python_client.models.user_vault_type import UserVaultType
100100
from platform_api_python_client.models.validation_error import ValidationError
101101
from platform_api_python_client.models.validation_error_loc_inner import ValidationErrorLocInner
102+
from platform_api_python_client.models.vault_scope import VaultScope

platform_api_python_client/api/external_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3108,7 +3108,7 @@ def get_all_user_vault_items_endpoint_user_vault_get(
31083108
) -> ListUserVaultItemsResponse:
31093109
"""Get All User Vault Items Endpoint
31103110
3111-
Retrieve all items of a specific type for the user.
3111+
Retrieve all items the user has access to (both USER and ORG scoped).
31123112
31133113
:param type:
31143114
:type type: UserVaultType
@@ -3180,7 +3180,7 @@ def get_all_user_vault_items_endpoint_user_vault_get_with_http_info(
31803180
) -> ApiResponse[ListUserVaultItemsResponse]:
31813181
"""Get All User Vault Items Endpoint
31823182
3183-
Retrieve all items of a specific type for the user.
3183+
Retrieve all items the user has access to (both USER and ORG scoped).
31843184
31853185
:param type:
31863186
:type type: UserVaultType
@@ -3252,7 +3252,7 @@ def get_all_user_vault_items_endpoint_user_vault_get_without_preload_content(
32523252
) -> RESTResponseType:
32533253
"""Get All User Vault Items Endpoint
32543254
3255-
Retrieve all items of a specific type for the user.
3255+
Retrieve all items the user has access to (both USER and ORG scoped).
32563256
32573257
:param type:
32583258
:type type: UserVaultType
@@ -12078,7 +12078,7 @@ def update_user_vault_item_endpoint_user_vault_put(
1207812078
) -> object:
1207912079
"""Update User Vault Item Endpoint
1208012080
12081-
Update or add multiple items of a specific type for the user.
12081+
Update or add an item of a specific type for the user.
1208212082
1208312083
:param user_vault_item: (required)
1208412084
:type user_vault_item: UserVaultItem
@@ -12146,7 +12146,7 @@ def update_user_vault_item_endpoint_user_vault_put_with_http_info(
1214612146
) -> ApiResponse[object]:
1214712147
"""Update User Vault Item Endpoint
1214812148
12149-
Update or add multiple items of a specific type for the user.
12149+
Update or add an item of a specific type for the user.
1215012150
1215112151
:param user_vault_item: (required)
1215212152
:type user_vault_item: UserVaultItem
@@ -12214,7 +12214,7 @@ def update_user_vault_item_endpoint_user_vault_put_without_preload_content(
1221412214
) -> RESTResponseType:
1221512215
"""Update User Vault Item Endpoint
1221612216
12217-
Update or add multiple items of a specific type for the user.
12217+
Update or add an item of a specific type for the user.
1221812218
1221912219
:param user_vault_item: (required)
1222012220
:type user_vault_item: UserVaultItem

platform_api_python_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/4.5.1/python'
93+
self.user_agent = 'OpenAPI-Generator/4.6.0/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

platform_api_python_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def to_debug_report(self):
392392
"OS: {env}\n"\
393393
"Python Version: {pyversion}\n"\
394394
"Version of the API: 0.1.0\n"\
395-
"SDK Package Version: 4.5.1".\
395+
"SDK Package Version: 4.6.0".\
396396
format(env=sys.platform, pyversion=sys.version)
397397

398398
def get_host_settings(self):

platform_api_python_client/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,4 @@
8282
from platform_api_python_client.models.user_vault_type import UserVaultType
8383
from platform_api_python_client.models.validation_error import ValidationError
8484
from platform_api_python_client.models.validation_error_loc_inner import ValidationErrorLocInner
85+
from platform_api_python_client.models.vault_scope import VaultScope

0 commit comments

Comments
 (0)