Skip to content

Commit 35ca453

Browse files
committed
Update client code
1 parent f41a863 commit 35ca453

File tree

999 files changed

+58505
-22375
lines changed

Some content is hidden

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

999 files changed

+58505
-22375
lines changed

kubernetes/README.md

+225-93
Large diffs are not rendered by default.

kubernetes/client/__init__.py

+127-50
Large diffs are not rendered by default.

kubernetes/client/apis/__init__.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@
55
from .apps_api import AppsApi
66
from .apps_v1beta1_api import AppsV1beta1Api
77
from .authentication_api import AuthenticationApi
8+
from .authentication_v1_api import AuthenticationV1Api
89
from .authentication_v1beta1_api import AuthenticationV1beta1Api
910
from .authorization_api import AuthorizationApi
11+
from .authorization_v1_api import AuthorizationV1Api
1012
from .authorization_v1beta1_api import AuthorizationV1beta1Api
1113
from .autoscaling_api import AutoscalingApi
1214
from .autoscaling_v1_api import AutoscalingV1Api
15+
from .autoscaling_v2alpha1_api import AutoscalingV2alpha1Api
1316
from .batch_api import BatchApi
1417
from .batch_v1_api import BatchV1Api
1518
from .batch_v2alpha1_api import BatchV2alpha1Api
1619
from .certificates_api import CertificatesApi
17-
from .certificates_v1alpha1_api import CertificatesV1alpha1Api
20+
from .certificates_v1beta1_api import CertificatesV1beta1Api
1821
from .core_api import CoreApi
1922
from .core_v1_api import CoreV1Api
2023
from .extensions_api import ExtensionsApi
@@ -24,6 +27,10 @@
2427
from .policy_v1beta1_api import PolicyV1beta1Api
2528
from .rbac_authorization_api import RbacAuthorizationApi
2629
from .rbac_authorization_v1alpha1_api import RbacAuthorizationV1alpha1Api
30+
from .rbac_authorization_v1beta1_api import RbacAuthorizationV1beta1Api
31+
from .settings_api import SettingsApi
32+
from .settings_v1alpha1_api import SettingsV1alpha1Api
2733
from .storage_api import StorageApi
34+
from .storage_v1_api import StorageV1Api
2835
from .storage_v1beta1_api import StorageV1beta1Api
2936
from .version_api import VersionApi

kubernetes/client/apis/apis_api.py

+4-4
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.5.1-660c2a2
8+
OpenAPI spec version: v1.6.1
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""
@@ -53,7 +53,7 @@ def get_api_versions(self, **kwargs):
5353
5454
:param callback function: The callback function
5555
for asynchronous request. (optional)
56-
:return: UnversionedAPIGroupList
56+
:return: V1APIGroupList
5757
If the method is called asynchronously,
5858
returns the request thread.
5959
"""
@@ -77,7 +77,7 @@ def get_api_versions_with_http_info(self, **kwargs):
7777
7878
:param callback function: The callback function
7979
for asynchronous request. (optional)
80-
:return: UnversionedAPIGroupList
80+
:return: V1APIGroupList
8181
If the method is called asynchronously,
8282
returns the request thread.
8383
"""
@@ -129,7 +129,7 @@ def get_api_versions_with_http_info(self, **kwargs):
129129
body=body_params,
130130
post_params=form_params,
131131
files=local_var_files,
132-
response_type='UnversionedAPIGroupList',
132+
response_type='V1APIGroupList',
133133
auth_settings=auth_settings,
134134
callback=params.get('callback'),
135135
_return_http_data_only=params.get('_return_http_data_only'),

kubernetes/client/apis/apps_api.py

+4-4
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.5.1-660c2a2
8+
OpenAPI spec version: v1.6.1
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""
@@ -53,7 +53,7 @@ def get_api_group(self, **kwargs):
5353
5454
:param callback function: The callback function
5555
for asynchronous request. (optional)
56-
:return: UnversionedAPIGroup
56+
:return: V1APIGroup
5757
If the method is called asynchronously,
5858
returns the request thread.
5959
"""
@@ -77,7 +77,7 @@ def get_api_group_with_http_info(self, **kwargs):
7777
7878
:param callback function: The callback function
7979
for asynchronous request. (optional)
80-
:return: UnversionedAPIGroup
80+
:return: V1APIGroup
8181
If the method is called asynchronously,
8282
returns the request thread.
8383
"""
@@ -129,7 +129,7 @@ def get_api_group_with_http_info(self, **kwargs):
129129
body=body_params,
130130
post_params=form_params,
131131
files=local_var_files,
132-
response_type='UnversionedAPIGroup',
132+
response_type='V1APIGroup',
133133
auth_settings=auth_settings,
134134
callback=params.get('callback'),
135135
_return_http_data_only=params.get('_return_http_data_only'),

0 commit comments

Comments
 (0)