cs

package
v0.0.0-...-dd20015 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 20, 2021 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddAgilityClusterRequest

type AddAgilityClusterRequest struct {
	*requests.RoaRequest
}

AddAgilityClusterRequest is the request struct for api AddAgilityCluster

func CreateAddAgilityClusterRequest

func CreateAddAgilityClusterRequest() (request *AddAgilityClusterRequest)

CreateAddAgilityClusterRequest creates a request to invoke AddAgilityCluster API

type AddAgilityClusterResponse

type AddAgilityClusterResponse struct {
	*responses.BaseResponse
}

AddAgilityClusterResponse is the response struct for api AddAgilityCluster

func CreateAddAgilityClusterResponse

func CreateAddAgilityClusterResponse() (response *AddAgilityClusterResponse)

CreateAddAgilityClusterResponse creates a response to parse from AddAgilityCluster response

type AttachInstancesRequest

type AttachInstancesRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

AttachInstancesRequest is the request struct for api AttachInstances

func CreateAttachInstancesRequest

func CreateAttachInstancesRequest() (request *AttachInstancesRequest)

CreateAttachInstancesRequest creates a request to invoke AttachInstances API

type AttachInstancesResponse

type AttachInstancesResponse struct {
	*responses.BaseResponse
}

AttachInstancesResponse is the response struct for api AttachInstances

func CreateAttachInstancesResponse

func CreateAttachInstancesResponse() (response *AttachInstancesResponse)

CreateAttachInstancesResponse creates a response to parse from AttachInstances response

type CallBackAgilityClusterRequest

type CallBackAgilityClusterRequest struct {
	*requests.RoaRequest
	Token   string `position:"Path" name:"Token"`
	ReqOnce string `position:"Path" name:"ReqOnce"`
}

CallBackAgilityClusterRequest is the request struct for api CallBackAgilityCluster

func CreateCallBackAgilityClusterRequest

func CreateCallBackAgilityClusterRequest() (request *CallBackAgilityClusterRequest)

CreateCallBackAgilityClusterRequest creates a request to invoke CallBackAgilityCluster API

type CallBackAgilityClusterResponse

type CallBackAgilityClusterResponse struct {
	*responses.BaseResponse
}

CallBackAgilityClusterResponse is the response struct for api CallBackAgilityCluster

func CreateCallBackAgilityClusterResponse

func CreateCallBackAgilityClusterResponse() (response *CallBackAgilityClusterResponse)

CreateCallBackAgilityClusterResponse creates a response to parse from CallBackAgilityCluster response

type CallbackClusterTokenRequest

type CallbackClusterTokenRequest struct {
	*requests.RoaRequest
	Token   string `position:"Path" name:"Token"`
	ReqOnce string `position:"Path" name:"ReqOnce"`
}

CallbackClusterTokenRequest is the request struct for api CallbackClusterToken

func CreateCallbackClusterTokenRequest

func CreateCallbackClusterTokenRequest() (request *CallbackClusterTokenRequest)

CreateCallbackClusterTokenRequest creates a request to invoke CallbackClusterToken API

type CallbackClusterTokenResponse

type CallbackClusterTokenResponse struct {
	*responses.BaseResponse
}

CallbackClusterTokenResponse is the response struct for api CallbackClusterToken

func CreateCallbackClusterTokenResponse

func CreateCallbackClusterTokenResponse() (response *CallbackClusterTokenResponse)

CreateCallbackClusterTokenResponse creates a response to parse from CallbackClusterToken response

type CheckAliyunCSServiceRoleRequest

type CheckAliyunCSServiceRoleRequest struct {
	*requests.RoaRequest
}

CheckAliyunCSServiceRoleRequest is the request struct for api CheckAliyunCSServiceRole

func CreateCheckAliyunCSServiceRoleRequest

func CreateCheckAliyunCSServiceRoleRequest() (request *CheckAliyunCSServiceRoleRequest)

CreateCheckAliyunCSServiceRoleRequest creates a request to invoke CheckAliyunCSServiceRole API

type CheckAliyunCSServiceRoleResponse

type CheckAliyunCSServiceRoleResponse struct {
	*responses.BaseResponse
}

CheckAliyunCSServiceRoleResponse is the response struct for api CheckAliyunCSServiceRole

func CreateCheckAliyunCSServiceRoleResponse

func CreateCheckAliyunCSServiceRoleResponse() (response *CheckAliyunCSServiceRoleResponse)

CreateCheckAliyunCSServiceRoleResponse creates a response to parse from CheckAliyunCSServiceRole response

type Client

type Client struct {
	sdk.Client
}

Client is the sdk client struct, each func corresponds to an OpenAPI

func NewClient

func NewClient() (client *Client, err error)

NewClient creates a sdk client with environment variables

func NewClientWithAccessKey

func NewClientWithAccessKey(regionId, accessKeyId, accessKeySecret string) (client *Client, err error)

NewClientWithAccessKey is a shortcut to create sdk client with accesskey usage: https://help.aliyun.com/document_detail/66217.html

func NewClientWithEcsRamRole

func NewClientWithEcsRamRole(regionId string, roleName string) (client *Client, err error)

NewClientWithEcsRamRole is a shortcut to create sdk client with ecs ram role usage: https://help.aliyun.com/document_detail/66223.html

func NewClientWithOptions

func NewClientWithOptions(regionId string, config *sdk.Config, credential auth.Credential) (client *Client, err error)

NewClientWithOptions creates a sdk client with regionId/sdkConfig/credential this is the common api to create a sdk client

func NewClientWithRamRoleArn

func NewClientWithRamRoleArn(regionId string, accessKeyId, accessKeySecret, roleArn, roleSessionName string) (client *Client, err error)

NewClientWithRamRoleArn is a shortcut to create sdk client with ram roleArn usage: https://help.aliyun.com/document_detail/66222.html

func NewClientWithRsaKeyPair

func NewClientWithRsaKeyPair(regionId string, publicKeyId, privateKey string, sessionExpiration int) (client *Client, err error)

NewClientWithRsaKeyPair is a shortcut to create sdk client with rsa key pair attention: rsa key pair auth is only Japan regions available

func NewClientWithStsToken

func NewClientWithStsToken(regionId, stsAccessKeyId, stsAccessKeySecret, stsToken string) (client *Client, err error)

NewClientWithStsToken is a shortcut to create sdk client with sts token usage: https://help.aliyun.com/document_detail/66222.html

func (*Client) AddAgilityCluster

func (client *Client) AddAgilityCluster(request *AddAgilityClusterRequest) (response *AddAgilityClusterResponse, err error)

AddAgilityCluster invokes the cs.AddAgilityCluster API synchronously api document: https://help.aliyun.com/api/cs/addagilitycluster.html

func (*Client) AddAgilityClusterWithCallback

func (client *Client) AddAgilityClusterWithCallback(request *AddAgilityClusterRequest, callback func(response *AddAgilityClusterResponse, err error)) <-chan int

AddAgilityClusterWithCallback invokes the cs.AddAgilityCluster API asynchronously api document: https://help.aliyun.com/api/cs/addagilitycluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) AddAgilityClusterWithChan

func (client *Client) AddAgilityClusterWithChan(request *AddAgilityClusterRequest) (<-chan *AddAgilityClusterResponse, <-chan error)

AddAgilityClusterWithChan invokes the cs.AddAgilityCluster API asynchronously api document: https://help.aliyun.com/api/cs/addagilitycluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) AttachInstances

func (client *Client) AttachInstances(request *AttachInstancesRequest) (response *AttachInstancesResponse, err error)

AttachInstances invokes the cs.AttachInstances API synchronously api document: https://help.aliyun.com/api/cs/attachinstances.html

func (*Client) AttachInstancesWithCallback

func (client *Client) AttachInstancesWithCallback(request *AttachInstancesRequest, callback func(response *AttachInstancesResponse, err error)) <-chan int

AttachInstancesWithCallback invokes the cs.AttachInstances API asynchronously api document: https://help.aliyun.com/api/cs/attachinstances.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) AttachInstancesWithChan

func (client *Client) AttachInstancesWithChan(request *AttachInstancesRequest) (<-chan *AttachInstancesResponse, <-chan error)

AttachInstancesWithChan invokes the cs.AttachInstances API asynchronously api document: https://help.aliyun.com/api/cs/attachinstances.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CallBackAgilityCluster

func (client *Client) CallBackAgilityCluster(request *CallBackAgilityClusterRequest) (response *CallBackAgilityClusterResponse, err error)

CallBackAgilityCluster invokes the cs.CallBackAgilityCluster API synchronously api document: https://help.aliyun.com/api/cs/callbackagilitycluster.html

func (*Client) CallBackAgilityClusterWithCallback

func (client *Client) CallBackAgilityClusterWithCallback(request *CallBackAgilityClusterRequest, callback func(response *CallBackAgilityClusterResponse, err error)) <-chan int

CallBackAgilityClusterWithCallback invokes the cs.CallBackAgilityCluster API asynchronously api document: https://help.aliyun.com/api/cs/callbackagilitycluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CallBackAgilityClusterWithChan

func (client *Client) CallBackAgilityClusterWithChan(request *CallBackAgilityClusterRequest) (<-chan *CallBackAgilityClusterResponse, <-chan error)

CallBackAgilityClusterWithChan invokes the cs.CallBackAgilityCluster API asynchronously api document: https://help.aliyun.com/api/cs/callbackagilitycluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CallbackClusterToken

func (client *Client) CallbackClusterToken(request *CallbackClusterTokenRequest) (response *CallbackClusterTokenResponse, err error)

CallbackClusterToken invokes the cs.CallbackClusterToken API synchronously api document: https://help.aliyun.com/api/cs/callbackclustertoken.html

func (*Client) CallbackClusterTokenWithCallback

func (client *Client) CallbackClusterTokenWithCallback(request *CallbackClusterTokenRequest, callback func(response *CallbackClusterTokenResponse, err error)) <-chan int

CallbackClusterTokenWithCallback invokes the cs.CallbackClusterToken API asynchronously api document: https://help.aliyun.com/api/cs/callbackclustertoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CallbackClusterTokenWithChan

func (client *Client) CallbackClusterTokenWithChan(request *CallbackClusterTokenRequest) (<-chan *CallbackClusterTokenResponse, <-chan error)

CallbackClusterTokenWithChan invokes the cs.CallbackClusterToken API asynchronously api document: https://help.aliyun.com/api/cs/callbackclustertoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CheckAliyunCSServiceRole

func (client *Client) CheckAliyunCSServiceRole(request *CheckAliyunCSServiceRoleRequest) (response *CheckAliyunCSServiceRoleResponse, err error)

CheckAliyunCSServiceRole invokes the cs.CheckAliyunCSServiceRole API synchronously api document: https://help.aliyun.com/api/cs/checkaliyuncsservicerole.html

