Skip to content

Commit

Permalink
Update client code
Browse files Browse the repository at this point in the history
  • Loading branch information
mbohlool committed Apr 5, 2017
1 parent f41a863 commit 35ca453
Show file tree
Hide file tree
Showing 999 changed files with 58,505 additions and 22,375 deletions.
318 changes: 225 additions & 93 deletions kubernetes/README.md

Large diffs are not rendered by default.

177 changes: 127 additions & 50 deletions kubernetes/client/__init__.py

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion kubernetes/client/apis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,19 @@
from .apps_api import AppsApi
from .apps_v1beta1_api import AppsV1beta1Api
from .authentication_api import AuthenticationApi
from .authentication_v1_api import AuthenticationV1Api
from .authentication_v1beta1_api import AuthenticationV1beta1Api
from .authorization_api import AuthorizationApi
from .authorization_v1_api import AuthorizationV1Api
from .authorization_v1beta1_api import AuthorizationV1beta1Api
from .autoscaling_api import AutoscalingApi
from .autoscaling_v1_api import AutoscalingV1Api
from .autoscaling_v2alpha1_api import AutoscalingV2alpha1Api
from .batch_api import BatchApi
from .batch_v1_api import BatchV1Api
from .batch_v2alpha1_api import BatchV2alpha1Api
from .certificates_api import CertificatesApi
from .certificates_v1alpha1_api import CertificatesV1alpha1Api
from .certificates_v1beta1_api import CertificatesV1beta1Api
from .core_api import CoreApi
from .core_v1_api import CoreV1Api
from .extensions_api import ExtensionsApi
Expand All @@ -24,6 +27,10 @@
from .policy_v1beta1_api import PolicyV1beta1Api
from .rbac_authorization_api import RbacAuthorizationApi
from .rbac_authorization_v1alpha1_api import RbacAuthorizationV1alpha1Api
from .rbac_authorization_v1beta1_api import RbacAuthorizationV1beta1Api
from .settings_api import SettingsApi
from .settings_v1alpha1_api import SettingsV1alpha1Api
from .storage_api import StorageApi
from .storage_v1_api import StorageV1Api
from .storage_v1beta1_api import StorageV1beta1Api
from .version_api import VersionApi
8 changes: 4 additions & 4 deletions kubernetes/client/apis/apis_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
OpenAPI spec version: v1.5.1-660c2a2
OpenAPI spec version: v1.6.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down Expand Up @@ -53,7 +53,7 @@ def get_api_versions(self, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:return: UnversionedAPIGroupList
:return: V1APIGroupList
If the method is called asynchronously,
returns the request thread.
"""
Expand All @@ -77,7 +77,7 @@ def get_api_versions_with_http_info(self, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:return: UnversionedAPIGroupList
:return: V1APIGroupList
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -129,7 +129,7 @@ def get_api_versions_with_http_info(self, **kwargs):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='UnversionedAPIGroupList',
response_type='V1APIGroupList',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
8 changes: 4 additions & 4 deletions kubernetes/client/apis/apps_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
OpenAPI spec version: v1.5.1-660c2a2
OpenAPI spec version: v1.6.1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
Expand Down Expand Up @@ -53,7 +53,7 @@ def get_api_group(self, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:return: UnversionedAPIGroup
:return: V1APIGroup
If the method is called asynchronously,
returns the request thread.
"""
Expand All @@ -77,7 +77,7 @@ def get_api_group_with_http_info(self, **kwargs):
:param callback function: The callback function
for asynchronous request. (optional)
:return: UnversionedAPIGroup
:return: V1APIGroup
If the method is called asynchronously,
returns the request thread.
"""
Expand Down Expand Up @@ -129,7 +129,7 @@ def get_api_group_with_http_info(self, **kwargs):
body=body_params,
post_params=form_params,
files=local_var_files,
response_type='UnversionedAPIGroup',
response_type='V1APIGroup',
auth_settings=auth_settings,
callback=params.get('callback'),
_return_http_data_only=params.get('_return_http_data_only'),
Expand Down
Loading

0 comments on commit 35ca453

Please sign in to comment.