Skip to content

Commit 04f059a

Browse files
authored
Merge pull request #265 from blackwoodseven/master
Parametrize resource path with version part of apiVersion
2 parents 4eac56a + 1849b1f commit 04f059a

File tree

725 files changed

+931
-1076
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

725 files changed

+931
-1076
lines changed

kubernetes/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ No description provided (generated by Swagger Codegen https://github.com/swagger
33

44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

6-
- API version: v1.6.5
6+
- API version: v1.6.7
77
- Package version: 2.0.0-snapshot
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

@@ -248,7 +248,6 @@ Class | Method | HTTP request | Description
248248
*CoreV1Api* | [**create_namespaced_service_account**](docs/CoreV1Api.md#create_namespaced_service_account) | **POST** /api/v1/namespaces/{namespace}/serviceaccounts |
249249
*CoreV1Api* | [**create_node**](docs/CoreV1Api.md#create_node) | **POST** /api/v1/nodes |
250250
*CoreV1Api* | [**create_persistent_volume**](docs/CoreV1Api.md#create_persistent_volume) | **POST** /api/v1/persistentvolumes |
251-
*CoreV1Api* | [**delete_collection_namespace**](docs/CoreV1Api.md#delete_collection_namespace) | **DELETE** /api/v1/namespaces |
252251
*CoreV1Api* | [**delete_collection_namespaced_config_map**](docs/CoreV1Api.md#delete_collection_namespaced_config_map) | **DELETE** /api/v1/namespaces/{namespace}/configmaps |
253252
*CoreV1Api* | [**delete_collection_namespaced_endpoints**](docs/CoreV1Api.md#delete_collection_namespaced_endpoints) | **DELETE** /api/v1/namespaces/{namespace}/endpoints |
254253
*CoreV1Api* | [**delete_collection_namespaced_event**](docs/CoreV1Api.md#delete_collection_namespaced_event) | **DELETE** /api/v1/namespaces/{namespace}/events |
@@ -606,11 +605,11 @@ Class | Method | HTTP request | Description
606605
*StorageV1beta1Api* | [**patch_storage_class**](docs/StorageV1beta1Api.md#patch_storage_class) | **PATCH** /apis/storage.k8s.io/v1beta1/storageclasses/{name} |
607606
*StorageV1beta1Api* | [**read_storage_class**](docs/StorageV1beta1Api.md#read_storage_class) | **GET** /apis/storage.k8s.io/v1beta1/storageclasses/{name} |
608607
*StorageV1beta1Api* | [**replace_storage_class**](docs/StorageV1beta1Api.md#replace_storage_class) | **PUT** /apis/storage.k8s.io/v1beta1/storageclasses/{name} |
609-
*ThirdPartyResourcesApi* | [**create_third_party_resource**](docs/ThirdPartyResourcesApi.md#create_third_party_resource) | **POST** /apis/{fqdn}/v1/namespaces/{namespace}/{resource} | Create a Resource
610-
*ThirdPartyResourcesApi* | [**delete_third_party_resource**](docs/ThirdPartyResourcesApi.md#delete_third_party_resource) | **DELETE** /apis/{fqdn}/v1/namespaces/{namespace}/{resource}/{name} | Deletes a specific Resource
611-
*ThirdPartyResourcesApi* | [**get_third_party_resource**](docs/ThirdPartyResourcesApi.md#get_third_party_resource) | **GET** /apis/{fqdn}/v1/namespaces/{namespace}/{resource}/{name} | Gets a specific Resource
612-
*ThirdPartyResourcesApi* | [**list_third_party_resource**](docs/ThirdPartyResourcesApi.md#list_third_party_resource) | **GET** /apis/{fqdn}/v1/{resource} | Gets Resources
613-
*ThirdPartyResourcesApi* | [**update_third_party_resource**](docs/ThirdPartyResourcesApi.md#update_third_party_resource) | **PUT** /apis/{fqdn}/v1/namespaces/{namespace}/{resource}/{name} | Update a Resource
608+
*ThirdPartyResourcesApi* | [**create_third_party_resource**](docs/ThirdPartyResourcesApi.md#create_third_party_resource) | **POST** /apis/{fqdn}/{version}/namespaces/{namespace}/{resource} | Create a Resource
609+
*ThirdPartyResourcesApi* | [**delete_third_party_resource**](docs/ThirdPartyResourcesApi.md#delete_third_party_resource) | **DELETE** /apis/{fqdn}/{version}/namespaces/{namespace}/{resource}/{name} | Deletes a specific Resource
610+
*ThirdPartyResourcesApi* | [**get_third_party_resource**](docs/ThirdPartyResourcesApi.md#get_third_party_resource) | **GET** /apis/{fqdn}/{version}/namespaces/{namespace}/{resource}/{name} | Gets a specific Resource
611+
*ThirdPartyResourcesApi* | [**list_third_party_resource**](docs/ThirdPartyResourcesApi.md#list_third_party_resource) | **GET** /apis/{fqdn}/{version}/{resource} | Gets Resources
612+
*ThirdPartyResourcesApi* | [**update_third_party_resource**](docs/ThirdPartyResourcesApi.md#update_third_party_resource) | **PUT** /apis/{fqdn}/{version}/namespaces/{namespace}/{resource}/{name} | Update a Resource
614613
*VersionApi* | [**get_code**](docs/VersionApi.md#get_code) | **GET** /version/ |
615614

616615

kubernetes/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/apis_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/apps_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/apps_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/authentication_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/authentication_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/authentication_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/authorization_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/authorization_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/authorization_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/autoscaling_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/autoscaling_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/autoscaling_v2alpha1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/batch_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/batch_v1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/batch_v2alpha1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/certificates_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/certificates_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/core_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/core_v1_api.py

Lines changed: 1 addition & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77

8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99

1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""
@@ -7107,128 +7107,6 @@ def create_persistent_volume_with_http_info(self, body, **kwargs):
71077107
_request_timeout=params.get('_request_timeout'),
71087108
collection_formats=collection_formats)
71097109

7110-
def delete_collection_namespace(self, **kwargs):
7111-
"""
7112-
delete collection of Namespace
7113-
This method makes a synchronous HTTP request by default. To make an
7114-
asynchronous HTTP request, please define a `callback` function
7115-
to be invoked when receiving the response.
7116-
>>> def callback_function(response):
7117-
>>> pprint(response)
7118-
>>>
7119-
>>> thread = api.delete_collection_namespace(callback=callback_function)
7120-
7121-
:param callback function: The callback function
7122-
for asynchronous request. (optional)
7123-
:param str pretty: If 'true', then the output is pretty printed.
7124-
:param str field_selector: A selector to restrict the list of returned objects by their fields. Defaults to everything.
7125-
:param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.
7126-
:param str resource_version: When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
7127-
:param int timeout_seconds: Timeout for the list/watch call.
7128-
:param bool watch: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
7129-
:return: V1Status
7130-
If the method is called asynchronously,
7131-
returns the request thread.
7132-
"""
7133-
kwargs['_return_http_data_only'] = True
7134-
if kwargs.get('callback'):
7135-
return self.delete_collection_namespace_with_http_info(**kwargs)
7136-
else:
7137-
(data) = self.delete_collection_namespace_with_http_info(**kwargs)
7138-
return data
7139-
7140-
def delete_collection_namespace_with_http_info(self, **kwargs):
7141-
"""
7142-
delete collection of Namespace
7143-
This method makes a synchronous HTTP request by default. To make an
7144-
asynchronous HTTP request, please define a `callback` function
7145-
to be invoked when receiving the response.
7146-
>>> def callback_function(response):
7147-
>>> pprint(response)
7148-
>>>
7149-
>>> thread = api.delete_collection_namespace_with_http_info(callback=callback_function)
7150-
7151-
:param callback function: The callback function
7152-
for asynchronous request. (optional)
7153-
:param str pretty: If 'true', then the output is pretty printed.
7154-
:param str field_selector: A selector to restrict the list of returned objects by their fields. Defaults to everything.
7155-
:param str label_selector: A selector to restrict the list of returned objects by their labels. Defaults to everything.
7156-
:param str resource_version: When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.
7157-
:param int timeout_seconds: Timeout for the list/watch call.
7158-
:param bool watch: Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.
7159-
:return: V1Status
7160-
If the method is called asynchronously,
7161-
returns the request thread.
7162-
"""
7163-
7164-
all_params = ['pretty', 'field_selector', 'label_selector', 'resource_version', 'timeout_seconds', 'watch']
7165-
all_params.append('callback')
7166-
all_params.append('_return_http_data_only')
7167-
all_params.append('_preload_content')
7168-
all_params.append('_request_timeout')
7169-
7170-
params = locals()
7171-
for key, val in iteritems(params['kwargs']):
7172-
if key not in all_params:
7173-
raise TypeError(
7174-
"Got an unexpected keyword argument '%s'"
7175-
" to method delete_collection_namespace" % key
7176-
)
7177-
params[key] = val
7178-
del params['kwargs']
7179-
7180-
7181-
collection_formats = {}
7182-
7183-
resource_path = '/api/v1/namespaces'.replace('{format}', 'json')
7184-
path_params = {}
7185-
7186-
query_params = {}
7187-
if 'pretty' in params:
7188-
query_params['pretty'] = params['pretty']
7189-
if 'field_selector' in params:
7190-
query_params['fieldSelector'] = params['field_selector']
7191-
if 'label_selector' in params:
7192-
query_params['labelSelector'] = params['label_selector']
7193-
if 'resource_version' in params:
7194-
query_params['resourceVersion'] = params['resource_version']
7195-
if 'timeout_seconds' in params:
7196-
query_params['timeoutSeconds'] = params['timeout_seconds']
7197-
if 'watch' in params:
7198-
query_params['watch'] = params['watch']
7199-
7200-
header_params = {}
7201-
7202-
form_params = []
7203-
local_var_files = {}
7204-
7205-
body_params = None
7206-
# HTTP header `Accept`
7207-
header_params['Accept'] = self.api_client.\
7208-
select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf'])
7209-
7210-
# HTTP header `Content-Type`
7211-
header_params['Content-Type'] = self.api_client.\
7212-
select_header_content_type(['*/*'])
7213-
7214-
# Authentication setting
7215-
auth_settings = ['BearerToken']
7216-
7217-
return self.api_client.call_api(resource_path, 'DELETE',
7218-
path_params,
7219-
query_params,
7220-
header_params,
7221-
body=body_params,
7222-
post_params=form_params,
7223-
files=local_var_files,
7224-
response_type='V1Status',
7225-
auth_settings=auth_settings,
7226-
callback=params.get('callback'),
7227-
_return_http_data_only=params.get('_return_http_data_only'),
7228-
_preload_content=params.get('_preload_content', True),
7229-
_request_timeout=params.get('_request_timeout'),
7230-
collection_formats=collection_formats)
7231-
72327110
def delete_collection_namespaced_config_map(self, namespace, **kwargs):
72337111
"""
72347112
delete collection of ConfigMap

kubernetes/client/apis/extensions_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/extensions_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/logs_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/policy_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/policy_v1beta1_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

kubernetes/client/apis/rbac_authorization_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
77
8-
OpenAPI spec version: v1.6.5
8+
OpenAPI spec version: v1.6.7
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

0 commit comments

Comments
 (0)