huaweicloud-sdk-python-v3/huaweicloud-sdk-cce/huaweicloudsdkcce/v3/cce_client.py

2057 lines
73 KiB
Python
Raw Normal View History

# coding: utf-8
from __future__ import absolute_import
import datetime
import re
import importlib
import six
from huaweicloudsdkcore.client import Client, ClientBuilder
from huaweicloudsdkcore.exceptions import exceptions
from huaweicloudsdkcore.utils import http_utils
from huaweicloudsdkcore.sdk_stream_request import SdkStreamRequest
class CceClient(Client):
"""
:param configuration: .Configuration object for this client
:param pool_threads: The number of threads to use for async requests
to the API. More threads means more concurrent API requests.
"""
PRIMITIVE_TYPES = (float, bool, bytes, six.text_type) + six.integer_types
NATIVE_TYPES_MAPPING = {
'int': int,
'long': int if six.PY3 else long,
'float': float,
'str': str,
'bool': bool,
'date': datetime.date,
'datetime': datetime.datetime,
'object': object,
}
def __init__(self):
super(CceClient, self).__init__()
self.model_package = importlib.import_module("huaweicloudsdkcce.v3.model")
self.preset_headers = {'User-Agent': 'HuaweiCloud-SDK-Python'}
@classmethod
def new_builder(cls, clazz=None):
if clazz is None:
return ClientBuilder(cls)
if clazz.__name__ != "CceClient":
raise TypeError("client type error, support client type is CceClient")
return ClientBuilder(clazz)
2021-09-10 09:32:19 +00:00
def add_node(self, request):
"""纳管节点
2022-04-21 12:03:46 +00:00
该API用于在指定集群下纳管节点
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2021-09-10 09:32:19 +00:00
2022-04-21 12:03:46 +00:00
:param request: Request instance for AddNode
:type request: :class:`huaweicloudsdkcce.v3.AddNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.AddNodeResponse`
2021-09-10 09:32:19 +00:00
"""
return self.add_node_with_http_info(request)
def add_node_with_http_info(self, request):
all_params = ['cluster_id', 'add_node_list']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes/add',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='AddNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def awake_cluster(self, request):
"""集群唤醒
集群唤醒用于唤醒已休眠的集群唤醒后将继续收取控制节点资源费用
2022-04-21 12:03:46 +00:00
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for AwakeCluster
:type request: :class:`huaweicloudsdkcce.v3.AwakeClusterRequest`
:rtype: :class:`huaweicloudsdkcce.v3.AwakeClusterResponse`
"""
return self.awake_cluster_with_http_info(request)
def awake_cluster_with_http_info(self, request):
all_params = ['cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/operation/awake',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='AwakeClusterResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def create_addon_instance(self, request):
"""创建AddonInstance
2022-04-21 12:03:46 +00:00
根据提供的插件模板安装插件实例
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for CreateAddonInstance
:type request: :class:`huaweicloudsdkcce.v3.CreateAddonInstanceRequest`
:rtype: :class:`huaweicloudsdkcce.v3.CreateAddonInstanceResponse`
"""
return self.create_addon_instance_with_http_info(request)
def create_addon_instance_with_http_info(self, request):
all_params = ['create_addon_instance_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/addons',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='CreateAddonInstanceResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def create_cloud_persistent_volume_claims(self, request):
"""创建PVC
2022-04-21 12:03:46 +00:00
该API用于在指定的Namespace下通过云存储服务中的云存储EVSSFSOBS去创建PVCPersistentVolumeClaim
>存储管理的URL格式为https://{clusterid}.Endpoint/uri其中{clusterid}为集群IDuri为资源路径也即API访问的路径如果使用https://Endpoint/uri则必须指定请求header中的X-Cluster-ID参数
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for CreateCloudPersistentVolumeClaims
:type request: :class:`huaweicloudsdkcce.v3.CreateCloudPersistentVolumeClaimsRequest`
:rtype: :class:`huaweicloudsdkcce.v3.CreateCloudPersistentVolumeClaimsResponse`
"""
return self.create_cloud_persistent_volume_claims_with_http_info(request)
def create_cloud_persistent_volume_claims_with_http_info(self, request):
all_params = ['namespace', 'create_cloud_persistent_volume_claims_request_body', 'x_cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'namespace' in local_var_params:
path_params['namespace'] = local_var_params['namespace']
query_params = []
header_params = {}
if 'x_cluster_id' in local_var_params:
header_params['X-Cluster-ID'] = local_var_params['x_cluster_id']
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v1/namespaces/{namespace}/cloudpersistentvolumeclaims',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='CreateCloudPersistentVolumeClaimsResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def create_cluster(self, request):
"""创建集群
2022-04-21 12:03:46 +00:00
该API用于创建一个空集群即只有控制节点Master没有工作节点Node请在调用本接口完成集群创建之后通过[创建节点](cce_02_0242.xml)添加节点
> - 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
> - 调用该接口创建集群时默认不安装ICAgent若需安装ICAgent可在请求Body参数的annotations中加入\"cluster.install.addons.external/install\": \"[{\"addonTemplateName\":\"icagent\"}]\"的集群注解将在创建集群时自动安装ICAgentICAgent是应用性能管理APM的采集代理运行在应用所在的服务器上用于实时采集探针所获取的数据安装ICAgent是使用应用性能管理APM的前提
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for CreateCluster
:type request: :class:`huaweicloudsdkcce.v3.CreateClusterRequest`
:rtype: :class:`huaweicloudsdkcce.v3.CreateClusterResponse`
"""
return self.create_cluster_with_http_info(request)
def create_cluster_with_http_info(self, request):
all_params = ['create_cluster_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='CreateClusterResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def create_kubernetes_cluster_cert(self, request):
"""获取集群证书
该API用于获取指定集群的证书信息
2022-04-21 12:03:46 +00:00
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for CreateKubernetesClusterCert
:type request: :class:`huaweicloudsdkcce.v3.CreateKubernetesClusterCertRequest`
:rtype: :class:`huaweicloudsdkcce.v3.CreateKubernetesClusterCertResponse`
"""
return self.create_kubernetes_cluster_cert_with_http_info(request)
def create_kubernetes_cluster_cert_with_http_info(self, request):
all_params = ['cluster_id', 'create_kubernetes_cluster_cert_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
2021-07-09 10:57:08 +00:00
response_headers = ["Port-ID"]
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/clustercert',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='CreateKubernetesClusterCertResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def create_node(self, request):
"""创建节点
2022-04-21 12:03:46 +00:00
该API用于在指定集群下创建节点
> - 若无集群请先[创建集群](cce_02_0236.xml)
> - 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for CreateNode
:type request: :class:`huaweicloudsdkcce.v3.CreateNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.CreateNodeResponse`
"""
return self.create_node_with_http_info(request)
def create_node_with_http_info(self, request):
all_params = ['cluster_id', 'create_node_request_body', 'nodepool_scale_up']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
if 'nodepool_scale_up' in local_var_params:
query_params.append(('nodepoolScaleUp', local_var_params['nodepool_scale_up']))
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='CreateNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def create_node_pool(self, request):
"""创建节点池
2022-04-21 12:03:46 +00:00
该API用于在指定集群下创建节点池仅支持集群在处于可用扩容缩容状态时调用1.21版本的集群创建节点池时支持绑定安全组每个节点池最多绑定五个安全组更新节点池的安全组后只针对新创的pod生效建议驱逐节点上原有的pod
> 若无集群请先[创建集群](cce_02_0236.xml)
> 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for CreateNodePool
:type request: :class:`huaweicloudsdkcce.v3.CreateNodePoolRequest`
:rtype: :class:`huaweicloudsdkcce.v3.CreateNodePoolResponse`
"""
return self.create_node_pool_with_http_info(request)
def create_node_pool_with_http_info(self, request):
all_params = ['cluster_id', 'create_node_pool_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodepools',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='CreateNodePoolResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def delete_addon_instance(self, request):
"""删除AddonInstance
2022-04-21 12:03:46 +00:00
删除插件实例的功能
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for DeleteAddonInstance
:type request: :class:`huaweicloudsdkcce.v3.DeleteAddonInstanceRequest`
:rtype: :class:`huaweicloudsdkcce.v3.DeleteAddonInstanceResponse`
"""
return self.delete_addon_instance_with_http_info(request)
def delete_addon_instance_with_http_info(self, request):
all_params = ['id', 'cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'id' in local_var_params:
path_params['id'] = local_var_params['id']
query_params = []
if 'cluster_id' in local_var_params:
query_params.append(('cluster_id', local_var_params['cluster_id']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/addons/{id}',
method='DELETE',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='DeleteAddonInstanceResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def delete_cloud_persistent_volume_claims(self, request):
"""删除PVC
2022-04-21 12:03:46 +00:00
该API用于删除指定Namespace下的PVCPersistentVolumeClaim对象并可以选择保留后端的云存储
>存储管理的URL格式为https://{clusterid}.Endpoint/uri其中{clusterid}为集群IDuri为资源路径也即API访问的路径如果使用https://Endpoint/uri则必须指定请求header中的X-Cluster-ID参数
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for DeleteCloudPersistentVolumeClaims
:type request: :class:`huaweicloudsdkcce.v3.DeleteCloudPersistentVolumeClaimsRequest`
:rtype: :class:`huaweicloudsdkcce.v3.DeleteCloudPersistentVolumeClaimsResponse`
"""
return self.delete_cloud_persistent_volume_claims_with_http_info(request)
def delete_cloud_persistent_volume_claims_with_http_info(self, request):
all_params = ['name', 'namespace', 'delete_volume', 'storage_type', 'x_cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'name' in local_var_params:
path_params['name'] = local_var_params['name']
if 'namespace' in local_var_params:
path_params['namespace'] = local_var_params['namespace']
query_params = []
if 'delete_volume' in local_var_params:
query_params.append(('deleteVolume', local_var_params['delete_volume']))
if 'storage_type' in local_var_params:
query_params.append(('storageType', local_var_params['storage_type']))
header_params = {}
if 'x_cluster_id' in local_var_params:
header_params['X-Cluster-ID'] = local_var_params['x_cluster_id']
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v1/namespaces/{namespace}/cloudpersistentvolumeclaims/{name}',
method='DELETE',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='DeleteCloudPersistentVolumeClaimsResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def delete_cluster(self, request):
"""删除集群
2022-04-21 12:03:46 +00:00
该API用于删除一个指定的集群
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for DeleteCluster
:type request: :class:`huaweicloudsdkcce.v3.DeleteClusterRequest`
:rtype: :class:`huaweicloudsdkcce.v3.DeleteClusterResponse`
"""
return self.delete_cluster_with_http_info(request)
def delete_cluster_with_http_info(self, request):
2021-07-09 10:57:08 +00:00
all_params = ['cluster_id', 'delete_efs', 'delete_eni', 'delete_evs', 'delete_net', 'delete_obs', 'delete_sfs', 'tobedeleted']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
if 'delete_efs' in local_var_params:
query_params.append(('delete_efs', local_var_params['delete_efs']))
if 'delete_eni' in local_var_params:
query_params.append(('delete_eni', local_var_params['delete_eni']))
if 'delete_evs' in local_var_params:
query_params.append(('delete_evs', local_var_params['delete_evs']))
if 'delete_net' in local_var_params:
query_params.append(('delete_net', local_var_params['delete_net']))
if 'delete_obs' in local_var_params:
query_params.append(('delete_obs', local_var_params['delete_obs']))
if 'delete_sfs' in local_var_params:
query_params.append(('delete_sfs', local_var_params['delete_sfs']))
2021-07-09 10:57:08 +00:00
if 'tobedeleted' in local_var_params:
query_params.append(('tobedeleted', local_var_params['tobedeleted']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}',
method='DELETE',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='DeleteClusterResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def delete_node(self, request):
"""删除节点
2022-04-21 12:03:46 +00:00
该API用于删除指定的节点
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for DeleteNode
:type request: :class:`huaweicloudsdkcce.v3.DeleteNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.DeleteNodeResponse`
"""
return self.delete_node_with_http_info(request)
def delete_node_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'node_id', 'nodepool_scale_down']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
if 'node_id' in local_var_params:
path_params['node_id'] = local_var_params['node_id']
query_params = []
if 'nodepool_scale_down' in local_var_params:
query_params.append(('nodepoolScaleDown', local_var_params['nodepool_scale_down']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes/{node_id}',
method='DELETE',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='DeleteNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def delete_node_pool(self, request):
"""删除节点池
2022-04-21 12:03:46 +00:00
该API用于删除指定的节点池
> 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for DeleteNodePool
:type request: :class:`huaweicloudsdkcce.v3.DeleteNodePoolRequest`
:rtype: :class:`huaweicloudsdkcce.v3.DeleteNodePoolResponse`
"""
return self.delete_node_pool_with_http_info(request)
def delete_node_pool_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'nodepool_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
if 'nodepool_id' in local_var_params:
path_params['nodepool_id'] = local_var_params['nodepool_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodepools/{nodepool_id}',
method='DELETE',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='DeleteNodePoolResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def hibernate_cluster(self, request):
"""集群休眠
集群休眠用于将运行中的集群置于休眠状态休眠后将不再收取控制节点资源费用
2022-04-21 12:03:46 +00:00
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for HibernateCluster
:type request: :class:`huaweicloudsdkcce.v3.HibernateClusterRequest`
:rtype: :class:`huaweicloudsdkcce.v3.HibernateClusterResponse`
"""
return self.hibernate_cluster_with_http_info(request)
def hibernate_cluster_with_http_info(self, request):
all_params = ['cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/operation/hibernate',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='HibernateClusterResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def list_addon_instances(self, request):
"""获取AddonInstance列表
2022-04-21 12:03:46 +00:00
获取集群所有已安装插件实例
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ListAddonInstances
:type request: :class:`huaweicloudsdkcce.v3.ListAddonInstancesRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ListAddonInstancesResponse`
"""
return self.list_addon_instances_with_http_info(request)
def list_addon_instances_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
query_params = []
if 'cluster_id' in local_var_params:
query_params.append(('cluster_id', local_var_params['cluster_id']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/addons',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ListAddonInstancesResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def list_addon_templates(self, request):
"""查询AddonTemplates列表
2022-04-21 12:03:46 +00:00
插件模板查询接口查询插件信息
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ListAddonTemplates
:type request: :class:`huaweicloudsdkcce.v3.ListAddonTemplatesRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ListAddonTemplatesResponse`
"""
return self.list_addon_templates_with_http_info(request)
def list_addon_templates_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['addon_template_name']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
query_params = []
if 'addon_template_name' in local_var_params:
query_params.append(('addon_template_name', local_var_params['addon_template_name']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/addontemplates',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ListAddonTemplatesResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def list_clusters(self, request):
"""获取指定项目下的集群
该API用于获取指定项目下所有集群的详细信息
2022-04-21 12:03:46 +00:00
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ListClusters
:type request: :class:`huaweicloudsdkcce.v3.ListClustersRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ListClustersResponse`
"""
return self.list_clusters_with_http_info(request)
def list_clusters_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['detail', 'status', 'type', 'version']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
query_params = []
if 'detail' in local_var_params:
query_params.append(('detail', local_var_params['detail']))
if 'status' in local_var_params:
query_params.append(('status', local_var_params['status']))
if 'type' in local_var_params:
query_params.append(('type', local_var_params['type']))
if 'version' in local_var_params:
query_params.append(('version', local_var_params['version']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ListClustersResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def list_node_pools(self, request):
"""获取集群下所有节点池
2022-04-21 12:03:46 +00:00
该API用于获取集群下所有节点池
> - 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
> - nodepool是集群中具有相同配置的节点实例的子集
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ListNodePools
:type request: :class:`huaweicloudsdkcce.v3.ListNodePoolsRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ListNodePoolsResponse`
"""
return self.list_node_pools_with_http_info(request)
def list_node_pools_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'show_default_node_pool']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
if 'show_default_node_pool' in local_var_params:
query_params.append(('showDefaultNodePool', local_var_params['show_default_node_pool']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodepools',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ListNodePoolsResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def list_nodes(self, request):
"""获取集群下所有节点
2022-04-21 12:03:46 +00:00
该API用于通过集群ID获取指定集群下所有节点的详细信息
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ListNodes
:type request: :class:`huaweicloudsdkcce.v3.ListNodesRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ListNodesResponse`
"""
return self.list_nodes_with_http_info(request)
def list_nodes_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ListNodesResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
2021-07-09 10:57:08 +00:00
def migrate_node(self, request):
"""节点迁移
2022-04-21 12:03:46 +00:00
该API用于在指定集群下迁移节点到另一集群
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2021-07-09 10:57:08 +00:00
2022-04-21 12:03:46 +00:00
:param request: Request instance for MigrateNode
:type request: :class:`huaweicloudsdkcce.v3.MigrateNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.MigrateNodeResponse`
2021-07-09 10:57:08 +00:00
"""
return self.migrate_node_with_http_info(request)
def migrate_node_with_http_info(self, request):
all_params = ['cluster_id', 'target_cluster_id', 'migrate_nodes_task']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
if 'target_cluster_id' in local_var_params:
path_params['target_cluster_id'] = local_var_params['target_cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes/operation/migrateto/{target_cluster_id}',
method='PUT',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='MigrateNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def remove_node(self, request):
"""节点移除
2022-04-21 12:03:46 +00:00
该API用于在指定集群下移除节点
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2021-07-09 10:57:08 +00:00
2022-04-21 12:03:46 +00:00
:param request: Request instance for RemoveNode
:type request: :class:`huaweicloudsdkcce.v3.RemoveNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.RemoveNodeResponse`
2021-07-09 10:57:08 +00:00
"""
return self.remove_node_with_http_info(request)
def remove_node_with_http_info(self, request):
all_params = ['cluster_id', 'remove_nodes_task']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes/operation/remove',
method='PUT',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='RemoveNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
2021-09-10 09:32:19 +00:00
def reset_node(self, request):
"""重置节点
2022-04-21 12:03:46 +00:00
该API用于在指定集群下重置节点
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2021-09-10 09:32:19 +00:00
2022-04-21 12:03:46 +00:00
:param request: Request instance for ResetNode
:type request: :class:`huaweicloudsdkcce.v3.ResetNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ResetNodeResponse`
2021-09-10 09:32:19 +00:00
"""
return self.reset_node_with_http_info(request)
def reset_node_with_http_info(self, request):
all_params = ['cluster_id', 'reset_node_list']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes/reset',
method='POST',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ResetNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def show_addon_instance(self, request):
"""获取AddonInstance详情
2022-04-21 12:03:46 +00:00
获取插件实例详情
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ShowAddonInstance
:type request: :class:`huaweicloudsdkcce.v3.ShowAddonInstanceRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ShowAddonInstanceResponse`
"""
return self.show_addon_instance_with_http_info(request)
def show_addon_instance_with_http_info(self, request):
all_params = ['id', 'cluster_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'id' in local_var_params:
path_params['id'] = local_var_params['id']
query_params = []
if 'cluster_id' in local_var_params:
query_params.append(('cluster_id', local_var_params['cluster_id']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/addons/{id}',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ShowAddonInstanceResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def show_cluster(self, request):
"""获取指定的集群
2022-04-21 12:03:46 +00:00
该API用于获取指定集群的详细信息
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ShowCluster
:type request: :class:`huaweicloudsdkcce.v3.ShowClusterRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ShowClusterResponse`
"""
return self.show_cluster_with_http_info(request)
def show_cluster_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'detail']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
if 'detail' in local_var_params:
query_params.append(('detail', local_var_params['detail']))
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ShowClusterResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def show_job(self, request):
"""获取任务信息
2022-04-21 12:03:46 +00:00
该API用于获取任务信息通过某一任务请求下发后返回的jobID来查询指定任务的进度
> - 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
> - 该接口通常使用场景为
> - 创建删除集群时查询相应任务的进度
> - 创建删除节点时查询相应任务的进度
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ShowJob
:type request: :class:`huaweicloudsdkcce.v3.ShowJobRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ShowJobResponse`
"""
return self.show_job_with_http_info(request)
def show_job_with_http_info(self, request):
all_params = ['job_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'job_id' in local_var_params:
path_params['job_id'] = local_var_params['job_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/jobs/{job_id}',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ShowJobResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def show_node(self, request):
"""获取指定的节点
2022-04-21 12:03:46 +00:00
该API用于通过节点ID获取指定节点的详细信息
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ShowNode
:type request: :class:`huaweicloudsdkcce.v3.ShowNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ShowNodeResponse`
"""
return self.show_node_with_http_info(request)
def show_node_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'node_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
if 'node_id' in local_var_params:
path_params['node_id'] = local_var_params['node_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes/{node_id}',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ShowNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def show_node_pool(self, request):
"""获取指定的节点池
2022-04-21 12:03:46 +00:00
该API用于获取指定节点池的详细信息
> 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for ShowNodePool
:type request: :class:`huaweicloudsdkcce.v3.ShowNodePoolRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ShowNodePoolResponse`
"""
return self.show_node_pool_with_http_info(request)
def show_node_pool_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'nodepool_id']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
if 'nodepool_id' in local_var_params:
path_params['nodepool_id'] = local_var_params['nodepool_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodepools/{nodepool_id}',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ShowNodePoolResponse',
response_headers=response_headers,
2022-01-10 09:08:01 +00:00
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def show_quotas(self, request):
"""查询CCE服务下的资源配额。
该API用于查询CCE服务下的资源配额
2022-04-21 12:03:46 +00:00
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-01-10 09:08:01 +00:00
2022-04-21 12:03:46 +00:00
:param request: Request instance for ShowQuotas
:type request: :class:`huaweicloudsdkcce.v3.ShowQuotasRequest`
:rtype: :class:`huaweicloudsdkcce.v3.ShowQuotasResponse`
2022-01-10 09:08:01 +00:00
"""
return self.show_quotas_with_http_info(request)
def show_quotas_with_http_info(self, request):
all_params = []
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
query_params = []
header_params = {}
form_params = {}
body_params = None
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/quotas',
method='GET',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='ShowQuotasResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def update_addon_instance(self, request):
"""更新AddonInstance
2022-04-21 12:03:46 +00:00
更新插件实例的功能
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for UpdateAddonInstance
:type request: :class:`huaweicloudsdkcce.v3.UpdateAddonInstanceRequest`
:rtype: :class:`huaweicloudsdkcce.v3.UpdateAddonInstanceResponse`
"""
return self.update_addon_instance_with_http_info(request)
def update_addon_instance_with_http_info(self, request):
all_params = ['id', 'update_addon_instance_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'id' in local_var_params:
path_params['id'] = local_var_params['id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/addons/{id}',
method='PUT',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='UpdateAddonInstanceResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def update_cluster(self, request):
"""更新指定的集群
2022-04-21 12:03:46 +00:00
该API用于更新指定的集群
>集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for UpdateCluster
:type request: :class:`huaweicloudsdkcce.v3.UpdateClusterRequest`
:rtype: :class:`huaweicloudsdkcce.v3.UpdateClusterResponse`
"""
return self.update_cluster_with_http_info(request)
def update_cluster_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'update_cluster_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}',
method='PUT',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='UpdateClusterResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def update_node(self, request):
"""更新指定的节点
2022-04-21 12:03:46 +00:00
该API用于更新指定的节点
> - 当前仅支持更新metadata下的name字段即节点的名字
> - 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for UpdateNode
:type request: :class:`huaweicloudsdkcce.v3.UpdateNodeRequest`
:rtype: :class:`huaweicloudsdkcce.v3.UpdateNodeResponse`
"""
return self.update_node_with_http_info(request)
def update_node_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'node_id', 'update_node_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
if 'node_id' in local_var_params:
path_params['node_id'] = local_var_params['node_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodes/{node_id}',
method='PUT',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='UpdateNodeResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def update_node_pool(self, request):
"""更新指定节点池
2022-04-21 12:03:46 +00:00
该API用于更新指定的节点池仅支持集群在处于可用扩容缩容状态时调用
> - 集群管理的URL格式为https://Endpoint/uri其中uri为资源路径也即API访问的路径
> - 当前仅支持更新节点池名称spec下的initialNodeCountk8sTags
taintsloginuserTags与节点池的扩缩容配置相关字段若此次更新未设置相关值默认更新为初始值
详细说明请参考华为云API Explorer
Please refer to Huawei cloud API Explorer for details.
2022-04-21 12:03:46 +00:00
:param request: Request instance for UpdateNodePool
:type request: :class:`huaweicloudsdkcce.v3.UpdateNodePoolRequest`
:rtype: :class:`huaweicloudsdkcce.v3.UpdateNodePoolResponse`
"""
return self.update_node_pool_with_http_info(request)
def update_node_pool_with_http_info(self, request):
2021-06-25 11:57:33 +00:00
all_params = ['cluster_id', 'nodepool_id', 'update_node_pool_request_body']
local_var_params = {}
for attr in request.attribute_map:
if hasattr(request, attr):
local_var_params[attr] = getattr(request, attr)
collection_formats = {}
path_params = {}
if 'cluster_id' in local_var_params:
path_params['cluster_id'] = local_var_params['cluster_id']
if 'nodepool_id' in local_var_params:
path_params['nodepool_id'] = local_var_params['nodepool_id']
query_params = []
header_params = {}
form_params = {}
body_params = None
if 'body' in local_var_params:
body_params = local_var_params['body']
if isinstance(request, SdkStreamRequest):
body_params = request.get_file_stream()
response_headers = []
header_params['Content-Type'] = http_utils.select_header_content_type(
['application/json'])
auth_settings = []
return self.call_api(
resource_path='/api/v3/projects/{project_id}/clusters/{cluster_id}/nodepools/{nodepool_id}',
method='PUT',
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body_params,
post_params=form_params,
response_type='UpdateNodePoolResponse',
response_headers=response_headers,
auth_settings=auth_settings,
collection_formats=collection_formats,
request_type=request.__class__.__name__)
def call_api(self, resource_path, method, path_params=None, query_params=None, header_params=None, body=None,
post_params=None, response_type=None, response_headers=None, auth_settings=None,
collection_formats=None, request_type=None):
"""Makes the HTTP request and returns deserialized data.
:param resource_path: Path to method endpoint.
:param method: Method to call.
:param path_params: Path parameters in the url.
:param query_params: Query parameters in the url.
:param header_params: Header parameters to be placed in the request header.
:param body: Request body.
:param post_params dict: Request post form parameters,
for `application/x-www-form-urlencoded`, `multipart/form-data`.
:param auth_settings list: Auth Settings names for the request.
:param response_type: Response data type.
:param response_headers: Header should be added to response data.
:param collection_formats: dict of collection formats for path, query,
header, and post parameters.
:param request_type: Request data type.
:return:
Return the response directly.
"""
return self.do_http_request(
method=method,
resource_path=resource_path,
path_params=path_params,
query_params=query_params,
header_params=header_params,
body=body,
post_params=post_params,
response_type=response_type,
response_headers=response_headers,
collection_formats=collection_formats,
request_type=request_type)