func (*Client) CheckAliyunCSServiceRoleWithCallback

func (client *Client) CheckAliyunCSServiceRoleWithCallback(request *CheckAliyunCSServiceRoleRequest, callback func(response *CheckAliyunCSServiceRoleResponse, err error)) <-chan int

CheckAliyunCSServiceRoleWithCallback invokes the cs.CheckAliyunCSServiceRole API asynchronously api document: https://help.aliyun.com/api/cs/checkaliyuncsservicerole.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CheckAliyunCSServiceRoleWithChan

func (client *Client) CheckAliyunCSServiceRoleWithChan(request *CheckAliyunCSServiceRoleRequest) (<-chan *CheckAliyunCSServiceRoleResponse, <-chan error)

CheckAliyunCSServiceRoleWithChan invokes the cs.CheckAliyunCSServiceRole API asynchronously api document: https://help.aliyun.com/api/cs/checkaliyuncsservicerole.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CreateCluster

func (client *Client) CreateCluster(request *CreateClusterRequest) (response *CreateClusterResponse, err error)

CreateCluster invokes the cs.CreateCluster API synchronously api document: https://help.aliyun.com/api/cs/createcluster.html

func (*Client) CreateClusterToken

func (client *Client) CreateClusterToken(request *CreateClusterTokenRequest) (response *CreateClusterTokenResponse, err error)

CreateClusterToken invokes the cs.CreateClusterToken API synchronously api document: https://help.aliyun.com/api/cs/createclustertoken.html

func (*Client) CreateClusterTokenWithCallback

func (client *Client) CreateClusterTokenWithCallback(request *CreateClusterTokenRequest, callback func(response *CreateClusterTokenResponse, err error)) <-chan int

CreateClusterTokenWithCallback invokes the cs.CreateClusterToken API asynchronously api document: https://help.aliyun.com/api/cs/createclustertoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CreateClusterTokenWithChan

func (client *Client) CreateClusterTokenWithChan(request *CreateClusterTokenRequest) (<-chan *CreateClusterTokenResponse, <-chan error)

CreateClusterTokenWithChan invokes the cs.CreateClusterToken API asynchronously api document: https://help.aliyun.com/api/cs/createclustertoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CreateClusterWithCallback

func (client *Client) CreateClusterWithCallback(request *CreateClusterRequest, callback func(response *CreateClusterResponse, err error)) <-chan int

CreateClusterWithCallback invokes the cs.CreateCluster API asynchronously api document: https://help.aliyun.com/api/cs/createcluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CreateClusterWithChan

func (client *Client) CreateClusterWithChan(request *CreateClusterRequest) (<-chan *CreateClusterResponse, <-chan error)

CreateClusterWithChan invokes the cs.CreateCluster API asynchronously api document: https://help.aliyun.com/api/cs/createcluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CreateTemplate

func (client *Client) CreateTemplate(request *CreateTemplateRequest) (response *CreateTemplateResponse, err error)

CreateTemplate invokes the cs.CreateTemplate API synchronously api document: https://help.aliyun.com/api/cs/createtemplate.html

func (*Client) CreateTemplateWithCallback

func (client *Client) CreateTemplateWithCallback(request *CreateTemplateRequest, callback func(response *CreateTemplateResponse, err error)) <-chan int

CreateTemplateWithCallback invokes the cs.CreateTemplate API asynchronously api document: https://help.aliyun.com/api/cs/createtemplate.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) CreateTemplateWithChan

func (client *Client) CreateTemplateWithChan(request *CreateTemplateRequest) (<-chan *CreateTemplateResponse, <-chan error)

CreateTemplateWithChan invokes the cs.CreateTemplate API asynchronously api document: https://help.aliyun.com/api/cs/createtemplate.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DeleteCluster

func (client *Client) DeleteCluster(request *DeleteClusterRequest) (response *DeleteClusterResponse, err error)

DeleteCluster invokes the cs.DeleteCluster API synchronously api document: https://help.aliyun.com/api/cs/deletecluster.html

func (*Client) DeleteClusterNode

func (client *Client) DeleteClusterNode(request *DeleteClusterNodeRequest) (response *DeleteClusterNodeResponse, err error)

DeleteClusterNode invokes the cs.DeleteClusterNode API synchronously api document: https://help.aliyun.com/api/cs/deleteclusternode.html

func (*Client) DeleteClusterNodeWithCallback

func (client *Client) DeleteClusterNodeWithCallback(request *DeleteClusterNodeRequest, callback func(response *DeleteClusterNodeResponse, err error)) <-chan int

DeleteClusterNodeWithCallback invokes the cs.DeleteClusterNode API asynchronously api document: https://help.aliyun.com/api/cs/deleteclusternode.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DeleteClusterNodeWithChan

func (client *Client) DeleteClusterNodeWithChan(request *DeleteClusterNodeRequest) (<-chan *DeleteClusterNodeResponse, <-chan error)

DeleteClusterNodeWithChan invokes the cs.DeleteClusterNode API asynchronously api document: https://help.aliyun.com/api/cs/deleteclusternode.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DeleteClusterWithCallback

func (client *Client) DeleteClusterWithCallback(request *DeleteClusterRequest, callback func(response *DeleteClusterResponse, err error)) <-chan int

DeleteClusterWithCallback invokes the cs.DeleteCluster API asynchronously api document: https://help.aliyun.com/api/cs/deletecluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DeleteClusterWithChan

func (client *Client) DeleteClusterWithChan(request *DeleteClusterRequest) (<-chan *DeleteClusterResponse, <-chan error)

DeleteClusterWithChan invokes the cs.DeleteCluster API asynchronously api document: https://help.aliyun.com/api/cs/deletecluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeAgilityTunnelAgentInfo

func (client *Client) DescribeAgilityTunnelAgentInfo(request *DescribeAgilityTunnelAgentInfoRequest) (response *DescribeAgilityTunnelAgentInfoResponse, err error)

DescribeAgilityTunnelAgentInfo invokes the cs.DescribeAgilityTunnelAgentInfo API synchronously api document: https://help.aliyun.com/api/cs/describeagilitytunnelagentinfo.html

func (*Client) DescribeAgilityTunnelAgentInfoWithCallback

func (client *Client) DescribeAgilityTunnelAgentInfoWithCallback(request *DescribeAgilityTunnelAgentInfoRequest, callback func(response *DescribeAgilityTunnelAgentInfoResponse, err error)) <-chan int

DescribeAgilityTunnelAgentInfoWithCallback invokes the cs.DescribeAgilityTunnelAgentInfo API asynchronously api document: https://help.aliyun.com/api/cs/describeagilitytunnelagentinfo.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeAgilityTunnelAgentInfoWithChan

func (client *Client) DescribeAgilityTunnelAgentInfoWithChan(request *DescribeAgilityTunnelAgentInfoRequest) (<-chan *DescribeAgilityTunnelAgentInfoResponse, <-chan error)

DescribeAgilityTunnelAgentInfoWithChan invokes the cs.DescribeAgilityTunnelAgentInfo API asynchronously api document: https://help.aliyun.com/api/cs/describeagilitytunnelagentinfo.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeAgilityTunnelCerts

func (client *Client) DescribeAgilityTunnelCerts(request *DescribeAgilityTunnelCertsRequest) (response *DescribeAgilityTunnelCertsResponse, err error)

DescribeAgilityTunnelCerts invokes the cs.DescribeAgilityTunnelCerts API synchronously api document: https://help.aliyun.com/api/cs/describeagilitytunnelcerts.html

func (*Client) DescribeAgilityTunnelCertsWithCallback

func (client *Client) DescribeAgilityTunnelCertsWithCallback(request *DescribeAgilityTunnelCertsRequest, callback func(response *DescribeAgilityTunnelCertsResponse, err error)) <-chan int

DescribeAgilityTunnelCertsWithCallback invokes the cs.DescribeAgilityTunnelCerts API asynchronously api document: https://help.aliyun.com/api/cs/describeagilitytunnelcerts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeAgilityTunnelCertsWithChan

func (client *Client) DescribeAgilityTunnelCertsWithChan(request *DescribeAgilityTunnelCertsRequest) (<-chan *DescribeAgilityTunnelCertsResponse, <-chan error)

DescribeAgilityTunnelCertsWithChan invokes the cs.DescribeAgilityTunnelCerts API asynchronously api document: https://help.aliyun.com/api/cs/describeagilitytunnelcerts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeApiVersion

func (client *Client) DescribeApiVersion(request *DescribeApiVersionRequest) (response *DescribeApiVersionResponse, err error)

DescribeApiVersion invokes the cs.DescribeApiVersion API synchronously api document: https://help.aliyun.com/api/cs/describeapiversion.html

func (*Client) DescribeApiVersionWithCallback

func (client *Client) DescribeApiVersionWithCallback(request *DescribeApiVersionRequest, callback func(response *DescribeApiVersionResponse, err error)) <-chan int

DescribeApiVersionWithCallback invokes the cs.DescribeApiVersion API asynchronously api document: https://help.aliyun.com/api/cs/describeapiversion.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeApiVersionWithChan

func (client *Client) DescribeApiVersionWithChan(request *DescribeApiVersionRequest) (<-chan *DescribeApiVersionResponse, <-chan error)

DescribeApiVersionWithChan invokes the cs.DescribeApiVersion API asynchronously api document: https://help.aliyun.com/api/cs/describeapiversion.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterCerts

func (client *Client) DescribeClusterCerts(request *DescribeClusterCertsRequest) (response *DescribeClusterCertsResponse, err error)

DescribeClusterCerts invokes the cs.DescribeClusterCerts API synchronously api document: https://help.aliyun.com/api/cs/describeclustercerts.html

func (*Client) DescribeClusterCertsWithCallback

func (client *Client) DescribeClusterCertsWithCallback(request *DescribeClusterCertsRequest, callback func(response *DescribeClusterCertsResponse, err error)) <-chan int

DescribeClusterCertsWithCallback invokes the cs.DescribeClusterCerts API asynchronously api document: https://help.aliyun.com/api/cs/describeclustercerts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterCertsWithChan

func (client *Client) DescribeClusterCertsWithChan(request *DescribeClusterCertsRequest) (<-chan *DescribeClusterCertsResponse, <-chan error)

DescribeClusterCertsWithChan invokes the cs.DescribeClusterCerts API asynchronously api document: https://help.aliyun.com/api/cs/describeclustercerts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterDetail

func (client *Client) DescribeClusterDetail(request *DescribeClusterDetailRequest) (response *DescribeClusterDetailResponse, err error)

DescribeClusterDetail invokes the cs.DescribeClusterDetail API synchronously api document: https://help.aliyun.com/api/cs/describeclusterdetail.html

func (*Client) DescribeClusterDetailWithCallback

