sae

package
v1.61.1038 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var EndpointMap map[string]string

EndpointMap Endpoint Data

View Source
var EndpointType = "regional"

EndpointType regional or central

Functions

func GetEndpointMap

func GetEndpointMap() map[string]string

GetEndpointMap Get Endpoint Data Map

func GetEndpointType

func GetEndpointType() string

GetEndpointType Get Endpoint Type Value

func SetClientProperty

func SetClientProperty(client *Client, propertyName string, propertyValue interface{})

SetClientProperty Set Property by Reflect

func SetEndpointDataToClient

func SetEndpointDataToClient(client *Client)

SetEndpointDataToClient Set EndpointMap and ENdpointType

Types

type AbortAndRollbackChangeOrderRequest

type AbortAndRollbackChangeOrderRequest struct {
	*requests.RoaRequest
	ChangeOrderId string `position:"Query" name:"ChangeOrderId"`
}

AbortAndRollbackChangeOrderRequest is the request struct for api AbortAndRollbackChangeOrder

func CreateAbortAndRollbackChangeOrderRequest

func CreateAbortAndRollbackChangeOrderRequest() (request *AbortAndRollbackChangeOrderRequest)

CreateAbortAndRollbackChangeOrderRequest creates a request to invoke AbortAndRollbackChangeOrder API

type AbortAndRollbackChangeOrderResponse

type AbortAndRollbackChangeOrderResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Data      Data   `json:"Data" xml:"Data"`
}

AbortAndRollbackChangeOrderResponse is the response struct for api AbortAndRollbackChangeOrder

func CreateAbortAndRollbackChangeOrderResponse

func CreateAbortAndRollbackChangeOrderResponse() (response *AbortAndRollbackChangeOrderResponse)

CreateAbortAndRollbackChangeOrderResponse creates a response to parse from AbortAndRollbackChangeOrder response

type AbortChangeOrderRequest

type AbortChangeOrderRequest struct {
	*requests.RoaRequest
	ChangeOrderId string `position:"Query" name:"ChangeOrderId"`
}

AbortChangeOrderRequest is the request struct for api AbortChangeOrder

func CreateAbortChangeOrderRequest

func CreateAbortChangeOrderRequest() (request *AbortChangeOrderRequest)

CreateAbortChangeOrderRequest creates a request to invoke AbortChangeOrder API

type AbortChangeOrderResponse

type AbortChangeOrderResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Data      Data   `json:"Data" xml:"Data"`
}

AbortChangeOrderResponse is the response struct for api AbortChangeOrder

func CreateAbortChangeOrderResponse

func CreateAbortChangeOrderResponse() (response *AbortChangeOrderResponse)

CreateAbortChangeOrderResponse creates a response to parse from AbortChangeOrder response

type AppEventEntity added in v1.61.591

type AppEventEntity struct {
	AppEventEntityItem []AppEventEntityItem `json:"AppEventEntity" xml:"AppEventEntity"`
}

AppEventEntity is a nested struct in sae response

type AppEventEntityItem added in v1.61.591

type AppEventEntityItem struct {
	ObjectKind     string `json:"ObjectKind" xml:"ObjectKind"`
	ObjectName     string `json:"ObjectName" xml:"ObjectName"`
	EventType      string `json:"EventType" xml:"EventType"`
	Message        string `json:"Message" xml:"Message"`
	FirstTimestamp string `json:"FirstTimestamp" xml:"FirstTimestamp"`
	LastTimestamp  string `json:"LastTimestamp" xml:"LastTimestamp"`
	Reason         string `json:"Reason" xml:"Reason"`
}

AppEventEntityItem is a nested struct in sae response

type Application

type Application struct {
	Instances         int        `json:"Instances" xml:"Instances"`
	ScaleRuleEnabled  bool       `json:"ScaleRuleEnabled" xml:"ScaleRuleEnabled"`
	AppDescription    string     `json:"AppDescription" xml:"AppDescription"`
	AppId             string     `json:"AppId" xml:"AppId"`
	RunningInstances  int        `json:"RunningInstances" xml:"RunningInstances"`
	RegionId          string     `json:"RegionId" xml:"RegionId"`
	NamespaceId       string     `json:"NamespaceId" xml:"NamespaceId"`
	ScaleRuleType     string     `json:"ScaleRuleType" xml:"ScaleRuleType"`
	AppDeletingStatus bool       `json:"AppDeletingStatus" xml:"AppDeletingStatus"`
	AppName           string     `json:"AppName" xml:"AppName"`
	Tags              []TagsItem `json:"Tags" xml:"Tags"`
}

Application is a nested struct in sae response

type ApplicationGroup

type ApplicationGroup struct {
	GroupId              string `json:"GroupId" xml:"GroupId"`
	GroupName            string `json:"GroupName" xml:"GroupName"`
	GroupType            int    `json:"GroupType" xml:"GroupType"`
	PackageType          string `json:"PackageType" xml:"PackageType"`
	PackageVersion       string `json:"PackageVersion" xml:"PackageVersion"`
	ImageUrl             string `json:"ImageUrl" xml:"ImageUrl"`
	PackageUrl           string `json:"PackageUrl" xml:"PackageUrl"`
	Jdk                  string `json:"Jdk" xml:"Jdk"`
	WebContainer         string `json:"WebContainer" xml:"WebContainer"`
	EdasContainerVersion string `json:"EdasContainerVersion" xml:"EdasContainerVersion"`
	Replicas             int    `json:"Replicas" xml:"Replicas"`
	RunningInstances     int    `json:"RunningInstances" xml:"RunningInstances"`
}

ApplicationGroup is a nested struct in sae response

type ApplicationScalingRule added in v1.61.1003

type ApplicationScalingRule struct {
	ScaleRuleEnabled bool   `json:"ScaleRuleEnabled" xml:"ScaleRuleEnabled"`
	LastDisableTime  int64  `json:"LastDisableTime" xml:"LastDisableTime"`
	AppId            string `json:"AppId" xml:"AppId"`
	CreateTime       int64  `json:"CreateTime" xml:"CreateTime"`
	UpdateTime       int64  `json:"UpdateTime" xml:"UpdateTime"`
	ScaleRuleName    string `json:"ScaleRuleName" xml:"ScaleRuleName"`
	ScaleRuleType    string `json:"ScaleRuleType" xml:"ScaleRuleType"`
	Timer            Timer  `json:"Timer" xml:"Timer"`
	Metric           Metric `json:"Metric" xml:"Metric"`
}

ApplicationScalingRule is a nested struct in sae response

type ApplicationScalingRules added in v1.61.1003

type ApplicationScalingRules struct {
	ApplicationScalingRule []ApplicationScalingRule `json:"ApplicationScalingRule" xml:"ApplicationScalingRule"`
}

ApplicationScalingRules is a nested struct in sae response

type Applications

type Applications struct {
	Application []Application `json:"Application" xml:"Application"`
}

Applications is a nested struct in sae response

type BatchStartApplicationsRequest added in v1.61.591

type BatchStartApplicationsRequest struct {
	*requests.RoaRequest
	AppIds      string `position:"Query" name:"AppIds"`
	NamespaceId string `position:"Query" name:"NamespaceId"`
}

BatchStartApplicationsRequest is the request struct for api BatchStartApplications

func CreateBatchStartApplicationsRequest added in v1.61.591

func CreateBatchStartApplicationsRequest() (request *BatchStartApplicationsRequest)

CreateBatchStartApplicationsRequest creates a request to invoke BatchStartApplications API

type BatchStartApplicationsResponse added in v1.61.591

type BatchStartApplicationsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

BatchStartApplicationsResponse is the response struct for api BatchStartApplications

func CreateBatchStartApplicationsResponse added in v1.61.591

func CreateBatchStartApplicationsResponse() (response *BatchStartApplicationsResponse)

CreateBatchStartApplicationsResponse creates a response to parse from BatchStartApplications response

type BatchStopApplicationsRequest added in v1.61.591

type BatchStopApplicationsRequest struct {
	*requests.RoaRequest
	AppIds      string `position:"Query" name:"AppIds"`
	NamespaceId string `position:"Query" name:"NamespaceId"`
}

BatchStopApplicationsRequest is the request struct for api BatchStopApplications

func CreateBatchStopApplicationsRequest added in v1.61.591

func CreateBatchStopApplicationsRequest() (request *BatchStopApplicationsRequest)

CreateBatchStopApplicationsRequest creates a request to invoke BatchStopApplications API

type BatchStopApplicationsResponse added in v1.61.591

type BatchStopApplicationsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

BatchStopApplicationsResponse is the response struct for api BatchStopApplications

func CreateBatchStopApplicationsResponse added in v1.61.591

func CreateBatchStopApplicationsResponse() (response *BatchStopApplicationsResponse)

CreateBatchStopApplicationsResponse creates a response to parse from BatchStopApplications response

type BindSlbRequest

type BindSlbRequest struct {
	*requests.RoaRequest
	Intranet      string `position:"Query" name:"Intranet"`
	IntranetSlbId string `position:"Query" name:"IntranetSlbId"`
	InternetSlbId string `position:"Query" name:"InternetSlbId"`
	AppId         string `position:"Query" name:"AppId"`
	Internet      string `position:"Query" name:"Internet"`
}

BindSlbRequest is the request struct for api BindSlb

func CreateBindSlbRequest

func CreateBindSlbRequest() (request *BindSlbRequest)

CreateBindSlbRequest creates a request to invoke BindSlb API

type BindSlbResponse

type BindSlbResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

BindSlbResponse is the response struct for api BindSlb

func CreateBindSlbResponse

func CreateBindSlbResponse() (response *BindSlbResponse)

CreateBindSlbResponse creates a response to parse from BindSlb response

type ChangeOrder

type ChangeOrder struct {
	Status        int    `json:"Status" xml:"Status"`
	ChangeOrderId string `json:"ChangeOrderId" xml:"ChangeOrderId"`
	BatchType     string `json:"BatchType" xml:"BatchType"`
	CreateTime    string `json:"CreateTime" xml:"CreateTime"`
	CoType        string `json:"CoType" xml:"CoType"`
	CoTypeCode    string `json:"CoTypeCode" xml:"CoTypeCode"`
	FinishTime    string `json:"FinishTime" xml:"FinishTime"`
	Source        string `json:"Source" xml:"Source"`
	BatchCount    int    `json:"BatchCount" xml:"BatchCount"`
	AppId         string `json:"AppId" xml:"AppId"`
	Pipelines     string `json:"Pipelines" xml:"Pipelines"`
	UserId        string `json:"UserId" xml:"UserId"`
	NamespaceId   string `json:"NamespaceId" xml:"NamespaceId"`
	GroupId       string `json:"GroupId" xml:"GroupId"`
	CreateUserId  string `json:"CreateUserId" xml:"CreateUserId"`
	Description   string `json:"Description" xml:"Description"`
}

ChangeOrder is a nested struct in sae response

type ChangeOrderListInListChangeOrders added in v1.61.591

type ChangeOrderListInListChangeOrders struct {
	ChangeOrder []ChangeOrder `json:"ChangeOrder" xml:"ChangeOrder"`
}

ChangeOrderListInListChangeOrders is a nested struct in sae response

type ChangeOrderListInListNamespaceChangeOrders added in v1.61.591

type ChangeOrderListInListNamespaceChangeOrders struct {
	ChangeOrder []ChangeOrder `json:"ChangeOrder" xml:"ChangeOrder"`
}

ChangeOrderListInListNamespaceChangeOrders is a nested struct in sae 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://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

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://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

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 NewClientWithProvider

func NewClientWithProvider(regionId string, providers ...provider.Provider) (client *Client, err error)

NewClientWithProvider creates a sdk client with providers usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

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://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithRamRoleArnAndPolicy

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

NewClientWithRamRoleArn is a shortcut to create sdk client with ram roleArn and policy usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

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 usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

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://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func (*Client) AbortAndRollbackChangeOrder

func (client *Client) AbortAndRollbackChangeOrder(request *AbortAndRollbackChangeOrderRequest) (response *AbortAndRollbackChangeOrderResponse, err error)

AbortAndRollbackChangeOrder invokes the sae.AbortAndRollbackChangeOrder API synchronously

func (*Client) AbortAndRollbackChangeOrderWithCallback

func (client *Client) AbortAndRollbackChangeOrderWithCallback(request *AbortAndRollbackChangeOrderRequest, callback func(response *AbortAndRollbackChangeOrderResponse, err error)) <-chan int

AbortAndRollbackChangeOrderWithCallback invokes the sae.AbortAndRollbackChangeOrder API asynchronously

func (*Client) AbortAndRollbackChangeOrderWithChan

func (client *Client) AbortAndRollbackChangeOrderWithChan(request *AbortAndRollbackChangeOrderRequest) (<-chan *AbortAndRollbackChangeOrderResponse, <-chan error)

AbortAndRollbackChangeOrderWithChan invokes the sae.AbortAndRollbackChangeOrder API asynchronously

func (*Client) AbortChangeOrder

func (client *Client) AbortChangeOrder(request *AbortChangeOrderRequest) (response *AbortChangeOrderResponse, err error)

AbortChangeOrder invokes the sae.AbortChangeOrder API synchronously

func (*Client) AbortChangeOrderWithCallback

func (client *Client) AbortChangeOrderWithCallback(request *AbortChangeOrderRequest, callback func(response *AbortChangeOrderResponse, err error)) <-chan int

AbortChangeOrderWithCallback invokes the sae.AbortChangeOrder API asynchronously

func (*Client) AbortChangeOrderWithChan

func (client *Client) AbortChangeOrderWithChan(request *AbortChangeOrderRequest) (<-chan *AbortChangeOrderResponse, <-chan error)

AbortChangeOrderWithChan invokes the sae.AbortChangeOrder API asynchronously

func (*Client) BatchStartApplications added in v1.61.591

func (client *Client) BatchStartApplications(request *BatchStartApplicationsRequest) (response *BatchStartApplicationsResponse, err error)

BatchStartApplications invokes the sae.BatchStartApplications API synchronously

func (*Client) BatchStartApplicationsWithCallback added in v1.61.591

func (client *Client) BatchStartApplicationsWithCallback(request *BatchStartApplicationsRequest, callback func(response *BatchStartApplicationsResponse, err error)) <-chan int

BatchStartApplicationsWithCallback invokes the sae.BatchStartApplications API asynchronously

func (*Client) BatchStartApplicationsWithChan added in v1.61.591

func (client *Client) BatchStartApplicationsWithChan(request *BatchStartApplicationsRequest) (<-chan *BatchStartApplicationsResponse, <-chan error)

BatchStartApplicationsWithChan invokes the sae.BatchStartApplications API asynchronously

func (*Client) BatchStopApplications added in v1.61.591

func (client *Client) BatchStopApplications(request *BatchStopApplicationsRequest) (response *BatchStopApplicationsResponse, err error)

BatchStopApplications invokes the sae.BatchStopApplications API synchronously

func (*Client) BatchStopApplicationsWithCallback added in v1.61.591

func (client *Client) BatchStopApplicationsWithCallback(request *BatchStopApplicationsRequest, callback func(response *BatchStopApplicationsResponse, err error)) <-chan int

BatchStopApplicationsWithCallback invokes the sae.BatchStopApplications API asynchronously

func (*Client) BatchStopApplicationsWithChan added in v1.61.591

func (client *Client) BatchStopApplicationsWithChan(request *BatchStopApplicationsRequest) (<-chan *BatchStopApplicationsResponse, <-chan error)

BatchStopApplicationsWithChan invokes the sae.BatchStopApplications API asynchronously

func (*Client) BindSlb

func (client *Client) BindSlb(request *BindSlbRequest) (response *BindSlbResponse, err error)

BindSlb invokes the sae.BindSlb API synchronously

func (*Client) BindSlbWithCallback

func (client *Client) BindSlbWithCallback(request *BindSlbRequest, callback func(response *BindSlbResponse, err error)) <-chan int

BindSlbWithCallback invokes the sae.BindSlb API asynchronously

func (*Client) BindSlbWithChan

func (client *Client) BindSlbWithChan(request *BindSlbRequest) (<-chan *BindSlbResponse, <-chan error)

BindSlbWithChan invokes the sae.BindSlb API asynchronously

func (*Client) ConfirmPipelineBatch

func (client *Client) ConfirmPipelineBatch(request *ConfirmPipelineBatchRequest) (response *ConfirmPipelineBatchResponse, err error)

ConfirmPipelineBatch invokes the sae.ConfirmPipelineBatch API synchronously

func (*Client) ConfirmPipelineBatchWithCallback

func (client *Client) ConfirmPipelineBatchWithCallback(request *ConfirmPipelineBatchRequest, callback func(response *ConfirmPipelineBatchResponse, err error)) <-chan int

ConfirmPipelineBatchWithCallback invokes the sae.ConfirmPipelineBatch API asynchronously

func (*Client) ConfirmPipelineBatchWithChan

func (client *Client) ConfirmPipelineBatchWithChan(request *ConfirmPipelineBatchRequest) (<-chan *ConfirmPipelineBatchResponse, <-chan error)

ConfirmPipelineBatchWithChan invokes the sae.ConfirmPipelineBatch API asynchronously

func (*Client) CreateApplication

func (client *Client) CreateApplication(request *CreateApplicationRequest) (response *CreateApplicationResponse, err error)

CreateApplication invokes the sae.CreateApplication API synchronously

func (*Client) CreateApplicationScalingRule added in v1.61.1003

func (client *Client) CreateApplicationScalingRule(request *CreateApplicationScalingRuleRequest) (response *CreateApplicationScalingRuleResponse, err error)

CreateApplicationScalingRule invokes the sae.CreateApplicationScalingRule API synchronously

func (*Client) CreateApplicationScalingRuleWithCallback added in v1.61.1003

func (client *Client) CreateApplicationScalingRuleWithCallback(request *CreateApplicationScalingRuleRequest, callback func(response *CreateApplicationScalingRuleResponse, err error)) <-chan int

CreateApplicationScalingRuleWithCallback invokes the sae.CreateApplicationScalingRule API asynchronously

func (*Client) CreateApplicationScalingRuleWithChan added in v1.61.1003

func (client *Client) CreateApplicationScalingRuleWithChan(request *CreateApplicationScalingRuleRequest) (<-chan *CreateApplicationScalingRuleResponse, <-chan error)

CreateApplicationScalingRuleWithChan invokes the sae.CreateApplicationScalingRule API asynchronously

func (*Client) CreateApplicationWithCallback

func (client *Client) CreateApplicationWithCallback(request *CreateApplicationRequest, callback func(response *CreateApplicationResponse, err error)) <-chan int

CreateApplicationWithCallback invokes the sae.CreateApplication API asynchronously

func (*Client) CreateApplicationWithChan

func (client *Client) CreateApplicationWithChan(request *CreateApplicationRequest) (<-chan *CreateApplicationResponse, <-chan error)

CreateApplicationWithChan invokes the sae.CreateApplication API asynchronously

func (*Client) CreateConfigMap added in v1.61.591

func (client *Client) CreateConfigMap(request *CreateConfigMapRequest) (response *CreateConfigMapResponse, err error)

CreateConfigMap invokes the sae.CreateConfigMap API synchronously

func (*Client) CreateConfigMapWithCallback added in v1.61.591

func (client *Client) CreateConfigMapWithCallback(request *CreateConfigMapRequest, callback func(response *CreateConfigMapResponse, err error)) <-chan int

CreateConfigMapWithCallback invokes the sae.CreateConfigMap API asynchronously

func (*Client) CreateConfigMapWithChan added in v1.61.591

func (client *Client) CreateConfigMapWithChan(request *CreateConfigMapRequest) (<-chan *CreateConfigMapResponse, <-chan error)

CreateConfigMapWithChan invokes the sae.CreateConfigMap API asynchronously

func (*Client) CreateIngress added in v1.61.591

func (client *Client) CreateIngress(request *CreateIngressRequest) (response *CreateIngressResponse, err error)

CreateIngress invokes the sae.CreateIngress API synchronously

func (*Client) CreateIngressWithCallback added in v1.61.591

func (client *Client) CreateIngressWithCallback(request *CreateIngressRequest, callback func(response *CreateIngressResponse, err error)) <-chan int

CreateIngressWithCallback invokes the sae.CreateIngress API asynchronously

func (*Client) CreateIngressWithChan added in v1.61.591

func (client *Client) CreateIngressWithChan(request *CreateIngressRequest) (<-chan *CreateIngressResponse, <-chan error)

CreateIngressWithChan invokes the sae.CreateIngress API asynchronously

func (*Client) CreateNamespace

func (client *Client) CreateNamespace(request *CreateNamespaceRequest) (response *CreateNamespaceResponse, err error)

CreateNamespace invokes the sae.CreateNamespace API synchronously

func (*Client) CreateNamespaceWithCallback

func (client *Client) CreateNamespaceWithCallback(request *CreateNamespaceRequest, callback func(response *CreateNamespaceResponse, err error)) <-chan int

CreateNamespaceWithCallback invokes the sae.CreateNamespace API asynchronously

func (*Client) CreateNamespaceWithChan

func (client *Client) CreateNamespaceWithChan(request *CreateNamespaceRequest) (<-chan *CreateNamespaceResponse, <-chan error)

CreateNamespaceWithChan invokes the sae.CreateNamespace API asynchronously

func (*Client) DeleteApplication

func (client *Client) DeleteApplication(request *DeleteApplicationRequest) (response *DeleteApplicationResponse, err error)

DeleteApplication invokes the sae.DeleteApplication API synchronously

func (*Client) DeleteApplicationScalingRule added in v1.61.1003

func (client *Client) DeleteApplicationScalingRule(request *DeleteApplicationScalingRuleRequest) (response *DeleteApplicationScalingRuleResponse, err error)

DeleteApplicationScalingRule invokes the sae.DeleteApplicationScalingRule API synchronously

func (*Client) DeleteApplicationScalingRuleWithCallback added in v1.61.1003

func (client *Client) DeleteApplicationScalingRuleWithCallback(request *DeleteApplicationScalingRuleRequest, callback func(response *DeleteApplicationScalingRuleResponse, err error)) <-chan int

DeleteApplicationScalingRuleWithCallback invokes the sae.DeleteApplicationScalingRule API asynchronously