func (client *Client) DescribeClusterDetailWithCallback(request *DescribeClusterDetailRequest, callback func(response *DescribeClusterDetailResponse, err error)) <-chan int

DescribeClusterDetailWithCallback invokes the cs.DescribeClusterDetail API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterdetail.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterDetailWithChan

func (client *Client) DescribeClusterDetailWithChan(request *DescribeClusterDetailRequest) (<-chan *DescribeClusterDetailResponse, <-chan error)

DescribeClusterDetailWithChan invokes the cs.DescribeClusterDetail API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterdetail.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterHosts

func (client *Client) DescribeClusterHosts(request *DescribeClusterHostsRequest) (response *DescribeClusterHostsResponse, err error)

DescribeClusterHosts invokes the cs.DescribeClusterHosts API synchronously api document: https://help.aliyun.com/api/cs/describeclusterhosts.html

func (*Client) DescribeClusterHostsWithCallback

func (client *Client) DescribeClusterHostsWithCallback(request *DescribeClusterHostsRequest, callback func(response *DescribeClusterHostsResponse, err error)) <-chan int

DescribeClusterHostsWithCallback invokes the cs.DescribeClusterHosts API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterhosts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterHostsWithChan

func (client *Client) DescribeClusterHostsWithChan(request *DescribeClusterHostsRequest) (<-chan *DescribeClusterHostsResponse, <-chan error)

DescribeClusterHostsWithChan invokes the cs.DescribeClusterHosts API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterhosts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterLogs

func (client *Client) DescribeClusterLogs(request *DescribeClusterLogsRequest) (response *DescribeClusterLogsResponse, err error)

DescribeClusterLogs invokes the cs.DescribeClusterLogs API synchronously api document: https://help.aliyun.com/api/cs/describeclusterlogs.html

func (*Client) DescribeClusterLogsWithCallback

func (client *Client) DescribeClusterLogsWithCallback(request *DescribeClusterLogsRequest, callback func(response *DescribeClusterLogsResponse, err error)) <-chan int

DescribeClusterLogsWithCallback invokes the cs.DescribeClusterLogs API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterlogs.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterLogsWithChan

func (client *Client) DescribeClusterLogsWithChan(request *DescribeClusterLogsRequest) (<-chan *DescribeClusterLogsResponse, <-chan error)

DescribeClusterLogsWithChan invokes the cs.DescribeClusterLogs API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterlogs.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterNodeInfo

func (client *Client) DescribeClusterNodeInfo(request *DescribeClusterNodeInfoRequest) (response *DescribeClusterNodeInfoResponse, err error)

DescribeClusterNodeInfo invokes the cs.DescribeClusterNodeInfo API synchronously api document: https://help.aliyun.com/api/cs/describeclusternodeinfo.html

func (*Client) DescribeClusterNodeInfoWithCallback

func (client *Client) DescribeClusterNodeInfoWithCallback(request *DescribeClusterNodeInfoRequest, callback func(response *DescribeClusterNodeInfoResponse, err error)) <-chan int

DescribeClusterNodeInfoWithCallback invokes the cs.DescribeClusterNodeInfo API asynchronously api document: https://help.aliyun.com/api/cs/describeclusternodeinfo.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterNodeInfoWithChan

func (client *Client) DescribeClusterNodeInfoWithChan(request *DescribeClusterNodeInfoRequest) (<-chan *DescribeClusterNodeInfoResponse, <-chan error)

DescribeClusterNodeInfoWithChan invokes the cs.DescribeClusterNodeInfo API asynchronously api document: https://help.aliyun.com/api/cs/describeclusternodeinfo.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterNodeInfoWithInstance

func (client *Client) DescribeClusterNodeInfoWithInstance(request *DescribeClusterNodeInfoWithInstanceRequest) (response *DescribeClusterNodeInfoWithInstanceResponse, err error)

DescribeClusterNodeInfoWithInstance invokes the cs.DescribeClusterNodeInfoWithInstance API synchronously api document: https://help.aliyun.com/api/cs/describeclusternodeinfowithinstance.html

func (*Client) DescribeClusterNodeInfoWithInstanceWithCallback

func (client *Client) DescribeClusterNodeInfoWithInstanceWithCallback(request *DescribeClusterNodeInfoWithInstanceRequest, callback func(response *DescribeClusterNodeInfoWithInstanceResponse, err error)) <-chan int

DescribeClusterNodeInfoWithInstanceWithCallback invokes the cs.DescribeClusterNodeInfoWithInstance API asynchronously api document: https://help.aliyun.com/api/cs/describeclusternodeinfowithinstance.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterNodeInfoWithInstanceWithChan

func (client *Client) DescribeClusterNodeInfoWithInstanceWithChan(request *DescribeClusterNodeInfoWithInstanceRequest) (<-chan *DescribeClusterNodeInfoWithInstanceResponse, <-chan error)

DescribeClusterNodeInfoWithInstanceWithChan invokes the cs.DescribeClusterNodeInfoWithInstance API asynchronously api document: https://help.aliyun.com/api/cs/describeclusternodeinfowithinstance.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterNodes

func (client *Client) DescribeClusterNodes(request *DescribeClusterNodesRequest) (response *DescribeClusterNodesResponse, err error)

DescribeClusterNodes invokes the cs.DescribeClusterNodes API synchronously api document: https://help.aliyun.com/api/cs/describeclusternodes.html

func (*Client) DescribeClusterNodesWithCallback

func (client *Client) DescribeClusterNodesWithCallback(request *DescribeClusterNodesRequest, callback func(response *DescribeClusterNodesResponse, err error)) <-chan int

DescribeClusterNodesWithCallback invokes the cs.DescribeClusterNodes API asynchronously api document: https://help.aliyun.com/api/cs/describeclusternodes.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterNodesWithChan

func (client *Client) DescribeClusterNodesWithChan(request *DescribeClusterNodesRequest) (<-chan *DescribeClusterNodesResponse, <-chan error)

DescribeClusterNodesWithChan invokes the cs.DescribeClusterNodes API asynchronously api document: https://help.aliyun.com/api/cs/describeclusternodes.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterScaledNode

func (client *Client) DescribeClusterScaledNode(request *DescribeClusterScaledNodeRequest) (response *DescribeClusterScaledNodeResponse, err error)

DescribeClusterScaledNode invokes the cs.DescribeClusterScaledNode API synchronously api document: https://help.aliyun.com/api/cs/describeclusterscalednode.html

func (*Client) DescribeClusterScaledNodeWithCallback

func (client *Client) DescribeClusterScaledNodeWithCallback(request *DescribeClusterScaledNodeRequest, callback func(response *DescribeClusterScaledNodeResponse, err error)) <-chan int

DescribeClusterScaledNodeWithCallback invokes the cs.DescribeClusterScaledNode API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterscalednode.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterScaledNodeWithChan

func (client *Client) DescribeClusterScaledNodeWithChan(request *DescribeClusterScaledNodeRequest) (<-chan *DescribeClusterScaledNodeResponse, <-chan error)

DescribeClusterScaledNodeWithChan invokes the cs.DescribeClusterScaledNode API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterscalednode.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterServices

func (client *Client) DescribeClusterServices(request *DescribeClusterServicesRequest) (response *DescribeClusterServicesResponse, err error)

DescribeClusterServices invokes the cs.DescribeClusterServices API synchronously api document: https://help.aliyun.com/api/cs/describeclusterservices.html

func (*Client) DescribeClusterServicesWithCallback

func (client *Client) DescribeClusterServicesWithCallback(request *DescribeClusterServicesRequest, callback func(response *DescribeClusterServicesResponse, err error)) <-chan int

DescribeClusterServicesWithCallback invokes the cs.DescribeClusterServices API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterservices.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterServicesWithChan

func (client *Client) DescribeClusterServicesWithChan(request *DescribeClusterServicesRequest) (<-chan *DescribeClusterServicesResponse, <-chan error)

DescribeClusterServicesWithChan invokes the cs.DescribeClusterServices API asynchronously api document: https://help.aliyun.com/api/cs/describeclusterservices.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterTokens

func (client *Client) DescribeClusterTokens(request *DescribeClusterTokensRequest) (response *DescribeClusterTokensResponse, err error)

DescribeClusterTokens invokes the cs.DescribeClusterTokens API synchronously api document: https://help.aliyun.com/api/cs/describeclustertokens.html

func (*Client) DescribeClusterTokensWithCallback

func (client *Client) DescribeClusterTokensWithCallback(request *DescribeClusterTokensRequest, callback func(response *DescribeClusterTokensResponse, err error)) <-chan int

DescribeClusterTokensWithCallback invokes the cs.DescribeClusterTokens API asynchronously api document: https://help.aliyun.com/api/cs/describeclustertokens.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusterTokensWithChan

func (client *Client) DescribeClusterTokensWithChan(request *DescribeClusterTokensRequest) (<-chan *DescribeClusterTokensResponse, <-chan error)

DescribeClusterTokensWithChan invokes the cs.DescribeClusterTokens API asynchronously api document: https://help.aliyun.com/api/cs/describeclustertokens.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClusters

func (client *Client) DescribeClusters(request *DescribeClustersRequest) (response *DescribeClustersResponse, err error)

DescribeClusters invokes the cs.DescribeClusters API synchronously api document: https://help.aliyun.com/api/cs/describeclusters.html

func (*Client) DescribeClustersWithCallback

func (client *Client) DescribeClustersWithCallback(request *DescribeClustersRequest, callback func(response *DescribeClustersResponse, err error)) <-chan int

DescribeClustersWithCallback invokes the cs.DescribeClusters API asynchronously api document: https://help.aliyun.com/api/cs/describeclusters.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeClustersWithChan

func (client *Client) DescribeClustersWithChan(request *DescribeClustersRequest) (<-chan *DescribeClustersResponse, <-chan error)

DescribeClustersWithChan invokes the cs.DescribeClusters API asynchronously api document: https://help.aliyun.com/api/cs/describeclusters.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeImages

func (client *Client) DescribeImages(request *DescribeImagesRequest) (response *DescribeImagesResponse, err error)

DescribeImages invokes the cs.DescribeImages API synchronously api document: https://help.aliyun.com/api/cs/describeimages.html

func (*Client) DescribeImagesWithCallback

func (client *Client) DescribeImagesWithCallback(request *DescribeImagesRequest, callback func(response *DescribeImagesResponse, err error)) <-chan int

DescribeImagesWithCallback invokes the cs.DescribeImages API asynchronously api document: https://help.aliyun.com/api/cs/describeimages.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeImagesWithChan

func (client *Client) DescribeImagesWithChan(request *DescribeImagesRequest) (<-chan *DescribeImagesResponse, <-chan error)

DescribeImagesWithChan invokes the cs.DescribeImages API asynchronously api document: https://help.aliyun.com/api/cs/describeimages.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeKubernetesTemplate

func (client *Client) DescribeKubernetesTemplate(request *DescribeKubernetesTemplateRequest) (response *DescribeKubernetesTemplateResponse, err error)

DescribeKubernetesTemplate invokes the cs.DescribeKubernetesTemplate API synchronously api document: https://help.aliyun.com/api/cs/describekubernetestemplate.html

func (*Client) DescribeKubernetesTemplateWithCallback

func (client *Client) DescribeKubernetesTemplateWithCallback(request *DescribeKubernetesTemplateRequest, callback func(response *DescribeKubernetesTemplateResponse, err error)) <-chan int

DescribeKubernetesTemplateWithCallback invokes the cs.DescribeKubernetesTemplate API asynchronously api document: https://help.aliyun.com/api/cs/describekubernetestemplate.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeKubernetesTemplateWithChan

func (client *Client) DescribeKubernetesTemplateWithChan(request *DescribeKubernetesTemplateRequest) (<-chan *DescribeKubernetesTemplateResponse, <-chan error)

DescribeKubernetesTemplateWithChan invokes the cs.DescribeKubernetesTemplate API asynchronously api document: https://help.aliyun.com/api/cs/describekubernetestemplate.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeKubernetesTemplates

func (client *Client) DescribeKubernetesTemplates(request *DescribeKubernetesTemplatesRequest) (response *DescribeKubernetesTemplatesResponse, err error)

DescribeKubernetesTemplates invokes the cs.DescribeKubernetesTemplates API synchronously api document: https://help.aliyun.com/api/cs/describekubernetestemplates.html

func (*Client) DescribeKubernetesTemplatesWithCallback

func (client *Client) DescribeKubernetesTemplatesWithCallback(request *DescribeKubernetesTemplatesRequest, callback func(response *DescribeKubernetesTemplatesResponse, err error)) <-chan int

DescribeKubernetesTemplatesWithCallback invokes the cs.DescribeKubernetesTemplates API asynchronously api document: https://help.aliyun.com/api/cs/describekubernetestemplates.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeKubernetesTemplatesWithChan

func (client *Client) DescribeKubernetesTemplatesWithChan(request *DescribeKubernetesTemplatesRequest) (<-chan *DescribeKubernetesTemplatesResponse, <-chan error)

DescribeKubernetesTemplatesWithChan invokes the cs.DescribeKubernetesTemplates API asynchronously api document: https://help.aliyun.com/api/cs/describekubernetestemplates.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeServiceContainers

func (client *Client) DescribeServiceContainers(request *DescribeServiceContainersRequest) (response *DescribeServiceContainersResponse, err error)

DescribeServiceContainers invokes the cs.DescribeServiceContainers API synchronously api document: https://help.aliyun.com/api/cs/describeservicecontainers.html

func (*Client) DescribeServiceContainersWithCallback

func (client *Client) DescribeServiceContainersWithCallback(request *DescribeServiceContainersRequest, callback func(response *DescribeServiceContainersResponse, err error)) <-chan int

DescribeServiceContainersWithCallback invokes the cs.DescribeServiceContainers API asynchronously api document: https://help.aliyun.com/api/cs/describeservicecontainers.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeServiceContainersWithChan

func (client *Client) DescribeServiceContainersWithChan(request *DescribeServiceContainersRequest) (<-chan *DescribeServiceContainersResponse, <-chan error)

DescribeServiceContainersWithChan invokes the cs.DescribeServiceContainers API asynchronously api document: https://help.aliyun.com/api/cs/describeservicecontainers.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeTaskInfo

func (client *Client) DescribeTaskInfo(request *DescribeTaskInfoRequest) (response *DescribeTaskInfoResponse, err error)

DescribeTaskInfo invokes the cs.DescribeTaskInfo API synchronously api document: https://help.aliyun.com/api/cs/describetaskinfo.html

func (*Client) DescribeTaskInfoWithCallback

func (client *Client) DescribeTaskInfoWithCallback(request *DescribeTaskInfoRequest, callback func(response *DescribeTaskInfoResponse, err error)) <-chan int

DescribeTaskInfoWithCallback invokes the cs.DescribeTaskInfo API asynchronously api document: https://help.aliyun.com/api/cs/describetaskinfo.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeTaskInfoWithChan

func (client *Client) DescribeTaskInfoWithChan(request *DescribeTaskInfoRequest) (<-chan *DescribeTaskInfoResponse, <-chan error)

DescribeTaskInfoWithChan invokes the cs.DescribeTaskInfo API asynchronously api document: https://help.aliyun.com/api/cs/describetaskinfo.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeTemplateAttribute

func (client *Client) DescribeTemplateAttribute(request *DescribeTemplateAttributeRequest) (response *DescribeTemplateAttributeResponse, err error)

DescribeTemplateAttribute invokes the cs.DescribeTemplateAttribute API synchronously api document: https://help.aliyun.com/api/cs/describetemplateattribute.html

func (*Client) DescribeTemplateAttributeWithCallback

func (client *Client) DescribeTemplateAttributeWithCallback(request *DescribeTemplateAttributeRequest, callback func(response *DescribeTemplateAttributeResponse, err error)) <-chan int

DescribeTemplateAttributeWithCallback invokes the cs.DescribeTemplateAttribute API asynchronously api document: https://help.aliyun.com/api/cs/describetemplateattribute.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeTemplateAttributeWithChan

func (client *Client) DescribeTemplateAttributeWithChan(request *DescribeTemplateAttributeRequest) (<-chan *DescribeTemplateAttributeResponse, <-chan error)

DescribeTemplateAttributeWithChan invokes the cs.DescribeTemplateAttribute API asynchronously api document: https://help.aliyun.com/api/cs/describetemplateattribute.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeTemplates

func (client *Client) DescribeTemplates(request *DescribeTemplatesRequest) (response *DescribeTemplatesResponse, err error)

DescribeTemplates invokes the cs.DescribeTemplates API synchronously api document: https://help.aliyun.com/api/cs/describetemplates.html

func (*Client) DescribeTemplatesWithCallback

func (client *Client) DescribeTemplatesWithCallback(request *DescribeTemplatesRequest, callback func(response *DescribeTemplatesResponse, err error)) <-chan int

DescribeTemplatesWithCallback invokes the cs.DescribeTemplates API asynchronously api document: https://help.aliyun.com/api/cs/describetemplates.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeTemplatesWithChan

func (client *Client) DescribeTemplatesWithChan(request *DescribeTemplatesRequest) (<-chan *DescribeTemplatesResponse, <-chan error)

DescribeTemplatesWithChan invokes the cs.DescribeTemplates API asynchronously api document: https://help.aliyun.com/api/cs/describetemplates.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeUserContainers

func (client *Client) DescribeUserContainers(request *DescribeUserContainersRequest) (response *DescribeUserContainersResponse, err error)

DescribeUserContainers invokes the cs.DescribeUserContainers API synchronously api document: https://help.aliyun.com/api/cs/describeusercontainers.html

func (*Client) DescribeUserContainersWithCallback

func (client *Client) DescribeUserContainersWithCallback(request *DescribeUserContainersRequest, callback func(response *DescribeUserContainersResponse, err error)) <-chan int

DescribeUserContainersWithCallback invokes the cs.DescribeUserContainers API asynchronously api document: https://help.aliyun.com/api/cs/describeusercontainers.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DescribeUserContainersWithChan

func (client *Client) DescribeUserContainersWithChan(request *DescribeUserContainersRequest) (<-chan *DescribeUserContainersResponse, <-chan error)

DescribeUserContainersWithChan invokes the cs.DescribeUserContainers API asynchronously api document: https://help.aliyun.com/api/cs/describeusercontainers.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DownloadClusterNodeCerts

func (client *Client) DownloadClusterNodeCerts(request *DownloadClusterNodeCertsRequest) (response *DownloadClusterNodeCertsResponse, err error)

DownloadClusterNodeCerts invokes the cs.DownloadClusterNodeCerts API synchronously api document: https://help.aliyun.com/api/cs/downloadclusternodecerts.html

func (*Client) DownloadClusterNodeCertsWithCallback

func (client *Client) DownloadClusterNodeCertsWithCallback(request *DownloadClusterNodeCertsRequest, callback func(response *DownloadClusterNodeCertsResponse, err error)) <-chan int

DownloadClusterNodeCertsWithCallback invokes the cs.DownloadClusterNodeCerts API asynchronously api document: https://help.aliyun.com/api/cs/downloadclusternodecerts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) DownloadClusterNodeCertsWithChan

func (client *Client) DownloadClusterNodeCertsWithChan(request *DownloadClusterNodeCertsRequest) (<-chan *DownloadClusterNodeCertsResponse, <-chan error)

DownloadClusterNodeCertsWithChan invokes the cs.DownloadClusterNodeCerts API asynchronously api document: https://help.aliyun.com/api/cs/downloadclusternodecerts.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GatherLogsToken

func (client *Client) GatherLogsToken(request *GatherLogsTokenRequest) (response *GatherLogsTokenResponse, err error)

GatherLogsToken invokes the cs.GatherLogsToken API synchronously api document: https://help.aliyun.com/api/cs/gatherlogstoken.html

func (*Client) GatherLogsTokenWithCallback

func (client *Client) GatherLogsTokenWithCallback(request *GatherLogsTokenRequest, callback func(response *GatherLogsTokenResponse, err error)) <-chan int

GatherLogsTokenWithCallback invokes the cs.GatherLogsToken API asynchronously api document: https://help.aliyun.com/api/cs/gatherlogstoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GatherLogsTokenWithChan

func (client *Client) GatherLogsTokenWithChan(request *GatherLogsTokenRequest) (<-chan *GatherLogsTokenResponse, <-chan error)

GatherLogsTokenWithChan invokes the cs.GatherLogsToken API asynchronously api document: https://help.aliyun.com/api/cs/gatherlogstoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GetClusterProjects

func (client *Client) GetClusterProjects(request *GetClusterProjectsRequest) (response *GetClusterProjectsResponse, err error)

GetClusterProjects invokes the cs.GetClusterProjects API synchronously api document: https://help.aliyun.com/api/cs/getclusterprojects.html

func (*Client) GetClusterProjectsWithCallback

func (client *Client) GetClusterProjectsWithCallback(request *GetClusterProjectsRequest, callback func(response *GetClusterProjectsResponse, err error)) <-chan int

GetClusterProjectsWithCallback invokes the cs.GetClusterProjects API asynchronously api document: https://help.aliyun.com/api/cs/getclusterprojects.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GetClusterProjectsWithChan

func (client *Client) GetClusterProjectsWithChan(request *GetClusterProjectsRequest) (<-chan *GetClusterProjectsResponse, <-chan error)

GetClusterProjectsWithChan invokes the cs.GetClusterProjects API asynchronously api document: https://help.aliyun.com/api/cs/getclusterprojects.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GetProjectEvents