func (*Client) DeleteApplicationScalingRuleWithChan added in v1.61.1003

func (client *Client) DeleteApplicationScalingRuleWithChan(request *DeleteApplicationScalingRuleRequest) (<-chan *DeleteApplicationScalingRuleResponse, <-chan error)

DeleteApplicationScalingRuleWithChan invokes the sae.DeleteApplicationScalingRule API asynchronously

func (*Client) DeleteApplicationWithCallback

func (client *Client) DeleteApplicationWithCallback(request *DeleteApplicationRequest, callback func(response *DeleteApplicationResponse, err error)) <-chan int

DeleteApplicationWithCallback invokes the sae.DeleteApplication API asynchronously

func (*Client) DeleteApplicationWithChan

func (client *Client) DeleteApplicationWithChan(request *DeleteApplicationRequest) (<-chan *DeleteApplicationResponse, <-chan error)

DeleteApplicationWithChan invokes the sae.DeleteApplication API asynchronously

func (*Client) DeleteConfigMap added in v1.61.591

func (client *Client) DeleteConfigMap(request *DeleteConfigMapRequest) (response *DeleteConfigMapResponse, err error)

DeleteConfigMap invokes the sae.DeleteConfigMap API synchronously

func (*Client) DeleteConfigMapWithCallback added in v1.61.591

func (client *Client) DeleteConfigMapWithCallback(request *DeleteConfigMapRequest, callback func(response *DeleteConfigMapResponse, err error)) <-chan int

DeleteConfigMapWithCallback invokes the sae.DeleteConfigMap API asynchronously

func (*Client) DeleteConfigMapWithChan added in v1.61.591

func (client *Client) DeleteConfigMapWithChan(request *DeleteConfigMapRequest) (<-chan *DeleteConfigMapResponse, <-chan error)

DeleteConfigMapWithChan invokes the sae.DeleteConfigMap API asynchronously

func (*Client) DeleteIngress added in v1.61.591

func (client *Client) DeleteIngress(request *DeleteIngressRequest) (response *DeleteIngressResponse, err error)

DeleteIngress invokes the sae.DeleteIngress API synchronously

func (*Client) DeleteIngressWithCallback added in v1.61.591

func (client *Client) DeleteIngressWithCallback(request *DeleteIngressRequest, callback func(response *DeleteIngressResponse, err error)) <-chan int

DeleteIngressWithCallback invokes the sae.DeleteIngress API asynchronously

func (*Client) DeleteIngressWithChan added in v1.61.591

func (client *Client) DeleteIngressWithChan(request *DeleteIngressRequest) (<-chan *DeleteIngressResponse, <-chan error)

DeleteIngressWithChan invokes the sae.DeleteIngress API asynchronously

func (*Client) DeleteNamespace

func (client *Client) DeleteNamespace(request *DeleteNamespaceRequest) (response *DeleteNamespaceResponse, err error)

DeleteNamespace invokes the sae.DeleteNamespace API synchronously

func (*Client) DeleteNamespaceWithCallback

func (client *Client) DeleteNamespaceWithCallback(request *DeleteNamespaceRequest, callback func(response *DeleteNamespaceResponse, err error)) <-chan int

DeleteNamespaceWithCallback invokes the sae.DeleteNamespace API asynchronously

func (*Client) DeleteNamespaceWithChan

func (client *Client) DeleteNamespaceWithChan(request *DeleteNamespaceRequest) (<-chan *DeleteNamespaceResponse, <-chan error)

DeleteNamespaceWithChan invokes the sae.DeleteNamespace API asynchronously

func (*Client) DeployApplication

func (client *Client) DeployApplication(request *DeployApplicationRequest) (response *DeployApplicationResponse, err error)

DeployApplication invokes the sae.DeployApplication API synchronously

func (*Client) DeployApplicationWithCallback

func (client *Client) DeployApplicationWithCallback(request *DeployApplicationRequest, callback func(response *DeployApplicationResponse, err error)) <-chan int

DeployApplicationWithCallback invokes the sae.DeployApplication API asynchronously

func (*Client) DeployApplicationWithChan

func (client *Client) DeployApplicationWithChan(request *DeployApplicationRequest) (<-chan *DeployApplicationResponse, <-chan error)

DeployApplicationWithChan invokes the sae.DeployApplication API asynchronously

func (*Client) DescribeApplicationConfig

func (client *Client) DescribeApplicationConfig(request *DescribeApplicationConfigRequest) (response *DescribeApplicationConfigResponse, err error)

DescribeApplicationConfig invokes the sae.DescribeApplicationConfig API synchronously

func (*Client) DescribeApplicationConfigWithCallback

func (client *Client) DescribeApplicationConfigWithCallback(request *DescribeApplicationConfigRequest, callback func(response *DescribeApplicationConfigResponse, err error)) <-chan int

DescribeApplicationConfigWithCallback invokes the sae.DescribeApplicationConfig API asynchronously

func (*Client) DescribeApplicationConfigWithChan

func (client *Client) DescribeApplicationConfigWithChan(request *DescribeApplicationConfigRequest) (<-chan *DescribeApplicationConfigResponse, <-chan error)

DescribeApplicationConfigWithChan invokes the sae.DescribeApplicationConfig API asynchronously

func (*Client) DescribeApplicationGroups

func (client *Client) DescribeApplicationGroups(request *DescribeApplicationGroupsRequest) (response *DescribeApplicationGroupsResponse, err error)

DescribeApplicationGroups invokes the sae.DescribeApplicationGroups API synchronously

func (*Client) DescribeApplicationGroupsWithCallback

func (client *Client) DescribeApplicationGroupsWithCallback(request *DescribeApplicationGroupsRequest, callback func(response *DescribeApplicationGroupsResponse, err error)) <-chan int

DescribeApplicationGroupsWithCallback invokes the sae.DescribeApplicationGroups API asynchronously

func (*Client) DescribeApplicationGroupsWithChan

func (client *Client) DescribeApplicationGroupsWithChan(request *DescribeApplicationGroupsRequest) (<-chan *DescribeApplicationGroupsResponse, <-chan error)

DescribeApplicationGroupsWithChan invokes the sae.DescribeApplicationGroups API asynchronously

func (*Client) DescribeApplicationImage

func (client *Client) DescribeApplicationImage(request *DescribeApplicationImageRequest) (response *DescribeApplicationImageResponse, err error)

DescribeApplicationImage invokes the sae.DescribeApplicationImage API synchronously

func (*Client) DescribeApplicationImageWithCallback

func (client *Client) DescribeApplicationImageWithCallback(request *DescribeApplicationImageRequest, callback func(response *DescribeApplicationImageResponse, err error)) <-chan int

DescribeApplicationImageWithCallback invokes the sae.DescribeApplicationImage API asynchronously

func (*Client) DescribeApplicationImageWithChan

func (client *Client) DescribeApplicationImageWithChan(request *DescribeApplicationImageRequest) (<-chan *DescribeApplicationImageResponse, <-chan error)

DescribeApplicationImageWithChan invokes the sae.DescribeApplicationImage API asynchronously

func (*Client) DescribeApplicationInstances

func (client *Client) DescribeApplicationInstances(request *DescribeApplicationInstancesRequest) (response *DescribeApplicationInstancesResponse, err error)

DescribeApplicationInstances invokes the sae.DescribeApplicationInstances API synchronously

func (*Client) DescribeApplicationInstancesWithCallback

func (client *Client) DescribeApplicationInstancesWithCallback(request *DescribeApplicationInstancesRequest, callback func(response *DescribeApplicationInstancesResponse, err error)) <-chan int

DescribeApplicationInstancesWithCallback invokes the sae.DescribeApplicationInstances API asynchronously

func (*Client) DescribeApplicationInstancesWithChan

func (client *Client) DescribeApplicationInstancesWithChan(request *DescribeApplicationInstancesRequest) (<-chan *DescribeApplicationInstancesResponse, <-chan error)

DescribeApplicationInstancesWithChan invokes the sae.DescribeApplicationInstances API asynchronously

func (*Client) DescribeApplicationScalingRules added in v1.61.1003

func (client *Client) DescribeApplicationScalingRules(request *DescribeApplicationScalingRulesRequest) (response *DescribeApplicationScalingRulesResponse, err error)

DescribeApplicationScalingRules invokes the sae.DescribeApplicationScalingRules API synchronously

func (*Client) DescribeApplicationScalingRulesWithCallback added in v1.61.1003

func (client *Client) DescribeApplicationScalingRulesWithCallback(request *DescribeApplicationScalingRulesRequest, callback func(response *DescribeApplicationScalingRulesResponse, err error)) <-chan int

DescribeApplicationScalingRulesWithCallback invokes the sae.DescribeApplicationScalingRules API asynchronously

func (*Client) DescribeApplicationScalingRulesWithChan added in v1.61.1003

func (client *Client) DescribeApplicationScalingRulesWithChan(request *DescribeApplicationScalingRulesRequest) (<-chan *DescribeApplicationScalingRulesResponse, <-chan error)

DescribeApplicationScalingRulesWithChan invokes the sae.DescribeApplicationScalingRules API asynchronously

func (*Client) DescribeApplicationSlbs

func (client *Client) DescribeApplicationSlbs(request *DescribeApplicationSlbsRequest) (response *DescribeApplicationSlbsResponse, err error)

DescribeApplicationSlbs invokes the sae.DescribeApplicationSlbs API synchronously

func (*Client) DescribeApplicationSlbsWithCallback

func (client *Client) DescribeApplicationSlbsWithCallback(request *DescribeApplicationSlbsRequest, callback func(response *DescribeApplicationSlbsResponse, err error)) <-chan int

DescribeApplicationSlbsWithCallback invokes the sae.DescribeApplicationSlbs API asynchronously

func (*Client) DescribeApplicationSlbsWithChan

func (client *Client) DescribeApplicationSlbsWithChan(request *DescribeApplicationSlbsRequest) (<-chan *DescribeApplicationSlbsResponse, <-chan error)

DescribeApplicationSlbsWithChan invokes the sae.DescribeApplicationSlbs API asynchronously

func (*Client) DescribeApplicationStatus

func (client *Client) DescribeApplicationStatus(request *DescribeApplicationStatusRequest) (response *DescribeApplicationStatusResponse, err error)

DescribeApplicationStatus invokes the sae.DescribeApplicationStatus API synchronously

func (*Client) DescribeApplicationStatusWithCallback

func (client *Client) DescribeApplicationStatusWithCallback(request *DescribeApplicationStatusRequest, callback func(response *DescribeApplicationStatusResponse, err error)) <-chan int

DescribeApplicationStatusWithCallback invokes the sae.DescribeApplicationStatus API asynchronously

func (*Client) DescribeApplicationStatusWithChan

func (client *Client) DescribeApplicationStatusWithChan(request *DescribeApplicationStatusRequest) (<-chan *DescribeApplicationStatusResponse, <-chan error)

DescribeApplicationStatusWithChan invokes the sae.DescribeApplicationStatus API asynchronously

func (*Client) DescribeChangeOrder

func (client *Client) DescribeChangeOrder(request *DescribeChangeOrderRequest) (response *DescribeChangeOrderResponse, err error)

DescribeChangeOrder invokes the sae.DescribeChangeOrder API synchronously

func (*Client) DescribeChangeOrderWithCallback

func (client *Client) DescribeChangeOrderWithCallback(request *DescribeChangeOrderRequest, callback func(response *DescribeChangeOrderResponse, err error)) <-chan int

DescribeChangeOrderWithCallback invokes the sae.DescribeChangeOrder API asynchronously

func (*Client) DescribeChangeOrderWithChan

func (client *Client) DescribeChangeOrderWithChan(request *DescribeChangeOrderRequest) (<-chan *DescribeChangeOrderResponse, <-chan error)

DescribeChangeOrderWithChan invokes the sae.DescribeChangeOrder API asynchronously

func (*Client) DescribeComponents

func (client *Client) DescribeComponents(request *DescribeComponentsRequest) (response *DescribeComponentsResponse, err error)

DescribeComponents invokes the sae.DescribeComponents API synchronously

func (*Client) DescribeComponentsWithCallback

func (client *Client) DescribeComponentsWithCallback(request *DescribeComponentsRequest, callback func(response *DescribeComponentsResponse, err error)) <-chan int

DescribeComponentsWithCallback invokes the sae.DescribeComponents API asynchronously

func (*Client) DescribeComponentsWithChan

func (client *Client) DescribeComponentsWithChan(request *DescribeComponentsRequest) (<-chan *DescribeComponentsResponse, <-chan error)

DescribeComponentsWithChan invokes the sae.DescribeComponents API asynchronously

func (*Client) DescribeConfigMap added in v1.61.591

func (client *Client) DescribeConfigMap(request *DescribeConfigMapRequest) (response *DescribeConfigMapResponse, err error)

DescribeConfigMap invokes the sae.DescribeConfigMap API synchronously

func (*Client) DescribeConfigMapWithCallback added in v1.61.591

func (client *Client) DescribeConfigMapWithCallback(request *DescribeConfigMapRequest, callback func(response *DescribeConfigMapResponse, err error)) <-chan int

DescribeConfigMapWithCallback invokes the sae.DescribeConfigMap API asynchronously

func (*Client) DescribeConfigMapWithChan added in v1.61.591

func (client *Client) DescribeConfigMapWithChan(request *DescribeConfigMapRequest) (<-chan *DescribeConfigMapResponse, <-chan error)

DescribeConfigMapWithChan invokes the sae.DescribeConfigMap API asynchronously

func (*Client) DescribeEdasContainers

func (client *Client) DescribeEdasContainers(request *DescribeEdasContainersRequest) (response *DescribeEdasContainersResponse, err error)

DescribeEdasContainers invokes the sae.DescribeEdasContainers API synchronously

func (*Client) DescribeEdasContainersWithCallback

func (client *Client) DescribeEdasContainersWithCallback(request *DescribeEdasContainersRequest, callback func(response *DescribeEdasContainersResponse, err error)) <-chan int

DescribeEdasContainersWithCallback invokes the sae.DescribeEdasContainers API asynchronously

func (*Client) DescribeEdasContainersWithChan

func (client *Client) DescribeEdasContainersWithChan(request *DescribeEdasContainersRequest) (<-chan *DescribeEdasContainersResponse, <-chan error)

DescribeEdasContainersWithChan invokes the sae.DescribeEdasContainers API asynchronously

func (*Client) DescribeIngress added in v1.61.591

func (client *Client) DescribeIngress(request *DescribeIngressRequest) (response *DescribeIngressResponse, err error)

DescribeIngress invokes the sae.DescribeIngress API synchronously

func (*Client) DescribeIngressWithCallback added in v1.61.591

func (client *Client) DescribeIngressWithCallback(request *DescribeIngressRequest, callback func(response *DescribeIngressResponse, err error)) <-chan int

DescribeIngressWithCallback invokes the sae.DescribeIngress API asynchronously

func (*Client) DescribeIngressWithChan added in v1.61.591

func (client *Client) DescribeIngressWithChan(request *DescribeIngressRequest) (<-chan *DescribeIngressResponse, <-chan error)

DescribeIngressWithChan invokes the sae.DescribeIngress API asynchronously

func (*Client) DescribeInstanceLog

func (client *Client) DescribeInstanceLog(request *DescribeInstanceLogRequest) (response *DescribeInstanceLogResponse, err error)

DescribeInstanceLog invokes the sae.DescribeInstanceLog API synchronously

func (*Client) DescribeInstanceLogWithCallback

func (client *Client) DescribeInstanceLogWithCallback(request *DescribeInstanceLogRequest, callback func(response *DescribeInstanceLogResponse, err error)) <-chan int

DescribeInstanceLogWithCallback invokes the sae.DescribeInstanceLog API asynchronously

func (*Client) DescribeInstanceLogWithChan

func (client *Client) DescribeInstanceLogWithChan(request *DescribeInstanceLogRequest) (<-chan *DescribeInstanceLogResponse, <-chan error)

DescribeInstanceLogWithChan invokes the sae.DescribeInstanceLog API asynchronously

func (*Client) DescribeInstanceSpecifications

func (client *Client) DescribeInstanceSpecifications(request *DescribeInstanceSpecificationsRequest) (response *DescribeInstanceSpecificationsResponse, err error)

DescribeInstanceSpecifications invokes the sae.DescribeInstanceSpecifications API synchronously

func (*Client) DescribeInstanceSpecificationsWithCallback

func (client *Client) DescribeInstanceSpecificationsWithCallback(request *DescribeInstanceSpecificationsRequest, callback func(response *DescribeInstanceSpecificationsResponse, err error)) <-chan int

DescribeInstanceSpecificationsWithCallback invokes the sae.DescribeInstanceSpecifications API asynchronously

func (*Client) DescribeInstanceSpecificationsWithChan

func (client *Client) DescribeInstanceSpecificationsWithChan(request *DescribeInstanceSpecificationsRequest) (<-chan *DescribeInstanceSpecificationsResponse, <-chan error)

DescribeInstanceSpecificationsWithChan invokes the sae.DescribeInstanceSpecifications API asynchronously

func (*Client) DescribeNamespace

func (client *Client) DescribeNamespace(request *DescribeNamespaceRequest) (response *DescribeNamespaceResponse, err error)

DescribeNamespace invokes the sae.DescribeNamespace API synchronously

func (*Client) DescribeNamespaceList

func (client *Client) DescribeNamespaceList(request *DescribeNamespaceListRequest) (response *DescribeNamespaceListResponse, err error)

DescribeNamespaceList invokes the sae.DescribeNamespaceList API synchronously

func (*Client) DescribeNamespaceListWithCallback

func (client *Client) DescribeNamespaceListWithCallback(request *DescribeNamespaceListRequest, callback func(response *DescribeNamespaceListResponse, err error)) <-chan int

DescribeNamespaceListWithCallback invokes the sae.DescribeNamespaceList API asynchronously

func (*Client) DescribeNamespaceListWithChan

func (client *Client) DescribeNamespaceListWithChan(request *DescribeNamespaceListRequest) (<-chan *DescribeNamespaceListResponse, <-chan error)

DescribeNamespaceListWithChan invokes the sae.DescribeNamespaceList API asynchronously

func (*Client) DescribeNamespaceResources added in v1.61.591

func (client *Client) DescribeNamespaceResources(request *DescribeNamespaceResourcesRequest) (response *DescribeNamespaceResourcesResponse, err error)

DescribeNamespaceResources invokes the sae.DescribeNamespaceResources API synchronously

func (*Client) DescribeNamespaceResourcesWithCallback added in v1.61.591

func (client *Client) DescribeNamespaceResourcesWithCallback(request *DescribeNamespaceResourcesRequest, callback func(response *DescribeNamespaceResourcesResponse, err error)) <-chan int

DescribeNamespaceResourcesWithCallback invokes the sae.DescribeNamespaceResources API asynchronously

func (*Client) DescribeNamespaceResourcesWithChan added in v1.61.591

func (client *Client) DescribeNamespaceResourcesWithChan(request *DescribeNamespaceResourcesRequest) (<-chan *DescribeNamespaceResourcesResponse, <-chan error)

DescribeNamespaceResourcesWithChan invokes the sae.DescribeNamespaceResources API asynchronously

func (*Client) DescribeNamespaceWithCallback

func (client *Client) DescribeNamespaceWithCallback(request *DescribeNamespaceRequest, callback func(response *DescribeNamespaceResponse, err error)) <-chan int

DescribeNamespaceWithCallback invokes the sae.DescribeNamespace API asynchronously

func (*Client) DescribeNamespaceWithChan

func (client *Client) DescribeNamespaceWithChan(request *DescribeNamespaceRequest) (<-chan *DescribeNamespaceResponse, <-chan error)

DescribeNamespaceWithChan invokes the sae.DescribeNamespace API asynchronously

func (*Client) DescribeNamespaces

func (client *Client) DescribeNamespaces(request *DescribeNamespacesRequest) (response *DescribeNamespacesResponse, err error)

DescribeNamespaces invokes the sae.DescribeNamespaces API synchronously

func (*Client) DescribeNamespacesWithCallback

func (client *Client) DescribeNamespacesWithCallback(request *DescribeNamespacesRequest, callback func(response *DescribeNamespacesResponse, err error)) <-chan int

DescribeNamespacesWithCallback invokes the sae.DescribeNamespaces API asynchronously

func (*Client) DescribeNamespacesWithChan

func (client *Client) DescribeNamespacesWithChan(request *DescribeNamespacesRequest) (<-chan *DescribeNamespacesResponse, <-chan error)

DescribeNamespacesWithChan invokes the sae.DescribeNamespaces API asynchronously

func (*Client) DescribePipeline added in v1.61.1003

func (client *Client) DescribePipeline(request *DescribePipelineRequest) (response *DescribePipelineResponse, err error)

DescribePipeline invokes the sae.DescribePipeline API synchronously

func (*Client) DescribePipelineWithCallback added in v1.61.1003

func (client *Client) DescribePipelineWithCallback(request *DescribePipelineRequest, callback func(response *DescribePipelineResponse, err error)) <-chan int

DescribePipelineWithCallback invokes the sae.DescribePipeline API asynchronously

func (*Client) DescribePipelineWithChan added in v1.61.1003

func (client *Client) DescribePipelineWithChan(request *DescribePipelineRequest) (<-chan *DescribePipelineResponse, <-chan error)

DescribePipelineWithChan invokes the sae.DescribePipeline API asynchronously

func (*Client) DescribeRegions

func (client *Client) DescribeRegions(request *DescribeRegionsRequest) (response *DescribeRegionsResponse, err error)

DescribeRegions invokes the sae.DescribeRegions API synchronously

func (*Client) DescribeRegionsWithCallback

func (client *Client) DescribeRegionsWithCallback(request *DescribeRegionsRequest, callback func(response *DescribeRegionsResponse, err error)) <-chan int

DescribeRegionsWithCallback invokes the sae.DescribeRegions API asynchronously

func (*Client) DescribeRegionsWithChan

func (client *Client) DescribeRegionsWithChan(request *DescribeRegionsRequest) (<-chan *DescribeRegionsResponse, <-chan error)

DescribeRegionsWithChan invokes the sae.DescribeRegions API asynchronously

func (*Client) DisableApplicationScalingRule added in v1.61.1003

func (client *Client) DisableApplicationScalingRule(request *DisableApplicationScalingRuleRequest) (response *DisableApplicationScalingRuleResponse, err error)

DisableApplicationScalingRule invokes the sae.DisableApplicationScalingRule API synchronously

func (*Client) DisableApplicationScalingRuleWithCallback added in v1.61.1003

func (client *Client) DisableApplicationScalingRuleWithCallback(request *DisableApplicationScalingRuleRequest, callback func(response *DisableApplicationScalingRuleResponse, err error)) <-chan int

DisableApplicationScalingRuleWithCallback invokes the sae.DisableApplicationScalingRule API asynchronously

func (*Client) DisableApplicationScalingRuleWithChan added in v1.61.1003

func (client *Client) DisableApplicationScalingRuleWithChan(request *DisableApplicationScalingRuleRequest) (<-chan *DisableApplicationScalingRuleResponse, <-chan error)

DisableApplicationScalingRuleWithChan invokes the sae.DisableApplicationScalingRule API asynchronously

func (*Client) EnableApplicationScalingRule added in v1.61.1003

func (client *Client) EnableApplicationScalingRule(request *EnableApplicationScalingRuleRequest) (response *EnableApplicationScalingRuleResponse, err error)

EnableApplicationScalingRule invokes the sae.EnableApplicationScalingRule API synchronously

func (*Client) EnableApplicationScalingRuleWithCallback added in v1.61.1003

func (client *Client) EnableApplicationScalingRuleWithCallback(request *EnableApplicationScalingRuleRequest, callback func(response *EnableApplicationScalingRuleResponse, err error)) <-chan int

EnableApplicationScalingRuleWithCallback invokes the sae.EnableApplicationScalingRule API asynchronously

func (*Client) EnableApplicationScalingRuleWithChan added in v1.61.1003

func (client *Client) EnableApplicationScalingRuleWithChan(request *EnableApplicationScalingRuleRequest) (<-chan *EnableApplicationScalingRuleResponse, <-chan error)

EnableApplicationScalingRuleWithChan invokes the sae.EnableApplicationScalingRule API asynchronously

func (*Client) ListAppEvents added in v1.61.591

func (client *Client) ListAppEvents(request *ListAppEventsRequest) (response *ListAppEventsResponse, err error)

ListAppEvents invokes the sae.ListAppEvents API synchronously

func (*Client) ListAppEventsWithCallback added in v1.61.591

func (client *Client) ListAppEventsWithCallback(request *ListAppEventsRequest, callback func(response *ListAppEventsResponse, err error)) <-chan int

ListAppEventsWithCallback invokes the sae.ListAppEvents API asynchronously

func (*Client) ListAppEventsWithChan added in v1.61.591

func (client *Client) ListAppEventsWithChan(request *ListAppEventsRequest) (<-chan *ListAppEventsResponse, <-chan error)

ListAppEventsWithChan invokes the sae.ListAppEvents API asynchronously

func (*Client) ListAppVersions added in v1.61.591

func (client *Client) ListAppVersions(request *ListAppVersionsRequest) (response *ListAppVersionsResponse, err error)

ListAppVersions invokes the sae.ListAppVersions API synchronously

func (*Client) ListAppVersionsWithCallback added in v1.61.591

func (client *Client) ListAppVersionsWithCallback(request *ListAppVersionsRequest, callback func(response *ListAppVersionsResponse, err error)) <-chan int

ListAppVersionsWithCallback invokes the sae.ListAppVersions API asynchronously

func (*Client) ListAppVersionsWithChan added in v1.61.591

func (client *Client) ListAppVersionsWithChan(request *ListAppVersionsRequest) (<-chan *ListAppVersionsResponse, <-chan error)

ListAppVersionsWithChan invokes the sae.ListAppVersions API asynchronously

func (*Client) ListApplications

func (client *Client) ListApplications(request *ListApplicationsRequest) (response *ListApplicationsResponse, err error)

ListApplications invokes the sae.ListApplications API synchronously

func (*Client) ListApplicationsWithCallback

func (client *Client) ListApplicationsWithCallback(request *ListApplicationsRequest, callback func(response *ListApplicationsResponse, err error)) <-chan int

ListApplicationsWithCallback invokes the sae.ListApplications API asynchronously

func (*Client) ListApplicationsWithChan

func (client *Client) ListApplicationsWithChan(request *ListApplicationsRequest) (<-chan *ListApplicationsResponse, <-chan error)

ListApplicationsWithChan invokes the sae.ListApplications API asynchronously

func (*Client) ListChangeOrders

func (client *Client) ListChangeOrders(request *ListChangeOrdersRequest) (response *ListChangeOrdersResponse, err error)

ListChangeOrders invokes the sae.ListChangeOrders API synchronously

func (*Client) ListChangeOrdersWithCallback

func (client *Client) ListChangeOrdersWithCallback(request *ListChangeOrdersRequest, callback func(response *ListChangeOrdersResponse, err error)) <-chan int

ListChangeOrdersWithCallback invokes the sae.ListChangeOrders API asynchronously

func (*Client) ListChangeOrdersWithChan

func (client *Client) ListChangeOrdersWithChan(request *ListChangeOrdersRequest) (<-chan *ListChangeOrdersResponse, <-chan error)

ListChangeOrdersWithChan invokes the sae.ListChangeOrders API asynchronously

func (*Client) ListConsumedServices

func (client *Client) ListConsumedServices(request *ListConsumedServicesRequest) (response *ListConsumedServicesResponse, err error)

ListConsumedServices invokes the sae.ListConsumedServices API synchronously

func (*Client) ListConsumedServicesWithCallback

func (client *Client) ListConsumedServicesWithCallback(request *ListConsumedServicesRequest, callback func(response *ListConsumedServicesResponse, err error)) <-chan int

ListConsumedServicesWithCallback invokes the sae.ListConsumedServices API asynchronously

func (*Client) ListConsumedServicesWithChan

func (client *Client) ListConsumedServicesWithChan(request *ListConsumedServicesRequest) (<-chan *ListConsumedServicesResponse, <-chan error)

ListConsumedServicesWithChan invokes the sae.ListConsumedServices API asynchronously

func (*Client) ListIngresses added in v1.61.591

func (client *Client) ListIngresses(request *ListIngressesRequest) (response *ListIngressesResponse, err error)

ListIngresses invokes the sae.ListIngresses API synchronously

func (*Client) ListIngressesWithCallback added in v1.61.591

func (client *Client) ListIngressesWithCallback(request *ListIngressesRequest, callback func(response *ListIngressesResponse, err error)) <-chan int

ListIngressesWithCallback invokes the sae.ListIngresses API asynchronously

func (*Client) ListIngressesWithChan added in v1.61.591

func (client *Client) ListIngressesWithChan(request *ListIngressesRequest) (<-chan *ListIngressesResponse, <-chan error)

ListIngressesWithChan invokes the sae.ListIngresses API asynchronously

func (*Client) ListLogConfigs added in v1.61.591

func (client *Client) ListLogConfigs(request *ListLogConfigsRequest) (response *ListLogConfigsResponse, err error)

ListLogConfigs invokes the sae.ListLogConfigs API synchronously

func (*Client) ListLogConfigsWithCallback added in v1.61.591

func (client *Client) ListLogConfigsWithCallback(request *ListLogConfigsRequest, callback func(response *ListLogConfigsResponse, err error)) <-chan int

ListLogConfigsWithCallback invokes the sae.ListLogConfigs API asynchronously

func (*Client) ListLogConfigsWithChan added in v1.61.591

func (client *Client) ListLogConfigsWithChan(request *ListLogConfigsRequest) (<-chan *ListLogConfigsResponse, <-chan error)

ListLogConfigsWithChan invokes the sae.ListLogConfigs API asynchronously

func (*Client) ListNamespaceChangeOrders added in v1.61.591

func (client *Client) ListNamespaceChangeOrders(request *ListNamespaceChangeOrdersRequest) (response *ListNamespaceChangeOrdersResponse, err error)

ListNamespaceChangeOrders invokes the sae.ListNamespaceChangeOrders API synchronously

func (*Client) ListNamespaceChangeOrdersWithCallback added in v1.61.591

func (client *Client) ListNamespaceChangeOrdersWithCallback(request *ListNamespaceChangeOrdersRequest, callback func(response *ListNamespaceChangeOrdersResponse, err error)) <-chan int

ListNamespaceChangeOrdersWithCallback invokes the sae.ListNamespaceChangeOrders API asynchronously

func (*Client) ListNamespaceChangeOrdersWithChan added in v1.61.591

func (client *Client) ListNamespaceChangeOrdersWithChan(request *ListNamespaceChangeOrdersRequest) (<-chan *ListNamespaceChangeOrdersResponse, <-chan error)

ListNamespaceChangeOrdersWithChan invokes the sae.ListNamespaceChangeOrders API asynchronously

func (*Client) ListNamespacedConfigMaps added in v1.61.591

func (client *Client) ListNamespacedConfigMaps(request *ListNamespacedConfigMapsRequest) (response *ListNamespacedConfigMapsResponse, err error)

ListNamespacedConfigMaps invokes the sae.ListNamespacedConfigMaps API synchronously

func (*Client) ListNamespacedConfigMapsWithCallback added in v1.61.591

func (client *Client) ListNamespacedConfigMapsWithCallback(request *ListNamespacedConfigMapsRequest, callback func(response *ListNamespacedConfigMapsResponse, err error)) <-chan int

ListNamespacedConfigMapsWithCallback invokes the sae.ListNamespacedConfigMaps API asynchronously

func (*Client) ListNamespacedConfigMapsWithChan added in v1.61.591

func (client *Client) ListNamespacedConfigMapsWithChan(request *ListNamespacedConfigMapsRequest) (<-chan *ListNamespacedConfigMapsResponse, <-chan error)

ListNamespacedConfigMapsWithChan invokes the sae.ListNamespacedConfigMaps API asynchronously

func (*Client) ListPublishedServices

func (client *Client) ListPublishedServices(request *ListPublishedServicesRequest) (response *ListPublishedServicesResponse, err error)

ListPublishedServices invokes the sae.ListPublishedServices API synchronously

func (*Client) ListPublishedServicesWithCallback

func (client *Client) ListPublishedServicesWithCallback(request *ListPublishedServicesRequest, callback func(response *ListPublishedServicesResponse, err error)) <-chan int

ListPublishedServicesWithCallback invokes the sae.ListPublishedServices API asynchronously

func (*Client) ListPublishedServicesWithChan

func (client *Client) ListPublishedServicesWithChan(request *ListPublishedServicesRequest) (<-chan *ListPublishedServicesResponse, <-chan error)

ListPublishedServicesWithChan invokes the sae.ListPublishedServices API asynchronously

func (*Client) ListTagResources added in v1.61.591

func (client *Client) ListTagResources(request *ListTagResourcesRequest) (response *ListTagResourcesResponse, err error)

ListTagResources invokes the sae.ListTagResources API synchronously

func (*Client) ListTagResourcesWithCallback added in v1.61.591

func (client *Client) ListTagResourcesWithCallback(request *ListTagResourcesRequest, callback func(response *ListTagResourcesResponse, err error)) <-chan int

ListTagResourcesWithCallback invokes the sae.ListTagResources API asynchronously

func (*Client) ListTagResourcesWithChan added in v1.61.591

func (client *Client) ListTagResourcesWithChan(request *ListTagResourcesRequest) (<-chan *ListTagResourcesResponse, <-chan error)

ListTagResourcesWithChan invokes the sae.ListTagResources API asynchronously

func (*Client) OpenSaeService added in v1.61.1003

func (client *Client) OpenSaeService(request *OpenSaeServiceRequest) (response *OpenSaeServiceResponse, err error)

OpenSaeService invokes the sae.OpenSaeService API synchronously

func (*Client) OpenSaeServiceWithCallback added in v1.61.1003

func (client *Client) OpenSaeServiceWithCallback(request *OpenSaeServiceRequest, callback func(response *OpenSaeServiceResponse, err error)) <-chan int

OpenSaeServiceWithCallback invokes the sae.OpenSaeService API asynchronously

func (*Client) OpenSaeServiceWithChan added in v1.61.1003

func (client *Client) OpenSaeServiceWithChan(request *OpenSaeServiceRequest) (<-chan *OpenSaeServiceResponse, <-chan error)

OpenSaeServiceWithChan invokes the sae.OpenSaeService API asynchronously

func (*Client) QueryResourceStatics

func (client *Client) QueryResourceStatics(request *QueryResourceStaticsRequest) (response *QueryResourceStaticsResponse, err error)

QueryResourceStatics invokes the sae.QueryResourceStatics API synchronously

func (*Client) QueryResourceStaticsWithCallback

func (client *Client) QueryResourceStaticsWithCallback(request *QueryResourceStaticsRequest, callback func(response *QueryResourceStaticsResponse, err error)) <-chan int

QueryResourceStaticsWithCallback invokes the sae.QueryResourceStatics API asynchronously

func (*Client) QueryResourceStaticsWithChan

func (client *Client) QueryResourceStaticsWithChan(request *QueryResourceStaticsRequest) (<-chan *QueryResourceStaticsResponse, <-chan error)

QueryResourceStaticsWithChan invokes the sae.QueryResourceStatics API asynchronously

func (*Client) RescaleApplication

func (client *Client) RescaleApplication(request *RescaleApplicationRequest) (response *RescaleApplicationResponse, err error)

RescaleApplication invokes the sae.RescaleApplication API synchronously

func (*Client) RescaleApplicationVertically

func (client *Client) RescaleApplicationVertically(request *RescaleApplicationVerticallyRequest) (response *RescaleApplicationVerticallyResponse, err error)

RescaleApplicationVertically invokes the sae.RescaleApplicationVertically API synchronously

func (*Client) RescaleApplicationVerticallyWithCallback

func (client *Client) RescaleApplicationVerticallyWithCallback(request *RescaleApplicationVerticallyRequest, callback func(response *RescaleApplicationVerticallyResponse, err error)) <-chan int

RescaleApplicationVerticallyWithCallback invokes the sae.RescaleApplicationVertically API asynchronously

func (*Client) RescaleApplicationVerticallyWithChan

func (client *Client) RescaleApplicationVerticallyWithChan(request *RescaleApplicationVerticallyRequest) (<-chan *RescaleApplicationVerticallyResponse, <-chan error)

RescaleApplicationVerticallyWithChan invokes the sae.RescaleApplicationVertically API asynchronously

func (*Client) RescaleApplicationWithCallback

func (client *Client) RescaleApplicationWithCallback(request *RescaleApplicationRequest, callback func(response *RescaleApplicationResponse, err error)) <-chan int

RescaleApplicationWithCallback invokes the sae.RescaleApplication API asynchronously

func (*Client) RescaleApplicationWithChan

func (client *Client) RescaleApplicationWithChan(request *RescaleApplicationRequest) (<-chan *RescaleApplicationResponse, <-chan error)

RescaleApplicationWithChan invokes the sae.RescaleApplication API asynchronously

func (*Client) RestartApplication

func (client *Client) RestartApplication(request *RestartApplicationRequest) (response *RestartApplicationResponse, err error)

RestartApplication invokes the sae.RestartApplication API synchronously

func (*Client) RestartApplicationWithCallback

func (client *Client) RestartApplicationWithCallback(request *RestartApplicationRequest, callback func(response *RestartApplicationResponse, err error)) <-chan int

RestartApplicationWithCallback invokes the sae.RestartApplication API asynchronously

func (*Client) RestartApplicationWithChan

func (client *Client) RestartApplicationWithChan(request *RestartApplicationRequest) (<-chan *RestartApplicationResponse, <-chan error)

RestartApplicationWithChan invokes the sae.RestartApplication API asynchronously

func (*Client) RestartInstances added in v1.61.936

func (client *Client) RestartInstances(request *RestartInstancesRequest) (response *RestartInstancesResponse, err error)

RestartInstances invokes the sae.RestartInstances API synchronously

func (*Client) RestartInstancesWithCallback added in v1.61.936

func (client *Client) RestartInstancesWithCallback(request *RestartInstancesRequest, callback func(response *RestartInstancesResponse, err error)) <-chan int

RestartInstancesWithCallback invokes the sae.RestartInstances API asynchronously

func (*Client) RestartInstancesWithChan added in v1.61.936

func (client *Client) RestartInstancesWithChan(request *RestartInstancesRequest) (<-chan *RestartInstancesResponse, <-chan error)

RestartInstancesWithChan invokes the sae.RestartInstances API asynchronously

func (*Client) RollbackApplication added in v1.61.591

func (client *Client) RollbackApplication(request *RollbackApplicationRequest) (response *RollbackApplicationResponse, err error)

RollbackApplication invokes the sae.RollbackApplication API synchronously

func (*Client) RollbackApplicationWithCallback added in v1.61.591

func (client *Client) RollbackApplicationWithCallback(request *RollbackApplicationRequest, callback func(response *RollbackApplicationResponse, err error)) <-chan int

RollbackApplicationWithCallback invokes the sae.RollbackApplication API asynchronously

func (*Client) RollbackApplicationWithChan added in v1.61.591

func (client *Client) RollbackApplicationWithChan(request *RollbackApplicationRequest) (<-chan *RollbackApplicationResponse, <-chan error)

RollbackApplicationWithChan invokes the sae.RollbackApplication API asynchronously

func (*Client) StartApplication

func (client *Client) StartApplication(request *StartApplicationRequest) (response *StartApplicationResponse, err error)

StartApplication invokes the sae.StartApplication API synchronously

func (*Client) StartApplicationWithCallback

func (client *Client) StartApplicationWithCallback(request *StartApplicationRequest, callback func(response *StartApplicationResponse, err error)) <-chan int

StartApplicationWithCallback invokes the sae.StartApplication API asynchronously

func (*Client) StartApplicationWithChan

func (client *Client) StartApplicationWithChan(request *StartApplicationRequest) (<-chan *StartApplicationResponse, <-chan error)

StartApplicationWithChan invokes the sae.StartApplication API asynchronously

func (*Client) StopApplication

func (client *Client) StopApplication(request *StopApplicationRequest) (response *StopApplicationResponse, err error)

StopApplication invokes the sae.StopApplication API synchronously

func (*Client) StopApplicationWithCallback

func (client *Client) StopApplicationWithCallback(request *StopApplicationRequest, callback func(response *StopApplicationResponse, err error)) <-chan int

StopApplicationWithCallback invokes the sae.StopApplication API asynchronously

func (*Client) StopApplicationWithChan

func (client *Client) StopApplicationWithChan(request *StopApplicationRequest) (<-chan *StopApplicationResponse, <-chan error)

StopApplicationWithChan invokes the sae.StopApplication API asynchronously

func (*Client) TagResources added in v1.61.591

func (client *Client) TagResources(request *TagResourcesRequest) (response *TagResourcesResponse, err error)

TagResources invokes the sae.TagResources API synchronously

func (*Client) TagResourcesWithCallback added in v1.61.591

func (client *Client) TagResourcesWithCallback(request *TagResourcesRequest, callback func(response *TagResourcesResponse, err error)) <-chan int

TagResourcesWithCallback invokes the sae.TagResources API asynchronously

func (*Client) TagResourcesWithChan added in v1.61.591

func (client *Client) TagResourcesWithChan(request *TagResourcesRequest) (<-chan *TagResourcesResponse, <-chan error)

TagResourcesWithChan invokes the sae.TagResources API asynchronously

func (*Client) UnbindSlb

func (client *Client) UnbindSlb(request *UnbindSlbRequest) (response *UnbindSlbResponse, err error)

UnbindSlb invokes the sae.UnbindSlb API synchronously

func (*Client) UnbindSlbWithCallback

func (client *Client) UnbindSlbWithCallback(request *UnbindSlbRequest, callback func(response *UnbindSlbResponse, err error)) <-chan int

UnbindSlbWithCallback invokes the sae.UnbindSlb API asynchronously

func (*Client) UnbindSlbWithChan

func (client *Client) UnbindSlbWithChan(request *UnbindSlbRequest) (<-chan *UnbindSlbResponse, <-chan error)

UnbindSlbWithChan invokes the sae.UnbindSlb API asynchronously

func (*Client) UntagResources added in v1.61.591

func (client *Client) UntagResources(request *UntagResourcesRequest) (response *UntagResourcesResponse, err error)

UntagResources invokes the sae.UntagResources API synchronously

func (*Client) UntagResourcesWithCallback added in v1.61.591

func (client *Client) UntagResourcesWithCallback(request *UntagResourcesRequest, callback func(response *UntagResourcesResponse, err error)) <-chan int

UntagResourcesWithCallback invokes the sae.UntagResources API asynchronously

func (*Client) UntagResourcesWithChan added in v1.61.591

func (client *Client) UntagResourcesWithChan(request *UntagResourcesRequest) (<-chan *UntagResourcesResponse, <-chan error)

UntagResourcesWithChan invokes the sae.UntagResources API asynchronously

func (*Client) UpdateAppSecurityGroup added in v1.61.591

func (client *Client) UpdateAppSecurityGroup(request *UpdateAppSecurityGroupRequest) (response *UpdateAppSecurityGroupResponse, err error)

UpdateAppSecurityGroup invokes the sae.UpdateAppSecurityGroup API synchronously

func (*Client) UpdateAppSecurityGroupWithCallback added in v1.61.591

func (client *Client) UpdateAppSecurityGroupWithCallback(request *UpdateAppSecurityGroupRequest, callback func(response *UpdateAppSecurityGroupResponse, err error)) <-chan int

UpdateAppSecurityGroupWithCallback invokes the sae.UpdateAppSecurityGroup API asynchronously

func (*Client) UpdateAppSecurityGroupWithChan added in v1.61.591

func (client *Client) UpdateAppSecurityGroupWithChan(request *UpdateAppSecurityGroupRequest) (<-chan *UpdateAppSecurityGroupResponse, <-chan error)

UpdateAppSecurityGroupWithChan invokes the sae.UpdateAppSecurityGroup API asynchronously

func (*Client) UpdateApplicationScalingRule added in v1.61.1003