func (client *Client) GetProjectEvents(request *GetProjectEventsRequest) (response *GetProjectEventsResponse, err error)

GetProjectEvents invokes the cs.GetProjectEvents API synchronously api document: https://help.aliyun.com/api/cs/getprojectevents.html

func (*Client) GetProjectEventsWithCallback

func (client *Client) GetProjectEventsWithCallback(request *GetProjectEventsRequest, callback func(response *GetProjectEventsResponse, err error)) <-chan int

GetProjectEventsWithCallback invokes the cs.GetProjectEvents API asynchronously api document: https://help.aliyun.com/api/cs/getprojectevents.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GetProjectEventsWithChan

func (client *Client) GetProjectEventsWithChan(request *GetProjectEventsRequest) (<-chan *GetProjectEventsResponse, <-chan error)

GetProjectEventsWithChan invokes the cs.GetProjectEvents API asynchronously api document: https://help.aliyun.com/api/cs/getprojectevents.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GetTriggerHook

func (client *Client) GetTriggerHook(request *GetTriggerHookRequest) (response *GetTriggerHookResponse, err error)

GetTriggerHook invokes the cs.GetTriggerHook API synchronously api document: https://help.aliyun.com/api/cs/gettriggerhook.html

func (*Client) GetTriggerHookWithCallback

func (client *Client) GetTriggerHookWithCallback(request *GetTriggerHookRequest, callback func(response *GetTriggerHookResponse, err error)) <-chan int

GetTriggerHookWithCallback invokes the cs.GetTriggerHook API asynchronously api document: https://help.aliyun.com/api/cs/gettriggerhook.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) GetTriggerHookWithChan

func (client *Client) GetTriggerHookWithChan(request *GetTriggerHookRequest) (<-chan *GetTriggerHookResponse, <-chan error)

GetTriggerHookWithChan invokes the cs.GetTriggerHook API asynchronously api document: https://help.aliyun.com/api/cs/gettriggerhook.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ModifyClusterName

func (client *Client) ModifyClusterName(request *ModifyClusterNameRequest) (response *ModifyClusterNameResponse, err error)

ModifyClusterName invokes the cs.ModifyClusterName API synchronously api document: https://help.aliyun.com/api/cs/modifyclustername.html

func (*Client) ModifyClusterNameWithCallback

func (client *Client) ModifyClusterNameWithCallback(request *ModifyClusterNameRequest, callback func(response *ModifyClusterNameResponse, err error)) <-chan int

ModifyClusterNameWithCallback invokes the cs.ModifyClusterName API asynchronously api document: https://help.aliyun.com/api/cs/modifyclustername.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ModifyClusterNameWithChan

func (client *Client) ModifyClusterNameWithChan(request *ModifyClusterNameRequest) (<-chan *ModifyClusterNameResponse, <-chan error)

ModifyClusterNameWithChan invokes the cs.ModifyClusterName API asynchronously api document: https://help.aliyun.com/api/cs/modifyclustername.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ResetClusterNode

func (client *Client) ResetClusterNode(request *ResetClusterNodeRequest) (response *ResetClusterNodeResponse, err error)

ResetClusterNode invokes the cs.ResetClusterNode API synchronously api document: https://help.aliyun.com/api/cs/resetclusternode.html

func (*Client) ResetClusterNodeWithCallback

func (client *Client) ResetClusterNodeWithCallback(request *ResetClusterNodeRequest, callback func(response *ResetClusterNodeResponse, err error)) <-chan int

ResetClusterNodeWithCallback invokes the cs.ResetClusterNode API asynchronously api document: https://help.aliyun.com/api/cs/resetclusternode.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ResetClusterNodeWithChan

func (client *Client) ResetClusterNodeWithChan(request *ResetClusterNodeRequest) (<-chan *ResetClusterNodeResponse, <-chan error)

ResetClusterNodeWithChan invokes the cs.ResetClusterNode API asynchronously api document: https://help.aliyun.com/api/cs/resetclusternode.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) RevokeClusterToken

func (client *Client) RevokeClusterToken(request *RevokeClusterTokenRequest) (response *RevokeClusterTokenResponse, err error)

RevokeClusterToken invokes the cs.RevokeClusterToken API synchronously api document: https://help.aliyun.com/api/cs/revokeclustertoken.html

func (*Client) RevokeClusterTokenWithCallback

func (client *Client) RevokeClusterTokenWithCallback(request *RevokeClusterTokenRequest, callback func(response *RevokeClusterTokenResponse, err error)) <-chan int

RevokeClusterTokenWithCallback invokes the cs.RevokeClusterToken API asynchronously api document: https://help.aliyun.com/api/cs/revokeclustertoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) RevokeClusterTokenWithChan

func (client *Client) RevokeClusterTokenWithChan(request *RevokeClusterTokenRequest) (<-chan *RevokeClusterTokenResponse, <-chan error)

RevokeClusterTokenWithChan invokes the cs.RevokeClusterToken API asynchronously api document: https://help.aliyun.com/api/cs/revokeclustertoken.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ScaleCluster

func (client *Client) ScaleCluster(request *ScaleClusterRequest) (response *ScaleClusterResponse, err error)

ScaleCluster invokes the cs.ScaleCluster API synchronously api document: https://help.aliyun.com/api/cs/scalecluster.html

func (*Client) ScaleClusterWithCallback

func (client *Client) ScaleClusterWithCallback(request *ScaleClusterRequest, callback func(response *ScaleClusterResponse, err error)) <-chan int

ScaleClusterWithCallback invokes the cs.ScaleCluster API asynchronously api document: https://help.aliyun.com/api/cs/scalecluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ScaleClusterWithChan

func (client *Client) ScaleClusterWithChan(request *ScaleClusterRequest) (<-chan *ScaleClusterResponse, <-chan error)

ScaleClusterWithChan invokes the cs.ScaleCluster API asynchronously api document: https://help.aliyun.com/api/cs/scalecluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ScaleInCluster

func (client *Client) ScaleInCluster(request *ScaleInClusterRequest) (response *ScaleInClusterResponse, err error)

ScaleInCluster invokes the cs.ScaleInCluster API synchronously api document: https://help.aliyun.com/api/cs/scaleincluster.html

func (*Client) ScaleInClusterWithCallback

func (client *Client) ScaleInClusterWithCallback(request *ScaleInClusterRequest, callback func(response *ScaleInClusterResponse, err error)) <-chan int

ScaleInClusterWithCallback invokes the cs.ScaleInCluster API asynchronously api document: https://help.aliyun.com/api/cs/scaleincluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) ScaleInClusterWithChan

func (client *Client) ScaleInClusterWithChan(request *ScaleInClusterRequest) (<-chan *ScaleInClusterResponse, <-chan error)

ScaleInClusterWithChan invokes the cs.ScaleInCluster API asynchronously api document: https://help.aliyun.com/api/cs/scaleincluster.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) UpdateSubUserResouces

func (client *Client) UpdateSubUserResouces(request *UpdateSubUserResoucesRequest) (response *UpdateSubUserResoucesResponse, err error)

UpdateSubUserResouces invokes the cs.UpdateSubUserResouces API synchronously api document: https://help.aliyun.com/api/cs/updatesubuserresouces.html

func (*Client) UpdateSubUserResoucesWithCallback

func (client *Client) UpdateSubUserResoucesWithCallback(request *UpdateSubUserResoucesRequest, callback func(response *UpdateSubUserResoucesResponse, err error)) <-chan int

UpdateSubUserResoucesWithCallback invokes the cs.UpdateSubUserResouces API asynchronously api document: https://help.aliyun.com/api/cs/updatesubuserresouces.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) UpdateSubUserResoucesWithChan

func (client *Client) UpdateSubUserResoucesWithChan(request *UpdateSubUserResoucesRequest) (<-chan *UpdateSubUserResoucesResponse, <-chan error)

UpdateSubUserResoucesWithChan invokes the cs.UpdateSubUserResouces API asynchronously api document: https://help.aliyun.com/api/cs/updatesubuserresouces.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) UpgradeClusterComponents

func (client *Client) UpgradeClusterComponents(request *UpgradeClusterComponentsRequest) (response *UpgradeClusterComponentsResponse, err error)

UpgradeClusterComponents invokes the cs.UpgradeClusterComponents API synchronously api document: https://help.aliyun.com/api/cs/upgradeclustercomponents.html

func (*Client) UpgradeClusterComponentsWithCallback

func (client *Client) UpgradeClusterComponentsWithCallback(request *UpgradeClusterComponentsRequest, callback func(response *UpgradeClusterComponentsResponse, err error)) <-chan int

UpgradeClusterComponentsWithCallback invokes the cs.UpgradeClusterComponents API asynchronously api document: https://help.aliyun.com/api/cs/upgradeclustercomponents.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

func (*Client) UpgradeClusterComponentsWithChan

func (client *Client) UpgradeClusterComponentsWithChan(request *UpgradeClusterComponentsRequest) (<-chan *UpgradeClusterComponentsResponse, <-chan error)

UpgradeClusterComponentsWithChan invokes the cs.UpgradeClusterComponents API asynchronously api document: https://help.aliyun.com/api/cs/upgradeclustercomponents.html asynchronous document: https://help.aliyun.com/document_detail/66220.html

type CreateClusterRequest

type CreateClusterRequest struct {
	*requests.RoaRequest
}

CreateClusterRequest is the request struct for api CreateCluster

func CreateCreateClusterRequest

func CreateCreateClusterRequest() (request *CreateClusterRequest)

CreateCreateClusterRequest creates a request to invoke CreateCluster API

type CreateClusterResponse

type CreateClusterResponse struct {
	*responses.BaseResponse
}

CreateClusterResponse is the response struct for api CreateCluster

func CreateCreateClusterResponse

func CreateCreateClusterResponse() (response *CreateClusterResponse)

CreateCreateClusterResponse creates a response to parse from CreateCluster response

type CreateClusterTokenRequest

type CreateClusterTokenRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

CreateClusterTokenRequest is the request struct for api CreateClusterToken

func CreateCreateClusterTokenRequest

func CreateCreateClusterTokenRequest() (request *CreateClusterTokenRequest)

CreateCreateClusterTokenRequest creates a request to invoke CreateClusterToken API

type CreateClusterTokenResponse

type CreateClusterTokenResponse struct {
	*responses.BaseResponse
}

CreateClusterTokenResponse is the response struct for api CreateClusterToken

func CreateCreateClusterTokenResponse

func CreateCreateClusterTokenResponse() (response *CreateClusterTokenResponse)

CreateCreateClusterTokenResponse creates a response to parse from CreateClusterToken response

type CreateTemplateRequest

type CreateTemplateRequest struct {
	*requests.RoaRequest
}

CreateTemplateRequest is the request struct for api CreateTemplate

func CreateCreateTemplateRequest

func CreateCreateTemplateRequest() (request *CreateTemplateRequest)

CreateCreateTemplateRequest creates a request to invoke CreateTemplate API

type CreateTemplateResponse

type CreateTemplateResponse struct {
	*responses.BaseResponse
}

CreateTemplateResponse is the response struct for api CreateTemplate

func CreateCreateTemplateResponse

func CreateCreateTemplateResponse() (response *CreateTemplateResponse)

CreateCreateTemplateResponse creates a response to parse from CreateTemplate response

type DeleteClusterNodeRequest

type DeleteClusterNodeRequest struct {
	*requests.RoaRequest
	ClusterId       string `position:"Path" name:"ClusterId"`
	Ip              string `position:"Path" name:"Ip"`
	Force           string `position:"Query" name:"force"`
	ReleaseInstance string `position:"Query" name:"releaseInstance"`
}

DeleteClusterNodeRequest is the request struct for api DeleteClusterNode

func CreateDeleteClusterNodeRequest

func CreateDeleteClusterNodeRequest() (request *DeleteClusterNodeRequest)

CreateDeleteClusterNodeRequest creates a request to invoke DeleteClusterNode API

type DeleteClusterNodeResponse

type DeleteClusterNodeResponse struct {
	*responses.BaseResponse
}

DeleteClusterNodeResponse is the response struct for api DeleteClusterNode

func CreateDeleteClusterNodeResponse

func CreateDeleteClusterNodeResponse() (response *DeleteClusterNodeResponse)

CreateDeleteClusterNodeResponse creates a response to parse from DeleteClusterNode response

type DeleteClusterRequest

type DeleteClusterRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DeleteClusterRequest is the request struct for api DeleteCluster

func CreateDeleteClusterRequest

func CreateDeleteClusterRequest() (request *DeleteClusterRequest)

CreateDeleteClusterRequest creates a request to invoke DeleteCluster API

type DeleteClusterResponse

type DeleteClusterResponse struct {
	*responses.BaseResponse
}

DeleteClusterResponse is the response struct for api DeleteCluster

func CreateDeleteClusterResponse

func CreateDeleteClusterResponse() (response *DeleteClusterResponse)

CreateDeleteClusterResponse creates a response to parse from DeleteCluster response

type DescribeAgilityTunnelAgentInfoRequest

type DescribeAgilityTunnelAgentInfoRequest struct {
	*requests.RoaRequest
	Token string `position:"Path" name:"Token"`
}

DescribeAgilityTunnelAgentInfoRequest is the request struct for api DescribeAgilityTunnelAgentInfo

func CreateDescribeAgilityTunnelAgentInfoRequest

func CreateDescribeAgilityTunnelAgentInfoRequest() (request *DescribeAgilityTunnelAgentInfoRequest)

CreateDescribeAgilityTunnelAgentInfoRequest creates a request to invoke DescribeAgilityTunnelAgentInfo API

type DescribeAgilityTunnelAgentInfoResponse

type DescribeAgilityTunnelAgentInfoResponse struct {
	*responses.BaseResponse
}

DescribeAgilityTunnelAgentInfoResponse is the response struct for api DescribeAgilityTunnelAgentInfo

func CreateDescribeAgilityTunnelAgentInfoResponse

func CreateDescribeAgilityTunnelAgentInfoResponse() (response *DescribeAgilityTunnelAgentInfoResponse)

CreateDescribeAgilityTunnelAgentInfoResponse creates a response to parse from DescribeAgilityTunnelAgentInfo response

type DescribeAgilityTunnelCertsRequest

type DescribeAgilityTunnelCertsRequest struct {
	*requests.RoaRequest
	Token string `position:"Path" name:"Token"`
}

DescribeAgilityTunnelCertsRequest is the request struct for api DescribeAgilityTunnelCerts

func CreateDescribeAgilityTunnelCertsRequest

func CreateDescribeAgilityTunnelCertsRequest() (request *DescribeAgilityTunnelCertsRequest)

CreateDescribeAgilityTunnelCertsRequest creates a request to invoke DescribeAgilityTunnelCerts API

type DescribeAgilityTunnelCertsResponse

type DescribeAgilityTunnelCertsResponse struct {
	*responses.BaseResponse
}

DescribeAgilityTunnelCertsResponse is the response struct for api DescribeAgilityTunnelCerts

func CreateDescribeAgilityTunnelCertsResponse

func CreateDescribeAgilityTunnelCertsResponse() (response *DescribeAgilityTunnelCertsResponse)

CreateDescribeAgilityTunnelCertsResponse creates a response to parse from DescribeAgilityTunnelCerts response

type DescribeApiVersionRequest

type DescribeApiVersionRequest struct {
	*requests.RoaRequest
}

DescribeApiVersionRequest is the request struct for api DescribeApiVersion

func CreateDescribeApiVersionRequest

func CreateDescribeApiVersionRequest() (request *DescribeApiVersionRequest)

CreateDescribeApiVersionRequest creates a request to invoke DescribeApiVersion API

type DescribeApiVersionResponse

type DescribeApiVersionResponse struct {
	*responses.BaseResponse
}

DescribeApiVersionResponse is the response struct for api DescribeApiVersion

func CreateDescribeApiVersionResponse

func CreateDescribeApiVersionResponse() (response *DescribeApiVersionResponse)

CreateDescribeApiVersionResponse creates a response to parse from DescribeApiVersion response

type DescribeClusterCertsRequest

type DescribeClusterCertsRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeClusterCertsRequest is the request struct for api DescribeClusterCerts

func CreateDescribeClusterCertsRequest

func CreateDescribeClusterCertsRequest() (request *DescribeClusterCertsRequest)

CreateDescribeClusterCertsRequest creates a request to invoke DescribeClusterCerts API

type DescribeClusterCertsResponse

type DescribeClusterCertsResponse struct {
	*responses.BaseResponse
}

DescribeClusterCertsResponse is the response struct for api DescribeClusterCerts

func CreateDescribeClusterCertsResponse

func CreateDescribeClusterCertsResponse() (response *DescribeClusterCertsResponse)

CreateDescribeClusterCertsResponse creates a response to parse from DescribeClusterCerts response

type DescribeClusterDetailRequest

type DescribeClusterDetailRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeClusterDetailRequest is the request struct for api DescribeClusterDetail

func CreateDescribeClusterDetailRequest

func CreateDescribeClusterDetailRequest() (request *DescribeClusterDetailRequest)

CreateDescribeClusterDetailRequest creates a request to invoke DescribeClusterDetail API

type DescribeClusterDetailResponse

type DescribeClusterDetailResponse struct {
	*responses.BaseResponse
}

DescribeClusterDetailResponse is the response struct for api DescribeClusterDetail

func CreateDescribeClusterDetailResponse

func CreateDescribeClusterDetailResponse() (response *DescribeClusterDetailResponse)

CreateDescribeClusterDetailResponse creates a response to parse from DescribeClusterDetail response

type DescribeClusterHostsRequest

type DescribeClusterHostsRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeClusterHostsRequest is the request struct for api DescribeClusterHosts

func CreateDescribeClusterHostsRequest

func CreateDescribeClusterHostsRequest() (request *DescribeClusterHostsRequest)

CreateDescribeClusterHostsRequest creates a request to invoke DescribeClusterHosts API

type DescribeClusterHostsResponse

type DescribeClusterHostsResponse struct {
	*responses.BaseResponse
}

DescribeClusterHostsResponse is the response struct for api DescribeClusterHosts

func CreateDescribeClusterHostsResponse

func CreateDescribeClusterHostsResponse() (response *DescribeClusterHostsResponse)

CreateDescribeClusterHostsResponse creates a response to parse from DescribeClusterHosts response

type DescribeClusterLogsRequest

type DescribeClusterLogsRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeClusterLogsRequest is the request struct for api DescribeClusterLogs

func CreateDescribeClusterLogsRequest

func CreateDescribeClusterLogsRequest() (request *DescribeClusterLogsRequest)

CreateDescribeClusterLogsRequest creates a request to invoke DescribeClusterLogs API

type DescribeClusterLogsResponse

type DescribeClusterLogsResponse struct {
	*responses.BaseResponse
}

DescribeClusterLogsResponse is the response struct for api DescribeClusterLogs

func CreateDescribeClusterLogsResponse

func CreateDescribeClusterLogsResponse() (response *DescribeClusterLogsResponse)

CreateDescribeClusterLogsResponse creates a response to parse from DescribeClusterLogs response

type DescribeClusterNodeInfoRequest

type DescribeClusterNodeInfoRequest struct {
	*requests.RoaRequest
	Token string `position:"Path" name:"Token"`
}

DescribeClusterNodeInfoRequest is the request struct for api DescribeClusterNodeInfo

func CreateDescribeClusterNodeInfoRequest

func CreateDescribeClusterNodeInfoRequest() (request *DescribeClusterNodeInfoRequest)

CreateDescribeClusterNodeInfoRequest creates a request to invoke DescribeClusterNodeInfo API

type DescribeClusterNodeInfoResponse

type DescribeClusterNodeInfoResponse struct {
	*responses.BaseResponse
}

DescribeClusterNodeInfoResponse is the response struct for api DescribeClusterNodeInfo

func CreateDescribeClusterNodeInfoResponse

func CreateDescribeClusterNodeInfoResponse() (response *DescribeClusterNodeInfoResponse)

CreateDescribeClusterNodeInfoResponse creates a response to parse from DescribeClusterNodeInfo response

type DescribeClusterNodeInfoWithInstanceRequest

type DescribeClusterNodeInfoWithInstanceRequest struct {
	*requests.RoaRequest
	Token      string `position:"Path" name:"Token"`
	InstanceId string `position:"Path" name:"InstanceId"`
}

DescribeClusterNodeInfoWithInstanceRequest is the request struct for api DescribeClusterNodeInfoWithInstance

func CreateDescribeClusterNodeInfoWithInstanceRequest

func CreateDescribeClusterNodeInfoWithInstanceRequest() (request *DescribeClusterNodeInfoWithInstanceRequest)

CreateDescribeClusterNodeInfoWithInstanceRequest creates a request to invoke DescribeClusterNodeInfoWithInstance API

type DescribeClusterNodeInfoWithInstanceResponse

type DescribeClusterNodeInfoWithInstanceResponse struct {
	*responses.BaseResponse
}

DescribeClusterNodeInfoWithInstanceResponse is the response struct for api DescribeClusterNodeInfoWithInstance

func CreateDescribeClusterNodeInfoWithInstanceResponse

func CreateDescribeClusterNodeInfoWithInstanceResponse() (response *DescribeClusterNodeInfoWithInstanceResponse)