func (client *Client) UpdateApplicationScalingRule(request *UpdateApplicationScalingRuleRequest) (response *UpdateApplicationScalingRuleResponse, err error)

UpdateApplicationScalingRule invokes the sae.UpdateApplicationScalingRule API synchronously

func (*Client) UpdateApplicationScalingRuleWithCallback added in v1.61.1003

func (client *Client) UpdateApplicationScalingRuleWithCallback(request *UpdateApplicationScalingRuleRequest, callback func(response *UpdateApplicationScalingRuleResponse, err error)) <-chan int

UpdateApplicationScalingRuleWithCallback invokes the sae.UpdateApplicationScalingRule API asynchronously

func (*Client) UpdateApplicationScalingRuleWithChan added in v1.61.1003

func (client *Client) UpdateApplicationScalingRuleWithChan(request *UpdateApplicationScalingRuleRequest) (<-chan *UpdateApplicationScalingRuleResponse, <-chan error)

UpdateApplicationScalingRuleWithChan invokes the sae.UpdateApplicationScalingRule API asynchronously

func (*Client) UpdateConfigMap added in v1.61.591

func (client *Client) UpdateConfigMap(request *UpdateConfigMapRequest) (response *UpdateConfigMapResponse, err error)

UpdateConfigMap invokes the sae.UpdateConfigMap API synchronously

func (*Client) UpdateConfigMapWithCallback added in v1.61.591

func (client *Client) UpdateConfigMapWithCallback(request *UpdateConfigMapRequest, callback func(response *UpdateConfigMapResponse, err error)) <-chan int

UpdateConfigMapWithCallback invokes the sae.UpdateConfigMap API asynchronously

func (*Client) UpdateConfigMapWithChan added in v1.61.591

func (client *Client) UpdateConfigMapWithChan(request *UpdateConfigMapRequest) (<-chan *UpdateConfigMapResponse, <-chan error)

UpdateConfigMapWithChan invokes the sae.UpdateConfigMap API asynchronously

func (*Client) UpdateIngress added in v1.61.591

func (client *Client) UpdateIngress(request *UpdateIngressRequest) (response *UpdateIngressResponse, err error)

UpdateIngress invokes the sae.UpdateIngress API synchronously

func (*Client) UpdateIngressWithCallback added in v1.61.591

func (client *Client) UpdateIngressWithCallback(request *UpdateIngressRequest, callback func(response *UpdateIngressResponse, err error)) <-chan int

UpdateIngressWithCallback invokes the sae.UpdateIngress API asynchronously

func (*Client) UpdateIngressWithChan added in v1.61.591

func (client *Client) UpdateIngressWithChan(request *UpdateIngressRequest) (<-chan *UpdateIngressResponse, <-chan error)

UpdateIngressWithChan invokes the sae.UpdateIngress API asynchronously

func (*Client) UpdateNamespace

func (client *Client) UpdateNamespace(request *UpdateNamespaceRequest) (response *UpdateNamespaceResponse, err error)

UpdateNamespace invokes the sae.UpdateNamespace API synchronously

func (*Client) UpdateNamespaceVpc added in v1.61.591

func (client *Client) UpdateNamespaceVpc(request *UpdateNamespaceVpcRequest) (response *UpdateNamespaceVpcResponse, err error)

UpdateNamespaceVpc invokes the sae.UpdateNamespaceVpc API synchronously

func (*Client) UpdateNamespaceVpcWithCallback added in v1.61.591

func (client *Client) UpdateNamespaceVpcWithCallback(request *UpdateNamespaceVpcRequest, callback func(response *UpdateNamespaceVpcResponse, err error)) <-chan int

UpdateNamespaceVpcWithCallback invokes the sae.UpdateNamespaceVpc API asynchronously

func (*Client) UpdateNamespaceVpcWithChan added in v1.61.591

func (client *Client) UpdateNamespaceVpcWithChan(request *UpdateNamespaceVpcRequest) (<-chan *UpdateNamespaceVpcResponse, <-chan error)

UpdateNamespaceVpcWithChan invokes the sae.UpdateNamespaceVpc API asynchronously

func (*Client) UpdateNamespaceWithCallback

func (client *Client) UpdateNamespaceWithCallback(request *UpdateNamespaceRequest, callback func(response *UpdateNamespaceResponse, err error)) <-chan int

UpdateNamespaceWithCallback invokes the sae.UpdateNamespace API asynchronously

func (*Client) UpdateNamespaceWithChan

func (client *Client) UpdateNamespaceWithChan(request *UpdateNamespaceRequest) (<-chan *UpdateNamespaceResponse, <-chan error)

UpdateNamespaceWithChan invokes the sae.UpdateNamespace API asynchronously

type CoTargets

type CoTargets struct {
	CoTarget []string `json:"CoTarget" xml:"CoTarget"`
}

CoTargets is a nested struct in sae response

type ConfigMap added in v1.61.591

type ConfigMap struct {
	ConfigMapId int64                  `json:"ConfigMapId" xml:"ConfigMapId"`
	Name        string                 `json:"Name" xml:"Name"`
	NamespaceId string                 `json:"NamespaceId" xml:"NamespaceId"`
	Description string                 `json:"Description" xml:"Description"`
	Data        map[string]interface{} `json:"Data" xml:"Data"`
	CreateTime  int64                  `json:"CreateTime" xml:"CreateTime"`
	UpdateTime  int64                  `json:"UpdateTime" xml:"UpdateTime"`
	RelateApps  []RelateApp            `json:"RelateApps" xml:"RelateApps"`
}

ConfigMap is a nested struct in sae response

type ConfigMapMountDesc added in v1.61.591

type ConfigMapMountDesc struct {
	ConfigMapMountDescItem []ConfigMapMountDescItem `json:"ConfigMapMountDesc" xml:"ConfigMapMountDesc"`
}

ConfigMapMountDesc is a nested struct in sae response

type ConfigMapMountDescItem added in v1.61.591

type ConfigMapMountDescItem struct {
	MountPath     string `json:"MountPath" xml:"MountPath"`
	ConfigMapId   int64  `json:"ConfigMapId" xml:"ConfigMapId"`
	ConfigMapName string `json:"ConfigMapName" xml:"ConfigMapName"`
	Key           string `json:"Key" xml:"Key"`
}

ConfigMapMountDescItem is a nested struct in sae response

type ConfigMaps added in v1.61.591

type ConfigMaps struct {
	ConfigMap []ConfigMap `json:"ConfigMap" xml:"ConfigMap"`
}

ConfigMaps is a nested struct in sae response

type ConfirmPipelineBatchRequest

type ConfirmPipelineBatchRequest struct {
	*requests.RoaRequest
	Confirm    requests.Boolean `position:"Query" name:"Confirm"`
	PipelineId string           `position:"Query" name:"PipelineId"`
}

ConfirmPipelineBatchRequest is the request struct for api ConfirmPipelineBatch

func CreateConfirmPipelineBatchRequest

func CreateConfirmPipelineBatchRequest() (request *ConfirmPipelineBatchRequest)

CreateConfirmPipelineBatchRequest creates a request to invoke ConfirmPipelineBatch API

type ConfirmPipelineBatchResponse

type ConfirmPipelineBatchResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Data      Data   `json:"Data" xml:"Data"`
}

ConfirmPipelineBatchResponse is the response struct for api ConfirmPipelineBatch

func CreateConfirmPipelineBatchResponse

func CreateConfirmPipelineBatchResponse() (response *ConfirmPipelineBatchResponse)

CreateConfirmPipelineBatchResponse creates a response to parse from ConfirmPipelineBatch response

type CreateApplicationRequest

type CreateApplicationRequest struct {
	*requests.RoaRequest
	NasId                         string           `position:"Query" name:"NasId"`
	WebContainer                  string           `position:"Query" name:"WebContainer"`
	JarStartArgs                  string           `position:"Query" name:"JarStartArgs"`
	Memory                        requests.Integer `position:"Query" name:"Memory"`
	SlsConfigs                    string           `position:"Query" name:"SlsConfigs"`
	CommandArgs                   string           `position:"Query" name:"CommandArgs"`
	AcrAssumeRoleArn              string           `position:"Query" name:"AcrAssumeRoleArn"`
	Readiness                     string           `position:"Query" name:"Readiness"`
	Timezone                      string           `position:"Query" name:"Timezone"`
	MountHost                     string           `position:"Query" name:"MountHost"`
	AutoConfig                    requests.Boolean `position:"Query" name:"AutoConfig"`
	Liveness                      string           `position:"Query" name:"Liveness"`
	SecurityGroupId               string           `position:"Query" name:"SecurityGroupId"`
	Envs                          string           `position:"Query" name:"Envs"`
	PhpArmsConfigLocation         string           `position:"Query" name:"PhpArmsConfigLocation"`
	PackageVersion                string           `position:"Query" name:"PackageVersion"`
	TomcatConfig                  string           `position:"Query" name:"TomcatConfig"`
	CustomHostAlias               string           `position:"Query" name:"CustomHostAlias"`
	Deploy                        requests.Boolean `position:"Query" name:"Deploy"`
	WarStartOptions               string           `position:"Query" name:"WarStartOptions"`
	JarStartOptions               string           `position:"Query" name:"JarStartOptions"`
	EdasContainerVersion          string           `position:"Query" name:"EdasContainerVersion"`
	AppName                       string           `position:"Query" name:"AppName"`
	NamespaceId                   string           `position:"Query" name:"NamespaceId"`
	PackageUrl                    string           `position:"Query" name:"PackageUrl"`
	TerminationGracePeriodSeconds requests.Integer `position:"Query" name:"TerminationGracePeriodSeconds"`
	ConfigMapMountDesc            string           `position:"Body" name:"ConfigMapMountDesc"`
	PhpConfig                     string           `position:"Body" name:"PhpConfig"`
	PreStop                       string           `position:"Query" name:"PreStop"`
	Replicas                      requests.Integer `position:"Query" name:"Replicas"`
	Cpu                           requests.Integer `position:"Query" name:"Cpu"`
	Command                       string           `position:"Query" name:"Command"`
	MountDesc                     string           `position:"Query" name:"MountDesc"`
	VSwitchId                     string           `position:"Query" name:"VSwitchId"`
	Jdk                           string           `position:"Query" name:"Jdk"`
	AppDescription                string           `position:"Query" name:"AppDescription"`
	VpcId                         string           `position:"Query" name:"VpcId"`
	ImageUrl                      string           `position:"Query" name:"ImageUrl"`
	PackageType                   string           `position:"Query" name:"PackageType"`
	PhpConfigLocation             string           `position:"Query" name:"PhpConfigLocation"`
	PostStart                     string           `position:"Query" name:"PostStart"`
}

CreateApplicationRequest is the request struct for api CreateApplication

func CreateCreateApplicationRequest

func CreateCreateApplicationRequest() (request *CreateApplicationRequest)

CreateCreateApplicationRequest creates a request to invoke CreateApplication API

type CreateApplicationResponse

type CreateApplicationResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

CreateApplicationResponse is the response struct for api CreateApplication

func CreateCreateApplicationResponse

func CreateCreateApplicationResponse() (response *CreateApplicationResponse)

CreateCreateApplicationResponse creates a response to parse from CreateApplication response

type CreateApplicationScalingRuleRequest added in v1.61.1003

type CreateApplicationScalingRuleRequest struct {
	*requests.RoaRequest
	ScalingRuleName   string `position:"Query" name:"ScalingRuleName"`
	MinReadyInstances string `position:"Query" name:"MinReadyInstances"`
	ScalingRuleTimer  string `position:"Query" name:"ScalingRuleTimer"`
	ScalingRuleMetric string `position:"Query" name:"ScalingRuleMetric"`
	AppId             string `position:"Query" name:"AppId"`
	ScalingRuleType   string `position:"Query" name:"ScalingRuleType"`
}

CreateApplicationScalingRuleRequest is the request struct for api CreateApplicationScalingRule

func CreateCreateApplicationScalingRuleRequest added in v1.61.1003

func CreateCreateApplicationScalingRuleRequest() (request *CreateApplicationScalingRuleRequest)

CreateCreateApplicationScalingRuleRequest creates a request to invoke CreateApplicationScalingRule API

type CreateApplicationScalingRuleResponse added in v1.61.1003

type CreateApplicationScalingRuleResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

CreateApplicationScalingRuleResponse is the response struct for api CreateApplicationScalingRule

func CreateCreateApplicationScalingRuleResponse added in v1.61.1003

func CreateCreateApplicationScalingRuleResponse() (response *CreateApplicationScalingRuleResponse)

CreateCreateApplicationScalingRuleResponse creates a response to parse from CreateApplicationScalingRule response

type CreateConfigMapRequest added in v1.61.591

type CreateConfigMapRequest struct {
	*requests.RoaRequest
	Data        string `position:"Body" name:"Data"`
	NamespaceId string `position:"Query" name:"NamespaceId"`
	Name        string `position:"Query" name:"Name"`
	Description string `position:"Query" name:"Description"`
}

CreateConfigMapRequest is the request struct for api CreateConfigMap

func CreateCreateConfigMapRequest added in v1.61.591

func CreateCreateConfigMapRequest() (request *CreateConfigMapRequest)

CreateCreateConfigMapRequest creates a request to invoke CreateConfigMap API

type CreateConfigMapResponse added in v1.61.591

type CreateConfigMapResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

CreateConfigMapResponse is the response struct for api CreateConfigMap

func CreateCreateConfigMapResponse added in v1.61.591

func CreateCreateConfigMapResponse() (response *CreateConfigMapResponse)

CreateCreateConfigMapResponse creates a response to parse from CreateConfigMap response

type CreateIngressRequest added in v1.61.591

type CreateIngressRequest struct {
	*requests.RoaRequest
	ListenerPort requests.Integer `position:"Query" name:"ListenerPort"`
	SlbId        string           `position:"Query" name:"SlbId"`
	NamespaceId  string           `position:"Query" name:"NamespaceId"`
	Description  string           `position:"Query" name:"Description"`
	Rules        string           `position:"Body" name:"Rules"`
	CertId       string           `position:"Query" name:"CertId"`
	DefaultRule  string           `position:"Query" name:"DefaultRule"`
}

CreateIngressRequest is the request struct for api CreateIngress

func CreateCreateIngressRequest added in v1.61.591

func CreateCreateIngressRequest() (request *CreateIngressRequest)

CreateCreateIngressRequest creates a request to invoke CreateIngress API

type CreateIngressResponse added in v1.61.591

type CreateIngressResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

CreateIngressResponse is the response struct for api CreateIngress

func CreateCreateIngressResponse added in v1.61.591

func CreateCreateIngressResponse() (response *CreateIngressResponse)

CreateCreateIngressResponse creates a response to parse from CreateIngress response

type CreateNamespaceRequest

type CreateNamespaceRequest struct {
	*requests.RoaRequest
	NamespaceName        string `position:"Query" name:"NamespaceName"`
	NamespaceDescription string `position:"Query" name:"NamespaceDescription"`
	NamespaceId          string `position:"Query" name:"NamespaceId"`
}

CreateNamespaceRequest is the request struct for api CreateNamespace

func CreateCreateNamespaceRequest

func CreateCreateNamespaceRequest() (request *CreateNamespaceRequest)

CreateCreateNamespaceRequest creates a request to invoke CreateNamespace API

type CreateNamespaceResponse

type CreateNamespaceResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

CreateNamespaceResponse is the response struct for api CreateNamespace

func CreateCreateNamespaceResponse

func CreateCreateNamespaceResponse() (response *CreateNamespaceResponse)

CreateCreateNamespaceResponse creates a response to parse from CreateNamespace response

type CurrentMetric added in v1.61.1003

type CurrentMetric struct {
	Type         string `json:"Type" xml:"Type"`
	CurrentValue int64  `json:"CurrentValue" xml:"CurrentValue"`
	Name         string `json:"Name" xml:"Name"`
}

CurrentMetric is a nested struct in sae response

type CurrentMetrics added in v1.61.1003

type CurrentMetrics struct {
	CurrentMetric []CurrentMetric `json:"CurrentMetric" xml:"CurrentMetric"`
}

CurrentMetrics is a nested struct in sae response

type Data

type Data struct {
	LastDisableTime               int64                    `json:"LastDisableTime" xml:"LastDisableTime"`
	VpcName                       string                   `json:"VpcName" xml:"VpcName"`
	TomcatConfig                  string                   `json:"TomcatConfig" xml:"TomcatConfig"`
	VSwitchName                   string                   `json:"VSwitchName" xml:"VSwitchName"`
	LastChangeOrderId             string                   `json:"LastChangeOrderId" xml:"LastChangeOrderId"`
	EdasContainerVersion          string                   `json:"EdasContainerVersion" xml:"EdasContainerVersion"`
	SlsConfigs                    string                   `json:"SlsConfigs" xml:"SlsConfigs"`
	NasId                         string                   `json:"NasId" xml:"NasId"`
	PreStop                       string                   `json:"PreStop" xml:"PreStop"`
	ListenerPort                  int                      `json:"ListenerPort" xml:"ListenerPort"`
	PipelineName                  string                   `json:"PipelineName" xml:"PipelineName"`
	NamespaceDescription          string                   `json:"NamespaceDescription" xml:"NamespaceDescription"`
	UpdateTime                    int64                    `json:"UpdateTime" xml:"UpdateTime"`
	JarStartArgs                  string                   `json:"JarStartArgs" xml:"JarStartArgs"`
	Id                            int64                    `json:"Id" xml:"Id"`
	Command                       string                   `json:"Command" xml:"Command"`
	InternetSlbId                 string                   `json:"InternetSlbId" xml:"InternetSlbId"`
	JarStartOptions               string                   `json:"JarStartOptions" xml:"JarStartOptions"`
	PhpConfig                     string                   `json:"PhpConfig" xml:"PhpConfig"`
	Envs                          string                   `json:"Envs" xml:"Envs"`
	RepoType                      string                   `json:"RepoType" xml:"RepoType"`
	RepoTag                       string                   `json:"RepoTag" xml:"RepoTag"`
	SlbId                         string                   `json:"SlbId" xml:"SlbId"`
	TotalSize                     int                      `json:"TotalSize" xml:"TotalSize"`
	NotificationExpired           bool                     `json:"NotificationExpired" xml:"NotificationExpired"`
	Name                          string                   `json:"Name" xml:"Name"`
	IntranetSlbId                 string                   `json:"IntranetSlbId" xml:"IntranetSlbId"`
	ChangeOrderId                 string                   `json:"ChangeOrderId" xml:"ChangeOrderId"`
	SecurityGroupId               string                   `json:"SecurityGroupId" xml:"SecurityGroupId"`
	Timezone                      string                   `json:"Timezone" xml:"Timezone"`
	PackageVersion                string                   `json:"PackageVersion" xml:"PackageVersion"`
	PageSize                      int                      `json:"PageSize" xml:"PageSize"`
	Replicas                      int                      `json:"Replicas" xml:"Replicas"`
	PhpConfigLocation             string                   `json:"PhpConfigLocation" xml:"PhpConfigLocation"`
	CoStatus                      string                   `json:"CoStatus" xml:"CoStatus"`
	CustomHostAlias               string                   `json:"CustomHostAlias" xml:"CustomHostAlias"`
	TenantId                      string                   `json:"TenantId" xml:"TenantId"`
	NamespaceName                 string                   `json:"NamespaceName" xml:"NamespaceName"`
	NextPipelineId                string                   `json:"NextPipelineId" xml:"NextPipelineId"`
	Memory                        int                      `json:"Memory" xml:"Memory"`
	PhpArmsConfigLocation         string                   `json:"PhpArmsConfigLocation" xml:"PhpArmsConfigLocation"`
	VSwitchId                     string                   `json:"VSwitchId" xml:"VSwitchId"`
	PostStart                     string                   `json:"PostStart" xml:"PostStart"`
	RepoNamespace                 string                   `json:"RepoNamespace" xml:"RepoNamespace"`
	Liveness                      string                   `json:"Liveness" xml:"Liveness"`
	RepoName                      string                   `json:"RepoName" xml:"RepoName"`
	EnableAhas                    string                   `json:"EnableAhas" xml:"EnableAhas"`
	CurrentPage                   int                      `json:"CurrentPage" xml:"CurrentPage"`
	NextToken                     string                   `json:"NextToken" xml:"NextToken"`
	AppName                       string                   `json:"AppName" xml:"AppName"`
	PackageUrl                    string                   `json:"PackageUrl" xml:"PackageUrl"`
	PackageType                   string                   `json:"PackageType" xml:"PackageType"`
	LastChangeOrderRunning        bool                     `json:"LastChangeOrderRunning" xml:"LastChangeOrderRunning"`
	MountHost                     string                   `json:"MountHost" xml:"MountHost"`
	SlbType                       string                   `json:"SlbType" xml:"SlbType"`
	CurrentPoint                  int                      `json:"CurrentPoint" xml:"CurrentPoint"`
	ImageUrl                      string                   `json:"ImageUrl" xml:"ImageUrl"`
	LastChangeOrderStatus         string                   `json:"LastChangeOrderStatus" xml:"LastChangeOrderStatus"`
	VpcId                         string                   `json:"VpcId" xml:"VpcId"`
	IntranetIp                    string                   `json:"IntranetIp" xml:"IntranetIp"`
	CertId                        string                   `json:"CertId" xml:"CertId"`
	ShowBatch                     bool                     `json:"ShowBatch" xml:"ShowBatch"`
	BatchWaitTime                 int                      `json:"BatchWaitTime" xml:"BatchWaitTime"`
	RepoId                        int                      `json:"RepoId" xml:"RepoId"`
	BelongRegion                  string                   `json:"BelongRegion" xml:"BelongRegion"`
	CrUrl                         string                   `json:"CrUrl" xml:"CrUrl"`
	Jdk                           string                   `json:"Jdk" xml:"Jdk"`
	AppId                         string                   `json:"AppId" xml:"AppId"`
	ScaleRuleName                 string                   `json:"ScaleRuleName" xml:"ScaleRuleName"`
	AcrAssumeRoleArn              string                   `json:"AcrAssumeRoleArn" xml:"AcrAssumeRoleArn"`
	Cpu                           int                      `json:"Cpu" xml:"Cpu"`
	TerminationGracePeriodSeconds int                      `json:"TerminationGracePeriodSeconds" xml:"TerminationGracePeriodSeconds"`
	WebContainer                  string                   `json:"WebContainer" xml:"WebContainer"`
	RepoOriginType                string                   `json:"RepoOriginType" xml:"RepoOriginType"`
	PipelineStatus                int                      `json:"PipelineStatus" xml:"PipelineStatus"`
	CreateTime                    int64                    `json:"CreateTime" xml:"CreateTime"`
	MinReadyInstances             int                      `json:"MinReadyInstances" xml:"MinReadyInstances"`
	CommandArgs                   string                   `json:"CommandArgs" xml:"CommandArgs"`
	CurrentStageId                string                   `json:"CurrentStageId" xml:"CurrentStageId"`
	AppDescription                string                   `json:"AppDescription" xml:"AppDescription"`
	RegionId                      string                   `json:"RegionId" xml:"RegionId"`
	PipelineId                    string                   `json:"PipelineId" xml:"PipelineId"`
	WarStartOptions               string                   `json:"WarStartOptions" xml:"WarStartOptions"`
	UserId                        string                   `json:"UserId" xml:"UserId"`
	Description                   string                   `json:"Description" xml:"Description"`
	ScaleRuleEnabled              bool                     `json:"ScaleRuleEnabled" xml:"ScaleRuleEnabled"`
	InternetIp                    string                   `json:"InternetIp" xml:"InternetIp"`
	AppCount                      int64                    `json:"AppCount" xml:"AppCount"`
	ConfigMapId                   int64                    `json:"ConfigMapId" xml:"ConfigMapId"`
	IngressId                     int64                    `json:"IngressId" xml:"IngressId"`
	Readiness                     string                   `json:"Readiness" xml:"Readiness"`
	ScaleRuleType                 string                   `json:"ScaleRuleType" xml:"ScaleRuleType"`
	NamespaceId                   string                   `json:"NamespaceId" xml:"NamespaceId"`
	Data                          map[string]interface{}   `json:"Data" xml:"Data"`
	Timer                         Timer                    `json:"Timer" xml:"Timer"`
	DefaultRule                   DefaultRule              `json:"DefaultRule" xml:"DefaultRule"`
	RealTimeRes                   RealTimeRes              `json:"RealTimeRes" xml:"RealTimeRes"`
	Metric                        Metric                   `json:"Metric" xml:"Metric"`
	Summary                       Summary                  `json:"Summary" xml:"Summary"`
	MountDesc                     []MountDescItem          `json:"MountDesc" xml:"MountDesc"`
	Intranet                      []IntranetItem           `json:"Intranet" xml:"Intranet"`
	RelateApps                    []RelateApp              `json:"RelateApps" xml:"RelateApps"`
	Namespaces                    []Namespace              `json:"Namespaces" xml:"Namespaces"`
	Internet                      []InternetItem           `json:"Internet" xml:"Internet"`
	ChangeOrderList               []ChangeOrder            `json:"ChangeOrderList" xml:"ChangeOrderList"`
	ApplicationScalingRules       []ApplicationScalingRule `json:"ApplicationScalingRules" xml:"ApplicationScalingRules"`
	Rules                         []Rule                   `json:"Rules" xml:"Rules"`
	Applications                  []Application            `json:"Applications" xml:"Applications"`
	StageList                     []Stage                  `json:"StageList" xml:"StageList"`
	LogConfigs                    []LogConfig              `json:"LogConfigs" xml:"LogConfigs"`
	ConfigMaps                    []ConfigMap              `json:"ConfigMaps" xml:"ConfigMaps"`
	ConfigMapMountDesc            []ConfigMapMountDescItem `json:"ConfigMapMountDesc" xml:"ConfigMapMountDesc"`
	Tags                          []Tag                    `json:"Tags" xml:"Tags"`
	Instances                     []Instance               `json:"Instances" xml:"Instances"`
	AppEventEntity                []AppEventEntityItem     `json:"AppEventEntity" xml:"AppEventEntity"`
	IngressList                   []Ingress                `json:"IngressList" xml:"IngressList"`
	TagResources                  []TagResource            `json:"TagResources" xml:"TagResources"`
}

Data is a nested struct in sae response

type DataInDescribeApplicationGroups

type DataInDescribeApplicationGroups struct {
	ApplicationGroup []ApplicationGroup `json:"ApplicationGroup" xml:"ApplicationGroup"`
}

DataInDescribeApplicationGroups is a nested struct in sae response

type DataInDescribeApplicationStatus added in v1.61.1003

type DataInDescribeApplicationStatus struct {
	AppId                  string `json:"AppId" xml:"AppId"`
	LastChangeOrderId      string `json:"LastChangeOrderId" xml:"LastChangeOrderId"`
	LastChangeOrderStatus  string `json:"LastChangeOrderStatus" xml:"LastChangeOrderStatus"`
	LastChangeOrderRunning bool   `json:"LastChangeOrderRunning" xml:"LastChangeOrderRunning"`
	CurrentStatus          string `json:"CurrentStatus" xml:"CurrentStatus"`
	ArmsApmInfo            string `json:"ArmsApmInfo" xml:"ArmsApmInfo"`
	RunningInstances       int    `json:"RunningInstances" xml:"RunningInstances"`
	ArmsAdvancedEnabled    string `json:"ArmsAdvancedEnabled" xml:"ArmsAdvancedEnabled"`
	CreateTime             string `json:"CreateTime" xml:"CreateTime"`
}

DataInDescribeApplicationStatus is a nested struct in sae response

type DataInDescribeChangeOrder added in v1.61.1003

type DataInDescribeChangeOrder struct {
	Status             int        `json:"Status" xml:"Status"`
	Description        string     `json:"Description" xml:"Description"`
	SupportAbortFreeze bool       `json:"SupportAbortFreeze" xml:"SupportAbortFreeze"`
	CreateTime         string     `json:"CreateTime" xml:"CreateTime"`
	ChangeOrderId      string     `json:"ChangeOrderId" xml:"ChangeOrderId"`
	BatchType          string     `json:"BatchType" xml:"BatchType"`
	AppName            string     `json:"AppName" xml:"AppName"`
	Auto               bool       `json:"Auto" xml:"Auto"`
	CurrentPipelineId  string     `json:"CurrentPipelineId" xml:"CurrentPipelineId"`
	CoTypeCode         string     `json:"CoTypeCode" xml:"CoTypeCode"`
	SupportRollback    bool       `json:"SupportRollback" xml:"SupportRollback"`
	BatchWaitTime      int        `json:"BatchWaitTime" xml:"BatchWaitTime"`
	ErrorMessage       string     `json:"ErrorMessage" xml:"ErrorMessage"`
	CoType             string     `json:"CoType" xml:"CoType"`
	BatchCount         int        `json:"BatchCount" xml:"BatchCount"`
	CoTargets          []string   `json:"CoTargets" xml:"CoTargets"`
	Pipelines          []Pipeline `json:"Pipelines" xml:"Pipelines"`
}

DataInDescribeChangeOrder is a nested struct in sae response

type DataInDescribeComponents

type DataInDescribeComponents struct {
	DataItem []DataItem `json:"Data" xml:"Data"`
}

DataInDescribeComponents is a nested struct in sae response

type DataInDescribeEdasContainers

type DataInDescribeEdasContainers struct {
	DataItem []DataItem `json:"Data" xml:"Data"`
}

DataInDescribeEdasContainers is a nested struct in sae response

type DataInDescribeInstanceSpecifications

type DataInDescribeInstanceSpecifications struct {
	DataItem []DataItem `json:"Data" xml:"Data"`
}

DataInDescribeInstanceSpecifications is a nested struct in sae response

type DataInDescribeNamespaceList

type DataInDescribeNamespaceList struct {
	RegionList []RegionList `json:"RegionList" xml:"RegionList"`
}

DataInDescribeNamespaceList is a nested struct in sae response

type DataInListAppVersions added in v1.61.591

type DataInListAppVersions struct {
	PackageVersionEntity []PackageVersionEntity `json:"PackageVersionEntity" xml:"PackageVersionEntity"`
}

DataInListAppVersions is a nested struct in sae response

type DataInListConsumedServices

type DataInListConsumedServices struct {
	ListConsumedServices []ListConsumedServices `json:"ListConsumedServices" xml:"ListConsumedServices"`
}

DataInListConsumedServices is a nested struct in sae response

type DataInListPublishedServices

type DataInListPublishedServices struct {
	DataItem []DataItemInListPublishedServices `json:"Data" xml:"Data"`
}

DataInListPublishedServices is a nested struct in sae response

type DataInUpdateConfigMap added in v1.61.591

type DataInUpdateConfigMap struct {
	ConfigMapId string `json:"ConfigMapId" xml:"ConfigMapId"`
}

DataInUpdateConfigMap is a nested struct in sae response

type DataItem

type DataItem struct {
	Id                   int    `json:"Id" xml:"Id"`
	Expired              bool   `json:"Expired" xml:"Expired"`
	EdasContainerVersion string `json:"EdasContainerVersion" xml:"EdasContainerVersion"`
	Memory               int    `json:"Memory" xml:"Memory"`
	Disabled             bool   `json:"Disabled" xml:"Disabled"`
	Version              int    `json:"Version" xml:"Version"`
	Enable               bool   `json:"Enable" xml:"Enable"`
	ComponentKey         string `json:"ComponentKey" xml:"ComponentKey"`
	ComponentDescription string `json:"ComponentDescription" xml:"ComponentDescription"`
	Cpu                  int    `json:"Cpu" xml:"Cpu"`
	SpecInfo             string `json:"SpecInfo" xml:"SpecInfo"`
	Type                 string `json:"Type" xml:"Type"`
}

DataItem is a nested struct in sae response

type DataItemInListPublishedServices added in v1.61.591

type DataItemInListPublishedServices struct {
	Group2Ip string   `json:"Group2Ip" xml:"Group2Ip"`
	Type     string   `json:"Type" xml:"Type"`
	AppId    string   `json:"AppId" xml:"AppId"`
	Version  string   `json:"Version" xml:"Version"`
	Name     string   `json:"Name" xml:"Name"`
	Groups   []string `json:"Groups" xml:"Groups"`
	Ips      []string `json:"Ips" xml:"Ips"`
}

DataItemInListPublishedServices is a nested struct in sae response

type DefaultRule added in v1.61.591

type DefaultRule struct {
	AppId         string `json:"AppId" xml:"AppId"`
	ContainerPort int    `json:"ContainerPort" xml:"ContainerPort"`
	AppName       string `json:"AppName" xml:"AppName"`
}

DefaultRule is a nested struct in sae response

type DeleteApplicationRequest

type DeleteApplicationRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

DeleteApplicationRequest is the request struct for api DeleteApplication

func CreateDeleteApplicationRequest

func CreateDeleteApplicationRequest() (request *DeleteApplicationRequest)

CreateDeleteApplicationRequest creates a request to invoke DeleteApplication API

type DeleteApplicationResponse

type DeleteApplicationResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DeleteApplicationResponse is the response struct for api DeleteApplication

func CreateDeleteApplicationResponse

func CreateDeleteApplicationResponse() (response *DeleteApplicationResponse)

CreateDeleteApplicationResponse creates a response to parse from DeleteApplication response

type DeleteApplicationScalingRuleRequest added in v1.61.1003

type DeleteApplicationScalingRuleRequest struct {
	*requests.RoaRequest
	ScalingRuleName string `position:"Query" name:"ScalingRuleName"`
	AppId           string `position:"Query" name:"AppId"`
}

DeleteApplicationScalingRuleRequest is the request struct for api DeleteApplicationScalingRule

func CreateDeleteApplicationScalingRuleRequest added in v1.61.1003

func CreateDeleteApplicationScalingRuleRequest() (request *DeleteApplicationScalingRuleRequest)

CreateDeleteApplicationScalingRuleRequest creates a request to invoke DeleteApplicationScalingRule API

type DeleteApplicationScalingRuleResponse added in v1.61.1003

type DeleteApplicationScalingRuleResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
}

DeleteApplicationScalingRuleResponse is the response struct for api DeleteApplicationScalingRule

func CreateDeleteApplicationScalingRuleResponse added in v1.61.1003

func CreateDeleteApplicationScalingRuleResponse() (response *DeleteApplicationScalingRuleResponse)

CreateDeleteApplicationScalingRuleResponse creates a response to parse from DeleteApplicationScalingRule response

type DeleteConfigMapRequest added in v1.61.591

type DeleteConfigMapRequest struct {
	*requests.RoaRequest
	ConfigMapId requests.Integer `position:"Query" name:"ConfigMapId"`
}

DeleteConfigMapRequest is the request struct for api DeleteConfigMap

func CreateDeleteConfigMapRequest added in v1.61.591

func CreateDeleteConfigMapRequest() (request *DeleteConfigMapRequest)

CreateDeleteConfigMapRequest creates a request to invoke DeleteConfigMap API

type DeleteConfigMapResponse added in v1.61.591

type DeleteConfigMapResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

DeleteConfigMapResponse is the response struct for api DeleteConfigMap

func CreateDeleteConfigMapResponse added in v1.61.591

func CreateDeleteConfigMapResponse() (response *DeleteConfigMapResponse)

CreateDeleteConfigMapResponse creates a response to parse from DeleteConfigMap response

type DeleteIngressRequest added in v1.61.591

type DeleteIngressRequest struct {
	*requests.RoaRequest
	IngressId requests.Integer `position:"Query" name:"IngressId"`
}

DeleteIngressRequest is the request struct for api DeleteIngress

func CreateDeleteIngressRequest added in v1.61.591

func CreateDeleteIngressRequest() (request *DeleteIngressRequest)

CreateDeleteIngressRequest creates a request to invoke DeleteIngress API

type DeleteIngressResponse added in v1.61.591

type DeleteIngressResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DeleteIngressResponse is the response struct for api DeleteIngress

func CreateDeleteIngressResponse added in v1.61.591

func CreateDeleteIngressResponse() (response *DeleteIngressResponse)

CreateDeleteIngressResponse creates a response to parse from DeleteIngress response

type DeleteNamespaceRequest

type DeleteNamespaceRequest struct {
	*requests.RoaRequest
	NamespaceId string `position:"Query" name:"NamespaceId"`
}

DeleteNamespaceRequest is the request struct for api DeleteNamespace

func CreateDeleteNamespaceRequest

func CreateDeleteNamespaceRequest() (request *DeleteNamespaceRequest)

CreateDeleteNamespaceRequest creates a request to invoke DeleteNamespace API

type DeleteNamespaceResponse

type DeleteNamespaceResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
}

DeleteNamespaceResponse is the response struct for api DeleteNamespace

func CreateDeleteNamespaceResponse

func CreateDeleteNamespaceResponse() (response *DeleteNamespaceResponse)

CreateDeleteNamespaceResponse creates a response to parse from DeleteNamespace response

type DeployApplicationRequest

type DeployApplicationRequest struct {
	*requests.RoaRequest
	NasId                            string           `position:"Query" name:"NasId"`
	WebContainer                     string           `position:"Query" name:"WebContainer"`
	JarStartArgs                     string           `position:"Query" name:"JarStartArgs"`
	EnableAhas                       string           `position:"Query" name:"EnableAhas"`
	SlsConfigs                       string           `position:"Query" name:"SlsConfigs"`
	CommandArgs                      string           `position:"Query" name:"CommandArgs"`
	AcrAssumeRoleArn                 string           `position:"Query" name:"AcrAssumeRoleArn"`
	Readiness                        string           `position:"Query" name:"Readiness"`
	Timezone                         string           `position:"Query" name:"Timezone"`
	MountHost                        string           `position:"Query" name:"MountHost"`
	BatchWaitTime                    requests.Integer `position:"Query" name:"BatchWaitTime"`
	Liveness                         string           `position:"Query" name:"Liveness"`
	Envs                             string           `position:"Query" name:"Envs"`
	PhpArmsConfigLocation            string           `position:"Query" name:"PhpArmsConfigLocation"`
	PackageVersion                   string           `position:"Query" name:"PackageVersion"`
	TomcatConfig                     string           `position:"Query" name:"TomcatConfig"`
	CustomHostAlias                  string           `position:"Query" name:"CustomHostAlias"`
	WarStartOptions                  string           `position:"Query" name:"WarStartOptions"`
	JarStartOptions                  string           `position:"Query" name:"JarStartOptions"`
	EdasContainerVersion             string           `position:"Query" name:"EdasContainerVersion"`
	PackageUrl                       string           `position:"Query" name:"PackageUrl"`
	TerminationGracePeriodSeconds    requests.Integer `position:"Query" name:"TerminationGracePeriodSeconds"`
	ConfigMapMountDesc               string           `position:"Body" name:"ConfigMapMountDesc"`
	PhpConfig                        string           `position:"Body" name:"PhpConfig"`
	PreStop                          string           `position:"Query" name:"PreStop"`
	Command                          string           `position:"Query" name:"Command"`
	UpdateStrategy                   string           `position:"Query" name:"UpdateStrategy"`
	MountDesc                        string           `position:"Query" name:"MountDesc"`
	Jdk                              string           `position:"Query" name:"Jdk"`
	MinReadyInstances                requests.Integer `position:"Query" name:"MinReadyInstances"`
	ChangeOrderDesc                  string           `position:"Query" name:"ChangeOrderDesc"`
	AppId                            string           `position:"Query" name:"AppId"`
	ImageUrl                         string           `position:"Query" name:"ImageUrl"`
	AutoEnableApplicationScalingRule requests.Boolean `position:"Query" name:"AutoEnableApplicationScalingRule"`
	PhpConfigLocation                string           `position:"Query" name:"PhpConfigLocation"`
	PostStart                        string           `position:"Query" name:"PostStart"`
}

DeployApplicationRequest is the request struct for api DeployApplication

func CreateDeployApplicationRequest

func CreateDeployApplicationRequest() (request *DeployApplicationRequest)

CreateDeployApplicationRequest creates a request to invoke DeployApplication API

type DeployApplicationResponse

type DeployApplicationResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

DeployApplicationResponse is the response struct for api DeployApplication

func CreateDeployApplicationResponse

func CreateDeployApplicationResponse() (response *DeployApplicationResponse)

CreateDeployApplicationResponse creates a response to parse from DeployApplication response

type DescribeApplicationConfigRequest

type DescribeApplicationConfigRequest struct {
	*requests.RoaRequest
	VersionId string `position:"Query" name:"VersionId"`
	AppId     string `position:"Query" name:"AppId"`
}

DescribeApplicationConfigRequest is the request struct for api DescribeApplicationConfig

func CreateDescribeApplicationConfigRequest

func CreateDescribeApplicationConfigRequest() (request *DescribeApplicationConfigRequest)

CreateDescribeApplicationConfigRequest creates a request to invoke DescribeApplicationConfig API

type DescribeApplicationConfigResponse

type DescribeApplicationConfigResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeApplicationConfigResponse is the response struct for api DescribeApplicationConfig

func CreateDescribeApplicationConfigResponse

func CreateDescribeApplicationConfigResponse() (response *DescribeApplicationConfigResponse)

CreateDescribeApplicationConfigResponse creates a response to parse from DescribeApplicationConfig response

type DescribeApplicationGroupsRequest

type DescribeApplicationGroupsRequest struct {
	*requests.RoaRequest
	AppId       string           `position:"Query" name:"AppId"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
}

DescribeApplicationGroupsRequest is the request struct for api DescribeApplicationGroups

func CreateDescribeApplicationGroupsRequest

func CreateDescribeApplicationGroupsRequest() (request *DescribeApplicationGroupsRequest)

CreateDescribeApplicationGroupsRequest creates a request to invoke DescribeApplicationGroups API

type DescribeApplicationGroupsResponse

type DescribeApplicationGroupsResponse struct {
	*responses.BaseResponse
	Code      string             `json:"Code" xml:"Code"`
	Message   string             `json:"Message" xml:"Message"`
	TraceId   string             `json:"TraceId" xml:"TraceId"`
	RequestId string             `json:"RequestId" xml:"RequestId"`
	Success   bool               `json:"Success" xml:"Success"`
	ErrorCode string             `json:"ErrorCode" xml:"ErrorCode"`
	Data      []ApplicationGroup `json:"Data" xml:"Data"`
}

DescribeApplicationGroupsResponse is the response struct for api DescribeApplicationGroups

func CreateDescribeApplicationGroupsResponse

func CreateDescribeApplicationGroupsResponse() (response *DescribeApplicationGroupsResponse)

CreateDescribeApplicationGroupsResponse creates a response to parse from DescribeApplicationGroups response

type DescribeApplicationImageRequest

type DescribeApplicationImageRequest struct {
	*requests.RoaRequest
	AppId    string `position:"Query" name:"AppId"`
	ImageUrl string `position:"Query" name:"ImageUrl"`
}

DescribeApplicationImageRequest is the request struct for api DescribeApplicationImage

func CreateDescribeApplicationImageRequest

func CreateDescribeApplicationImageRequest() (request *DescribeApplicationImageRequest)

CreateDescribeApplicationImageRequest creates a request to invoke DescribeApplicationImage API

type DescribeApplicationImageResponse

type DescribeApplicationImageResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeApplicationImageResponse is the response struct for api DescribeApplicationImage

func CreateDescribeApplicationImageResponse

func CreateDescribeApplicationImageResponse() (response *DescribeApplicationImageResponse)

CreateDescribeApplicationImageResponse creates a response to parse from DescribeApplicationImage response

type DescribeApplicationInstancesRequest

type DescribeApplicationInstancesRequest struct {
	*requests.RoaRequest
	AppId       string           `position:"Query" name:"AppId"`
	GroupId     string           `position:"Query" name:"GroupId"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
}

DescribeApplicationInstancesRequest is the request struct for api DescribeApplicationInstances

func CreateDescribeApplicationInstancesRequest

func CreateDescribeApplicationInstancesRequest() (request *DescribeApplicationInstancesRequest)

CreateDescribeApplicationInstancesRequest creates a request to invoke DescribeApplicationInstances API

type DescribeApplicationInstancesResponse

type DescribeApplicationInstancesResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeApplicationInstancesResponse is the response struct for api DescribeApplicationInstances

func CreateDescribeApplicationInstancesResponse

func CreateDescribeApplicationInstancesResponse() (response *DescribeApplicationInstancesResponse)

CreateDescribeApplicationInstancesResponse creates a response to parse from DescribeApplicationInstances response

type DescribeApplicationScalingRulesRequest added in v1.61.1003

type DescribeApplicationScalingRulesRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

DescribeApplicationScalingRulesRequest is the request struct for api DescribeApplicationScalingRules

func CreateDescribeApplicationScalingRulesRequest added in v1.61.1003

func CreateDescribeApplicationScalingRulesRequest() (request *DescribeApplicationScalingRulesRequest)

CreateDescribeApplicationScalingRulesRequest creates a request to invoke DescribeApplicationScalingRules API

type DescribeApplicationScalingRulesResponse added in v1.61.1003

type DescribeApplicationScalingRulesResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeApplicationScalingRulesResponse is the response struct for api DescribeApplicationScalingRules

func CreateDescribeApplicationScalingRulesResponse added in v1.61.1003

func CreateDescribeApplicationScalingRulesResponse() (response *DescribeApplicationScalingRulesResponse)

CreateDescribeApplicationScalingRulesResponse creates a response to parse from DescribeApplicationScalingRules response

type DescribeApplicationSlbsRequest

type DescribeApplicationSlbsRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

DescribeApplicationSlbsRequest is the request struct for api DescribeApplicationSlbs

func CreateDescribeApplicationSlbsRequest

func CreateDescribeApplicationSlbsRequest() (request *DescribeApplicationSlbsRequest)

CreateDescribeApplicationSlbsRequest creates a request to invoke DescribeApplicationSlbs API

type DescribeApplicationSlbsResponse

type DescribeApplicationSlbsResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeApplicationSlbsResponse is the response struct for api DescribeApplicationSlbs

func CreateDescribeApplicationSlbsResponse

func CreateDescribeApplicationSlbsResponse() (response *DescribeApplicationSlbsResponse)

CreateDescribeApplicationSlbsResponse creates a response to parse from DescribeApplicationSlbs response

type DescribeApplicationStatusRequest

type DescribeApplicationStatusRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

DescribeApplicationStatusRequest is the request struct for api DescribeApplicationStatus

func CreateDescribeApplicationStatusRequest

func CreateDescribeApplicationStatusRequest() (request *DescribeApplicationStatusRequest)

CreateDescribeApplicationStatusRequest creates a request to invoke DescribeApplicationStatus API

type DescribeApplicationStatusResponse

type DescribeApplicationStatusResponse struct {
	*responses.BaseResponse
	RequestId string                          `json:"RequestId" xml:"RequestId"`
	Code      string                          `json:"Code" xml:"Code"`
	Message   string                          `json:"Message" xml:"Message"`
	TraceId   string                          `json:"TraceId" xml:"TraceId"`
	Success   bool                            `json:"Success" xml:"Success"`
	ErrorCode string                          `json:"ErrorCode" xml:"ErrorCode"`
	Data      DataInDescribeApplicationStatus `json:"Data" xml:"Data"`
}

DescribeApplicationStatusResponse is the response struct for api DescribeApplicationStatus

func CreateDescribeApplicationStatusResponse

func CreateDescribeApplicationStatusResponse() (response *DescribeApplicationStatusResponse)

CreateDescribeApplicationStatusResponse creates a response to parse from DescribeApplicationStatus response

type DescribeChangeOrderRequest

type DescribeChangeOrderRequest struct {
	*requests.RoaRequest
	ChangeOrderId string `position:"Query" name:"ChangeOrderId"`
}

DescribeChangeOrderRequest is the request struct for api DescribeChangeOrder

func CreateDescribeChangeOrderRequest

func CreateDescribeChangeOrderRequest() (request *DescribeChangeOrderRequest)

CreateDescribeChangeOrderRequest creates a request to invoke DescribeChangeOrder API

type DescribeChangeOrderResponse

type DescribeChangeOrderResponse struct {
	*responses.BaseResponse
	Message   string                    `json:"Message" xml:"Message"`
	RequestId string                    `json:"RequestId" xml:"RequestId"`
	TraceId   string                    `json:"TraceId" xml:"TraceId"`
	ErrorCode string                    `json:"ErrorCode" xml:"ErrorCode"`
	Code      string                    `json:"Code" xml:"Code"`
	Success   bool                      `json:"Success" xml:"Success"`
	Data      DataInDescribeChangeOrder `json:"Data" xml:"Data"`
}

DescribeChangeOrderResponse is the response struct for api DescribeChangeOrder

func CreateDescribeChangeOrderResponse

func CreateDescribeChangeOrderResponse() (response *DescribeChangeOrderResponse)

CreateDescribeChangeOrderResponse creates a response to parse from DescribeChangeOrder response

type DescribeComponentsRequest

type DescribeComponentsRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
	Type  string `position:"Query" name:"Type"`
}

DescribeComponentsRequest is the request struct for api DescribeComponents

func CreateDescribeComponentsRequest

func CreateDescribeComponentsRequest() (request *DescribeComponentsRequest)

CreateDescribeComponentsRequest creates a request to invoke DescribeComponents API

type DescribeComponentsResponse

type DescribeComponentsResponse struct {
	*responses.BaseResponse
	RequestId string     `json:"RequestId" xml:"RequestId"`
	Code      string     `json:"Code" xml:"Code"`
	ErrorCode string     `json:"ErrorCode" xml:"ErrorCode"`
	Message   string     `json:"Message" xml:"Message"`
	Success   bool       `json:"Success" xml:"Success"`
	TraceId   string     `json:"TraceId" xml:"TraceId"`
	Data      []DataItem `json:"Data" xml:"Data"`
}

DescribeComponentsResponse is the response struct for api DescribeComponents

func CreateDescribeComponentsResponse

func CreateDescribeComponentsResponse() (response *DescribeComponentsResponse)

CreateDescribeComponentsResponse creates a response to parse from DescribeComponents response

type DescribeConfigMapRequest added in v1.61.591

type DescribeConfigMapRequest struct {
	*requests.RoaRequest
	ConfigMapId requests.Integer `position:"Query" name:"ConfigMapId"`
}

DescribeConfigMapRequest is the request struct for api DescribeConfigMap

func CreateDescribeConfigMapRequest added in v1.61.591

func CreateDescribeConfigMapRequest() (request *DescribeConfigMapRequest)

CreateDescribeConfigMapRequest creates a request to invoke DescribeConfigMap API

type DescribeConfigMapResponse added in v1.61.591

type DescribeConfigMapResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeConfigMapResponse is the response struct for api DescribeConfigMap

func CreateDescribeConfigMapResponse added in v1.61.591

func CreateDescribeConfigMapResponse() (response *DescribeConfigMapResponse)

CreateDescribeConfigMapResponse creates a response to parse from DescribeConfigMap response

type DescribeEdasContainersRequest

type DescribeEdasContainersRequest struct {
	*requests.RoaRequest
}

DescribeEdasContainersRequest is the request struct for api DescribeEdasContainers

func CreateDescribeEdasContainersRequest

func CreateDescribeEdasContainersRequest() (request *DescribeEdasContainersRequest)

CreateDescribeEdasContainersRequest creates a request to invoke DescribeEdasContainers API

type DescribeEdasContainersResponse

type DescribeEdasContainersResponse struct {
	*responses.BaseResponse
	RequestId string     `json:"RequestId" xml:"RequestId"`
	Code      string     `json:"Code" xml:"Code"`
	Message   string     `json:"Message" xml:"Message"`
	Success   bool       `json:"Success" xml:"Success"`
	ErrorCode string     `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string     `json:"TraceId" xml:"TraceId"`
	Data      []DataItem `json:"Data" xml:"Data"`
}

DescribeEdasContainersResponse is the response struct for api DescribeEdasContainers

func CreateDescribeEdasContainersResponse

func CreateDescribeEdasContainersResponse() (response *DescribeEdasContainersResponse)

CreateDescribeEdasContainersResponse creates a response to parse from DescribeEdasContainers response

type DescribeIngressRequest added in v1.61.591

type DescribeIngressRequest struct {
	*requests.RoaRequest
	IngressId requests.Integer `position:"Query" name:"IngressId"`
}

DescribeIngressRequest is the request struct for api DescribeIngress

func CreateDescribeIngressRequest added in v1.61.591

func CreateDescribeIngressRequest() (request *DescribeIngressRequest)

CreateDescribeIngressRequest creates a request to invoke DescribeIngress API

type DescribeIngressResponse added in v1.61.591

type DescribeIngressResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeIngressResponse is the response struct for api DescribeIngress

func CreateDescribeIngressResponse added in v1.61.591

func CreateDescribeIngressResponse() (response *DescribeIngressResponse)

CreateDescribeIngressResponse creates a response to parse from DescribeIngress response

type DescribeInstanceLogRequest

type DescribeInstanceLogRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Query" name:"InstanceId"`
}

DescribeInstanceLogRequest is the request struct for api DescribeInstanceLog

func CreateDescribeInstanceLogRequest

func CreateDescribeInstanceLogRequest() (request *DescribeInstanceLogRequest)

CreateDescribeInstanceLogRequest creates a request to invoke DescribeInstanceLog API

type DescribeInstanceLogResponse

type DescribeInstanceLogResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      string `json:"Data" xml:"Data"`
}

DescribeInstanceLogResponse is the response struct for api DescribeInstanceLog

func CreateDescribeInstanceLogResponse

func CreateDescribeInstanceLogResponse() (response *DescribeInstanceLogResponse)

CreateDescribeInstanceLogResponse creates a response to parse from DescribeInstanceLog response

type DescribeInstanceSpecificationsRequest

type DescribeInstanceSpecificationsRequest struct {
	*requests.RoaRequest
}

DescribeInstanceSpecificationsRequest is the request struct for api DescribeInstanceSpecifications

func CreateDescribeInstanceSpecificationsRequest

func CreateDescribeInstanceSpecificationsRequest() (request *DescribeInstanceSpecificationsRequest)

CreateDescribeInstanceSpecificationsRequest creates a request to invoke DescribeInstanceSpecifications API

type DescribeInstanceSpecificationsResponse

type DescribeInstanceSpecificationsResponse struct {
	*responses.BaseResponse
	RequestId string     `json:"RequestId" xml:"RequestId"`
	Code      string     `json:"Code" xml:"Code"`
	Message   string     `json:"Message" xml:"Message"`
	Success   bool       `json:"Success" xml:"Success"`
	ErrorCode string     `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string     `json:"TraceId" xml:"TraceId"`
	Data      []DataItem `json:"Data" xml:"Data"`
}

DescribeInstanceSpecificationsResponse is the response struct for api DescribeInstanceSpecifications

func CreateDescribeInstanceSpecificationsResponse

func CreateDescribeInstanceSpecificationsResponse() (response *DescribeInstanceSpecificationsResponse)

CreateDescribeInstanceSpecificationsResponse creates a response to parse from DescribeInstanceSpecifications response

type DescribeNamespaceListRequest

type DescribeNamespaceListRequest struct {
	*requests.RoaRequest
	HybridCloudExclude requests.Boolean `position:"Query" name:"HybridCloudExclude"`
	ContainCustom      requests.Boolean `position:"Query" name:"ContainCustom"`
}

DescribeNamespaceListRequest is the request struct for api DescribeNamespaceList

func CreateDescribeNamespaceListRequest

func CreateDescribeNamespaceListRequest() (request *DescribeNamespaceListRequest)

CreateDescribeNamespaceListRequest creates a request to invoke DescribeNamespaceList API

type DescribeNamespaceListResponse

type DescribeNamespaceListResponse struct {
	*responses.BaseResponse
	RequestId string       `json:"RequestId" xml:"RequestId"`
	Code      string       `json:"Code" xml:"Code"`
	Message   string       `json:"Message" xml:"Message"`
	Success   bool         `json:"Success" xml:"Success"`
	ErrorCode string       `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string       `json:"TraceId" xml:"TraceId"`
	Data      []RegionList `json:"Data" xml:"Data"`
}

DescribeNamespaceListResponse is the response struct for api DescribeNamespaceList

func CreateDescribeNamespaceListResponse

func CreateDescribeNamespaceListResponse() (response *DescribeNamespaceListResponse)

CreateDescribeNamespaceListResponse creates a response to parse from DescribeNamespaceList response

type DescribeNamespaceRequest

type DescribeNamespaceRequest struct {
	*requests.RoaRequest
	NamespaceId string `position:"Query" name:"NamespaceId"`
}

DescribeNamespaceRequest is the request struct for api DescribeNamespace

func CreateDescribeNamespaceRequest

func CreateDescribeNamespaceRequest() (request *DescribeNamespaceRequest)

CreateDescribeNamespaceRequest creates a request to invoke DescribeNamespace API

type DescribeNamespaceResourcesRequest added in v1.61.591

type DescribeNamespaceResourcesRequest struct {
	*requests.RoaRequest
	NamespaceId string `position:"Query" name:"NamespaceId"`
}

DescribeNamespaceResourcesRequest is the request struct for api DescribeNamespaceResources

func CreateDescribeNamespaceResourcesRequest added in v1.61.591

func CreateDescribeNamespaceResourcesRequest() (request *DescribeNamespaceResourcesRequest)

CreateDescribeNamespaceResourcesRequest creates a request to invoke DescribeNamespaceResources API

type DescribeNamespaceResourcesResponse added in v1.61.591

type DescribeNamespaceResourcesResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeNamespaceResourcesResponse is the response struct for api DescribeNamespaceResources

func CreateDescribeNamespaceResourcesResponse added in v1.61.591

func CreateDescribeNamespaceResourcesResponse() (response *DescribeNamespaceResourcesResponse)

CreateDescribeNamespaceResourcesResponse creates a response to parse from DescribeNamespaceResources response

type DescribeNamespaceResponse

type DescribeNamespaceResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeNamespaceResponse is the response struct for api DescribeNamespace

func CreateDescribeNamespaceResponse

func CreateDescribeNamespaceResponse() (response *DescribeNamespaceResponse)

CreateDescribeNamespaceResponse creates a response to parse from DescribeNamespace response

type DescribeNamespacesRequest

type DescribeNamespacesRequest struct {
	*requests.RoaRequest
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
}

DescribeNamespacesRequest is the request struct for api DescribeNamespaces

func CreateDescribeNamespacesRequest

func CreateDescribeNamespacesRequest() (request *DescribeNamespacesRequest)

CreateDescribeNamespacesRequest creates a request to invoke DescribeNamespaces API

type DescribeNamespacesResponse

type DescribeNamespacesResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeNamespacesResponse is the response struct for api DescribeNamespaces

func CreateDescribeNamespacesResponse

func CreateDescribeNamespacesResponse() (response *DescribeNamespacesResponse)

CreateDescribeNamespacesResponse creates a response to parse from DescribeNamespaces response

type DescribePipelineRequest added in v1.61.1003

type DescribePipelineRequest struct {
	*requests.RoaRequest
	PipelineId string `position:"Query" name:"PipelineId"`
}

DescribePipelineRequest is the request struct for api DescribePipeline

func CreateDescribePipelineRequest added in v1.61.1003

func CreateDescribePipelineRequest() (request *DescribePipelineRequest)

CreateDescribePipelineRequest creates a request to invoke DescribePipeline API

type DescribePipelineResponse added in v1.61.1003

type DescribePipelineResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribePipelineResponse is the response struct for api DescribePipeline

func CreateDescribePipelineResponse added in v1.61.1003

func CreateDescribePipelineResponse() (response *DescribePipelineResponse)

CreateDescribePipelineResponse creates a response to parse from DescribePipeline response

type DescribeRegionsRequest

type DescribeRegionsRequest struct {
	*requests.RoaRequest
}

DescribeRegionsRequest is the request struct for api DescribeRegions

func CreateDescribeRegionsRequest

func CreateDescribeRegionsRequest() (request *DescribeRegionsRequest)

CreateDescribeRegionsRequest creates a request to invoke DescribeRegions API

type DescribeRegionsResponse

type DescribeRegionsResponse struct {
	*responses.BaseResponse
	RequestId string  `json:"RequestId" xml:"RequestId"`
	Code      int     `json:"Code" xml:"Code"`
	Message   string  `json:"Message" xml:"Message"`
	Regions   Regions `json:"Regions" xml:"Regions"`
}

DescribeRegionsResponse is the response struct for api DescribeRegions

func CreateDescribeRegionsResponse

func CreateDescribeRegionsResponse() (response *DescribeRegionsResponse)

CreateDescribeRegionsResponse creates a response to parse from DescribeRegions response

type DisableApplicationScalingRuleRequest added in v1.61.1003

type DisableApplicationScalingRuleRequest struct {
	*requests.RoaRequest
	ScalingRuleName string `position:"Query" name:"ScalingRuleName"`
	AppId           string `position:"Query" name:"AppId"`
}

DisableApplicationScalingRuleRequest is the request struct for api DisableApplicationScalingRule

func CreateDisableApplicationScalingRuleRequest added in v1.61.1003

func CreateDisableApplicationScalingRuleRequest() (request *DisableApplicationScalingRuleRequest)

CreateDisableApplicationScalingRuleRequest creates a request to invoke DisableApplicationScalingRule API

type DisableApplicationScalingRuleResponse added in v1.61.1003

type DisableApplicationScalingRuleResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
}

DisableApplicationScalingRuleResponse is the response struct for api DisableApplicationScalingRule

func CreateDisableApplicationScalingRuleResponse added in v1.61.1003

func CreateDisableApplicationScalingRuleResponse() (response *DisableApplicationScalingRuleResponse)

CreateDisableApplicationScalingRuleResponse creates a response to parse from DisableApplicationScalingRule response

type EnableApplicationScalingRuleRequest added in v1.61.1003

type EnableApplicationScalingRuleRequest struct {
	*requests.RoaRequest
	ScalingRuleName string `position:"Query" name:"ScalingRuleName"`
	AppId           string `position:"Query" name:"AppId"`
}

EnableApplicationScalingRuleRequest is the request struct for api EnableApplicationScalingRule

func CreateEnableApplicationScalingRuleRequest added in v1.61.1003

func CreateEnableApplicationScalingRuleRequest() (request *EnableApplicationScalingRuleRequest)

CreateEnableApplicationScalingRuleRequest creates a request to invoke EnableApplicationScalingRule API

type EnableApplicationScalingRuleResponse added in v1.61.1003

type EnableApplicationScalingRuleResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
}

EnableApplicationScalingRuleResponse is the response struct for api EnableApplicationScalingRule

func CreateEnableApplicationScalingRuleResponse added in v1.61.1003

func CreateEnableApplicationScalingRuleResponse() (response *EnableApplicationScalingRuleResponse)

CreateEnableApplicationScalingRuleResponse creates a response to parse from EnableApplicationScalingRule response

type GroupsInListConsumedServices

type GroupsInListConsumedServices struct {
	Group []string `json:"Group" xml:"Group"`
}

GroupsInListConsumedServices is a nested struct in sae response

type GroupsInListPublishedServices

type GroupsInListPublishedServices struct {
	Group []string `json:"Group" xml:"Group"`
}

GroupsInListPublishedServices is a nested struct in sae response

type Ingress added in v1.61.591

type Ingress struct {
	Id           int64  `json:"Id" xml:"Id"`
	Name         string `json:"Name" xml:"Name"`
	NamespaceId  string `json:"NamespaceId" xml:"NamespaceId"`
	SlbId        string `json:"SlbId" xml:"SlbId"`
	ListenerPort string `json:"ListenerPort" xml:"ListenerPort"`
	CertId       string `json:"CertId" xml:"CertId"`
	Description  string `json:"Description" xml:"Description"`
	SlbType      string `json:"SlbType" xml:"SlbType"`
}

Ingress is a nested struct in sae response

type IngressList added in v1.61.591

type IngressList struct {
	Ingress []Ingress `json:"Ingress" xml:"Ingress"`
}

IngressList is a nested struct in sae response

type Instance

type Instance struct {
	InstanceContainerIp       string `json:"InstanceContainerIp" xml:"InstanceContainerIp"`
	InstanceHealthStatus      string `json:"InstanceHealthStatus" xml:"InstanceHealthStatus"`
	InstanceId                string `json:"InstanceId" xml:"InstanceId"`
	VSwitchId                 string `json:"VSwitchId" xml:"VSwitchId"`
	ImageUrl                  string `json:"ImageUrl" xml:"ImageUrl"`
	InstanceContainerRestarts int64  `json:"InstanceContainerRestarts" xml:"InstanceContainerRestarts"`
	PackageVersion            string `json:"PackageVersion" xml:"PackageVersion"`
	InstanceContainerStatus   string `json:"InstanceContainerStatus" xml:"InstanceContainerStatus"`
	CreateTimeStamp           int64  `json:"CreateTimeStamp" xml:"CreateTimeStamp"`
	GroupId                   string `json:"GroupId" xml:"GroupId"`
}

Instance is a nested struct in sae response

type Instances

type Instances struct {
	Instance []Instance `json:"Instance" xml:"Instance"`
}

Instances is a nested struct in sae response

type Internet

type Internet struct {
	InternetItem []InternetItem `json:"Internet" xml:"Internet"`
}

Internet is a nested struct in sae response

type InternetItem

type InternetItem struct {
	Port        int    `json:"Port" xml:"Port"`
	Protocol    string `json:"Protocol" xml:"Protocol"`
	TargetPort  int    `json:"TargetPort" xml:"TargetPort"`
	HttpsCertId string `json:"HttpsCertId" xml:"HttpsCertId"`
}

InternetItem is a nested struct in sae response

type Intranet

type Intranet struct {
	IntranetItem []IntranetItem `json:"Intranet" xml:"Intranet"`
}

Intranet is a nested struct in sae response

type IntranetItem

type IntranetItem struct {
	Port        int    `json:"Port" xml:"Port"`
	Protocol    string `json:"Protocol" xml:"Protocol"`
	TargetPort  int    `json:"TargetPort" xml:"TargetPort"`
	HttpsCertId string `json:"HttpsCertId" xml:"HttpsCertId"`
}