CreateDescribeClusterNodeInfoWithInstanceResponse creates a response to parse from DescribeClusterNodeInfoWithInstance response

type DescribeClusterNodesRequest

type DescribeClusterNodesRequest struct {
	*requests.RoaRequest
	ClusterId  string `position:"Path" name:"ClusterId"`
	PageSize   string `position:"Query" name:"pageSize"`
	PageNumber string `position:"Query" name:"pageNumber"`
}

DescribeClusterNodesRequest is the request struct for api DescribeClusterNodes

func CreateDescribeClusterNodesRequest

func CreateDescribeClusterNodesRequest() (request *DescribeClusterNodesRequest)

CreateDescribeClusterNodesRequest creates a request to invoke DescribeClusterNodes API

type DescribeClusterNodesResponse

type DescribeClusterNodesResponse struct {
	*responses.BaseResponse
}

DescribeClusterNodesResponse is the response struct for api DescribeClusterNodes

func CreateDescribeClusterNodesResponse

func CreateDescribeClusterNodesResponse() (response *DescribeClusterNodesResponse)

CreateDescribeClusterNodesResponse creates a response to parse from DescribeClusterNodes response

type DescribeClusterScaledNodeRequest

type DescribeClusterScaledNodeRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeClusterScaledNodeRequest is the request struct for api DescribeClusterScaledNode

func CreateDescribeClusterScaledNodeRequest

func CreateDescribeClusterScaledNodeRequest() (request *DescribeClusterScaledNodeRequest)

CreateDescribeClusterScaledNodeRequest creates a request to invoke DescribeClusterScaledNode API

type DescribeClusterScaledNodeResponse

type DescribeClusterScaledNodeResponse struct {
	*responses.BaseResponse
}

DescribeClusterScaledNodeResponse is the response struct for api DescribeClusterScaledNode

func CreateDescribeClusterScaledNodeResponse

func CreateDescribeClusterScaledNodeResponse() (response *DescribeClusterScaledNodeResponse)

CreateDescribeClusterScaledNodeResponse creates a response to parse from DescribeClusterScaledNode response

type DescribeClusterServicesRequest

type DescribeClusterServicesRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeClusterServicesRequest is the request struct for api DescribeClusterServices

func CreateDescribeClusterServicesRequest

func CreateDescribeClusterServicesRequest() (request *DescribeClusterServicesRequest)

CreateDescribeClusterServicesRequest creates a request to invoke DescribeClusterServices API

type DescribeClusterServicesResponse

type DescribeClusterServicesResponse struct {
	*responses.BaseResponse
}

DescribeClusterServicesResponse is the response struct for api DescribeClusterServices

func CreateDescribeClusterServicesResponse

func CreateDescribeClusterServicesResponse() (response *DescribeClusterServicesResponse)

CreateDescribeClusterServicesResponse creates a response to parse from DescribeClusterServices response

type DescribeClusterTokensRequest

type DescribeClusterTokensRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeClusterTokensRequest is the request struct for api DescribeClusterTokens

func CreateDescribeClusterTokensRequest

func CreateDescribeClusterTokensRequest() (request *DescribeClusterTokensRequest)

CreateDescribeClusterTokensRequest creates a request to invoke DescribeClusterTokens API

type DescribeClusterTokensResponse

type DescribeClusterTokensResponse struct {
	*responses.BaseResponse
}

DescribeClusterTokensResponse is the response struct for api DescribeClusterTokens

func CreateDescribeClusterTokensResponse

func CreateDescribeClusterTokensResponse() (response *DescribeClusterTokensResponse)

CreateDescribeClusterTokensResponse creates a response to parse from DescribeClusterTokens response

type DescribeClustersRequest

type DescribeClustersRequest struct {
	*requests.RoaRequest
	Name        string `position:"Query" name:"Name"`
	ClusterType string `position:"Query" name:"clusterType"`
}

DescribeClustersRequest is the request struct for api DescribeClusters

func CreateDescribeClustersRequest

func CreateDescribeClustersRequest() (request *DescribeClustersRequest)

CreateDescribeClustersRequest creates a request to invoke DescribeClusters API

type DescribeClustersResponse

type DescribeClustersResponse struct {
	*responses.BaseResponse
}

DescribeClustersResponse is the response struct for api DescribeClusters

func CreateDescribeClustersResponse

func CreateDescribeClustersResponse() (response *DescribeClustersResponse)

CreateDescribeClustersResponse creates a response to parse from DescribeClusters response

type DescribeImagesRequest

type DescribeImagesRequest struct {
	*requests.RoaRequest
	DockerVersion string `position:"Query" name:"DockerVersion"`
	ImageName     string `position:"Query" name:"ImageName"`
}

DescribeImagesRequest is the request struct for api DescribeImages

func CreateDescribeImagesRequest

func CreateDescribeImagesRequest() (request *DescribeImagesRequest)

CreateDescribeImagesRequest creates a request to invoke DescribeImages API

type DescribeImagesResponse

type DescribeImagesResponse struct {
	*responses.BaseResponse
}

DescribeImagesResponse is the response struct for api DescribeImages

func CreateDescribeImagesResponse

func CreateDescribeImagesResponse() (response *DescribeImagesResponse)

CreateDescribeImagesResponse creates a response to parse from DescribeImages response

type DescribeKubernetesTemplateRequest

type DescribeKubernetesTemplateRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

DescribeKubernetesTemplateRequest is the request struct for api DescribeKubernetesTemplate

func CreateDescribeKubernetesTemplateRequest

func CreateDescribeKubernetesTemplateRequest() (request *DescribeKubernetesTemplateRequest)

CreateDescribeKubernetesTemplateRequest creates a request to invoke DescribeKubernetesTemplate API

type DescribeKubernetesTemplateResponse

type DescribeKubernetesTemplateResponse struct {
	*responses.BaseResponse
}

DescribeKubernetesTemplateResponse is the response struct for api DescribeKubernetesTemplate

func CreateDescribeKubernetesTemplateResponse

func CreateDescribeKubernetesTemplateResponse() (response *DescribeKubernetesTemplateResponse)

CreateDescribeKubernetesTemplateResponse creates a response to parse from DescribeKubernetesTemplate response

type DescribeKubernetesTemplatesRequest

type DescribeKubernetesTemplatesRequest struct {
	*requests.RoaRequest
	KubernetesVersion string `position:"Query" name:"KubernetesVersion"`
	Region            string `position:"Query" name:"Region"`
}

DescribeKubernetesTemplatesRequest is the request struct for api DescribeKubernetesTemplates

func CreateDescribeKubernetesTemplatesRequest

func CreateDescribeKubernetesTemplatesRequest() (request *DescribeKubernetesTemplatesRequest)

CreateDescribeKubernetesTemplatesRequest creates a request to invoke DescribeKubernetesTemplates API

type DescribeKubernetesTemplatesResponse

type DescribeKubernetesTemplatesResponse struct {
	*responses.BaseResponse
}

DescribeKubernetesTemplatesResponse is the response struct for api DescribeKubernetesTemplates

func CreateDescribeKubernetesTemplatesResponse

func CreateDescribeKubernetesTemplatesResponse() (response *DescribeKubernetesTemplatesResponse)

CreateDescribeKubernetesTemplatesResponse creates a response to parse from DescribeKubernetesTemplates response

type DescribeServiceContainersRequest

type DescribeServiceContainersRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
	ServiceId string `position:"Path" name:"ServiceId"`
}

DescribeServiceContainersRequest is the request struct for api DescribeServiceContainers

func CreateDescribeServiceContainersRequest

func CreateDescribeServiceContainersRequest() (request *DescribeServiceContainersRequest)

CreateDescribeServiceContainersRequest creates a request to invoke DescribeServiceContainers API

type DescribeServiceContainersResponse

type DescribeServiceContainersResponse struct {
	*responses.BaseResponse
}

DescribeServiceContainersResponse is the response struct for api DescribeServiceContainers

func CreateDescribeServiceContainersResponse

func CreateDescribeServiceContainersResponse() (response *DescribeServiceContainersResponse)

CreateDescribeServiceContainersResponse creates a response to parse from DescribeServiceContainers response

type DescribeTaskInfoRequest

type DescribeTaskInfoRequest struct {
	*requests.RoaRequest
	TaskId string `position:"Path" name:"TaskId"`
}

DescribeTaskInfoRequest is the request struct for api DescribeTaskInfo

func CreateDescribeTaskInfoRequest

func CreateDescribeTaskInfoRequest() (request *DescribeTaskInfoRequest)

CreateDescribeTaskInfoRequest creates a request to invoke DescribeTaskInfo API

type DescribeTaskInfoResponse

type DescribeTaskInfoResponse struct {
	*responses.BaseResponse
}

DescribeTaskInfoResponse is the response struct for api DescribeTaskInfo

func CreateDescribeTaskInfoResponse

func CreateDescribeTaskInfoResponse() (response *DescribeTaskInfoResponse)

CreateDescribeTaskInfoResponse creates a response to parse from DescribeTaskInfo response

type DescribeTemplateAttributeRequest

type DescribeTemplateAttributeRequest struct {
	*requests.RoaRequest
	TemplateId string `position:"Path" name:"TemplateId"`
}

DescribeTemplateAttributeRequest is the request struct for api DescribeTemplateAttribute

func CreateDescribeTemplateAttributeRequest

func CreateDescribeTemplateAttributeRequest() (request *DescribeTemplateAttributeRequest)

CreateDescribeTemplateAttributeRequest creates a request to invoke DescribeTemplateAttribute API

type DescribeTemplateAttributeResponse

type DescribeTemplateAttributeResponse struct {
	*responses.BaseResponse
}

DescribeTemplateAttributeResponse is the response struct for api DescribeTemplateAttribute

func CreateDescribeTemplateAttributeResponse

func CreateDescribeTemplateAttributeResponse() (response *DescribeTemplateAttributeResponse)

CreateDescribeTemplateAttributeResponse creates a response to parse from DescribeTemplateAttribute response

type DescribeTemplatesRequest

type DescribeTemplatesRequest struct {
	*requests.RoaRequest
}

DescribeTemplatesRequest is the request struct for api DescribeTemplates

func CreateDescribeTemplatesRequest

func CreateDescribeTemplatesRequest() (request *DescribeTemplatesRequest)

CreateDescribeTemplatesRequest creates a request to invoke DescribeTemplates API

type DescribeTemplatesResponse

type DescribeTemplatesResponse struct {
	*responses.BaseResponse
}

DescribeTemplatesResponse is the response struct for api DescribeTemplates

func CreateDescribeTemplatesResponse

func CreateDescribeTemplatesResponse() (response *DescribeTemplatesResponse)

CreateDescribeTemplatesResponse creates a response to parse from DescribeTemplates response

type DescribeUserContainersRequest