IntranetItem is a nested struct in sae response

type IpsInListConsumedServices

type IpsInListConsumedServices struct {
	Ip []string `json:"Ip" xml:"Ip"`
}

IpsInListConsumedServices is a nested struct in sae response

type IpsInListPublishedServices

type IpsInListPublishedServices struct {
	Ip []string `json:"Ip" xml:"Ip"`
}

IpsInListPublishedServices is a nested struct in sae response

type ListAppEventsRequest added in v1.61.591

type ListAppEventsRequest struct {
	*requests.RoaRequest
	Reason      string           `position:"Query" name:"Reason"`
	ObjectKind  string           `position:"Query" name:"ObjectKind"`
	AppId       string           `position:"Query" name:"AppId"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	ObjectName  string           `position:"Query" name:"ObjectName"`
	Namespace   string           `position:"Query" name:"Namespace"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
	EventType   string           `position:"Query" name:"EventType"`
}

ListAppEventsRequest is the request struct for api ListAppEvents

func CreateListAppEventsRequest added in v1.61.591

func CreateListAppEventsRequest() (request *ListAppEventsRequest)

CreateListAppEventsRequest creates a request to invoke ListAppEvents API

type ListAppEventsResponse added in v1.61.591

type ListAppEventsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListAppEventsResponse is the response struct for api ListAppEvents

func CreateListAppEventsResponse added in v1.61.591

func CreateListAppEventsResponse() (response *ListAppEventsResponse)

CreateListAppEventsResponse creates a response to parse from ListAppEvents response

type ListAppVersionsRequest added in v1.61.591

type ListAppVersionsRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

ListAppVersionsRequest is the request struct for api ListAppVersions

func CreateListAppVersionsRequest added in v1.61.591

func CreateListAppVersionsRequest() (request *ListAppVersionsRequest)

CreateListAppVersionsRequest creates a request to invoke ListAppVersions API

type ListAppVersionsResponse added in v1.61.591

type ListAppVersionsResponse struct {
	*responses.BaseResponse
	RequestId string                 `json:"RequestId" xml:"RequestId"`
	Code      string                 `json:"Code" xml:"Code"`
	Message   string                 `json:"Message" xml:"Message"`
	Success   bool                   `json:"Success" xml:"Success"`
	ErrorCode string                 `json:"ErrorCode" xml:"ErrorCode"`
	Data      []PackageVersionEntity `json:"Data" xml:"Data"`
}

ListAppVersionsResponse is the response struct for api ListAppVersions

func CreateListAppVersionsResponse added in v1.61.591

func CreateListAppVersionsResponse() (response *ListAppVersionsResponse)

CreateListAppVersionsResponse creates a response to parse from ListAppVersions response

type ListApplicationsRequest

type ListApplicationsRequest struct {
	*requests.RoaRequest
	AppName     string           `position:"Query" name:"AppName"`
	NamespaceId string           `position:"Query" name:"NamespaceId"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
	Tags        string           `position:"Query" name:"Tags"`
}

ListApplicationsRequest is the request struct for api ListApplications

func CreateListApplicationsRequest

func CreateListApplicationsRequest() (request *ListApplicationsRequest)

CreateListApplicationsRequest creates a request to invoke ListApplications API

type ListApplicationsResponse

type ListApplicationsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListApplicationsResponse is the response struct for api ListApplications

func CreateListApplicationsResponse

func CreateListApplicationsResponse() (response *ListApplicationsResponse)

CreateListApplicationsResponse creates a response to parse from ListApplications response

type ListChangeOrdersRequest

type ListChangeOrdersRequest struct {
	*requests.RoaRequest
	CoType      string           `position:"Query" name:"CoType"`
	AppId       string           `position:"Query" name:"AppId"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
	CoStatus    string           `position:"Query" name:"CoStatus"`
	Key         string           `position:"Query" name:"Key"`
}

ListChangeOrdersRequest is the request struct for api ListChangeOrders

func CreateListChangeOrdersRequest

func CreateListChangeOrdersRequest() (request *ListChangeOrdersRequest)

CreateListChangeOrdersRequest creates a request to invoke ListChangeOrders API

type ListChangeOrdersResponse

type ListChangeOrdersResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListChangeOrdersResponse is the response struct for api ListChangeOrders

func CreateListChangeOrdersResponse

func CreateListChangeOrdersResponse() (response *ListChangeOrdersResponse)

CreateListChangeOrdersResponse creates a response to parse from ListChangeOrders response

type ListConsumedServices

type ListConsumedServices struct {
	Group2Ip string   `json:"Group2Ip" xml:"Group2Ip"`
	Type     string   `json:"Type" xml:"Type"`
	AppId    string   `json:"AppId" xml:"AppId"`
	Version  string   `json:"Version" xml:"Version"`
	Name     string   `json:"Name" xml:"Name"`
	Groups   []string `json:"Groups" xml:"Groups"`
	Ips      []string `json:"Ips" xml:"Ips"`
}

ListConsumedServices is a nested struct in sae response

type ListConsumedServicesRequest

type ListConsumedServicesRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

ListConsumedServicesRequest is the request struct for api ListConsumedServices

func CreateListConsumedServicesRequest

func CreateListConsumedServicesRequest() (request *ListConsumedServicesRequest)

CreateListConsumedServicesRequest creates a request to invoke ListConsumedServices API

type ListConsumedServicesResponse

type ListConsumedServicesResponse struct {
	*responses.BaseResponse
	Message   string                 `json:"Message" xml:"Message"`
	RequestId string                 `json:"RequestId" xml:"RequestId"`
	TraceId   string                 `json:"TraceId" xml:"TraceId"`
	ErrorCode string                 `json:"ErrorCode" xml:"ErrorCode"`
	Code      string                 `json:"Code" xml:"Code"`
	Success   bool                   `json:"Success" xml:"Success"`
	Data      []ListConsumedServices `json:"Data" xml:"Data"`
}

ListConsumedServicesResponse is the response struct for api ListConsumedServices

func CreateListConsumedServicesResponse

func CreateListConsumedServicesResponse() (response *ListConsumedServicesResponse)

CreateListConsumedServicesResponse creates a response to parse from ListConsumedServices response

type ListIngressesRequest added in v1.61.591

type ListIngressesRequest struct {
	*requests.RoaRequest
	NamespaceId string `position:"Query" name:"NamespaceId"`
	AppId       string `position:"Query" name:"AppId"`
}

ListIngressesRequest is the request struct for api ListIngresses

func CreateListIngressesRequest added in v1.61.591

func CreateListIngressesRequest() (request *ListIngressesRequest)

CreateListIngressesRequest creates a request to invoke ListIngresses API

type ListIngressesResponse added in v1.61.591

type ListIngressesResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListIngressesResponse is the response struct for api ListIngresses

func CreateListIngressesResponse added in v1.61.591

func CreateListIngressesResponse() (response *ListIngressesResponse)

CreateListIngressesResponse creates a response to parse from ListIngresses response

type ListLogConfigsRequest added in v1.61.591

type ListLogConfigsRequest struct {
	*requests.RoaRequest
	AppId       string           `position:"Query" name:"AppId"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
}

ListLogConfigsRequest is the request struct for api ListLogConfigs

func CreateListLogConfigsRequest added in v1.61.591

func CreateListLogConfigsRequest() (request *ListLogConfigsRequest)

CreateListLogConfigsRequest creates a request to invoke ListLogConfigs API

type ListLogConfigsResponse added in v1.61.591

type ListLogConfigsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListLogConfigsResponse is the response struct for api ListLogConfigs

func CreateListLogConfigsResponse added in v1.61.591

func CreateListLogConfigsResponse() (response *ListLogConfigsResponse)

CreateListLogConfigsResponse creates a response to parse from ListLogConfigs response

type ListNamespaceChangeOrdersRequest added in v1.61.591

type ListNamespaceChangeOrdersRequest struct {
	*requests.RoaRequest
	CoType      string           `position:"Query" name:"CoType"`
	NamespaceId string           `position:"Query" name:"NamespaceId"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
	CurrentPage requests.Integer `position:"Query" name:"CurrentPage"`
	CoStatus    string           `position:"Query" name:"CoStatus"`
	Key         string           `position:"Query" name:"Key"`
}

ListNamespaceChangeOrdersRequest is the request struct for api ListNamespaceChangeOrders

func CreateListNamespaceChangeOrdersRequest added in v1.61.591

func CreateListNamespaceChangeOrdersRequest() (request *ListNamespaceChangeOrdersRequest)

CreateListNamespaceChangeOrdersRequest creates a request to invoke ListNamespaceChangeOrders API

type ListNamespaceChangeOrdersResponse added in v1.61.591

type ListNamespaceChangeOrdersResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListNamespaceChangeOrdersResponse is the response struct for api ListNamespaceChangeOrders

func CreateListNamespaceChangeOrdersResponse added in v1.61.591

func CreateListNamespaceChangeOrdersResponse() (response *ListNamespaceChangeOrdersResponse)

CreateListNamespaceChangeOrdersResponse creates a response to parse from ListNamespaceChangeOrders response

type ListNamespacedConfigMapsRequest added in v1.61.591

type ListNamespacedConfigMapsRequest struct {
	*requests.RoaRequest
	NamespaceId string `position:"Query" name:"NamespaceId"`
}

ListNamespacedConfigMapsRequest is the request struct for api ListNamespacedConfigMaps

func CreateListNamespacedConfigMapsRequest added in v1.61.591

func CreateListNamespacedConfigMapsRequest() (request *ListNamespacedConfigMapsRequest)

CreateListNamespacedConfigMapsRequest creates a request to invoke ListNamespacedConfigMaps API

type ListNamespacedConfigMapsResponse added in v1.61.591

type ListNamespacedConfigMapsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListNamespacedConfigMapsResponse is the response struct for api ListNamespacedConfigMaps

func CreateListNamespacedConfigMapsResponse added in v1.61.591

func CreateListNamespacedConfigMapsResponse() (response *ListNamespacedConfigMapsResponse)

CreateListNamespacedConfigMapsResponse creates a response to parse from ListNamespacedConfigMaps response

type ListPublishedServicesRequest

type ListPublishedServicesRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

ListPublishedServicesRequest is the request struct for api ListPublishedServices

func CreateListPublishedServicesRequest

func CreateListPublishedServicesRequest() (request *ListPublishedServicesRequest)

CreateListPublishedServicesRequest creates a request to invoke ListPublishedServices API

type ListPublishedServicesResponse

type ListPublishedServicesResponse struct {
	*responses.BaseResponse
	Message   string                            `json:"Message" xml:"Message"`
	RequestId string                            `json:"RequestId" xml:"RequestId"`
	TraceId   string                            `json:"TraceId" xml:"TraceId"`
	ErrorCode string                            `json:"ErrorCode" xml:"ErrorCode"`
	Code      string                            `json:"Code" xml:"Code"`
	Success   bool                              `json:"Success" xml:"Success"`
	Data      []DataItemInListPublishedServices `json:"Data" xml:"Data"`
}

ListPublishedServicesResponse is the response struct for api ListPublishedServices

func CreateListPublishedServicesResponse

func CreateListPublishedServicesResponse() (response *ListPublishedServicesResponse)

CreateListPublishedServicesResponse creates a response to parse from ListPublishedServices response

type ListTagResourcesRequest added in v1.61.591

type ListTagResourcesRequest struct {
	*requests.RoaRequest
	NextToken    string `position:"Query" name:"NextToken"`
	ResourceType string `position:"Query" name:"ResourceType"`
	ResourceIds  string `position:"Query" name:"ResourceIds"`
	Tags         string `position:"Query" name:"Tags"`
}

ListTagResourcesRequest is the request struct for api ListTagResources

func CreateListTagResourcesRequest added in v1.61.591

func CreateListTagResourcesRequest() (request *ListTagResourcesRequest)

CreateListTagResourcesRequest creates a request to invoke ListTagResources API

type ListTagResourcesResponse added in v1.61.591

type ListTagResourcesResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListTagResourcesResponse is the response struct for api ListTagResources

func CreateListTagResourcesResponse added in v1.61.591

func CreateListTagResourcesResponse() (response *ListTagResourcesResponse)

CreateListTagResourcesResponse creates a response to parse from ListTagResources response

type LogConfig added in v1.61.591

type LogConfig struct {
	ConfigName  string `json:"ConfigName" xml:"ConfigName"`
	LogDir      string `json:"LogDir" xml:"LogDir"`
	SlsProject  string `json:"SlsProject" xml:"SlsProject"`
	SlsLogStore string `json:"SlsLogStore" xml:"SlsLogStore"`
	StoreType   string `json:"StoreType" xml:"StoreType"`
	LogType     string `json:"LogType" xml:"LogType"`
	RegionId    string `json:"RegionId" xml:"RegionId"`
	CreateTime  string `json:"CreateTime" xml:"CreateTime"`
}

LogConfig is a nested struct in sae response

type LogConfigs added in v1.61.591

type LogConfigs struct {
	LogConfig []LogConfig `json:"LogConfig" xml:"LogConfig"`
}

LogConfigs is a nested struct in sae response

type Metric added in v1.61.1003

type Metric struct {
	MinReplicas                    int           `json:"MinReplicas" xml:"MinReplicas"`
	MetricType                     string        `json:"MetricType" xml:"MetricType"`
	MetricTargetAverageUtilization int           `json:"MetricTargetAverageUtilization" xml:"MetricTargetAverageUtilization"`
	MaxReplicas                    int           `json:"MaxReplicas" xml:"MaxReplicas"`
	MetricsStatus                  MetricsStatus `json:"MetricsStatus" xml:"MetricsStatus"`
	Metrics                        []Metric      `json:"Metrics" xml:"Metrics"`
}

Metric is a nested struct in sae response

type MetricsInCreateApplicationScalingRule added in v1.61.1003

type MetricsInCreateApplicationScalingRule struct {
	Metric []Metric `json:"Metric" xml:"Metric"`
}

MetricsInCreateApplicationScalingRule is a nested struct in sae response

type MetricsInDescribeApplicationScalingRules added in v1.61.1003

type MetricsInDescribeApplicationScalingRules struct {
	Metric []Metric `json:"Metric" xml:"Metric"`
}

MetricsInDescribeApplicationScalingRules is a nested struct in sae response

type MetricsInUpdateApplicationScalingRule added in v1.61.1003

type MetricsInUpdateApplicationScalingRule struct {
	Metric []Metric `json:"Metric" xml:"Metric"`
}

MetricsInUpdateApplicationScalingRule is a nested struct in sae response

type MetricsStatus added in v1.61.1003

type MetricsStatus struct {
	DesiredReplicas     int64             `json:"DesiredReplicas" xml:"DesiredReplicas"`
	CurrentReplicas     int64             `json:"CurrentReplicas" xml:"CurrentReplicas"`
	NextScaleTimePeriod int               `json:"NextScaleTimePeriod" xml:"NextScaleTimePeriod"`
	LastScaleTime       string            `json:"LastScaleTime" xml:"LastScaleTime"`
	NextScaleMetrics    []NextScaleMetric `json:"NextScaleMetrics" xml:"NextScaleMetrics"`
	CurrentMetrics      []CurrentMetric   `json:"CurrentMetrics" xml:"CurrentMetrics"`
}

MetricsStatus is a nested struct in sae response

type MountDesc added in v1.61.591

type MountDesc struct {
	MountDescItem []MountDescItem `json:"MountDesc" xml:"MountDesc"`
}

MountDesc is a nested struct in sae response

type MountDescItem added in v1.61.591

type MountDescItem struct {
	MountPath string `json:"MountPath" xml:"MountPath"`
	NasPath   string `json:"NasPath" xml:"NasPath"`
}

MountDescItem is a nested struct in sae response

type Namespace

type Namespace struct {
	AccessKey            string `json:"AccessKey" xml:"AccessKey"`
	AddressServerHost    string `json:"AddressServerHost" xml:"AddressServerHost"`
	SecretKey            string `json:"SecretKey" xml:"SecretKey"`
	TenantId             string `json:"TenantId" xml:"TenantId"`
	RegionId             string `json:"RegionId" xml:"RegionId"`
	NamespaceId          string `json:"NamespaceId" xml:"NamespaceId"`
	NamespaceName        string `json:"NamespaceName" xml:"NamespaceName"`
	NamespaceDescription string `json:"NamespaceDescription" xml:"NamespaceDescription"`
}

Namespace is a nested struct in sae response

type Namespaces

type Namespaces struct {
	Namespace []Namespace `json:"Namespace" xml:"Namespace"`
}

Namespaces is a nested struct in sae response

type NextScaleMetric added in v1.61.1003

type NextScaleMetric struct {
	NextScaleInAverageUtilization  int    `json:"NextScaleInAverageUtilization" xml:"NextScaleInAverageUtilization"`
	Name                           string `json:"Name" xml:"Name"`
	NextScaleOutAverageUtilization int    `json:"NextScaleOutAverageUtilization" xml:"NextScaleOutAverageUtilization"`
}

NextScaleMetric is a nested struct in sae response

type NextScaleMetrics added in v1.61.1003

type NextScaleMetrics struct {
	NextScaleMetric []NextScaleMetric `json:"NextScaleMetric" xml:"NextScaleMetric"`
}

NextScaleMetrics is a nested struct in sae response

type OpenSaeServiceRequest added in v1.61.1003

type OpenSaeServiceRequest struct {
	*requests.RoaRequest
}

OpenSaeServiceRequest is the request struct for api OpenSaeService

func CreateOpenSaeServiceRequest added in v1.61.1003

func CreateOpenSaeServiceRequest() (request *OpenSaeServiceRequest)

CreateOpenSaeServiceRequest creates a request to invoke OpenSaeService API

type OpenSaeServiceResponse added in v1.61.1003

type OpenSaeServiceResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	OrderId   string `json:"OrderId" xml:"OrderId"`
}

OpenSaeServiceResponse is the response struct for api OpenSaeService

func CreateOpenSaeServiceResponse added in v1.61.1003

func CreateOpenSaeServiceResponse() (response *OpenSaeServiceResponse)

CreateOpenSaeServiceResponse creates a response to parse from OpenSaeService response

type PackageVersionEntity added in v1.61.591

type PackageVersionEntity struct {
	Id              string `json:"Id" xml:"Id"`
	CreateTime      string `json:"CreateTime" xml:"CreateTime"`
	WarUrl          string `json:"WarUrl" xml:"WarUrl"`
	Type            string `json:"Type" xml:"Type"`
	BuildPackageUrl string `json:"BuildPackageUrl" xml:"BuildPackageUrl"`
}

PackageVersionEntity is a nested struct in sae response

type Pipeline

type Pipeline struct {
	Status        int    `json:"Status" xml:"Status"`
	PipelineName  string `json:"PipelineName" xml:"PipelineName"`
	ParallelCount int    `json:"ParallelCount" xml:"ParallelCount"`
	UpdateTime    int64  `json:"UpdateTime" xml:"UpdateTime"`
	StartTime     int64  `json:"StartTime" xml:"StartTime"`
	PipelineId    string `json:"PipelineId" xml:"PipelineId"`
	BatchType     int    `json:"BatchType" xml:"BatchType"`
}

Pipeline is a nested struct in sae response

type Pipelines

type Pipelines struct {
	Pipeline []Pipeline `json:"Pipeline" xml:"Pipeline"`
}

Pipelines is a nested struct in sae response

type QueryResourceStaticsRequest

type QueryResourceStaticsRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

QueryResourceStaticsRequest is the request struct for api QueryResourceStatics

func CreateQueryResourceStaticsRequest

func CreateQueryResourceStaticsRequest() (request *QueryResourceStaticsRequest)

CreateQueryResourceStaticsRequest creates a request to invoke QueryResourceStatics API

type QueryResourceStaticsResponse

type QueryResourceStaticsResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Data      Data   `json:"Data" xml:"Data"`
}

QueryResourceStaticsResponse is the response struct for api QueryResourceStatics

func CreateQueryResourceStaticsResponse

func CreateQueryResourceStaticsResponse() (response *QueryResourceStaticsResponse)

CreateQueryResourceStaticsResponse creates a response to parse from QueryResourceStatics response

type RealTimeRes

type RealTimeRes struct {
	Cpu    float64 `json:"Cpu" xml:"Cpu"`
	Memory float64 `json:"Memory" xml:"Memory"`
}

RealTimeRes is a nested struct in sae response

type Region

type Region struct {
	RegionId       string `json:"RegionId" xml:"RegionId"`
	RegionEndpoint string `json:"RegionEndpoint" xml:"RegionEndpoint"`
	LocalName      string `json:"LocalName" xml:"LocalName"`
}

Region is a nested struct in sae response

type RegionList

type RegionList struct {
	NamespaceName     string `json:"NamespaceName" xml:"NamespaceName"`
	NamespaceId       string `json:"NamespaceId" xml:"NamespaceId"`
	AgentInstall      string `json:"AgentInstall" xml:"AgentInstall"`
	Current           bool   `json:"Current" xml:"Current"`
	Custom            bool   `json:"Custom" xml:"Custom"`
	RegionId          string `json:"RegionId" xml:"RegionId"`
	HybridCloudEnable bool   `json:"HybridCloudEnable" xml:"HybridCloudEnable"`
	VpcId             string `json:"VpcId" xml:"VpcId"`
	VSwitchId         string `json:"VSwitchId" xml:"VSwitchId"`
	SecurityGroupId   string `json:"SecurityGroupId" xml:"SecurityGroupId"`
}

RegionList is a nested struct in sae response

type Regions

type Regions struct {
	Region []Region `json:"Region" xml:"Region"`
}

Regions is a nested struct in sae response

type RelateApp added in v1.61.591

type RelateApp struct {
	AppId   string `json:"AppId" xml:"AppId"`
	AppName string `json:"AppName" xml:"AppName"`
}

RelateApp is a nested struct in sae response

type RelateAppsInDescribeConfigMap added in v1.61.591

type RelateAppsInDescribeConfigMap struct {
	RelateApp []RelateApp `json:"RelateApp" xml:"RelateApp"`
}

RelateAppsInDescribeConfigMap is a nested struct in sae response

type RelateAppsInListNamespacedConfigMaps added in v1.61.591

type RelateAppsInListNamespacedConfigMaps struct {
	RelateApp []RelateApp `json:"RelateApp" xml:"RelateApp"`
}

RelateAppsInListNamespacedConfigMaps is a nested struct in sae response

type RescaleApplicationRequest

type RescaleApplicationRequest struct {
	*requests.RoaRequest
	MinReadyInstances requests.Integer `position:"Query" name:"MinReadyInstances"`
	Replicas          requests.Integer `position:"Query" name:"Replicas"`
	AppId             string           `position:"Query" name:"AppId"`
}

RescaleApplicationRequest is the request struct for api RescaleApplication

func CreateRescaleApplicationRequest

func CreateRescaleApplicationRequest() (request *RescaleApplicationRequest)

CreateRescaleApplicationRequest creates a request to invoke RescaleApplication API

type RescaleApplicationResponse

type RescaleApplicationResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Data      Data   `json:"Data" xml:"Data"`
}

RescaleApplicationResponse is the response struct for api RescaleApplication

func CreateRescaleApplicationResponse

func CreateRescaleApplicationResponse() (response *RescaleApplicationResponse)

CreateRescaleApplicationResponse creates a response to parse from RescaleApplication response

type RescaleApplicationVerticallyRequest

type RescaleApplicationVerticallyRequest struct {
	*requests.RoaRequest
	Memory string `position:"Query" name:"Memory"`
	AppId  string `position:"Query" name:"AppId"`
	Cpu    string `position:"Query" name:"Cpu"`
}

RescaleApplicationVerticallyRequest is the request struct for api RescaleApplicationVertically

func CreateRescaleApplicationVerticallyRequest

func CreateRescaleApplicationVerticallyRequest() (request *RescaleApplicationVerticallyRequest)

CreateRescaleApplicationVerticallyRequest creates a request to invoke RescaleApplicationVertically API

type RescaleApplicationVerticallyResponse

type RescaleApplicationVerticallyResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

RescaleApplicationVerticallyResponse is the response struct for api RescaleApplicationVertically

func CreateRescaleApplicationVerticallyResponse

func CreateRescaleApplicationVerticallyResponse() (response *RescaleApplicationVerticallyResponse)

CreateRescaleApplicationVerticallyResponse creates a response to parse from RescaleApplicationVertically response

type RestartApplicationRequest

type RestartApplicationRequest struct {
	*requests.RoaRequest
	MinReadyInstances requests.Integer `position:"Query" name:"MinReadyInstances"`
	AppId             string           `position:"Query" name:"AppId"`
}

RestartApplicationRequest is the request struct for api RestartApplication

func CreateRestartApplicationRequest

func CreateRestartApplicationRequest() (request *RestartApplicationRequest)

CreateRestartApplicationRequest creates a request to invoke RestartApplication API

type RestartApplicationResponse

type RestartApplicationResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

RestartApplicationResponse is the response struct for api RestartApplication

func CreateRestartApplicationResponse

func CreateRestartApplicationResponse() (response *RestartApplicationResponse)

CreateRestartApplicationResponse creates a response to parse from RestartApplication response

type RestartInstancesRequest added in v1.61.936

type RestartInstancesRequest struct {
	*requests.RoaRequest
	InstanceIds string `position:"Query" name:"InstanceIds"`
	AppId       string `position:"Query" name:"AppId"`
}

RestartInstancesRequest is the request struct for api RestartInstances

func CreateRestartInstancesRequest added in v1.61.936

func CreateRestartInstancesRequest() (request *RestartInstancesRequest)

CreateRestartInstancesRequest creates a request to invoke RestartInstances API

type RestartInstancesResponse added in v1.61.936

type RestartInstancesResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

RestartInstancesResponse is the response struct for api RestartInstances

func CreateRestartInstancesResponse added in v1.61.936

func CreateRestartInstancesResponse() (response *RestartInstancesResponse)

CreateRestartInstancesResponse creates a response to parse from RestartInstances response

type RollbackApplicationRequest added in v1.61.591

type RollbackApplicationRequest struct {
	*requests.RoaRequest
	MinReadyInstances                requests.Integer `position:"Query" name:"MinReadyInstances"`
	VersionId                        string           `position:"Query" name:"VersionId"`
	AppId                            string           `position:"Query" name:"AppId"`
	BatchWaitTime                    requests.Integer `position:"Query" name:"BatchWaitTime"`
	AutoEnableApplicationScalingRule string           `position:"Query" name:"AutoEnableApplicationScalingRule"`
	UpdateStrategy                   string           `position:"Query" name:"UpdateStrategy"`
}

RollbackApplicationRequest is the request struct for api RollbackApplication

func CreateRollbackApplicationRequest added in v1.61.591

func CreateRollbackApplicationRequest() (request *RollbackApplicationRequest)

CreateRollbackApplicationRequest creates a request to invoke RollbackApplication API

type RollbackApplicationResponse added in v1.61.591

type RollbackApplicationResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

RollbackApplicationResponse is the response struct for api RollbackApplication

func CreateRollbackApplicationResponse added in v1.61.591

func CreateRollbackApplicationResponse() (response *RollbackApplicationResponse)

CreateRollbackApplicationResponse creates a response to parse from RollbackApplication response

type Rule added in v1.61.591

type Rule struct {
	AppId         string `json:"AppId" xml:"AppId"`
	ContainerPort int    `json:"ContainerPort" xml:"ContainerPort"`
	Domain        string `json:"Domain" xml:"Domain"`
	Path          string `json:"Path" xml:"Path"`
	AppName       string `json:"AppName" xml:"AppName"`
}

Rule is a nested struct in sae response

type Rules added in v1.61.591

type Rules struct {
	Rule []Rule `json:"Rule" xml:"Rule"`
}

Rules is a nested struct in sae response

type Schedule added in v1.61.1003

type Schedule struct {
	TargetReplicas int    `json:"TargetReplicas" xml:"TargetReplicas"`
	AtTime         string `json:"AtTime" xml:"AtTime"`
}

Schedule is a nested struct in sae response

type SchedulesInCreateApplicationScalingRule added in v1.61.1003

type SchedulesInCreateApplicationScalingRule struct {
	Schedule []Schedule `json:"Schedule" xml:"Schedule"`
}

SchedulesInCreateApplicationScalingRule is a nested struct in sae response

type SchedulesInDescribeApplicationScalingRules added in v1.61.1003

type SchedulesInDescribeApplicationScalingRules struct {
	Schedule []Schedule `json:"Schedule" xml:"Schedule"`
}

SchedulesInDescribeApplicationScalingRules is a nested struct in sae response

type SchedulesInUpdateApplicationScalingRule added in v1.61.1003

type SchedulesInUpdateApplicationScalingRule struct {
	Schedule []Schedule `json:"Schedule" xml:"Schedule"`
}

SchedulesInUpdateApplicationScalingRule is a nested struct in sae response

type Stage added in v1.61.1003

type Stage struct {
	Status       int    `json:"Status" xml:"Status"`
	StageName    string `json:"StageName" xml:"StageName"`
	ExecutorType int    `json:"ExecutorType" xml:"ExecutorType"`
	StageId      string `json:"StageId" xml:"StageId"`
	TaskList     []Task `json:"TaskList" xml:"TaskList"`
}

Stage is a nested struct in sae response

type StageList added in v1.61.1003

type StageList struct {
	Stage []Stage `json:"Stage" xml:"Stage"`
}

StageList is a nested struct in sae response

type StartApplicationRequest

type StartApplicationRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

StartApplicationRequest is the request struct for api StartApplication

func CreateStartApplicationRequest

func CreateStartApplicationRequest() (request *StartApplicationRequest)

CreateStartApplicationRequest creates a request to invoke StartApplication API

type StartApplicationResponse

type StartApplicationResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

StartApplicationResponse is the response struct for api StartApplication

func CreateStartApplicationResponse

func CreateStartApplicationResponse() (response *StartApplicationResponse)

CreateStartApplicationResponse creates a response to parse from StartApplication response

type StopApplicationRequest

type StopApplicationRequest struct {
	*requests.RoaRequest
	AppId string `position:"Query" name:"AppId"`
}

StopApplicationRequest is the request struct for api StopApplication

func CreateStopApplicationRequest

func CreateStopApplicationRequest() (request *StopApplicationRequest)

CreateStopApplicationRequest creates a request to invoke StopApplication API

type StopApplicationResponse

type StopApplicationResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

StopApplicationResponse is the response struct for api StopApplication

func CreateStopApplicationResponse

func CreateStopApplicationResponse() (response *StopApplicationResponse)

CreateStopApplicationResponse creates a response to parse from StopApplication response

type Summary

type Summary struct {
	Cpu    float64 `json:"Cpu" xml:"Cpu"`
	Memory float64 `json:"Memory" xml:"Memory"`
}

Summary is a nested struct in sae response

type Tag added in v1.61.591

type Tag struct {
	Value string `json:"Value" xml:"Value"`
	Key   string `json:"Key" xml:"Key"`
}

Tag is a nested struct in sae response

type TagResource added in v1.61.591

type TagResource struct {
	TagKey       string `json:"TagKey" xml:"TagKey"`
	TagValue     string `json:"TagValue" xml:"TagValue"`
	ResourceId   string `json:"ResourceId" xml:"ResourceId"`
	ResourceType string `json:"ResourceType" xml:"ResourceType"`
}

TagResource is a nested struct in sae response

type TagResources added in v1.61.591

type TagResources struct {
	TagResource []TagResource `json:"TagResource" xml:"TagResource"`
}

TagResources is a nested struct in sae response

type TagResourcesRequest added in v1.61.591

type TagResourcesRequest struct {
	*requests.RoaRequest
	ResourceType string `position:"Body" name:"ResourceType"`
	Tags         string `position:"Body" name:"Tags"`
	ResourceIds  string `position:"Body" name:"ResourceIds"`
}

TagResourcesRequest is the request struct for api TagResources

func CreateTagResourcesRequest added in v1.61.591

func CreateTagResourcesRequest() (request *TagResourcesRequest)

CreateTagResourcesRequest creates a request to invoke TagResources API

type TagResourcesResponse added in v1.61.591

type TagResourcesResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	Data      bool   `json:"Data" xml:"Data"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
}

TagResourcesResponse is the response struct for api TagResources

func CreateTagResourcesResponse added in v1.61.591

func CreateTagResourcesResponse() (response *TagResourcesResponse)

CreateTagResourcesResponse creates a response to parse from TagResources response

type TagsInDescribeApplicationConfig added in v1.61.591

type TagsInDescribeApplicationConfig struct {
	Tag []Tag `json:"Tag" xml:"Tag"`
}

TagsInDescribeApplicationConfig is a nested struct in sae response

type TagsInListApplications added in v1.61.591

type TagsInListApplications struct {
	TagsItem []TagsItem `json:"Tags" xml:"Tags"`
}

TagsInListApplications is a nested struct in sae response

type TagsItem added in v1.61.591

type TagsItem struct {
	Value string `json:"Value" xml:"Value"`
	Key   string `json:"Key" xml:"Key"`
}

TagsItem is a nested struct in sae response

type Task added in v1.61.1003

type Task struct {
	Status           int    `json:"Status" xml:"Status"`
	ErrorIgnore      int    `json:"ErrorIgnore" xml:"ErrorIgnore"`
	TaskId           string `json:"TaskId" xml:"TaskId"`
	Message          string `json:"Message" xml:"Message"`
	ShowManualIgnore bool   `json:"ShowManualIgnore" xml:"ShowManualIgnore"`
	TaskName         string `json:"TaskName" xml:"TaskName"`
	StageId          string `json:"StageId" xml:"StageId"`
	ErrorCode        string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage     string `json:"ErrorMessage" xml:"ErrorMessage"`
}

Task is a nested struct in sae response

type TaskList added in v1.61.1003

type TaskList struct {
	Task []Task `json:"Task" xml:"Task"`
}

TaskList is a nested struct in sae response

type Timer added in v1.61.1003

type Timer struct {
	EndDate   string     `json:"EndDate" xml:"EndDate"`
	BeginDate string     `json:"BeginDate" xml:"BeginDate"`
	Period    string     `json:"Period" xml:"Period"`
	Schedules []Schedule `json:"Schedules" xml:"Schedules"`
}

Timer is a nested struct in sae response

type UnbindSlbRequest

type UnbindSlbRequest struct {
	*requests.RoaRequest
	Intranet requests.Boolean `position:"Query" name:"Intranet"`
	AppId    string           `position:"Query" name:"AppId"`
	Internet requests.Boolean `position:"Query" name:"Internet"`
}

UnbindSlbRequest is the request struct for api UnbindSlb

func CreateUnbindSlbRequest

func CreateUnbindSlbRequest() (request *UnbindSlbRequest)

CreateUnbindSlbRequest creates a request to invoke UnbindSlb API

type UnbindSlbResponse

type UnbindSlbResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Data      Data   `json:"Data" xml:"Data"`
}

UnbindSlbResponse is the response struct for api UnbindSlb

func CreateUnbindSlbResponse

func CreateUnbindSlbResponse() (response *UnbindSlbResponse)

CreateUnbindSlbResponse creates a response to parse from UnbindSlb response

type UntagResourcesRequest added in v1.61.591

type UntagResourcesRequest struct {
	*requests.RoaRequest
	TagKeys      string           `position:"Query" name:"TagKeys"`
	DeleteAll    requests.Boolean `position:"Query" name:"DeleteAll"`
	ResourceType string           `position:"Query" name:"ResourceType"`
	ResourceIds  string           `position:"Query" name:"ResourceIds"`
}

UntagResourcesRequest is the request struct for api UntagResources

func CreateUntagResourcesRequest added in v1.61.591

func CreateUntagResourcesRequest() (request *UntagResourcesRequest)

CreateUntagResourcesRequest creates a request to invoke UntagResources API

type UntagResourcesResponse added in v1.61.591

type UntagResourcesResponse struct {
	*responses.BaseResponse
	Code      string `json:"Code" xml:"Code"`
	Data      bool   `json:"Data" xml:"Data"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
}

UntagResourcesResponse is the response struct for api UntagResources

func CreateUntagResourcesResponse added in v1.61.591

func CreateUntagResourcesResponse() (response *UntagResourcesResponse)

CreateUntagResourcesResponse creates a response to parse from UntagResources response

type UpdateAppSecurityGroupRequest added in v1.61.591

type UpdateAppSecurityGroupRequest struct {
	*requests.RoaRequest
	AppId           string `position:"Query" name:"AppId"`
	SecurityGroupId string `position:"Query" name:"SecurityGroupId"`
}

UpdateAppSecurityGroupRequest is the request struct for api UpdateAppSecurityGroup

func CreateUpdateAppSecurityGroupRequest added in v1.61.591

func CreateUpdateAppSecurityGroupRequest() (request *UpdateAppSecurityGroupRequest)

CreateUpdateAppSecurityGroupRequest creates a request to invoke UpdateAppSecurityGroup API

type UpdateAppSecurityGroupResponse added in v1.61.591

type UpdateAppSecurityGroupResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
}

UpdateAppSecurityGroupResponse is the response struct for api UpdateAppSecurityGroup

func CreateUpdateAppSecurityGroupResponse added in v1.61.591

func CreateUpdateAppSecurityGroupResponse() (response *UpdateAppSecurityGroupResponse)

CreateUpdateAppSecurityGroupResponse creates a response to parse from UpdateAppSecurityGroup response

type UpdateApplicationScalingRuleRequest added in v1.61.1003

type UpdateApplicationScalingRuleRequest struct {
	*requests.RoaRequest
	ScalingRuleName   string `position:"Query" name:"ScalingRuleName"`
	MinReadyInstances string `position:"Query" name:"MinReadyInstances"`
	ScalingRuleTimer  string `position:"Query" name:"ScalingRuleTimer"`
	ScalingRuleMetric string `position:"Query" name:"ScalingRuleMetric"`
	AppId             string `position:"Query" name:"AppId"`
}

UpdateApplicationScalingRuleRequest is the request struct for api UpdateApplicationScalingRule

func CreateUpdateApplicationScalingRuleRequest added in v1.61.1003

func CreateUpdateApplicationScalingRuleRequest() (request *UpdateApplicationScalingRuleRequest)

CreateUpdateApplicationScalingRuleRequest creates a request to invoke UpdateApplicationScalingRule API

type UpdateApplicationScalingRuleResponse added in v1.61.1003

type UpdateApplicationScalingRuleResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

UpdateApplicationScalingRuleResponse is the response struct for api UpdateApplicationScalingRule

func CreateUpdateApplicationScalingRuleResponse added in v1.61.1003

func CreateUpdateApplicationScalingRuleResponse() (response *UpdateApplicationScalingRuleResponse)

CreateUpdateApplicationScalingRuleResponse creates a response to parse from UpdateApplicationScalingRule response

type UpdateConfigMapRequest added in v1.61.591

type UpdateConfigMapRequest struct {
	*requests.RoaRequest
	Data        string           `position:"Body" name:"Data"`
	Description string           `position:"Body" name:"Description"`
	ConfigMapId requests.Integer `position:"Query" name:"ConfigMapId"`
}

UpdateConfigMapRequest is the request struct for api UpdateConfigMap

func CreateUpdateConfigMapRequest added in v1.61.591

func CreateUpdateConfigMapRequest() (request *UpdateConfigMapRequest)

CreateUpdateConfigMapRequest creates a request to invoke UpdateConfigMap API

type UpdateConfigMapResponse added in v1.61.591

type UpdateConfigMapResponse struct {
	*responses.BaseResponse
	RequestId string                `json:"RequestId" xml:"RequestId"`
	Code      string                `json:"Code" xml:"Code"`
	Message   string                `json:"Message" xml:"Message"`
	ErrorCode string                `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string                `json:"TraceId" xml:"TraceId"`
	Success   bool                  `json:"Success" xml:"Success"`
	Data      DataInUpdateConfigMap `json:"Data" xml:"Data"`
}

UpdateConfigMapResponse is the response struct for api UpdateConfigMap

func CreateUpdateConfigMapResponse added in v1.61.591

func CreateUpdateConfigMapResponse() (response *UpdateConfigMapResponse)

CreateUpdateConfigMapResponse creates a response to parse from UpdateConfigMap response

type UpdateIngressRequest added in v1.61.591

type UpdateIngressRequest struct {
	*requests.RoaRequest
	IngressId    requests.Integer `position:"Query" name:"IngressId"`
	ListenerPort string           `position:"Query" name:"ListenerPort"`
	Description  string           `position:"Query" name:"Description"`
	Rules        string           `position:"Body" name:"Rules"`
	CertId       string           `position:"Query" name:"CertId"`
	DefaultRule  string           `position:"Query" name:"DefaultRule"`
}

UpdateIngressRequest is the request struct for api UpdateIngress

func CreateUpdateIngressRequest added in v1.61.591

func CreateUpdateIngressRequest() (request *UpdateIngressRequest)

CreateUpdateIngressRequest creates a request to invoke UpdateIngress API

type UpdateIngressResponse added in v1.61.591

type UpdateIngressResponse struct {
	*responses.BaseResponse
	Message   string `json:"Message" xml:"Message"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Code      string `json:"Code" xml:"Code"`
	Success   bool   `json:"Success" xml:"Success"`
	Data      Data   `json:"Data" xml:"Data"`
}

UpdateIngressResponse is the response struct for api UpdateIngress

func CreateUpdateIngressResponse added in v1.61.591

func CreateUpdateIngressResponse() (response *UpdateIngressResponse)

CreateUpdateIngressResponse creates a response to parse from UpdateIngress response

type UpdateNamespaceRequest

type UpdateNamespaceRequest struct {
	*requests.RoaRequest
	NamespaceName        string `position:"Query" name:"NamespaceName"`
	NamespaceDescription string `position:"Query" name:"NamespaceDescription"`
	NamespaceId          string `position:"Query" name:"NamespaceId"`
}

UpdateNamespaceRequest is the request struct for api UpdateNamespace

func CreateUpdateNamespaceRequest

func CreateUpdateNamespaceRequest() (request *UpdateNamespaceRequest)

CreateUpdateNamespaceRequest creates a request to invoke UpdateNamespace API

type UpdateNamespaceResponse

type UpdateNamespaceResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	Message   string `json:"Message" xml:"Message"`
	Success   bool   `json:"Success" xml:"Success"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Data      Data   `json:"Data" xml:"Data"`
}

UpdateNamespaceResponse is the response struct for api UpdateNamespace

func CreateUpdateNamespaceResponse

func CreateUpdateNamespaceResponse() (response *UpdateNamespaceResponse)

CreateUpdateNamespaceResponse creates a response to parse from UpdateNamespace response

type UpdateNamespaceVpcRequest added in v1.61.591

type UpdateNamespaceVpcRequest struct {
	*requests.RoaRequest
	NamespaceId string `position:"Query" name:"NamespaceId"`
	VpcId       string `position:"Query" name:"VpcId"`
}

UpdateNamespaceVpcRequest is the request struct for api UpdateNamespaceVpc

func CreateUpdateNamespaceVpcRequest added in v1.61.591

func CreateUpdateNamespaceVpcRequest() (request *UpdateNamespaceVpcRequest)

CreateUpdateNamespaceVpcRequest creates a request to invoke UpdateNamespaceVpc API

type UpdateNamespaceVpcResponse added in v1.61.591

type UpdateNamespaceVpcResponse struct {
	*responses.BaseResponse
	RequestId string `json:"RequestId" xml:"RequestId"`
	Code      string `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrorCode string `json:"ErrorCode" xml:"ErrorCode"`
	TraceId   string `json:"TraceId" xml:"TraceId"`
	Success   bool   `json:"Success" xml:"Success"`
}

UpdateNamespaceVpcResponse is the response struct for api UpdateNamespaceVpc

func CreateUpdateNamespaceVpcResponse added in v1.61.591

func CreateUpdateNamespaceVpcResponse() (response *UpdateNamespaceVpcResponse)

CreateUpdateNamespaceVpcResponse creates a response to parse from UpdateNamespaceVpc response

Source Files

Jump to

Keyboard shortcuts

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