type DescribeUserContainersRequest struct {
	*requests.RoaRequest
	ServiceId string `position:"Query" name:"ServiceId"`
}

DescribeUserContainersRequest is the request struct for api DescribeUserContainers

func CreateDescribeUserContainersRequest

func CreateDescribeUserContainersRequest() (request *DescribeUserContainersRequest)

CreateDescribeUserContainersRequest creates a request to invoke DescribeUserContainers API

type DescribeUserContainersResponse

type DescribeUserContainersResponse struct {
	*responses.BaseResponse
}

DescribeUserContainersResponse is the response struct for api DescribeUserContainers

func CreateDescribeUserContainersResponse

func CreateDescribeUserContainersResponse() (response *DescribeUserContainersResponse)

CreateDescribeUserContainersResponse creates a response to parse from DescribeUserContainers response

type DownloadClusterNodeCertsRequest

type DownloadClusterNodeCertsRequest struct {
	*requests.RoaRequest
	Token  string `position:"Path" name:"Token"`
	NodeId string `position:"Path" name:"NodeId"`
}

DownloadClusterNodeCertsRequest is the request struct for api DownloadClusterNodeCerts

func CreateDownloadClusterNodeCertsRequest

func CreateDownloadClusterNodeCertsRequest() (request *DownloadClusterNodeCertsRequest)

CreateDownloadClusterNodeCertsRequest creates a request to invoke DownloadClusterNodeCerts API

type DownloadClusterNodeCertsResponse

type DownloadClusterNodeCertsResponse struct {
	*responses.BaseResponse
}

DownloadClusterNodeCertsResponse is the response struct for api DownloadClusterNodeCerts

func CreateDownloadClusterNodeCertsResponse

func CreateDownloadClusterNodeCertsResponse() (response *DownloadClusterNodeCertsResponse)

CreateDownloadClusterNodeCertsResponse creates a response to parse from DownloadClusterNodeCerts response

type GatherLogsTokenRequest

type GatherLogsTokenRequest struct {
	*requests.RoaRequest
	Token string `position:"Path" name:"Token"`
}

GatherLogsTokenRequest is the request struct for api GatherLogsToken

func CreateGatherLogsTokenRequest

func CreateGatherLogsTokenRequest() (request *GatherLogsTokenRequest)

CreateGatherLogsTokenRequest creates a request to invoke GatherLogsToken API

type GatherLogsTokenResponse

type GatherLogsTokenResponse struct {
	*responses.BaseResponse
}

GatherLogsTokenResponse is the response struct for api GatherLogsToken

func CreateGatherLogsTokenResponse

func CreateGatherLogsTokenResponse() (response *GatherLogsTokenResponse)

CreateGatherLogsTokenResponse creates a response to parse from GatherLogsToken response

type GetClusterProjectsRequest

type GetClusterProjectsRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

GetClusterProjectsRequest is the request struct for api GetClusterProjects

func CreateGetClusterProjectsRequest

func CreateGetClusterProjectsRequest() (request *GetClusterProjectsRequest)

CreateGetClusterProjectsRequest creates a request to invoke GetClusterProjects API

type GetClusterProjectsResponse

type GetClusterProjectsResponse struct {
	*responses.BaseResponse
}

GetClusterProjectsResponse is the response struct for api GetClusterProjects

func CreateGetClusterProjectsResponse

func CreateGetClusterProjectsResponse() (response *GetClusterProjectsResponse)

CreateGetClusterProjectsResponse creates a response to parse from GetClusterProjects response

type GetProjectEventsRequest

type GetProjectEventsRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
	ProjectId string `position:"Path" name:"ProjectId"`
}

GetProjectEventsRequest is the request struct for api GetProjectEvents

func CreateGetProjectEventsRequest

func CreateGetProjectEventsRequest() (request *GetProjectEventsRequest)

CreateGetProjectEventsRequest creates a request to invoke GetProjectEvents API

type GetProjectEventsResponse

type GetProjectEventsResponse struct {
	*responses.BaseResponse
}

GetProjectEventsResponse is the response struct for api GetProjectEvents

func CreateGetProjectEventsResponse

func CreateGetProjectEventsResponse() (response *GetProjectEventsResponse)

CreateGetProjectEventsResponse creates a response to parse from GetProjectEvents response

type GetTriggerHookRequest

type GetTriggerHookRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
	ProjectId string `position:"Path" name:"ProjectId"`
}

GetTriggerHookRequest is the request struct for api GetTriggerHook

func CreateGetTriggerHookRequest

func CreateGetTriggerHookRequest() (request *GetTriggerHookRequest)

CreateGetTriggerHookRequest creates a request to invoke GetTriggerHook API

type GetTriggerHookResponse

type GetTriggerHookResponse struct {
	*responses.BaseResponse
}

GetTriggerHookResponse is the response struct for api GetTriggerHook

func CreateGetTriggerHookResponse

func CreateGetTriggerHookResponse() (response *GetTriggerHookResponse)

CreateGetTriggerHookResponse creates a response to parse from GetTriggerHook response

type ModifyClusterNameRequest

type ModifyClusterNameRequest struct {
	*requests.RoaRequest
}

ModifyClusterNameRequest is the request struct for api ModifyClusterName

func CreateModifyClusterNameRequest

func CreateModifyClusterNameRequest() (request *ModifyClusterNameRequest)

CreateModifyClusterNameRequest creates a request to invoke ModifyClusterName API

type ModifyClusterNameResponse

type ModifyClusterNameResponse struct {
	*responses.BaseResponse
}

ModifyClusterNameResponse is the response struct for api ModifyClusterName

func CreateModifyClusterNameResponse

func CreateModifyClusterNameResponse() (response *ModifyClusterNameResponse)

CreateModifyClusterNameResponse creates a response to parse from ModifyClusterName response

type ResetClusterNodeRequest

type ResetClusterNodeRequest struct {
	*requests.RoaRequest
	ClusterId  string `position:"Path" name:"ClusterId"`
	InstanceId string `position:"Path" name:"InstanceId"`
}

ResetClusterNodeRequest is the request struct for api ResetClusterNode

func CreateResetClusterNodeRequest

func CreateResetClusterNodeRequest() (request *ResetClusterNodeRequest)

CreateResetClusterNodeRequest creates a request to invoke ResetClusterNode API

type ResetClusterNodeResponse

type ResetClusterNodeResponse struct {
	*responses.BaseResponse
}

ResetClusterNodeResponse is the response struct for api ResetClusterNode

func CreateResetClusterNodeResponse

func CreateResetClusterNodeResponse() (response *ResetClusterNodeResponse)

CreateResetClusterNodeResponse creates a response to parse from ResetClusterNode response

type RevokeClusterTokenRequest

type RevokeClusterTokenRequest struct {
	*requests.RoaRequest
	Token string `position:"Path" name:"Token"`
}

RevokeClusterTokenRequest is the request struct for api RevokeClusterToken

func CreateRevokeClusterTokenRequest

func CreateRevokeClusterTokenRequest() (request *RevokeClusterTokenRequest)

CreateRevokeClusterTokenRequest creates a request to invoke RevokeClusterToken API

type RevokeClusterTokenResponse

type RevokeClusterTokenResponse struct {
	*responses.BaseResponse
}

RevokeClusterTokenResponse is the response struct for api RevokeClusterToken

func CreateRevokeClusterTokenResponse

func CreateRevokeClusterTokenResponse() (response *RevokeClusterTokenResponse)

CreateRevokeClusterTokenResponse creates a response to parse from RevokeClusterToken response

type ScaleClusterRequest

type ScaleClusterRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

ScaleClusterRequest is the request struct for api ScaleCluster

func CreateScaleClusterRequest

func CreateScaleClusterRequest() (request *ScaleClusterRequest)

CreateScaleClusterRequest creates a request to invoke ScaleCluster API

type ScaleClusterResponse

type ScaleClusterResponse struct {
	*responses.BaseResponse
}

ScaleClusterResponse is the response struct for api ScaleCluster

func CreateScaleClusterResponse

func CreateScaleClusterResponse() (response *ScaleClusterResponse)

CreateScaleClusterResponse creates a response to parse from ScaleCluster response

type ScaleInClusterRequest

type ScaleInClusterRequest struct {
	*requests.RoaRequest
	ClusterId string `position:"Path" name:"ClusterId"`
}

ScaleInClusterRequest is the request struct for api ScaleInCluster

func CreateScaleInClusterRequest

func CreateScaleInClusterRequest() (request *ScaleInClusterRequest)

CreateScaleInClusterRequest creates a request to invoke ScaleInCluster API

type ScaleInClusterResponse

type ScaleInClusterResponse struct {
	*responses.BaseResponse
}

ScaleInClusterResponse is the response struct for api ScaleInCluster

func CreateScaleInClusterResponse

func CreateScaleInClusterResponse() (response *ScaleInClusterResponse)

CreateScaleInClusterResponse creates a response to parse from ScaleInCluster response

type UpdateSubUserResoucesRequest

type UpdateSubUserResoucesRequest struct {
	*requests.RoaRequest
}

UpdateSubUserResoucesRequest is the request struct for api UpdateSubUserResouces

func CreateUpdateSubUserResoucesRequest

func CreateUpdateSubUserResoucesRequest() (request *UpdateSubUserResoucesRequest)

CreateUpdateSubUserResoucesRequest creates a request to invoke UpdateSubUserResouces API

type UpdateSubUserResoucesResponse

type UpdateSubUserResoucesResponse struct {
	*responses.BaseResponse
}

UpdateSubUserResoucesResponse is the response struct for api UpdateSubUserResouces

func CreateUpdateSubUserResoucesResponse

func CreateUpdateSubUserResoucesResponse() (response *UpdateSubUserResoucesResponse)

CreateUpdateSubUserResoucesResponse creates a response to parse from UpdateSubUserResouces response

type UpgradeClusterComponentsRequest

type UpgradeClusterComponentsRequest struct {
	*requests.RoaRequest
	ClusterId   string `position:"Path" name:"ClusterId"`
	ComponentId string `position:"Path" name:"ComponentId"`
}

UpgradeClusterComponentsRequest is the request struct for api UpgradeClusterComponents

func CreateUpgradeClusterComponentsRequest

func CreateUpgradeClusterComponentsRequest() (request *UpgradeClusterComponentsRequest)

CreateUpgradeClusterComponentsRequest creates a request to invoke UpgradeClusterComponents API

type UpgradeClusterComponentsResponse

type UpgradeClusterComponentsResponse struct {
	*responses.BaseResponse
}

UpgradeClusterComponentsResponse is the response struct for api UpgradeClusterComponents

func CreateUpgradeClusterComponentsResponse

func CreateUpgradeClusterComponentsResponse() (response *UpgradeClusterComponentsResponse)

CreateUpgradeClusterComponentsResponse creates a response to parse from UpgradeClusterComponents response

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL