airec

package
v1.62.18 Latest Latest
Warning

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

Go to latest
Published: Nov 17, 2022 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 added in v1.61.251

func GetEndpointMap() map[string]string

GetEndpointMap Get Endpoint Data Map

func GetEndpointType added in v1.61.251

func GetEndpointType() string

GetEndpointType Get Endpoint Type Value

func SetClientProperty added in v1.61.251

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

SetClientProperty Set Property by Reflect

func SetEndpointDataToClient added in v1.61.251

func SetEndpointDataToClient(client *Client)

SetEndpointDataToClient Set EndpointMap and ENdpointType

Types

type Algorithm added in v1.61.831

type Algorithm struct {
	Type            string       `json:"type" xml:"type"`
	Key             string       `json:"key" xml:"key"`
	HasConfig       bool         `json:"hasConfig" xml:"hasConfig"`
	DefaultValue    string       `json:"defaultValue" xml:"defaultValue"`
	ExperimentValue string       `json:"experimentValue" xml:"experimentValue"`
	Name            string       `json:"name" xml:"name"`
	Category        string       `json:"category" xml:"category"`
	Config          []ConfigItem `json:"config" xml:"config"`
}

Algorithm is a nested struct in airec response

type AlgorithmsInCloneExperiment added in v1.61.831

type AlgorithmsInCloneExperiment struct {
	Algorithm []Algorithm `json:"algorithm" xml:"algorithm"`
}

AlgorithmsInCloneExperiment is a nested struct in airec response

type AlgorithmsInDescribeBaseExperiment added in v1.61.831

type AlgorithmsInDescribeBaseExperiment struct {
	Algorithm []Algorithm `json:"algorithm" xml:"algorithm"`
}

AlgorithmsInDescribeBaseExperiment is a nested struct in airec response

type AlgorithmsInDescribeExperiment added in v1.61.831

type AlgorithmsInDescribeExperiment struct {
	Algorithm []Algorithm `json:"algorithm" xml:"algorithm"`
}

AlgorithmsInDescribeExperiment is a nested struct in airec response

type AlgorithmsInUpdateExperimentBasicInfo added in v1.61.831

type AlgorithmsInUpdateExperimentBasicInfo struct {
	Algorithm []Algorithm `json:"algorithm" xml:"algorithm"`
}

AlgorithmsInUpdateExperimentBasicInfo is a nested struct in airec response

type AlgorithmsInUpdateExperimentConfig added in v1.61.831

type AlgorithmsInUpdateExperimentConfig struct {
	Algorithm []Algorithm `json:"algorithm" xml:"algorithm"`
}

AlgorithmsInUpdateExperimentConfig is a nested struct in airec response

type AlgorithmsInUpdateExperimentStatus added in v1.61.831

type AlgorithmsInUpdateExperimentStatus struct {
	Algorithm []Algorithm `json:"algorithm" xml:"algorithm"`
}

AlgorithmsInUpdateExperimentStatus is a nested struct in airec response

type AttachDatasetRequest

type AttachDatasetRequest struct {
	*requests.RoaRequest
	VersionId  string `position:"Path" name:"versionId"`
	InstanceId string `position:"Path" name:"instanceId"`
}

AttachDatasetRequest is the request struct for api AttachDataset

func CreateAttachDatasetRequest

func CreateAttachDatasetRequest() (request *AttachDatasetRequest)

CreateAttachDatasetRequest creates a request to invoke AttachDataset API

type AttachDatasetResponse

type AttachDatasetResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

AttachDatasetResponse is the response struct for api AttachDataset

func CreateAttachDatasetResponse

func CreateAttachDatasetResponse() (response *AttachDatasetResponse)

CreateAttachDatasetResponse creates a response to parse from AttachDataset response

type AttachIndexVersionRequest added in v1.61.831

type AttachIndexVersionRequest struct {
	*requests.RoaRequest
	VersionId   string `position:"Path" name:"versionId"`
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

AttachIndexVersionRequest is the request struct for api AttachIndexVersion

func CreateAttachIndexVersionRequest added in v1.61.831

func CreateAttachIndexVersionRequest() (request *AttachIndexVersionRequest)

CreateAttachIndexVersionRequest creates a request to invoke AttachIndexVersion API

type AttachIndexVersionResponse added in v1.61.831

type AttachIndexVersionResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

AttachIndexVersionResponse is the response struct for api AttachIndexVersion

func CreateAttachIndexVersionResponse added in v1.61.831

func CreateAttachIndexVersionResponse() (response *AttachIndexVersionResponse)

CreateAttachIndexVersionResponse creates a response to parse from AttachIndexVersion response

type BucketsInCloneExperiment added in v1.61.831

type BucketsInCloneExperiment struct {
	Bucket []string `json:"bucket" xml:"bucket"`
}

BucketsInCloneExperiment is a nested struct in airec response

type BucketsInDescribeBaseExperiment added in v1.61.831

type BucketsInDescribeBaseExperiment struct {
	Bucket []string `json:"bucket" xml:"bucket"`
}

BucketsInDescribeBaseExperiment is a nested struct in airec response

type BucketsInDescribeExperiment added in v1.61.831

type BucketsInDescribeExperiment struct {
	Bucket []string `json:"bucket" xml:"bucket"`
}

BucketsInDescribeExperiment is a nested struct in airec response

type BucketsInListExperiments added in v1.61.831

type BucketsInListExperiments struct {
	Bucket []string `json:"bucket" xml:"bucket"`
}

BucketsInListExperiments is a nested struct in airec response

type BucketsInUpdateExperimentBasicInfo added in v1.61.831

type BucketsInUpdateExperimentBasicInfo struct {
	Bucket []string `json:"bucket" xml:"bucket"`
}

BucketsInUpdateExperimentBasicInfo is a nested struct in airec response

type BucketsInUpdateExperimentConfig added in v1.61.831

type BucketsInUpdateExperimentConfig struct {
	Bucket []string `json:"bucket" xml:"bucket"`
}

BucketsInUpdateExperimentConfig is a nested struct in airec response

type BucketsInUpdateExperimentStatus added in v1.61.831

type BucketsInUpdateExperimentStatus struct {
	Bucket []string `json:"bucket" xml:"bucket"`
}

BucketsInUpdateExperimentStatus is a nested struct in airec response

type Categories added in v1.61.1014

type Categories struct {
	Categories []int64 `json:"categories" xml:"categories"`
}

Categories is a nested struct in airec response

type CheckRankingModelReachableRequest added in v1.61.831

type CheckRankingModelReachableRequest struct {
	*requests.RoaRequest
	InstanceId     string `position:"Path" name:"instanceId"`
	RankingModelId string `position:"Path" name:"rankingModelId"`
}

CheckRankingModelReachableRequest is the request struct for api CheckRankingModelReachable

func CreateCheckRankingModelReachableRequest added in v1.61.831

func CreateCheckRankingModelReachableRequest() (request *CheckRankingModelReachableRequest)

CreateCheckRankingModelReachableRequest creates a request to invoke CheckRankingModelReachable API

type CheckRankingModelReachableResponse added in v1.61.831

type CheckRankingModelReachableResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

CheckRankingModelReachableResponse is the response struct for api CheckRankingModelReachable

func CreateCheckRankingModelReachableResponse added in v1.61.831

func CreateCheckRankingModelReachableResponse() (response *CheckRankingModelReachableResponse)

CreateCheckRankingModelReachableResponse creates a response to parse from CheckRankingModelReachable 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) AttachDataset

func (client *Client) AttachDataset(request *AttachDatasetRequest) (response *AttachDatasetResponse, err error)

AttachDataset invokes the airec.AttachDataset API synchronously

func (*Client) AttachDatasetWithCallback

func (client *Client) AttachDatasetWithCallback(request *AttachDatasetRequest, callback func(response *AttachDatasetResponse, err error)) <-chan int

AttachDatasetWithCallback invokes the airec.AttachDataset API asynchronously

func (*Client) AttachDatasetWithChan

func (client *Client) AttachDatasetWithChan(request *AttachDatasetRequest) (<-chan *AttachDatasetResponse, <-chan error)

AttachDatasetWithChan invokes the airec.AttachDataset API asynchronously

func (*Client) AttachIndexVersion added in v1.61.831

func (client *Client) AttachIndexVersion(request *AttachIndexVersionRequest) (response *AttachIndexVersionResponse, err error)

AttachIndexVersion invokes the airec.AttachIndexVersion API synchronously

func (*Client) AttachIndexVersionWithCallback added in v1.61.831

func (client *Client) AttachIndexVersionWithCallback(request *AttachIndexVersionRequest, callback func(response *AttachIndexVersionResponse, err error)) <-chan int

AttachIndexVersionWithCallback invokes the airec.AttachIndexVersion API asynchronously

func (*Client) AttachIndexVersionWithChan added in v1.61.831

func (client *Client) AttachIndexVersionWithChan(request *AttachIndexVersionRequest) (<-chan *AttachIndexVersionResponse, <-chan error)

AttachIndexVersionWithChan invokes the airec.AttachIndexVersion API asynchronously

func (*Client) CheckRankingModelReachable added in v1.61.831

func (client *Client) CheckRankingModelReachable(request *CheckRankingModelReachableRequest) (response *CheckRankingModelReachableResponse, err error)

CheckRankingModelReachable invokes the airec.CheckRankingModelReachable API synchronously

func (*Client) CheckRankingModelReachableWithCallback added in v1.61.831

func (client *Client) CheckRankingModelReachableWithCallback(request *CheckRankingModelReachableRequest, callback func(response *CheckRankingModelReachableResponse, err error)) <-chan int

CheckRankingModelReachableWithCallback invokes the airec.CheckRankingModelReachable API asynchronously

func (*Client) CheckRankingModelReachableWithChan added in v1.61.831

func (client *Client) CheckRankingModelReachableWithChan(request *CheckRankingModelReachableRequest) (<-chan *CheckRankingModelReachableResponse, <-chan error)

CheckRankingModelReachableWithChan invokes the airec.CheckRankingModelReachable API asynchronously

func (*Client) CloneExperiment added in v1.61.831

func (client *Client) CloneExperiment(request *CloneExperimentRequest) (response *CloneExperimentResponse, err error)

CloneExperiment invokes the airec.CloneExperiment API synchronously

func (*Client) CloneExperimentWithCallback added in v1.61.831

func (client *Client) CloneExperimentWithCallback(request *CloneExperimentRequest, callback func(response *CloneExperimentResponse, err error)) <-chan int

CloneExperimentWithCallback invokes the airec.CloneExperiment API asynchronously

func (*Client) CloneExperimentWithChan added in v1.61.831

func (client *Client) CloneExperimentWithChan(request *CloneExperimentRequest) (<-chan *CloneExperimentResponse, <-chan error)

CloneExperimentWithChan invokes the airec.CloneExperiment API asynchronously

func (*Client) CreateFilteringAlgorithm added in v1.61.831

func (client *Client) CreateFilteringAlgorithm(request *CreateFilteringAlgorithmRequest) (response *CreateFilteringAlgorithmResponse, err error)

CreateFilteringAlgorithm invokes the airec.CreateFilteringAlgorithm API synchronously

func (*Client) CreateFilteringAlgorithmWithCallback added in v1.61.831

func (client *Client) CreateFilteringAlgorithmWithCallback(request *CreateFilteringAlgorithmRequest, callback func(response *CreateFilteringAlgorithmResponse, err error)) <-chan int

CreateFilteringAlgorithmWithCallback invokes the airec.CreateFilteringAlgorithm API asynchronously

func (*Client) CreateFilteringAlgorithmWithChan added in v1.61.831

func (client *Client) CreateFilteringAlgorithmWithChan(request *CreateFilteringAlgorithmRequest) (<-chan *CreateFilteringAlgorithmResponse, <-chan error)

CreateFilteringAlgorithmWithChan invokes the airec.CreateFilteringAlgorithm API asynchronously

func (*Client) CreateInstance

func (client *Client) CreateInstance(request *CreateInstanceRequest) (response *CreateInstanceResponse, err error)

CreateInstance invokes the airec.CreateInstance API synchronously

func (*Client) CreateInstanceWithCallback

func (client *Client) CreateInstanceWithCallback(request *CreateInstanceRequest, callback func(response *CreateInstanceResponse, err error)) <-chan int

CreateInstanceWithCallback invokes the airec.CreateInstance API asynchronously

func (*Client) CreateInstanceWithChan

func (client *Client) CreateInstanceWithChan(request *CreateInstanceRequest) (<-chan *CreateInstanceResponse, <-chan error)

CreateInstanceWithChan invokes the airec.CreateInstance API asynchronously

func (*Client) CreateRankingModel added in v1.61.831

func (client *Client) CreateRankingModel(request *CreateRankingModelRequest) (response *CreateRankingModelResponse, err error)

CreateRankingModel invokes the airec.CreateRankingModel API synchronously

func (*Client) CreateRankingModelWithCallback added in v1.61.831

func (client *Client) CreateRankingModelWithCallback(request *CreateRankingModelRequest, callback func(response *CreateRankingModelResponse, err error)) <-chan int

CreateRankingModelWithCallback invokes the airec.CreateRankingModel API asynchronously

func (*Client) CreateRankingModelWithChan added in v1.61.831

func (client *Client) CreateRankingModelWithChan(request *CreateRankingModelRequest) (<-chan *CreateRankingModelResponse, <-chan error)

CreateRankingModelWithChan invokes the airec.CreateRankingModel API asynchronously

func (*Client) CreateRule added in v1.61.287

func (client *Client) CreateRule(request *CreateRuleRequest) (response *CreateRuleResponse, err error)

CreateRule invokes the airec.CreateRule API synchronously

func (*Client) CreateRuleWithCallback added in v1.61.287

func (client *Client) CreateRuleWithCallback(request *CreateRuleRequest, callback func(response *CreateRuleResponse, err error)) <-chan int

CreateRuleWithCallback invokes the airec.CreateRule API asynchronously

func (*Client) CreateRuleWithChan added in v1.61.287

func (client *Client) CreateRuleWithChan(request *CreateRuleRequest) (<-chan *CreateRuleResponse, <-chan error)

CreateRuleWithChan invokes the airec.CreateRule API asynchronously

func (*Client) CreateScene added in v1.61.287

func (client *Client) CreateScene(request *CreateSceneRequest) (response *CreateSceneResponse, err error)

CreateScene invokes the airec.CreateScene API synchronously

func (*Client) CreateSceneWithCallback added in v1.61.287

func (client *Client) CreateSceneWithCallback(request *CreateSceneRequest, callback func(response *CreateSceneResponse, err error)) <-chan int

CreateSceneWithCallback invokes the airec.CreateScene API asynchronously

func (*Client) CreateSceneWithChan added in v1.61.287

func (client *Client) CreateSceneWithChan(request *CreateSceneRequest) (<-chan *CreateSceneResponse, <-chan error)

CreateSceneWithChan invokes the airec.CreateScene API asynchronously

func (*Client) DecribeRankingModel added in v1.61.831

func (client *Client) DecribeRankingModel(request *DecribeRankingModelRequest) (response *DecribeRankingModelResponse, err error)

DecribeRankingModel invokes the airec.DecribeRankingModel API synchronously

func (*Client) DecribeRankingModelWithCallback added in v1.61.831

func (client *Client) DecribeRankingModelWithCallback(request *DecribeRankingModelRequest, callback func(response *DecribeRankingModelResponse, err error)) <-chan int

DecribeRankingModelWithCallback invokes the airec.DecribeRankingModel API asynchronously

func (*Client) DecribeRankingModelWithChan added in v1.61.831

func (client *Client) DecribeRankingModelWithChan(request *DecribeRankingModelRequest) (<-chan *DecribeRankingModelResponse, <-chan error)

DecribeRankingModelWithChan invokes the airec.DecribeRankingModel API asynchronously

func (*Client) DeleteDataSet

func (client *Client) DeleteDataSet(request *DeleteDataSetRequest) (response *DeleteDataSetResponse, err error)

DeleteDataSet invokes the airec.DeleteDataSet API synchronously

func (*Client) DeleteDataSetWithCallback

func (client *Client) DeleteDataSetWithCallback(request *DeleteDataSetRequest, callback func(response *DeleteDataSetResponse, err error)) <-chan int

DeleteDataSetWithCallback invokes the airec.DeleteDataSet API asynchronously

func (*Client) DeleteDataSetWithChan

func (client *Client) DeleteDataSetWithChan(request *DeleteDataSetRequest) (<-chan *DeleteDataSetResponse, <-chan error)

DeleteDataSetWithChan invokes the airec.DeleteDataSet API asynchronously

func (*Client) DeleteExperiment added in v1.61.831

func (client *Client) DeleteExperiment(request *DeleteExperimentRequest) (response *DeleteExperimentResponse, err error)

DeleteExperiment invokes the airec.DeleteExperiment API synchronously

func (*Client) DeleteExperimentWithCallback added in v1.61.831

func (client *Client) DeleteExperimentWithCallback(request *DeleteExperimentRequest, callback func(response *DeleteExperimentResponse, err error)) <-chan int

DeleteExperimentWithCallback invokes the airec.DeleteExperiment API asynchronously

func (*Client) DeleteExperimentWithChan added in v1.61.831

func (client *Client) DeleteExperimentWithChan(request *DeleteExperimentRequest) (<-chan *DeleteExperimentResponse, <-chan error)

DeleteExperimentWithChan invokes the airec.DeleteExperiment API asynchronously

func (*Client) DeleteFilteringAlgorithm added in v1.61.831

func (client *Client) DeleteFilteringAlgorithm(request *DeleteFilteringAlgorithmRequest) (response *DeleteFilteringAlgorithmResponse, err error)

DeleteFilteringAlgorithm invokes the airec.DeleteFilteringAlgorithm API synchronously

func (*Client) DeleteFilteringAlgorithmWithCallback added in v1.61.831

func (client *Client) DeleteFilteringAlgorithmWithCallback(request *DeleteFilteringAlgorithmRequest, callback func(response *DeleteFilteringAlgorithmResponse, err error)) <-chan int

DeleteFilteringAlgorithmWithCallback invokes the airec.DeleteFilteringAlgorithm API asynchronously

func (*Client) DeleteFilteringAlgorithmWithChan added in v1.61.831

func (client *Client) DeleteFilteringAlgorithmWithChan(request *DeleteFilteringAlgorithmRequest) (<-chan *DeleteFilteringAlgorithmResponse, <-chan error)

DeleteFilteringAlgorithmWithChan invokes the airec.DeleteFilteringAlgorithm API asynchronously

func (*Client) DeleteRankingModel added in v1.61.831

func (client *Client) DeleteRankingModel(request *DeleteRankingModelRequest) (response *DeleteRankingModelResponse, err error)

DeleteRankingModel invokes the airec.DeleteRankingModel API synchronously

func (*Client) DeleteRankingModelWithCallback added in v1.61.831

func (client *Client) DeleteRankingModelWithCallback(request *DeleteRankingModelRequest, callback func(response *DeleteRankingModelResponse, err error)) <-chan int

DeleteRankingModelWithCallback invokes the airec.DeleteRankingModel API asynchronously

func (*Client) DeleteRankingModelWithChan added in v1.61.831

func (client *Client) DeleteRankingModelWithChan(request *DeleteRankingModelRequest) (<-chan *DeleteRankingModelResponse, <-chan error)

DeleteRankingModelWithChan invokes the airec.DeleteRankingModel API asynchronously

func (*Client) DeleteScene added in v1.61.287

func (client *Client) DeleteScene(request *DeleteSceneRequest) (response *DeleteSceneResponse, err error)

DeleteScene invokes the airec.DeleteScene API synchronously

func (*Client) DeleteSceneWithCallback added in v1.61.287

func (client *Client) DeleteSceneWithCallback(request *DeleteSceneRequest, callback func(response *DeleteSceneResponse, err error)) <-chan int

DeleteSceneWithCallback invokes the airec.DeleteScene API asynchronously

func (*Client) DeleteSceneWithChan added in v1.61.287

func (client *Client) DeleteSceneWithChan(request *DeleteSceneRequest) (<-chan *DeleteSceneResponse, <-chan error)

DeleteSceneWithChan invokes the airec.DeleteScene API asynchronously

func (*Client) DescribeBaseExperiment added in v1.61.831

func (client *Client) DescribeBaseExperiment(request *DescribeBaseExperimentRequest) (response *DescribeBaseExperimentResponse, err error)

DescribeBaseExperiment invokes the airec.DescribeBaseExperiment API synchronously

func (*Client) DescribeBaseExperimentWithCallback added in v1.61.831

func (client *Client) DescribeBaseExperimentWithCallback(request *DescribeBaseExperimentRequest, callback func(response *DescribeBaseExperimentResponse, err error)) <-chan int

DescribeBaseExperimentWithCallback invokes the airec.DescribeBaseExperiment API asynchronously

func (*Client) DescribeBaseExperimentWithChan added in v1.61.831

func (client *Client) DescribeBaseExperimentWithChan(request *DescribeBaseExperimentRequest) (<-chan *DescribeBaseExperimentResponse, <-chan error)

DescribeBaseExperimentWithChan invokes the airec.DescribeBaseExperiment API asynchronously

func (*Client) DescribeDataSetMessage

func (client *Client) DescribeDataSetMessage(request *DescribeDataSetMessageRequest) (response *DescribeDataSetMessageResponse, err error)

DescribeDataSetMessage invokes the airec.DescribeDataSetMessage API synchronously

func (*Client) DescribeDataSetMessageWithCallback

func (client *Client) DescribeDataSetMessageWithCallback(request *DescribeDataSetMessageRequest, callback func(response *DescribeDataSetMessageResponse, err error)) <-chan int

DescribeDataSetMessageWithCallback invokes the airec.DescribeDataSetMessage API asynchronously

func (*Client) DescribeDataSetMessageWithChan

func (client *Client) DescribeDataSetMessageWithChan(request *DescribeDataSetMessageRequest) (<-chan *DescribeDataSetMessageResponse, <-chan error)

DescribeDataSetMessageWithChan invokes the airec.DescribeDataSetMessage API asynchronously

func (*Client) DescribeDefaultAlgorithms added in v1.61.831

func (client *Client) DescribeDefaultAlgorithms(request *DescribeDefaultAlgorithmsRequest) (response *DescribeDefaultAlgorithmsResponse, err error)

DescribeDefaultAlgorithms invokes the airec.DescribeDefaultAlgorithms API synchronously

func (*Client) DescribeDefaultAlgorithmsWithCallback added in v1.61.831

func (client *Client) DescribeDefaultAlgorithmsWithCallback(request *DescribeDefaultAlgorithmsRequest, callback func(response *DescribeDefaultAlgorithmsResponse, err error)) <-chan int

DescribeDefaultAlgorithmsWithCallback invokes the airec.DescribeDefaultAlgorithms API asynchronously

func (*Client) DescribeDefaultAlgorithmsWithChan added in v1.61.831

func (client *Client) DescribeDefaultAlgorithmsWithChan(request *DescribeDefaultAlgorithmsRequest) (<-chan *DescribeDefaultAlgorithmsResponse, <-chan error)

DescribeDefaultAlgorithmsWithChan invokes the airec.DescribeDefaultAlgorithms API asynchronously

func (*Client) DescribeExperiment added in v1.61.831

func (client *Client) DescribeExperiment(request *DescribeExperimentRequest) (response *DescribeExperimentResponse, err error)

DescribeExperiment invokes the airec.DescribeExperiment API synchronously

func (*Client) DescribeExperimentEnv added in v1.61.831

func (client *Client) DescribeExperimentEnv(request *DescribeExperimentEnvRequest) (response *DescribeExperimentEnvResponse, err error)

DescribeExperimentEnv invokes the airec.DescribeExperimentEnv API synchronously

func (*Client) DescribeExperimentEnvProgress added in v1.61.831

func (client *Client) DescribeExperimentEnvProgress(request *DescribeExperimentEnvProgressRequest) (response *DescribeExperimentEnvProgressResponse, err error)

DescribeExperimentEnvProgress invokes the airec.DescribeExperimentEnvProgress API synchronously

func (*Client) DescribeExperimentEnvProgressWithCallback added in v1.61.831

func (client *Client) DescribeExperimentEnvProgressWithCallback(request *DescribeExperimentEnvProgressRequest, callback func(response *DescribeExperimentEnvProgressResponse, err error)) <-chan int

DescribeExperimentEnvProgressWithCallback invokes the airec.DescribeExperimentEnvProgress API asynchronously

func (*Client) DescribeExperimentEnvProgressWithChan added in v1.61.831

func (client *Client) DescribeExperimentEnvProgressWithChan(request *DescribeExperimentEnvProgressRequest) (<-chan *DescribeExperimentEnvProgressResponse, <-chan error)

DescribeExperimentEnvProgressWithChan invokes the airec.DescribeExperimentEnvProgress API asynchronously

func (*Client) DescribeExperimentEnvWithCallback added in v1.61.831

func (client *Client) DescribeExperimentEnvWithCallback(request *DescribeExperimentEnvRequest, callback func(response *DescribeExperimentEnvResponse, err error)) <-chan int

DescribeExperimentEnvWithCallback invokes the airec.DescribeExperimentEnv API asynchronously

func (*Client) DescribeExperimentEnvWithChan added in v1.61.831

func (client *Client) DescribeExperimentEnvWithChan(request *DescribeExperimentEnvRequest) (<-chan *DescribeExperimentEnvResponse, <-chan error)

DescribeExperimentEnvWithChan invokes the airec.DescribeExperimentEnv API asynchronously

func (*Client) DescribeExperimentWithCallback added in v1.61.831

func (client *Client) DescribeExperimentWithCallback(request *DescribeExperimentRequest, callback func(response *DescribeExperimentResponse, err error)) <-chan int

DescribeExperimentWithCallback invokes the airec.DescribeExperiment API asynchronously

func (*Client) DescribeExperimentWithChan added in v1.61.831

func (client *Client) DescribeExperimentWithChan(request *DescribeExperimentRequest) (<-chan *DescribeExperimentResponse, <-chan error)

DescribeExperimentWithChan invokes the airec.DescribeExperiment API asynchronously

func (*Client) DescribeFilteringAlgorithm added in v1.61.831

func (client *Client) DescribeFilteringAlgorithm(request *DescribeFilteringAlgorithmRequest) (response *DescribeFilteringAlgorithmResponse, err error)

DescribeFilteringAlgorithm invokes the airec.DescribeFilteringAlgorithm API synchronously

func (*Client) DescribeFilteringAlgorithmWithCallback added in v1.61.831

func (client *Client) DescribeFilteringAlgorithmWithCallback(request *DescribeFilteringAlgorithmRequest, callback func(response *DescribeFilteringAlgorithmResponse, err error)) <-chan int

DescribeFilteringAlgorithmWithCallback invokes the airec.DescribeFilteringAlgorithm API asynchronously

func (*Client) DescribeFilteringAlgorithmWithChan added in v1.61.831

func (client *Client) DescribeFilteringAlgorithmWithChan(request *DescribeFilteringAlgorithmRequest) (<-chan *DescribeFilteringAlgorithmResponse, <-chan error)

DescribeFilteringAlgorithmWithChan invokes the airec.DescribeFilteringAlgorithm API asynchronously

func (*Client) DescribeInstance

func (client *Client) DescribeInstance(request *DescribeInstanceRequest) (response *DescribeInstanceResponse, err error)

DescribeInstance invokes the airec.DescribeInstance API synchronously

func (*Client) DescribeInstanceWithCallback

func (client *Client) DescribeInstanceWithCallback(request *DescribeInstanceRequest, callback func(response *DescribeInstanceResponse, err error)) <-chan int

DescribeInstanceWithCallback invokes the airec.DescribeInstance API asynchronously

func (*Client) DescribeInstanceWithChan

func (client *Client) DescribeInstanceWithChan(request *DescribeInstanceRequest) (<-chan *DescribeInstanceResponse, <-chan error)

DescribeInstanceWithChan invokes the airec.DescribeInstance API asynchronously

func (*Client) DescribeLatestTask added in v1.61.831

func (client *Client) DescribeLatestTask(request *DescribeLatestTaskRequest) (response *DescribeLatestTaskResponse, err error)

DescribeLatestTask invokes the airec.DescribeLatestTask API synchronously

func (*Client) DescribeLatestTaskWithCallback added in v1.61.831

func (client *Client) DescribeLatestTaskWithCallback(request *DescribeLatestTaskRequest, callback func(response *DescribeLatestTaskResponse, err error)) <-chan int

DescribeLatestTaskWithCallback invokes the airec.DescribeLatestTask API asynchronously

func (*Client) DescribeLatestTaskWithChan added in v1.61.831

func (client *Client) DescribeLatestTaskWithChan(request *DescribeLatestTaskRequest) (<-chan *DescribeLatestTaskResponse, <-chan error)

DescribeLatestTaskWithChan invokes the airec.DescribeLatestTask API asynchronously

func (*Client) DescribeQuota

func (client *Client) DescribeQuota(request *DescribeQuotaRequest) (response *DescribeQuotaResponse, err error)

DescribeQuota invokes the airec.DescribeQuota API synchronously

func (*Client) DescribeQuotaWithCallback

func (client *Client) DescribeQuotaWithCallback(request *DescribeQuotaRequest, callback func(response *DescribeQuotaResponse, err error)) <-chan int

DescribeQuotaWithCallback invokes the airec.DescribeQuota API asynchronously

func (*Client) DescribeQuotaWithChan

func (client *Client) DescribeQuotaWithChan(request *DescribeQuotaRequest) (<-chan *DescribeQuotaResponse, <-chan error)

DescribeQuotaWithChan invokes the airec.DescribeQuota API asynchronously

func (*Client) DescribeRegions added in v1.61.251

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

DescribeRegions invokes the airec.DescribeRegions API synchronously

func (*Client) DescribeRegionsWithCallback added in v1.61.251

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

DescribeRegionsWithCallback invokes the airec.DescribeRegions API asynchronously

func (*Client) DescribeRegionsWithChan added in v1.61.251

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

DescribeRegionsWithChan invokes the airec.DescribeRegions API asynchronously

func (*Client) DescribeRule added in v1.61.287

func (client *Client) DescribeRule(request *DescribeRuleRequest) (response *DescribeRuleResponse, err error)

DescribeRule invokes the airec.DescribeRule API synchronously

func (*Client) DescribeRuleWithCallback added in v1.61.287

func (client *Client) DescribeRuleWithCallback(request *DescribeRuleRequest, callback func(response *DescribeRuleResponse, err error)) <-chan int

DescribeRuleWithCallback invokes the airec.DescribeRule API asynchronously

func (*Client) DescribeRuleWithChan added in v1.61.287

func (client *Client) DescribeRuleWithChan(request *DescribeRuleRequest) (<-chan *DescribeRuleResponse, <-chan error)

DescribeRuleWithChan invokes the airec.DescribeRule API asynchronously

func (*Client) DescribeScene added in v1.61.287

func (client *Client) DescribeScene(request *DescribeSceneRequest) (response *DescribeSceneResponse, err error)

DescribeScene invokes the airec.DescribeScene API synchronously

func (*Client) DescribeSceneBucket added in v1.61.831

func (client *Client) DescribeSceneBucket(request *DescribeSceneBucketRequest) (response *DescribeSceneBucketResponse, err error)

DescribeSceneBucket invokes the airec.DescribeSceneBucket API synchronously

func (*Client) DescribeSceneBucketWithCallback added in v1.61.831

func (client *Client) DescribeSceneBucketWithCallback(request *DescribeSceneBucketRequest, callback func(response *DescribeSceneBucketResponse, err error)) <-chan int

DescribeSceneBucketWithCallback invokes the airec.DescribeSceneBucket API asynchronously

func (*Client) DescribeSceneBucketWithChan added in v1.61.831

func (client *Client) DescribeSceneBucketWithChan(request *DescribeSceneBucketRequest) (<-chan *DescribeSceneBucketResponse, <-chan error)

DescribeSceneBucketWithChan invokes the airec.DescribeSceneBucket API asynchronously

func (*Client) DescribeSceneThroughput added in v1.61.287

func (client *Client) DescribeSceneThroughput(request *DescribeSceneThroughputRequest) (response *DescribeSceneThroughputResponse, err error)

DescribeSceneThroughput invokes the airec.DescribeSceneThroughput API synchronously

func (*Client) DescribeSceneThroughputWithCallback added in v1.61.287

func (client *Client) DescribeSceneThroughputWithCallback(request *DescribeSceneThroughputRequest, callback func(response *DescribeSceneThroughputResponse, err error)) <-chan int

DescribeSceneThroughputWithCallback invokes the airec.DescribeSceneThroughput API asynchronously

func (*Client) DescribeSceneThroughputWithChan added in v1.61.287

func (client *Client) DescribeSceneThroughputWithChan(request *DescribeSceneThroughputRequest) (<-chan *DescribeSceneThroughputResponse, <-chan error)

DescribeSceneThroughputWithChan invokes the airec.DescribeSceneThroughput API asynchronously

func (*Client) DescribeSceneWithCallback added in v1.61.287

func (client *Client) DescribeSceneWithCallback(request *DescribeSceneRequest, callback func(response *DescribeSceneResponse, err error)) <-chan int

DescribeSceneWithCallback invokes the airec.DescribeScene API asynchronously

func (*Client) DescribeSceneWithChan added in v1.61.287

func (client *Client) DescribeSceneWithChan(request *DescribeSceneRequest) (<-chan *DescribeSceneResponse, <-chan error)

DescribeSceneWithChan invokes the airec.DescribeScene API asynchronously

func (*Client) DescribeSyncReportDetail added in v1.61.251

func (client *Client) DescribeSyncReportDetail(request *DescribeSyncReportDetailRequest) (response *DescribeSyncReportDetailResponse, err error)

DescribeSyncReportDetail invokes the airec.DescribeSyncReportDetail API synchronously

func (*Client) DescribeSyncReportDetailWithCallback added in v1.61.251

func (client *Client) DescribeSyncReportDetailWithCallback(request *DescribeSyncReportDetailRequest, callback func(response *DescribeSyncReportDetailResponse, err error)) <-chan int

DescribeSyncReportDetailWithCallback invokes the airec.DescribeSyncReportDetail API asynchronously

func (*Client) DescribeSyncReportDetailWithChan added in v1.61.251

func (client *Client) DescribeSyncReportDetailWithChan(request *DescribeSyncReportDetailRequest) (<-chan *DescribeSyncReportDetailResponse, <-chan error)

DescribeSyncReportDetailWithChan invokes the airec.DescribeSyncReportDetail API asynchronously

func (*Client) DescribeSyncReportOutliers added in v1.61.251

func (client *Client) DescribeSyncReportOutliers(request *DescribeSyncReportOutliersRequest) (response *DescribeSyncReportOutliersResponse, err error)

DescribeSyncReportOutliers invokes the airec.DescribeSyncReportOutliers API synchronously

func (*Client) DescribeSyncReportOutliersWithCallback added in v1.61.251

func (client *Client) DescribeSyncReportOutliersWithCallback(request *DescribeSyncReportOutliersRequest, callback func(response *DescribeSyncReportOutliersResponse, err error)) <-chan int

DescribeSyncReportOutliersWithCallback invokes the airec.DescribeSyncReportOutliers API asynchronously

func (*Client) DescribeSyncReportOutliersWithChan added in v1.61.251

func (client *Client) DescribeSyncReportOutliersWithChan(request *DescribeSyncReportOutliersRequest) (<-chan *DescribeSyncReportOutliersResponse, <-chan error)

DescribeSyncReportOutliersWithChan invokes the airec.DescribeSyncReportOutliers API asynchronously

func (*Client) DescribeUserMetrics added in v1.61.251

func (client *Client) DescribeUserMetrics(request *DescribeUserMetricsRequest) (response *DescribeUserMetricsResponse, err error)

DescribeUserMetrics invokes the airec.DescribeUserMetrics API synchronously

func (*Client) DescribeUserMetricsWithCallback added in v1.61.251

func (client *Client) DescribeUserMetricsWithCallback(request *DescribeUserMetricsRequest, callback func(response *DescribeUserMetricsResponse, err error)) <-chan int

DescribeUserMetricsWithCallback invokes the airec.DescribeUserMetrics API asynchronously

func (*Client) DescribeUserMetricsWithChan added in v1.61.251

func (client *Client) DescribeUserMetricsWithChan(request *DescribeUserMetricsRequest) (<-chan *DescribeUserMetricsResponse, <-chan error)

DescribeUserMetricsWithChan invokes the airec.DescribeUserMetrics API asynchronously

func (*Client) DowngradeInstance added in v1.61.251

func (client *Client) DowngradeInstance(request *DowngradeInstanceRequest) (response *DowngradeInstanceResponse, err error)

DowngradeInstance invokes the airec.DowngradeInstance API synchronously

func (*Client) DowngradeInstanceWithCallback added in v1.61.251

func (client *Client) DowngradeInstanceWithCallback(request *DowngradeInstanceRequest, callback func(response *DowngradeInstanceResponse, err error)) <-chan int

DowngradeInstanceWithCallback invokes the airec.DowngradeInstance API asynchronously

func (*Client) DowngradeInstanceWithChan added in v1.61.251

func (client *Client) DowngradeInstanceWithChan(request *DowngradeInstanceRequest) (<-chan *DowngradeInstanceResponse, <-chan error)

DowngradeInstanceWithChan invokes the airec.DowngradeInstance API asynchronously

func (*Client) EnableExperiment added in v1.61.831

func (client *Client) EnableExperiment(request *EnableExperimentRequest) (response *EnableExperimentResponse, err error)

EnableExperiment invokes the airec.EnableExperiment API synchronously

func (*Client) EnableExperimentWithCallback added in v1.61.831

func (client *Client) EnableExperimentWithCallback(request *EnableExperimentRequest, callback func(response *EnableExperimentResponse, err error)) <-chan int

EnableExperimentWithCallback invokes the airec.EnableExperiment API asynchronously

func (*Client) EnableExperimentWithChan added in v1.61.831

func (client *Client) EnableExperimentWithChan(request *EnableExperimentRequest) (<-chan *EnableExperimentResponse, <-chan error)

EnableExperimentWithChan invokes the airec.EnableExperiment API asynchronously

func (*Client) ListDashboardDetails added in v1.61.287

func (client *Client) ListDashboardDetails(request *ListDashboardDetailsRequest) (response *ListDashboardDetailsResponse, err error)

ListDashboardDetails invokes the airec.ListDashboardDetails API synchronously

func (*Client) ListDashboardDetailsFlows added in v1.61.287

func (client *Client) ListDashboardDetailsFlows(request *ListDashboardDetailsFlowsRequest) (response *ListDashboardDetailsFlowsResponse, err error)

ListDashboardDetailsFlows invokes the airec.ListDashboardDetailsFlows API synchronously

func (*Client) ListDashboardDetailsFlowsWithCallback added in v1.61.287

func (client *Client) ListDashboardDetailsFlowsWithCallback(request *ListDashboardDetailsFlowsRequest, callback func(response *ListDashboardDetailsFlowsResponse, err error)) <-chan int

ListDashboardDetailsFlowsWithCallback invokes the airec.ListDashboardDetailsFlows API asynchronously

func (*Client) ListDashboardDetailsFlowsWithChan added in v1.61.287

func (client *Client) ListDashboardDetailsFlowsWithChan(request *ListDashboardDetailsFlowsRequest) (<-chan *ListDashboardDetailsFlowsResponse, <-chan error)

ListDashboardDetailsFlowsWithChan invokes the airec.ListDashboardDetailsFlows API asynchronously

func (*Client) ListDashboardDetailsWithCallback added in v1.61.287

func (client *Client) ListDashboardDetailsWithCallback(request *ListDashboardDetailsRequest, callback func(response *ListDashboardDetailsResponse, err error)) <-chan int

ListDashboardDetailsWithCallback invokes the airec.ListDashboardDetails API asynchronously

func (*Client) ListDashboardDetailsWithChan added in v1.61.287

func (client *Client) ListDashboardDetailsWithChan(request *ListDashboardDetailsRequest) (<-chan *ListDashboardDetailsResponse, <-chan error)

ListDashboardDetailsWithChan invokes the airec.ListDashboardDetails API asynchronously

func (*Client) ListDashboardMetrics added in v1.61.287

func (client *Client) ListDashboardMetrics(request *ListDashboardMetricsRequest) (response *ListDashboardMetricsResponse, err error)

ListDashboardMetrics invokes the airec.ListDashboardMetrics API synchronously

func (*Client) ListDashboardMetricsFlows added in v1.61.287

func (client *Client) ListDashboardMetricsFlows(request *ListDashboardMetricsFlowsRequest) (response *ListDashboardMetricsFlowsResponse, err error)

ListDashboardMetricsFlows invokes the airec.ListDashboardMetricsFlows API synchronously

func (*Client) ListDashboardMetricsFlowsWithCallback added in v1.61.287

func (client *Client) ListDashboardMetricsFlowsWithCallback(request *ListDashboardMetricsFlowsRequest, callback func(response *ListDashboardMetricsFlowsResponse, err error)) <-chan int

ListDashboardMetricsFlowsWithCallback invokes the airec.ListDashboardMetricsFlows API asynchronously

func (*Client) ListDashboardMetricsFlowsWithChan added in v1.61.287

func (client *Client) ListDashboardMetricsFlowsWithChan(request *ListDashboardMetricsFlowsRequest) (<-chan *ListDashboardMetricsFlowsResponse, <-chan error)

ListDashboardMetricsFlowsWithChan invokes the airec.ListDashboardMetricsFlows API asynchronously

func (*Client) ListDashboardMetricsWithCallback added in v1.61.287

func (client *Client) ListDashboardMetricsWithCallback(request *ListDashboardMetricsRequest, callback func(response *ListDashboardMetricsResponse, err error)) <-chan int

ListDashboardMetricsWithCallback invokes the airec.ListDashboardMetrics API asynchronously

func (*Client) ListDashboardMetricsWithChan added in v1.61.287

func (client *Client) ListDashboardMetricsWithChan(request *ListDashboardMetricsRequest) (<-chan *ListDashboardMetricsResponse, <-chan error)

ListDashboardMetricsWithChan invokes the airec.ListDashboardMetrics API asynchronously

func (*Client) ListDataSet

func (client *Client) ListDataSet(request *ListDataSetRequest) (response *ListDataSetResponse, err error)

ListDataSet invokes the airec.ListDataSet API synchronously

func (*Client) ListDataSetWithCallback

func (client *Client) ListDataSetWithCallback(request *ListDataSetRequest, callback func(response *ListDataSetResponse, err error)) <-chan int

ListDataSetWithCallback invokes the airec.ListDataSet API asynchronously

func (*Client) ListDataSetWithChan

func (client *Client) ListDataSetWithChan(request *ListDataSetRequest) (<-chan *ListDataSetResponse, <-chan error)

ListDataSetWithChan invokes the airec.ListDataSet API asynchronously

func (*Client) ListDataSource

func (client *Client) ListDataSource(request *ListDataSourceRequest) (response *ListDataSourceResponse, err error)

ListDataSource invokes the airec.ListDataSource API synchronously

func (*Client) ListDataSourceWithCallback

func (client *Client) ListDataSourceWithCallback(request *ListDataSourceRequest, callback func(response *ListDataSourceResponse, err error)) <-chan int

ListDataSourceWithCallback invokes the airec.ListDataSource API asynchronously

func (*Client) ListDataSourceWithChan

func (client *Client) ListDataSourceWithChan(request *ListDataSourceRequest) (<-chan *ListDataSourceResponse, <-chan error)

ListDataSourceWithChan invokes the airec.ListDataSource API asynchronously

func (*Client) ListExperiments added in v1.61.831

func (client *Client) ListExperiments(request *ListExperimentsRequest) (response *ListExperimentsResponse, err error)

ListExperiments invokes the airec.ListExperiments API synchronously

func (*Client) ListExperimentsWithCallback added in v1.61.831

func (client *Client) ListExperimentsWithCallback(request *ListExperimentsRequest, callback func(response *ListExperimentsResponse, err error)) <-chan int

ListExperimentsWithCallback invokes the airec.ListExperiments API asynchronously

func (*Client) ListExperimentsWithChan added in v1.61.831

func (client *Client) ListExperimentsWithChan(request *ListExperimentsRequest) (<-chan *ListExperimentsResponse, <-chan error)

ListExperimentsWithChan invokes the airec.ListExperiments API asynchronously

func (*Client) ListFilteringAlgorithms added in v1.61.831

func (client *Client) ListFilteringAlgorithms(request *ListFilteringAlgorithmsRequest) (response *ListFilteringAlgorithmsResponse, err error)

ListFilteringAlgorithms invokes the airec.ListFilteringAlgorithms API synchronously

func (*Client) ListFilteringAlgorithmsWithCallback added in v1.61.831

func (client *Client) ListFilteringAlgorithmsWithCallback(request *ListFilteringAlgorithmsRequest, callback func(response *ListFilteringAlgorithmsResponse, err error)) <-chan int

ListFilteringAlgorithmsWithCallback invokes the airec.ListFilteringAlgorithms API asynchronously

func (*Client) ListFilteringAlgorithmsWithChan added in v1.61.831

func (client *Client) ListFilteringAlgorithmsWithChan(request *ListFilteringAlgorithmsRequest) (<-chan *ListFilteringAlgorithmsResponse, <-chan error)

ListFilteringAlgorithmsWithChan invokes the airec.ListFilteringAlgorithms API asynchronously

func (*Client) ListIndexVersions added in v1.61.831

func (client *Client) ListIndexVersions(request *ListIndexVersionsRequest) (response *ListIndexVersionsResponse, err error)

ListIndexVersions invokes the airec.ListIndexVersions API synchronously

func (*Client) ListIndexVersionsWithCallback added in v1.61.831

func (client *Client) ListIndexVersionsWithCallback(request *ListIndexVersionsRequest, callback func(response *ListIndexVersionsResponse, err error)) <-chan int

ListIndexVersionsWithCallback invokes the airec.ListIndexVersions API asynchronously

func (*Client) ListIndexVersionsWithChan added in v1.61.831

func (client *Client) ListIndexVersionsWithChan(request *ListIndexVersionsRequest) (<-chan *ListIndexVersionsResponse, <-chan error)

ListIndexVersionsWithChan invokes the airec.ListIndexVersions API asynchronously

func (*Client) ListInstance

func (client *Client) ListInstance(request *ListInstanceRequest) (response *ListInstanceResponse, err error)

ListInstance invokes the airec.ListInstance API synchronously

func (*Client) ListInstanceTask

func (client *Client) ListInstanceTask(request *ListInstanceTaskRequest) (response *ListInstanceTaskResponse, err error)

ListInstanceTask invokes the airec.ListInstanceTask API synchronously

func (*Client) ListInstanceTaskWithCallback

func (client *Client) ListInstanceTaskWithCallback(request *ListInstanceTaskRequest, callback func(response *ListInstanceTaskResponse, err error)) <-chan int

ListInstanceTaskWithCallback invokes the airec.ListInstanceTask API asynchronously

func (*Client) ListInstanceTaskWithChan

func (client *Client) ListInstanceTaskWithChan(request *ListInstanceTaskRequest) (<-chan *ListInstanceTaskResponse, <-chan error)

ListInstanceTaskWithChan invokes the airec.ListInstanceTask API asynchronously

func (*Client) ListInstanceWithCallback

func (client *Client) ListInstanceWithCallback(request *ListInstanceRequest, callback func(response *ListInstanceResponse, err error)) <-chan int

ListInstanceWithCallback invokes the airec.ListInstance API asynchronously

func (*Client) ListInstanceWithChan

func (client *Client) ListInstanceWithChan(request *ListInstanceRequest) (<-chan *ListInstanceResponse, <-chan error)

ListInstanceWithChan invokes the airec.ListInstance API asynchronously

func (*Client) ListItems added in v1.61.831

func (client *Client) ListItems(request *ListItemsRequest) (response *ListItemsResponse, err error)

ListItems invokes the airec.ListItems API synchronously

func (*Client) ListItemsWithCallback added in v1.61.831

func (client *Client) ListItemsWithCallback(request *ListItemsRequest, callback func(response *ListItemsResponse, err error)) <-chan int

ListItemsWithCallback invokes the airec.ListItems API asynchronously

func (*Client) ListItemsWithChan added in v1.61.831

func (client *Client) ListItemsWithChan(request *ListItemsRequest) (<-chan *ListItemsResponse, <-chan error)

ListItemsWithChan invokes the airec.ListItems API asynchronously

func (*Client) ListLogs added in v1.61.1014

func (client *Client) ListLogs(request *ListLogsRequest) (response *ListLogsResponse, err error)

ListLogs invokes the airec.ListLogs API synchronously

func (*Client) ListLogsWithCallback added in v1.61.1014

func (client *Client) ListLogsWithCallback(request *ListLogsRequest, callback func(response *ListLogsResponse, err error)) <-chan int

ListLogsWithCallback invokes the airec.ListLogs API asynchronously

func (*Client) ListLogsWithChan added in v1.61.1014

func (client *Client) ListLogsWithChan(request *ListLogsRequest) (<-chan *ListLogsResponse, <-chan error)

ListLogsWithChan invokes the airec.ListLogs API asynchronously

func (*Client) ListMixCategories added in v1.61.1014

func (client *Client) ListMixCategories(request *ListMixCategoriesRequest) (response *ListMixCategoriesResponse, err error)

ListMixCategories invokes the airec.ListMixCategories API synchronously

func (*Client) ListMixCategoriesWithCallback added in v1.61.1014

func (client *Client) ListMixCategoriesWithCallback(request *ListMixCategoriesRequest, callback func(response *ListMixCategoriesResponse, err error)) <-chan int

ListMixCategoriesWithCallback invokes the airec.ListMixCategories API asynchronously

func (*Client) ListMixCategoriesWithChan added in v1.61.1014

func (client *Client) ListMixCategoriesWithChan(request *ListMixCategoriesRequest) (<-chan *ListMixCategoriesResponse, <-chan error)

ListMixCategoriesWithChan invokes the airec.ListMixCategories API asynchronously

func (*Client) ListRankingModels added in v1.61.831

func (client *Client) ListRankingModels(request *ListRankingModelsRequest) (response *ListRankingModelsResponse, err error)

ListRankingModels invokes the airec.ListRankingModels API synchronously

func (*Client) ListRankingModelsWithCallback added in v1.61.831

func (client *Client) ListRankingModelsWithCallback(request *ListRankingModelsRequest, callback func(response *ListRankingModelsResponse, err error)) <-chan int

ListRankingModelsWithCallback invokes the airec.ListRankingModels API asynchronously

func (*Client) ListRankingModelsWithChan added in v1.61.831

func (client *Client) ListRankingModelsWithChan(request *ListRankingModelsRequest) (<-chan *ListRankingModelsResponse, <-chan error)

ListRankingModelsWithChan invokes the airec.ListRankingModels API asynchronously

func (*Client) ListRuleConditions added in v1.61.287

func (client *Client) ListRuleConditions(request *ListRuleConditionsRequest) (response *ListRuleConditionsResponse, err error)

ListRuleConditions invokes the airec.ListRuleConditions API synchronously

func (*Client) ListRuleConditionsWithCallback added in v1.61.287

func (client *Client) ListRuleConditionsWithCallback(request *ListRuleConditionsRequest, callback func(response *ListRuleConditionsResponse, err error)) <-chan int

ListRuleConditionsWithCallback invokes the airec.ListRuleConditions API asynchronously

func (*Client) ListRuleConditionsWithChan added in v1.61.287

func (client *Client) ListRuleConditionsWithChan(request *ListRuleConditionsRequest) (<-chan *ListRuleConditionsResponse, <-chan error)

ListRuleConditionsWithChan invokes the airec.ListRuleConditions API asynchronously

func (*Client) ListRuleTasks added in v1.61.287

func (client *Client) ListRuleTasks(request *ListRuleTasksRequest) (response *ListRuleTasksResponse, err error)

ListRuleTasks invokes the airec.ListRuleTasks API synchronously

func (*Client) ListRuleTasksWithCallback added in v1.61.287

func (client *Client) ListRuleTasksWithCallback(request *ListRuleTasksRequest, callback func(response *ListRuleTasksResponse, err error)) <-chan int

ListRuleTasksWithCallback invokes the airec.ListRuleTasks API asynchronously

func (*Client) ListRuleTasksWithChan added in v1.61.287

func (client *Client) ListRuleTasksWithChan(request *ListRuleTasksRequest) (<-chan *ListRuleTasksResponse, <-chan error)

ListRuleTasksWithChan invokes the airec.ListRuleTasks API asynchronously

func (*Client) ListRules added in v1.61.287

func (client *Client) ListRules(request *ListRulesRequest) (response *ListRulesResponse, err error)

ListRules invokes the airec.ListRules API synchronously

func (*Client) ListRulesWithCallback added in v1.61.287

func (client *Client) ListRulesWithCallback(request *ListRulesRequest, callback func(response *ListRulesResponse, err error)) <-chan int

ListRulesWithCallback invokes the airec.ListRules API asynchronously

func (*Client) ListRulesWithChan added in v1.61.287

func (client *Client) ListRulesWithChan(request *ListRulesRequest) (<-chan *ListRulesResponse, <-chan error)

ListRulesWithChan invokes the airec.ListRules API asynchronously

func (*Client) ListSceneItems added in v1.61.287

func (client *Client) ListSceneItems(request *ListSceneItemsRequest) (response *ListSceneItemsResponse, err error)

ListSceneItems invokes the airec.ListSceneItems API synchronously

func (*Client) ListSceneItemsWithCallback added in v1.61.287

func (client *Client) ListSceneItemsWithCallback(request *ListSceneItemsRequest, callback func(response *ListSceneItemsResponse, err error)) <-chan int

ListSceneItemsWithCallback invokes the airec.ListSceneItems API asynchronously

func (*Client) ListSceneItemsWithChan added in v1.61.287

func (client *Client) ListSceneItemsWithChan(request *ListSceneItemsRequest) (<-chan *ListSceneItemsResponse, <-chan error)

ListSceneItemsWithChan invokes the airec.ListSceneItems API asynchronously

func (*Client) ListSceneParameters added in v1.61.831

func (client *Client) ListSceneParameters(request *ListSceneParametersRequest) (response *ListSceneParametersResponse, err error)

ListSceneParameters invokes the airec.ListSceneParameters API synchronously

func (*Client) ListSceneParametersWithCallback added in v1.61.831

func (client *Client) ListSceneParametersWithCallback(request *ListSceneParametersRequest, callback func(response *ListSceneParametersResponse, err error)) <-chan int

ListSceneParametersWithCallback invokes the airec.ListSceneParameters API asynchronously

func (*Client) ListSceneParametersWithChan added in v1.61.831

func (client *Client) ListSceneParametersWithChan(request *ListSceneParametersRequest) (<-chan *ListSceneParametersResponse, <-chan error)

ListSceneParametersWithChan invokes the airec.ListSceneParameters API asynchronously

func (*Client) ListScenes added in v1.61.287

func (client *Client) ListScenes(request *ListScenesRequest) (response *ListScenesResponse, err error)

ListScenes invokes the airec.ListScenes API synchronously

func (*Client) ListScenesWithCallback added in v1.61.287

func (client *Client) ListScenesWithCallback(request *ListScenesRequest, callback func(response *ListScenesResponse, err error)) <-chan int

ListScenesWithCallback invokes the airec.ListScenes API asynchronously

func (*Client) ListScenesWithChan added in v1.61.287

func (client *Client) ListScenesWithChan(request *ListScenesRequest) (<-chan *ListScenesResponse, <-chan error)

ListScenesWithChan invokes the airec.ListScenes API asynchronously

func (*Client) ListUmengAppkeys added in v1.61.251

func (client *Client) ListUmengAppkeys(request *ListUmengAppkeysRequest) (response *ListUmengAppkeysResponse, err error)

ListUmengAppkeys invokes the airec.ListUmengAppkeys API synchronously

func (*Client) ListUmengAppkeysWithCallback added in v1.61.251

func (client *Client) ListUmengAppkeysWithCallback(request *ListUmengAppkeysRequest, callback func(response *ListUmengAppkeysResponse, err error)) <-chan int

ListUmengAppkeysWithCallback invokes the airec.ListUmengAppkeys API asynchronously

func (*Client) ListUmengAppkeysWithChan added in v1.61.251

func (client *Client) ListUmengAppkeysWithChan(request *ListUmengAppkeysRequest) (<-chan *ListUmengAppkeysResponse, <-chan error)

ListUmengAppkeysWithChan invokes the airec.ListUmengAppkeys API asynchronously

func (*Client) ListUserClusters added in v1.61.831

func (client *Client) ListUserClusters(request *ListUserClustersRequest) (response *ListUserClustersResponse, err error)

ListUserClusters invokes the airec.ListUserClusters API synchronously

func (*Client) ListUserClustersWithCallback added in v1.61.831

func (client *Client) ListUserClustersWithCallback(request *ListUserClustersRequest, callback func(response *ListUserClustersResponse, err error)) <-chan int

ListUserClustersWithCallback invokes the airec.ListUserClusters API asynchronously

func (*Client) ListUserClustersWithChan added in v1.61.831

func (client *Client) ListUserClustersWithChan(request *ListUserClustersRequest) (<-chan *ListUserClustersResponse, <-chan error)

ListUserClustersWithChan invokes the airec.ListUserClusters API asynchronously

func (*Client) ModifyDataSource

func (client *Client) ModifyDataSource(request *ModifyDataSourceRequest) (response *ModifyDataSourceResponse, err error)

ModifyDataSource invokes the airec.ModifyDataSource API synchronously

func (*Client) ModifyDataSourceWithCallback

func (client *Client) ModifyDataSourceWithCallback(request *ModifyDataSourceRequest, callback func(response *ModifyDataSourceResponse, err error)) <-chan int

ModifyDataSourceWithCallback invokes the airec.ModifyDataSource API asynchronously

func (*Client) ModifyDataSourceWithChan

func (client *Client) ModifyDataSourceWithChan(request *ModifyDataSourceRequest) (<-chan *ModifyDataSourceResponse, <-chan error)

ModifyDataSourceWithChan invokes the airec.ModifyDataSource API asynchronously

func (*Client) ModifyFilteringAlgorithmMeta added in v1.61.831

func (client *Client) ModifyFilteringAlgorithmMeta(request *ModifyFilteringAlgorithmMetaRequest) (response *ModifyFilteringAlgorithmMetaResponse, err error)

ModifyFilteringAlgorithmMeta invokes the airec.ModifyFilteringAlgorithmMeta API synchronously

func (*Client) ModifyFilteringAlgorithmMetaWithCallback added in v1.61.831

func (client *Client) ModifyFilteringAlgorithmMetaWithCallback(request *ModifyFilteringAlgorithmMetaRequest, callback func(response *ModifyFilteringAlgorithmMetaResponse, err error)) <-chan int

ModifyFilteringAlgorithmMetaWithCallback invokes the airec.ModifyFilteringAlgorithmMeta API asynchronously

func (*Client) ModifyFilteringAlgorithmMetaWithChan added in v1.61.831

func (client *Client) ModifyFilteringAlgorithmMetaWithChan(request *ModifyFilteringAlgorithmMetaRequest) (<-chan *ModifyFilteringAlgorithmMetaResponse, <-chan error)

ModifyFilteringAlgorithmMetaWithChan invokes the airec.ModifyFilteringAlgorithmMeta API asynchronously

func (*Client) ModifyInstance

func (client *Client) ModifyInstance(request *ModifyInstanceRequest) (response *ModifyInstanceResponse, err error)

ModifyInstance invokes the airec.ModifyInstance API synchronously

func (*Client) ModifyInstanceWithCallback

func (client *Client) ModifyInstanceWithCallback(request *ModifyInstanceRequest, callback func(response *ModifyInstanceResponse, err error)) <-chan int

ModifyInstanceWithCallback invokes the airec.ModifyInstance API asynchronously

func (*Client) ModifyInstanceWithChan

func (client *Client) ModifyInstanceWithChan(request *ModifyInstanceRequest) (<-chan *ModifyInstanceResponse, <-chan error)

ModifyInstanceWithChan invokes the airec.ModifyInstance API asynchronously

func (*Client) ModifyItems added in v1.61.831

func (client *Client) ModifyItems(request *ModifyItemsRequest) (response *ModifyItemsResponse, err error)

ModifyItems invokes the airec.ModifyItems API synchronously

func (*Client) ModifyItemsWithCallback added in v1.61.831

func (client *Client) ModifyItemsWithCallback(request *ModifyItemsRequest, callback func(response *ModifyItemsResponse, err error)) <-chan int

ModifyItemsWithCallback invokes the airec.ModifyItems API asynchronously

func (*Client) ModifyItemsWithChan added in v1.61.831

func (client *Client) ModifyItemsWithChan(request *ModifyItemsRequest) (<-chan *ModifyItemsResponse, <-chan error)

ModifyItemsWithChan invokes the airec.ModifyItems API asynchronously

func (*Client) ModifyRankingModel added in v1.61.831

func (client *Client) ModifyRankingModel(request *ModifyRankingModelRequest) (response *ModifyRankingModelResponse, err error)

ModifyRankingModel invokes the airec.ModifyRankingModel API synchronously

func (*Client) ModifyRankingModelWithCallback added in v1.61.831

func (client *Client) ModifyRankingModelWithCallback(request *ModifyRankingModelRequest, callback func(response *ModifyRankingModelResponse, err error)) <-chan int

ModifyRankingModelWithCallback invokes the airec.ModifyRankingModel API asynchronously

func (*Client) ModifyRankingModelWithChan added in v1.61.831

func (client *Client) ModifyRankingModelWithChan(request *ModifyRankingModelRequest) (<-chan *ModifyRankingModelResponse, <-chan error)

ModifyRankingModelWithChan invokes the airec.ModifyRankingModel API asynchronously

func (*Client) ModifyRule added in v1.61.287

func (client *Client) ModifyRule(request *ModifyRuleRequest) (response *ModifyRuleResponse, err error)

ModifyRule invokes the airec.ModifyRule API synchronously

func (*Client) ModifyRuleWithCallback added in v1.61.287

func (client *Client) ModifyRuleWithCallback(request *ModifyRuleRequest, callback func(response *ModifyRuleResponse, err error)) <-chan int

ModifyRuleWithCallback invokes the airec.ModifyRule API asynchronously

func (*Client) ModifyRuleWithChan added in v1.61.287

func (client *Client) ModifyRuleWithChan(request *ModifyRuleRequest) (<-chan *ModifyRuleResponse, <-chan error)

ModifyRuleWithChan invokes the airec.ModifyRule API asynchronously

func (*Client) ModifyScene added in v1.61.287

func (client *Client) ModifyScene(request *ModifySceneRequest) (response *ModifySceneResponse, err error)

ModifyScene invokes the airec.ModifyScene API synchronously

func (*Client) ModifySceneWithCallback added in v1.61.287

func (client *Client) ModifySceneWithCallback(request *ModifySceneRequest, callback func(response *ModifySceneResponse, err error)) <-chan int

ModifySceneWithCallback invokes the airec.ModifyScene API asynchronously

func (*Client) ModifySceneWithChan added in v1.61.287

func (client *Client) ModifySceneWithChan(request *ModifySceneRequest) (<-chan *ModifySceneResponse, <-chan error)

ModifySceneWithChan invokes the airec.ModifyScene API asynchronously

func (*Client) OfflineFilteringAlgorithm added in v1.61.831

func (client *Client) OfflineFilteringAlgorithm(request *OfflineFilteringAlgorithmRequest) (response *OfflineFilteringAlgorithmResponse, err error)

OfflineFilteringAlgorithm invokes the airec.OfflineFilteringAlgorithm API synchronously

func (*Client) OfflineFilteringAlgorithmWithCallback added in v1.61.831

func (client *Client) OfflineFilteringAlgorithmWithCallback(request *OfflineFilteringAlgorithmRequest, callback func(response *OfflineFilteringAlgorithmResponse, err error)) <-chan int

OfflineFilteringAlgorithmWithCallback invokes the airec.OfflineFilteringAlgorithm API asynchronously

func (*Client) OfflineFilteringAlgorithmWithChan added in v1.61.831

func (client *Client) OfflineFilteringAlgorithmWithChan(request *OfflineFilteringAlgorithmRequest) (<-chan *OfflineFilteringAlgorithmResponse, <-chan error)

OfflineFilteringAlgorithmWithChan invokes the airec.OfflineFilteringAlgorithm API asynchronously

func (*Client) PublishRule added in v1.61.287

func (client *Client) PublishRule(request *PublishRuleRequest) (response *PublishRuleResponse, err error)

PublishRule invokes the airec.PublishRule API synchronously

func (*Client) PublishRuleWithCallback added in v1.61.287

func (client *Client) PublishRuleWithCallback(request *PublishRuleRequest, callback func(response *PublishRuleResponse, err error)) <-chan int

PublishRuleWithCallback invokes the airec.PublishRule API asynchronously

func (*Client) PublishRuleWithChan added in v1.61.287

func (client *Client) PublishRuleWithChan(request *PublishRuleRequest) (<-chan *PublishRuleResponse, <-chan error)

PublishRuleWithChan invokes the airec.PublishRule API asynchronously

func (*Client) PushDocument

func (client *Client) PushDocument(request *PushDocumentRequest) (response *PushDocumentResponse, err error)

PushDocument invokes the airec.PushDocument API synchronously

func (*Client) PushDocumentWithCallback

func (client *Client) PushDocumentWithCallback(request *PushDocumentRequest, callback func(response *PushDocumentResponse, err error)) <-chan int

PushDocumentWithCallback invokes the airec.PushDocument API asynchronously

func (*Client) PushDocumentWithChan

func (client *Client) PushDocumentWithChan(request *PushDocumentRequest) (<-chan *PushDocumentResponse, <-chan error)

PushDocumentWithChan invokes the airec.PushDocument API asynchronously

func (*Client) PushIntervention

func (client *Client) PushIntervention(request *PushInterventionRequest) (response *PushInterventionResponse, err error)

PushIntervention invokes the airec.PushIntervention API synchronously

func (*Client) PushInterventionWithCallback

func (client *Client) PushInterventionWithCallback(request *PushInterventionRequest, callback func(response *PushInterventionResponse, err error)) <-chan int

PushInterventionWithCallback invokes the airec.PushIntervention API asynchronously

func (*Client) PushInterventionWithChan

func (client *Client) PushInterventionWithChan(request *PushInterventionRequest) (<-chan *PushInterventionResponse, <-chan error)

PushInterventionWithChan invokes the airec.PushIntervention API asynchronously

func (*Client) QueryDataMessage added in v1.61.251

func (client *Client) QueryDataMessage(request *QueryDataMessageRequest) (response *QueryDataMessageResponse, err error)

QueryDataMessage invokes the airec.QueryDataMessage API synchronously

func (*Client) QueryDataMessageStatistics added in v1.61.356

func (client *Client) QueryDataMessageStatistics(request *QueryDataMessageStatisticsRequest) (response *QueryDataMessageStatisticsResponse, err error)

QueryDataMessageStatistics invokes the airec.QueryDataMessageStatistics API synchronously

func (*Client) QueryDataMessageStatisticsWithCallback added in v1.61.356

func (client *Client) QueryDataMessageStatisticsWithCallback(request *QueryDataMessageStatisticsRequest, callback func(response *QueryDataMessageStatisticsResponse, err error)) <-chan int

QueryDataMessageStatisticsWithCallback invokes the airec.QueryDataMessageStatistics API asynchronously

func (*Client) QueryDataMessageStatisticsWithChan added in v1.61.356

func (client *Client) QueryDataMessageStatisticsWithChan(request *QueryDataMessageStatisticsRequest) (<-chan *QueryDataMessageStatisticsResponse, <-chan error)

QueryDataMessageStatisticsWithChan invokes the airec.QueryDataMessageStatistics API asynchronously

func (*Client) QueryDataMessageWithCallback added in v1.61.251

func (client *Client) QueryDataMessageWithCallback(request *QueryDataMessageRequest, callback func(response *QueryDataMessageResponse, err error)) <-chan int

QueryDataMessageWithCallback invokes the airec.QueryDataMessage API asynchronously

func (*Client) QueryDataMessageWithChan added in v1.61.251

func (client *Client) QueryDataMessageWithChan(request *QueryDataMessageRequest) (<-chan *QueryDataMessageResponse, <-chan error)

QueryDataMessageWithChan invokes the airec.QueryDataMessage API asynchronously

func (*Client) QueryExceptionHistory added in v1.61.251

func (client *Client) QueryExceptionHistory(request *QueryExceptionHistoryRequest) (response *QueryExceptionHistoryResponse, err error)

QueryExceptionHistory invokes the airec.QueryExceptionHistory API synchronously

func (*Client) QueryExceptionHistoryWithCallback added in v1.61.251

func (client *Client) QueryExceptionHistoryWithCallback(request *QueryExceptionHistoryRequest, callback func(response *QueryExceptionHistoryResponse, err error)) <-chan int

QueryExceptionHistoryWithCallback invokes the airec.QueryExceptionHistory API asynchronously

func (*Client) QueryExceptionHistoryWithChan added in v1.61.251

func (client *Client) QueryExceptionHistoryWithChan(request *QueryExceptionHistoryRequest) (<-chan *QueryExceptionHistoryResponse, <-chan error)

QueryExceptionHistoryWithChan invokes the airec.QueryExceptionHistory API asynchronously

func (*Client) QueryRawData added in v1.61.251

func (client *Client) QueryRawData(request *QueryRawDataRequest) (response *QueryRawDataResponse, err error)

QueryRawData invokes the airec.QueryRawData API synchronously

func (*Client) QueryRawDataWithCallback added in v1.61.251

func (client *Client) QueryRawDataWithCallback(request *QueryRawDataRequest, callback func(response *QueryRawDataResponse, err error)) <-chan int

QueryRawDataWithCallback invokes the airec.QueryRawData API asynchronously

func (*Client) QueryRawDataWithChan added in v1.61.251

func (client *Client) QueryRawDataWithChan(request *QueryRawDataRequest) (<-chan *QueryRawDataResponse, <-chan error)

QueryRawDataWithChan invokes the airec.QueryRawData API asynchronously

func (*Client) QuerySingleAggregationReport added in v1.61.251

func (client *Client) QuerySingleAggregationReport(request *QuerySingleAggregationReportRequest) (response *QuerySingleAggregationReportResponse, err error)

QuerySingleAggregationReport invokes the airec.QuerySingleAggregationReport API synchronously

func (*Client) QuerySingleAggregationReportWithCallback added in v1.61.251

func (client *Client) QuerySingleAggregationReportWithCallback(request *QuerySingleAggregationReportRequest, callback func(response *QuerySingleAggregationReportResponse, err error)) <-chan int

QuerySingleAggregationReportWithCallback invokes the airec.QuerySingleAggregationReport API asynchronously

func (*Client) QuerySingleAggregationReportWithChan added in v1.61.251

func (client *Client) QuerySingleAggregationReportWithChan(request *QuerySingleAggregationReportRequest) (<-chan *QuerySingleAggregationReportResponse, <-chan error)

QuerySingleAggregationReportWithChan invokes the airec.QuerySingleAggregationReport API asynchronously

func (*Client) QuerySingleReport added in v1.61.251

func (client *Client) QuerySingleReport(request *QuerySingleReportRequest) (response *QuerySingleReportResponse, err error)

QuerySingleReport invokes the airec.QuerySingleReport API synchronously

func (*Client) QuerySingleReportWithCallback added in v1.61.251

func (client *Client) QuerySingleReportWithCallback(request *QuerySingleReportRequest, callback func(response *QuerySingleReportResponse, err error)) <-chan int

QuerySingleReportWithCallback invokes the airec.QuerySingleReport API asynchronously

func (*Client) QuerySingleReportWithChan added in v1.61.251

func (client *Client) QuerySingleReportWithChan(request *QuerySingleReportRequest) (<-chan *QuerySingleReportResponse, <-chan error)

QuerySingleReportWithChan invokes the airec.QuerySingleReport API asynchronously

func (*Client) QuerySyncReportAggregation added in v1.61.251

func (client *Client) QuerySyncReportAggregation(request *QuerySyncReportAggregationRequest) (response *QuerySyncReportAggregationResponse, err error)

QuerySyncReportAggregation invokes the airec.QuerySyncReportAggregation API synchronously

func (*Client) QuerySyncReportAggregationWithCallback added in v1.61.251

func (client *Client) QuerySyncReportAggregationWithCallback(request *QuerySyncReportAggregationRequest, callback func(response *QuerySyncReportAggregationResponse, err error)) <-chan int

QuerySyncReportAggregationWithCallback invokes the airec.QuerySyncReportAggregation API asynchronously

func (*Client) QuerySyncReportAggregationWithChan added in v1.61.251

func (client *Client) QuerySyncReportAggregationWithChan(request *QuerySyncReportAggregationRequest) (<-chan *QuerySyncReportAggregationResponse, <-chan error)

QuerySyncReportAggregationWithChan invokes the airec.QuerySyncReportAggregation API asynchronously

func (*Client) RebuildIndex added in v1.61.831

func (client *Client) RebuildIndex(request *RebuildIndexRequest) (response *RebuildIndexResponse, err error)

RebuildIndex invokes the airec.RebuildIndex API synchronously

func (*Client) RebuildIndexWithCallback added in v1.61.831

func (client *Client) RebuildIndexWithCallback(request *RebuildIndexRequest, callback func(response *RebuildIndexResponse, err error)) <-chan int

RebuildIndexWithCallback invokes the airec.RebuildIndex API asynchronously

func (*Client) RebuildIndexWithChan added in v1.61.831

func (client *Client) RebuildIndexWithChan(request *RebuildIndexRequest) (<-chan *RebuildIndexResponse, <-chan error)

RebuildIndexWithChan invokes the airec.RebuildIndex API asynchronously

func (*Client) Recommend

func (client *Client) Recommend(request *RecommendRequest) (response *RecommendResponse, err error)

Recommend invokes the airec.Recommend API synchronously

func (*Client) RecommendWithCallback

func (client *Client) RecommendWithCallback(request *RecommendRequest, callback func(response *RecommendResponse, err error)) <-chan int

RecommendWithCallback invokes the airec.Recommend API asynchronously

func (*Client) RecommendWithChan

func (client *Client) RecommendWithChan(request *RecommendRequest) (<-chan *RecommendResponse, <-chan error)

RecommendWithChan invokes the airec.Recommend API asynchronously

func (*Client) RunInstance

func (client *Client) RunInstance(request *RunInstanceRequest) (response *RunInstanceResponse, err error)

RunInstance invokes the airec.RunInstance API synchronously

func (*Client) RunInstanceWithCallback

func (client *Client) RunInstanceWithCallback(request *RunInstanceRequest, callback func(response *RunInstanceResponse, err error)) <-chan int

RunInstanceWithCallback invokes the airec.RunInstance API asynchronously

func (*Client) RunInstanceWithChan

func (client *Client) RunInstanceWithChan(request *RunInstanceRequest) (<-chan *RunInstanceResponse, <-chan error)

RunInstanceWithChan invokes the airec.RunInstance API asynchronously

func (*Client) StopDataSet

func (client *Client) StopDataSet(request *StopDataSetRequest) (response *StopDataSetResponse, err error)

StopDataSet invokes the airec.StopDataSet API synchronously

func (*Client) StopDataSetWithCallback

func (client *Client) StopDataSetWithCallback(request *StopDataSetRequest, callback func(response *StopDataSetResponse, err error)) <-chan int

StopDataSetWithCallback invokes the airec.StopDataSet API asynchronously

func (*Client) StopDataSetWithChan

func (client *Client) StopDataSetWithChan(request *StopDataSetRequest) (<-chan *StopDataSetResponse, <-chan error)

StopDataSetWithChan invokes the airec.StopDataSet API asynchronously

func (*Client) UnLockIndexVersion added in v1.61.831

func (client *Client) UnLockIndexVersion(request *UnLockIndexVersionRequest) (response *UnLockIndexVersionResponse, err error)

UnLockIndexVersion invokes the airec.UnLockIndexVersion API synchronously

func (*Client) UnLockIndexVersionWithCallback added in v1.61.831

func (client *Client) UnLockIndexVersionWithCallback(request *UnLockIndexVersionRequest, callback func(response *UnLockIndexVersionResponse, err error)) <-chan int

UnLockIndexVersionWithCallback invokes the airec.UnLockIndexVersion API asynchronously

func (*Client) UnLockIndexVersionWithChan added in v1.61.831

func (client *Client) UnLockIndexVersionWithChan(request *UnLockIndexVersionRequest) (<-chan *UnLockIndexVersionResponse, <-chan error)

UnLockIndexVersionWithChan invokes the airec.UnLockIndexVersion API asynchronously

func (*Client) UpdateExperimentBasicInfo added in v1.61.831

func (client *Client) UpdateExperimentBasicInfo(request *UpdateExperimentBasicInfoRequest) (response *UpdateExperimentBasicInfoResponse, err error)

UpdateExperimentBasicInfo invokes the airec.UpdateExperimentBasicInfo API synchronously

func (*Client) UpdateExperimentBasicInfoWithCallback added in v1.61.831

func (client *Client) UpdateExperimentBasicInfoWithCallback(request *UpdateExperimentBasicInfoRequest, callback func(response *UpdateExperimentBasicInfoResponse, err error)) <-chan int

UpdateExperimentBasicInfoWithCallback invokes the airec.UpdateExperimentBasicInfo API asynchronously

func (*Client) UpdateExperimentBasicInfoWithChan added in v1.61.831

func (client *Client) UpdateExperimentBasicInfoWithChan(request *UpdateExperimentBasicInfoRequest) (<-chan *UpdateExperimentBasicInfoResponse, <-chan error)

UpdateExperimentBasicInfoWithChan invokes the airec.UpdateExperimentBasicInfo API asynchronously

func (*Client) UpdateExperimentConfig added in v1.61.831

func (client *Client) UpdateExperimentConfig(request *UpdateExperimentConfigRequest) (response *UpdateExperimentConfigResponse, err error)

UpdateExperimentConfig invokes the airec.UpdateExperimentConfig API synchronously

func (*Client) UpdateExperimentConfigWithCallback added in v1.61.831

func (client *Client) UpdateExperimentConfigWithCallback(request *UpdateExperimentConfigRequest, callback func(response *UpdateExperimentConfigResponse, err error)) <-chan int

UpdateExperimentConfigWithCallback invokes the airec.UpdateExperimentConfig API asynchronously

func (*Client) UpdateExperimentConfigWithChan added in v1.61.831

func (client *Client) UpdateExperimentConfigWithChan(request *UpdateExperimentConfigRequest) (<-chan *UpdateExperimentConfigResponse, <-chan error)

UpdateExperimentConfigWithChan invokes the airec.UpdateExperimentConfig API asynchronously

func (*Client) UpdateExperimentStatus added in v1.61.831

func (client *Client) UpdateExperimentStatus(request *UpdateExperimentStatusRequest) (response *UpdateExperimentStatusResponse, err error)

UpdateExperimentStatus invokes the airec.UpdateExperimentStatus API synchronously

func (*Client) UpdateExperimentStatusWithCallback added in v1.61.831

func (client *Client) UpdateExperimentStatusWithCallback(request *UpdateExperimentStatusRequest, callback func(response *UpdateExperimentStatusResponse, err error)) <-chan int

UpdateExperimentStatusWithCallback invokes the airec.UpdateExperimentStatus API asynchronously

func (*Client) UpdateExperimentStatusWithChan added in v1.61.831

func (client *Client) UpdateExperimentStatusWithChan(request *UpdateExperimentStatusRequest) (<-chan *UpdateExperimentStatusResponse, <-chan error)

UpdateExperimentStatusWithChan invokes the airec.UpdateExperimentStatus API asynchronously

func (*Client) UpgradeInstance

func (client *Client) UpgradeInstance(request *UpgradeInstanceRequest) (response *UpgradeInstanceResponse, err error)

UpgradeInstance invokes the airec.UpgradeInstance API synchronously

func (*Client) UpgradeInstanceWithCallback

func (client *Client) UpgradeInstanceWithCallback(request *UpgradeInstanceRequest, callback func(response *UpgradeInstanceResponse, err error)) <-chan int

UpgradeInstanceWithCallback invokes the airec.UpgradeInstance API asynchronously

func (*Client) UpgradeInstanceWithChan

func (client *Client) UpgradeInstanceWithChan(request *UpgradeInstanceRequest) (<-chan *UpgradeInstanceResponse, <-chan error)

UpgradeInstanceWithChan invokes the airec.UpgradeInstance API asynchronously

func (*Client) ValidateInstance

func (client *Client) ValidateInstance(request *ValidateInstanceRequest) (response *ValidateInstanceResponse, err error)

ValidateInstance invokes the airec.ValidateInstance API synchronously

func (*Client) ValidateInstanceWithCallback

func (client *Client) ValidateInstanceWithCallback(request *ValidateInstanceRequest, callback func(response *ValidateInstanceResponse, err error)) <-chan int

ValidateInstanceWithCallback invokes the airec.ValidateInstance API asynchronously

func (*Client) ValidateInstanceWithChan

func (client *Client) ValidateInstanceWithChan(request *ValidateInstanceRequest) (<-chan *ValidateInstanceResponse, <-chan error)

ValidateInstanceWithChan invokes the airec.ValidateInstance API asynchronously

type CloneExperimentRequest added in v1.61.831

type CloneExperimentRequest struct {
	*requests.RoaRequest
	InstanceId   string           `position:"Path" name:"instanceId"`
	DryRun       requests.Boolean `position:"Query" name:"dryRun"`
	SceneId      string           `position:"Path" name:"sceneId"`
	ExperimentId string           `position:"Path" name:"experimentId"`
}

CloneExperimentRequest is the request struct for api CloneExperiment

func CreateCloneExperimentRequest added in v1.61.831

func CreateCloneExperimentRequest() (request *CloneExperimentRequest)

CreateCloneExperimentRequest creates a request to invoke CloneExperiment API

type CloneExperimentResponse added in v1.61.831

type CloneExperimentResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

CloneExperimentResponse is the response struct for api CloneExperiment

func CreateCloneExperimentResponse added in v1.61.831

func CreateCloneExperimentResponse() (response *CloneExperimentResponse)

CreateCloneExperimentResponse creates a response to parse from CloneExperiment response

type ConfigInCloneExperiment added in v1.61.831

type ConfigInCloneExperiment struct {
	ConfigItem []ConfigItem `json:"config" xml:"config"`
}

ConfigInCloneExperiment is a nested struct in airec response

type ConfigInDescribeBaseExperiment added in v1.61.831

type ConfigInDescribeBaseExperiment struct {
	ConfigItem []ConfigItem `json:"config" xml:"config"`
}

ConfigInDescribeBaseExperiment is a nested struct in airec response

type ConfigInDescribeDefaultAlgorithms added in v1.61.831

type ConfigInDescribeDefaultAlgorithms struct {
	ConfigItem []ConfigItem `json:"config" xml:"config"`
}

ConfigInDescribeDefaultAlgorithms is a nested struct in airec response

type ConfigInDescribeExperiment added in v1.61.831

type ConfigInDescribeExperiment struct {
	ConfigItem []ConfigItem `json:"config" xml:"config"`
}

ConfigInDescribeExperiment is a nested struct in airec response

type ConfigInUpdateExperimentBasicInfo added in v1.61.831

type ConfigInUpdateExperimentBasicInfo struct {
	ConfigItem []ConfigItem `json:"config" xml:"config"`
}

ConfigInUpdateExperimentBasicInfo is a nested struct in airec response

type ConfigInUpdateExperimentConfig added in v1.61.831

type ConfigInUpdateExperimentConfig struct {
	ConfigItem []ConfigItem `json:"config" xml:"config"`
}

ConfigInUpdateExperimentConfig is a nested struct in airec response

type ConfigInUpdateExperimentStatus added in v1.61.831

type ConfigInUpdateExperimentStatus struct {
	ConfigItem []ConfigItem `json:"config" xml:"config"`
}

ConfigInUpdateExperimentStatus is a nested struct in airec response

type ConfigItem added in v1.61.831

type ConfigItem struct {
	Key             string `json:"key" xml:"key"`
	DefaultValue    string `json:"defaultValue" xml:"defaultValue"`
	ExperimentValue string `json:"experimentValue" xml:"experimentValue"`
	Name            string `json:"name" xml:"name"`
}

ConfigItem is a nested struct in airec response

type CreateFilteringAlgorithmRequest added in v1.61.831

type CreateFilteringAlgorithmRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	DryRun     string `position:"Query" name:"dryRun"`
}

CreateFilteringAlgorithmRequest is the request struct for api CreateFilteringAlgorithm

func CreateCreateFilteringAlgorithmRequest added in v1.61.831

func CreateCreateFilteringAlgorithmRequest() (request *CreateFilteringAlgorithmRequest)

CreateCreateFilteringAlgorithmRequest creates a request to invoke CreateFilteringAlgorithm API

type CreateFilteringAlgorithmResponse added in v1.61.831

type CreateFilteringAlgorithmResponse struct {
	*responses.BaseResponse
	RequestId string                           `json:"requestId" xml:"requestId"`
	Result    ResultInCreateFilteringAlgorithm `json:"result" xml:"result"`
}

CreateFilteringAlgorithmResponse is the response struct for api CreateFilteringAlgorithm

func CreateCreateFilteringAlgorithmResponse added in v1.61.831

func CreateCreateFilteringAlgorithmResponse() (response *CreateFilteringAlgorithmResponse)

CreateCreateFilteringAlgorithmResponse creates a response to parse from CreateFilteringAlgorithm response

type CreateInstanceRequest

type CreateInstanceRequest struct {
	*requests.RoaRequest
}

CreateInstanceRequest is the request struct for api CreateInstance

func CreateCreateInstanceRequest

func CreateCreateInstanceRequest() (request *CreateInstanceRequest)

CreateCreateInstanceRequest creates a request to invoke CreateInstance API

type CreateInstanceResponse

type CreateInstanceResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	RequestId string `json:"requestId" xml:"requestId"`
	Message   string `json:"message" xml:"message"`
	Result    Result `json:"result" xml:"result"`
}

CreateInstanceResponse is the response struct for api CreateInstance

func CreateCreateInstanceResponse

func CreateCreateInstanceResponse() (response *CreateInstanceResponse)

CreateCreateInstanceResponse creates a response to parse from CreateInstance response

type CreateRankingModelRequest added in v1.61.831

type CreateRankingModelRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	DryRun     requests.Boolean `position:"Query" name:"dryRun"`
}

CreateRankingModelRequest is the request struct for api CreateRankingModel

func CreateCreateRankingModelRequest added in v1.61.831

func CreateCreateRankingModelRequest() (request *CreateRankingModelRequest)

CreateCreateRankingModelRequest creates a request to invoke CreateRankingModel API

type CreateRankingModelResponse added in v1.61.831

type CreateRankingModelResponse struct {
	*responses.BaseResponse
	Code      string                     `json:"code" xml:"code"`
	RequestId string                     `json:"requestId" xml:"requestId"`
	Message   string                     `json:"message" xml:"message"`
	Result    ResultInCreateRankingModel `json:"result" xml:"result"`
}

CreateRankingModelResponse is the response struct for api CreateRankingModel

func CreateCreateRankingModelResponse added in v1.61.831

func CreateCreateRankingModelResponse() (response *CreateRankingModelResponse)

CreateCreateRankingModelResponse creates a response to parse from CreateRankingModel response

type CreateRuleRequest added in v1.61.287

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

CreateRuleRequest is the request struct for api CreateRule

func CreateCreateRuleRequest added in v1.61.287

func CreateCreateRuleRequest() (request *CreateRuleRequest)

CreateCreateRuleRequest creates a request to invoke CreateRule API

type CreateRuleResponse added in v1.61.287

type CreateRuleResponse struct {
	*responses.BaseResponse
	Code      string             `json:"code" xml:"code"`
	RequestId string             `json:"requestId" xml:"requestId"`
	Message   string             `json:"message" xml:"message"`
	Result    ResultInCreateRule `json:"result" xml:"result"`
}

CreateRuleResponse is the response struct for api CreateRule

func CreateCreateRuleResponse added in v1.61.287

func CreateCreateRuleResponse() (response *CreateRuleResponse)

CreateCreateRuleResponse creates a response to parse from CreateRule response

type CreateSceneRequest added in v1.61.287

type CreateSceneRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	DryRun     requests.Boolean `position:"Query" name:"dryRun"`
}

CreateSceneRequest is the request struct for api CreateScene

func CreateCreateSceneRequest added in v1.61.287

func CreateCreateSceneRequest() (request *CreateSceneRequest)

CreateCreateSceneRequest creates a request to invoke CreateScene API

type CreateSceneResponse added in v1.61.287

type CreateSceneResponse struct {
	*responses.BaseResponse
	Code      string              `json:"code" xml:"code"`
	RequestId string              `json:"requestId" xml:"requestId"`
	Message   string              `json:"message" xml:"message"`
	Result    ResultInCreateScene `json:"result" xml:"result"`
}

CreateSceneResponse is the response struct for api CreateScene

func CreateCreateSceneResponse added in v1.61.287

func CreateCreateSceneResponse() (response *CreateSceneResponse)

CreateCreateSceneResponse creates a response to parse from CreateScene response

type DataPoints added in v1.61.251

type DataPoints struct {
	StartTime int64   `json:"startTime" xml:"startTime"`
	Val       float64 `json:"val" xml:"val"`
	EndTime   int64   `json:"endTime" xml:"endTime"`
}

DataPoints is a nested struct in airec response

type DataPointsInDescribeUserMetrics added in v1.61.831

type DataPointsInDescribeUserMetrics struct {
	DataPoints []DataPoints `json:"DataPoints" xml:"DataPoints"`
}

DataPointsInDescribeUserMetrics is a nested struct in airec response

type DecribeRankingModelRequest added in v1.61.831

type DecribeRankingModelRequest struct {
	*requests.RoaRequest
	InstanceId     string `position:"Path" name:"instanceId"`
	RankingModelId string `position:"Path" name:"rankingModelId"`
}

DecribeRankingModelRequest is the request struct for api DecribeRankingModel

func CreateDecribeRankingModelRequest added in v1.61.831

func CreateDecribeRankingModelRequest() (request *DecribeRankingModelRequest)

CreateDecribeRankingModelRequest creates a request to invoke DecribeRankingModel API

type DecribeRankingModelResponse added in v1.61.831

type DecribeRankingModelResponse struct {
	*responses.BaseResponse
	Code      string                      `json:"code" xml:"code"`
	Message   string                      `json:"message" xml:"message"`
	RequestId string                      `json:"requestId" xml:"requestId"`
	Result    ResultInDecribeRankingModel `json:"result" xml:"result"`
}

DecribeRankingModelResponse is the response struct for api DecribeRankingModel

func CreateDecribeRankingModelResponse added in v1.61.831

func CreateDecribeRankingModelResponse() (response *DecribeRankingModelResponse)

CreateDecribeRankingModelResponse creates a response to parse from DecribeRankingModel response

type DeleteDataSetRequest

type DeleteDataSetRequest struct {
	*requests.RoaRequest
	VersionId  string `position:"Path" name:"versionId"`
	InstanceId string `position:"Path" name:"instanceId"`
}

DeleteDataSetRequest is the request struct for api DeleteDataSet

func CreateDeleteDataSetRequest

func CreateDeleteDataSetRequest() (request *DeleteDataSetRequest)

CreateDeleteDataSetRequest creates a request to invoke DeleteDataSet API

type DeleteDataSetResponse

type DeleteDataSetResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DeleteDataSetResponse is the response struct for api DeleteDataSet

func CreateDeleteDataSetResponse

func CreateDeleteDataSetResponse() (response *DeleteDataSetResponse)

CreateDeleteDataSetResponse creates a response to parse from DeleteDataSet response

type DeleteExperimentRequest added in v1.61.831

type DeleteExperimentRequest struct {
	*requests.RoaRequest
	InstanceId   string `position:"Path" name:"instanceId"`
	SceneId      string `position:"Path" name:"sceneId"`
	ExperimentId string `position:"Path" name:"experimentId"`
}

DeleteExperimentRequest is the request struct for api DeleteExperiment

func CreateDeleteExperimentRequest added in v1.61.831

func CreateDeleteExperimentRequest() (request *DeleteExperimentRequest)

CreateDeleteExperimentRequest creates a request to invoke DeleteExperiment API

type DeleteExperimentResponse added in v1.61.831

type DeleteExperimentResponse struct {
	*responses.BaseResponse
	Result    bool   `json:"result" xml:"result"`
	RequestId string `json:"requestId" xml:"requestId"`
}

DeleteExperimentResponse is the response struct for api DeleteExperiment

func CreateDeleteExperimentResponse added in v1.61.831

func CreateDeleteExperimentResponse() (response *DeleteExperimentResponse)

CreateDeleteExperimentResponse creates a response to parse from DeleteExperiment response

type DeleteFilteringAlgorithmRequest added in v1.61.831

type DeleteFilteringAlgorithmRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

DeleteFilteringAlgorithmRequest is the request struct for api DeleteFilteringAlgorithm

func CreateDeleteFilteringAlgorithmRequest added in v1.61.831

func CreateDeleteFilteringAlgorithmRequest() (request *DeleteFilteringAlgorithmRequest)

CreateDeleteFilteringAlgorithmRequest creates a request to invoke DeleteFilteringAlgorithm API

type DeleteFilteringAlgorithmResponse added in v1.61.831

type DeleteFilteringAlgorithmResponse struct {
	*responses.BaseResponse
	RequestId string                           `json:"requestId" xml:"requestId"`
	Result    ResultInDeleteFilteringAlgorithm `json:"result" xml:"result"`
}

DeleteFilteringAlgorithmResponse is the response struct for api DeleteFilteringAlgorithm

func CreateDeleteFilteringAlgorithmResponse added in v1.61.831

func CreateDeleteFilteringAlgorithmResponse() (response *DeleteFilteringAlgorithmResponse)

CreateDeleteFilteringAlgorithmResponse creates a response to parse from DeleteFilteringAlgorithm response

type DeleteRankingModelRequest added in v1.61.831

type DeleteRankingModelRequest struct {
	*requests.RoaRequest
	InstanceId     string `position:"Path" name:"instanceId"`
	RankingModelId string `position:"Path" name:"rankingModelId"`
}

DeleteRankingModelRequest is the request struct for api DeleteRankingModel

func CreateDeleteRankingModelRequest added in v1.61.831

func CreateDeleteRankingModelRequest() (request *DeleteRankingModelRequest)

CreateDeleteRankingModelRequest creates a request to invoke DeleteRankingModel API

type DeleteRankingModelResponse added in v1.61.831

type DeleteRankingModelResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DeleteRankingModelResponse is the response struct for api DeleteRankingModel

func CreateDeleteRankingModelResponse added in v1.61.831

func CreateDeleteRankingModelResponse() (response *DeleteRankingModelResponse)

CreateDeleteRankingModelResponse creates a response to parse from DeleteRankingModel response

type DeleteSceneRequest added in v1.61.287

type DeleteSceneRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DeleteSceneRequest is the request struct for api DeleteScene

func CreateDeleteSceneRequest added in v1.61.287

func CreateDeleteSceneRequest() (request *DeleteSceneRequest)

CreateDeleteSceneRequest creates a request to invoke DeleteScene API

type DeleteSceneResponse added in v1.61.287

type DeleteSceneResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	Result    Result `json:"result" xml:"result"`
}

DeleteSceneResponse is the response struct for api DeleteScene

func CreateDeleteSceneResponse added in v1.61.287

func CreateDeleteSceneResponse() (response *DeleteSceneResponse)

CreateDeleteSceneResponse creates a response to parse from DeleteScene response

type DescribeBaseExperimentRequest added in v1.61.831

type DescribeBaseExperimentRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DescribeBaseExperimentRequest is the request struct for api DescribeBaseExperiment

func CreateDescribeBaseExperimentRequest added in v1.61.831

func CreateDescribeBaseExperimentRequest() (request *DescribeBaseExperimentRequest)

CreateDescribeBaseExperimentRequest creates a request to invoke DescribeBaseExperiment API

type DescribeBaseExperimentResponse added in v1.61.831

type DescribeBaseExperimentResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DescribeBaseExperimentResponse is the response struct for api DescribeBaseExperiment

func CreateDescribeBaseExperimentResponse added in v1.61.831

func CreateDescribeBaseExperimentResponse() (response *DescribeBaseExperimentResponse)

CreateDescribeBaseExperimentResponse creates a response to parse from DescribeBaseExperiment response

type DescribeDataSetMessageRequest

type DescribeDataSetMessageRequest struct {
	*requests.RoaRequest
	VersionId  string `position:"Path" name:"versionId"`
	InstanceId string `position:"Path" name:"instanceId"`
}

DescribeDataSetMessageRequest is the request struct for api DescribeDataSetMessage

func CreateDescribeDataSetMessageRequest

func CreateDescribeDataSetMessageRequest() (request *DescribeDataSetMessageRequest)

CreateDescribeDataSetMessageRequest creates a request to invoke DescribeDataSetMessage API

type DescribeDataSetMessageResponse

type DescribeDataSetMessageResponse struct {
	*responses.BaseResponse
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

DescribeDataSetMessageResponse is the response struct for api DescribeDataSetMessage

func CreateDescribeDataSetMessageResponse

func CreateDescribeDataSetMessageResponse() (response *DescribeDataSetMessageResponse)

CreateDescribeDataSetMessageResponse creates a response to parse from DescribeDataSetMessage response

type DescribeDefaultAlgorithmsRequest added in v1.61.831

type DescribeDefaultAlgorithmsRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DescribeDefaultAlgorithmsRequest is the request struct for api DescribeDefaultAlgorithms

func CreateDescribeDefaultAlgorithmsRequest added in v1.61.831

func CreateDescribeDefaultAlgorithmsRequest() (request *DescribeDefaultAlgorithmsRequest)

CreateDescribeDefaultAlgorithmsRequest creates a request to invoke DescribeDefaultAlgorithms API

type DescribeDefaultAlgorithmsResponse added in v1.61.831

type DescribeDefaultAlgorithmsResponse struct {
	*responses.BaseResponse
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

DescribeDefaultAlgorithmsResponse is the response struct for api DescribeDefaultAlgorithms

func CreateDescribeDefaultAlgorithmsResponse added in v1.61.831

func CreateDescribeDefaultAlgorithmsResponse() (response *DescribeDefaultAlgorithmsResponse)

CreateDescribeDefaultAlgorithmsResponse creates a response to parse from DescribeDefaultAlgorithms response

type DescribeExperimentEnvProgressRequest added in v1.61.831

type DescribeExperimentEnvProgressRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DescribeExperimentEnvProgressRequest is the request struct for api DescribeExperimentEnvProgress

func CreateDescribeExperimentEnvProgressRequest added in v1.61.831

func CreateDescribeExperimentEnvProgressRequest() (request *DescribeExperimentEnvProgressRequest)

CreateDescribeExperimentEnvProgressRequest creates a request to invoke DescribeExperimentEnvProgress API

type DescribeExperimentEnvProgressResponse added in v1.61.831

type DescribeExperimentEnvProgressResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DescribeExperimentEnvProgressResponse is the response struct for api DescribeExperimentEnvProgress

func CreateDescribeExperimentEnvProgressResponse added in v1.61.831

func CreateDescribeExperimentEnvProgressResponse() (response *DescribeExperimentEnvProgressResponse)

CreateDescribeExperimentEnvProgressResponse creates a response to parse from DescribeExperimentEnvProgress response

type DescribeExperimentEnvRequest added in v1.61.831

type DescribeExperimentEnvRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DescribeExperimentEnvRequest is the request struct for api DescribeExperimentEnv

func CreateDescribeExperimentEnvRequest added in v1.61.831

func CreateDescribeExperimentEnvRequest() (request *DescribeExperimentEnvRequest)

CreateDescribeExperimentEnvRequest creates a request to invoke DescribeExperimentEnv API

type DescribeExperimentEnvResponse added in v1.61.831

type DescribeExperimentEnvResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DescribeExperimentEnvResponse is the response struct for api DescribeExperimentEnv

func CreateDescribeExperimentEnvResponse added in v1.61.831

func CreateDescribeExperimentEnvResponse() (response *DescribeExperimentEnvResponse)

CreateDescribeExperimentEnvResponse creates a response to parse from DescribeExperimentEnv response

type DescribeExperimentRequest added in v1.61.831

type DescribeExperimentRequest struct {
	*requests.RoaRequest
	InstanceId   string `position:"Path" name:"instanceId"`
	SceneId      string `position:"Path" name:"sceneId"`
	ExperimentId string `position:"Path" name:"experimentId"`
}

DescribeExperimentRequest is the request struct for api DescribeExperiment

func CreateDescribeExperimentRequest added in v1.61.831

func CreateDescribeExperimentRequest() (request *DescribeExperimentRequest)

CreateDescribeExperimentRequest creates a request to invoke DescribeExperiment API

type DescribeExperimentResponse added in v1.61.831

type DescribeExperimentResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DescribeExperimentResponse is the response struct for api DescribeExperiment

func CreateDescribeExperimentResponse added in v1.61.831

func CreateDescribeExperimentResponse() (response *DescribeExperimentResponse)

CreateDescribeExperimentResponse creates a response to parse from DescribeExperiment response

type DescribeFilteringAlgorithmRequest added in v1.61.831

type DescribeFilteringAlgorithmRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

DescribeFilteringAlgorithmRequest is the request struct for api DescribeFilteringAlgorithm

func CreateDescribeFilteringAlgorithmRequest added in v1.61.831

func CreateDescribeFilteringAlgorithmRequest() (request *DescribeFilteringAlgorithmRequest)

CreateDescribeFilteringAlgorithmRequest creates a request to invoke DescribeFilteringAlgorithm API

type DescribeFilteringAlgorithmResponse added in v1.61.831

type DescribeFilteringAlgorithmResponse struct {
	*responses.BaseResponse
	RequestId string                             `json:"requestId" xml:"requestId"`
	Result    ResultInDescribeFilteringAlgorithm `json:"result" xml:"result"`
}

DescribeFilteringAlgorithmResponse is the response struct for api DescribeFilteringAlgorithm

func CreateDescribeFilteringAlgorithmResponse added in v1.61.831

func CreateDescribeFilteringAlgorithmResponse() (response *DescribeFilteringAlgorithmResponse)

CreateDescribeFilteringAlgorithmResponse creates a response to parse from DescribeFilteringAlgorithm response

type DescribeInstanceRequest

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

DescribeInstanceRequest is the request struct for api DescribeInstance

func CreateDescribeInstanceRequest

func CreateDescribeInstanceRequest() (request *DescribeInstanceRequest)

CreateDescribeInstanceRequest creates a request to invoke DescribeInstance API

type DescribeInstanceResponse

type DescribeInstanceResponse struct {
	*responses.BaseResponse
	Code      string                   `json:"code" xml:"code"`
	Message   string                   `json:"message" xml:"message"`
	RequestId string                   `json:"requestId" xml:"requestId"`
	Result    ResultInDescribeInstance `json:"result" xml:"result"`
}

DescribeInstanceResponse is the response struct for api DescribeInstance

func CreateDescribeInstanceResponse

func CreateDescribeInstanceResponse() (response *DescribeInstanceResponse)

CreateDescribeInstanceResponse creates a response to parse from DescribeInstance response

type DescribeLatestTaskRequest added in v1.61.831

type DescribeLatestTaskRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

DescribeLatestTaskRequest is the request struct for api DescribeLatestTask

func CreateDescribeLatestTaskRequest added in v1.61.831

func CreateDescribeLatestTaskRequest() (request *DescribeLatestTaskRequest)

CreateDescribeLatestTaskRequest creates a request to invoke DescribeLatestTask API

type DescribeLatestTaskResponse added in v1.61.831

type DescribeLatestTaskResponse struct {
	*responses.BaseResponse
	RequestId string         `json:"requestId" xml:"requestId"`
	Result    []IndexVersion `json:"result" xml:"result"`
}

DescribeLatestTaskResponse is the response struct for api DescribeLatestTask

func CreateDescribeLatestTaskResponse added in v1.61.831

func CreateDescribeLatestTaskResponse() (response *DescribeLatestTaskResponse)

CreateDescribeLatestTaskResponse creates a response to parse from DescribeLatestTask response

type DescribeQuotaRequest

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

DescribeQuotaRequest is the request struct for api DescribeQuota

func CreateDescribeQuotaRequest

func CreateDescribeQuotaRequest() (request *DescribeQuotaRequest)

CreateDescribeQuotaRequest creates a request to invoke DescribeQuota API

type DescribeQuotaResponse

type DescribeQuotaResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DescribeQuotaResponse is the response struct for api DescribeQuota

func CreateDescribeQuotaResponse

func CreateDescribeQuotaResponse() (response *DescribeQuotaResponse)

CreateDescribeQuotaResponse creates a response to parse from DescribeQuota response

type DescribeRegionsRequest added in v1.61.251

type DescribeRegionsRequest struct {
	*requests.RoaRequest
	AcceptLanguage string `position:"Query" name:"acceptLanguage"`
}

DescribeRegionsRequest is the request struct for api DescribeRegions

func CreateDescribeRegionsRequest added in v1.61.251

func CreateDescribeRegionsRequest() (request *DescribeRegionsRequest)

CreateDescribeRegionsRequest creates a request to invoke DescribeRegions API

type DescribeRegionsResponse added in v1.61.251

type DescribeRegionsResponse struct {
	*responses.BaseResponse
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

DescribeRegionsResponse is the response struct for api DescribeRegions

func CreateDescribeRegionsResponse added in v1.61.251

func CreateDescribeRegionsResponse() (response *DescribeRegionsResponse)

CreateDescribeRegionsResponse creates a response to parse from DescribeRegions response

type DescribeRuleRequest added in v1.61.287

type DescribeRuleRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	RuleType   string `position:"Query" name:"ruleType"`
	SceneId    string `position:"Query" name:"sceneId"`
	RuleId     string `position:"Path" name:"ruleId"`
}

DescribeRuleRequest is the request struct for api DescribeRule

func CreateDescribeRuleRequest added in v1.61.287

func CreateDescribeRuleRequest() (request *DescribeRuleRequest)

CreateDescribeRuleRequest creates a request to invoke DescribeRule API

type DescribeRuleResponse added in v1.61.287

type DescribeRuleResponse struct {
	*responses.BaseResponse
	RequestId string               `json:"requestId" xml:"requestId"`
	Code      string               `json:"code" xml:"code"`
	Message   string               `json:"message" xml:"message"`
	Result    ResultInDescribeRule `json:"result" xml:"result"`
}

DescribeRuleResponse is the response struct for api DescribeRule

func CreateDescribeRuleResponse added in v1.61.287

func CreateDescribeRuleResponse() (response *DescribeRuleResponse)

CreateDescribeRuleResponse creates a response to parse from DescribeRule response

type DescribeSceneBucketRequest added in v1.61.831

type DescribeSceneBucketRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DescribeSceneBucketRequest is the request struct for api DescribeSceneBucket

func CreateDescribeSceneBucketRequest added in v1.61.831

func CreateDescribeSceneBucketRequest() (request *DescribeSceneBucketRequest)

CreateDescribeSceneBucketRequest creates a request to invoke DescribeSceneBucket API

type DescribeSceneBucketResponse added in v1.61.831

type DescribeSceneBucketResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DescribeSceneBucketResponse is the response struct for api DescribeSceneBucket

func CreateDescribeSceneBucketResponse added in v1.61.831

func CreateDescribeSceneBucketResponse() (response *DescribeSceneBucketResponse)

CreateDescribeSceneBucketResponse creates a response to parse from DescribeSceneBucket response

type DescribeSceneRequest added in v1.61.287

type DescribeSceneRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DescribeSceneRequest is the request struct for api DescribeScene

func CreateDescribeSceneRequest added in v1.61.287

func CreateDescribeSceneRequest() (request *DescribeSceneRequest)

CreateDescribeSceneRequest creates a request to invoke DescribeScene API

type DescribeSceneResponse added in v1.61.287

type DescribeSceneResponse struct {
	*responses.BaseResponse
	RequestId string                `json:"requestId" xml:"requestId"`
	Code      string                `json:"code" xml:"code"`
	Message   string                `json:"message" xml:"message"`
	Result    ResultInDescribeScene `json:"result" xml:"result"`
}

DescribeSceneResponse is the response struct for api DescribeScene

func CreateDescribeSceneResponse added in v1.61.287

func CreateDescribeSceneResponse() (response *DescribeSceneResponse)

CreateDescribeSceneResponse creates a response to parse from DescribeScene response

type DescribeSceneThroughputRequest added in v1.61.287

type DescribeSceneThroughputRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

DescribeSceneThroughputRequest is the request struct for api DescribeSceneThroughput

func CreateDescribeSceneThroughputRequest added in v1.61.287

func CreateDescribeSceneThroughputRequest() (request *DescribeSceneThroughputRequest)

CreateDescribeSceneThroughputRequest creates a request to invoke DescribeSceneThroughput API

type DescribeSceneThroughputResponse added in v1.61.287

type DescribeSceneThroughputResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	Result    Result `json:"result" xml:"result"`
}

DescribeSceneThroughputResponse is the response struct for api DescribeSceneThroughput

func CreateDescribeSceneThroughputResponse added in v1.61.287

func CreateDescribeSceneThroughputResponse() (response *DescribeSceneThroughputResponse)

CreateDescribeSceneThroughputResponse creates a response to parse from DescribeSceneThroughput response

type DescribeSyncReportDetailRequest added in v1.61.251

type DescribeSyncReportDetailRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	LevelType  string           `position:"Query" name:"levelType"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
	Type       string           `position:"Query" name:"type"`
}

DescribeSyncReportDetailRequest is the request struct for api DescribeSyncReportDetail

func CreateDescribeSyncReportDetailRequest added in v1.61.251

func CreateDescribeSyncReportDetailRequest() (request *DescribeSyncReportDetailRequest)

CreateDescribeSyncReportDetailRequest creates a request to invoke DescribeSyncReportDetail API

type DescribeSyncReportDetailResponse added in v1.61.251

type DescribeSyncReportDetailResponse struct {
	*responses.BaseResponse
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

DescribeSyncReportDetailResponse is the response struct for api DescribeSyncReportDetail

func CreateDescribeSyncReportDetailResponse added in v1.61.251

func CreateDescribeSyncReportDetailResponse() (response *DescribeSyncReportDetailResponse)

CreateDescribeSyncReportDetailResponse creates a response to parse from DescribeSyncReportDetail response

type DescribeSyncReportOutliersRequest added in v1.61.251

type DescribeSyncReportOutliersRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	LevelType  string           `position:"Query" name:"levelType"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
	Type       string           `position:"Query" name:"type"`
	Key        string           `position:"Query" name:"key"`
}

DescribeSyncReportOutliersRequest is the request struct for api DescribeSyncReportOutliers

func CreateDescribeSyncReportOutliersRequest added in v1.61.251

func CreateDescribeSyncReportOutliersRequest() (request *DescribeSyncReportOutliersRequest)

CreateDescribeSyncReportOutliersRequest creates a request to invoke DescribeSyncReportOutliers API

type DescribeSyncReportOutliersResponse added in v1.61.251

type DescribeSyncReportOutliersResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

DescribeSyncReportOutliersResponse is the response struct for api DescribeSyncReportOutliers

func CreateDescribeSyncReportOutliersResponse added in v1.61.251

func CreateDescribeSyncReportOutliersResponse() (response *DescribeSyncReportOutliersResponse)

CreateDescribeSyncReportOutliersResponse creates a response to parse from DescribeSyncReportOutliers response

type DescribeUserMetricsRequest added in v1.61.251

type DescribeUserMetricsRequest struct {
	*requests.RoaRequest
	MetricType string           `position:"Query" name:"metricType"`
	InstanceId string           `position:"Path" name:"instanceId"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
}

DescribeUserMetricsRequest is the request struct for api DescribeUserMetrics

func CreateDescribeUserMetricsRequest added in v1.61.251

func CreateDescribeUserMetricsRequest() (request *DescribeUserMetricsRequest)

CreateDescribeUserMetricsRequest creates a request to invoke DescribeUserMetrics API

type DescribeUserMetricsResponse added in v1.61.251

type DescribeUserMetricsResponse struct {
	*responses.BaseResponse
	Code      string   `json:"code" xml:"code"`
	Message   string   `json:"message" xml:"message"`
	RequestId string   `json:"requestId" xml:"requestId"`
	Result    []Result `json:"result" xml:"result"`
}

DescribeUserMetricsResponse is the response struct for api DescribeUserMetrics

func CreateDescribeUserMetricsResponse added in v1.61.251

func CreateDescribeUserMetricsResponse() (response *DescribeUserMetricsResponse)

CreateDescribeUserMetricsResponse creates a response to parse from DescribeUserMetrics response

type Detail

type Detail struct {
	Author       string `json:"author" xml:"author"`
	Title        string `json:"title" xml:"title"`
	Duration     string `json:"duration" xml:"duration"`
	ItemId       string `json:"itemId" xml:"itemId"`
	PubTime      string `json:"pubTime" xml:"pubTime"`
	Channel      string `json:"channel" xml:"channel"`
	ItemType     string `json:"itemType" xml:"itemType"`
	BrandId      string `json:"brandId" xml:"brandId"`
	CategoryPath string `json:"categoryPath" xml:"categoryPath"`
	Status       string `json:"status" xml:"status"`
	ShopId       string `json:"shopId" xml:"shopId"`
	ExpireTime   string `json:"expireTime" xml:"expireTime"`
}

Detail is a nested struct in airec response

type DetailInListDashboardMetrics added in v1.61.287

type DetailInListDashboardMetrics struct {
	DetailItem []DetailItem `json:"detail" xml:"detail"`
}

DetailInListDashboardMetrics is a nested struct in airec response

type DetailInListItems added in v1.61.831

type DetailInListItems struct {
	DetailItem []DetailItem `json:"detail" xml:"detail"`
}

DetailInListItems is a nested struct in airec response

type DetailInListSceneItems added in v1.61.287

type DetailInListSceneItems struct {
	Detail []Detail `json:"Detail" xml:"Detail"`
}

DetailInListSceneItems is a nested struct in airec response

type DetailItem

type DetailItem struct {
	Val          string `json:"val" xml:"val"`
	Duration     string `json:"duration" xml:"duration"`
	Channel      string `json:"channel" xml:"channel"`
	EndTime      string `json:"endTime" xml:"endTime"`
	Status       string `json:"status" xml:"status"`
	ExpireTime   string `json:"expireTime" xml:"expireTime"`
	Author       string `json:"author" xml:"author"`
	Title        string `json:"title" xml:"title"`
	StartTime    string `json:"startTime" xml:"startTime"`
	ItemId       string `json:"itemId" xml:"itemId"`
	PubTime      string `json:"pubTime" xml:"pubTime"`
	ItemType     string `json:"itemType" xml:"itemType"`
	BrandId      string `json:"brandId" xml:"brandId"`
	CategoryPath string `json:"categoryPath" xml:"categoryPath"`
	ShopId       string `json:"shopId" xml:"shopId"`
}

DetailItem is a nested struct in airec response

type DowngradeInstanceRequest added in v1.61.251

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

DowngradeInstanceRequest is the request struct for api DowngradeInstance

func CreateDowngradeInstanceRequest added in v1.61.251

func CreateDowngradeInstanceRequest() (request *DowngradeInstanceRequest)

CreateDowngradeInstanceRequest creates a request to invoke DowngradeInstance API

type DowngradeInstanceResponse added in v1.61.251

type DowngradeInstanceResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

DowngradeInstanceResponse is the response struct for api DowngradeInstance

func CreateDowngradeInstanceResponse added in v1.61.251

func CreateDowngradeInstanceResponse() (response *DowngradeInstanceResponse)

CreateDowngradeInstanceResponse creates a response to parse from DowngradeInstance response

type EnableExperimentRequest added in v1.61.831

type EnableExperimentRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

EnableExperimentRequest is the request struct for api EnableExperiment

func CreateEnableExperimentRequest added in v1.61.831

func CreateEnableExperimentRequest() (request *EnableExperimentRequest)

CreateEnableExperimentRequest creates a request to invoke EnableExperiment API

type EnableExperimentResponse added in v1.61.831

type EnableExperimentResponse struct {
	*responses.BaseResponse
	Result    bool   `json:"result" xml:"result"`
	RequestId string `json:"requestId" xml:"requestId"`
}

EnableExperimentResponse is the response struct for api EnableExperiment

func CreateEnableExperimentResponse added in v1.61.831

func CreateEnableExperimentResponse() (response *EnableExperimentResponse)

CreateEnableExperimentResponse creates a response to parse from EnableExperiment response

type ExtInfo added in v1.61.831

type ExtInfo struct {
	ItemSeparator string `json:"itemSeparator" xml:"itemSeparator"`
	KvSeparator   string `json:"kvSeparator" xml:"kvSeparator"`
}

ExtInfo is a nested struct in airec response

type FilteringAlgorithm added in v1.61.831

type FilteringAlgorithm struct {
	Status      string                        `json:"status" xml:"status"`
	GmtCreate   string                        `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string                        `json:"gmtModified" xml:"gmtModified"`
	AlgorithmId string                        `json:"algorithmId" xml:"algorithmId"`
	Meta        MetaInListFilteringAlgorithms `json:"meta" xml:"meta"`
}

FilteringAlgorithm is a nested struct in airec response

type Headers added in v1.61.831

type Headers struct {
	XTotalCount int `json:"X-Total-Count" xml:"X-Total-Count"`
}

Headers is a nested struct in airec response

type HistoryData added in v1.61.251

type HistoryData struct {
	StartTime    int64   `json:"startTime" xml:"startTime"`
	ErrorPercent float64 `json:"errorPercent" xml:"errorPercent"`
	EndTime      int64   `json:"endTime" xml:"endTime"`
}

HistoryData is a nested struct in airec response

type HistoryDataInDescribeSyncReportDetail added in v1.61.1014

type HistoryDataInDescribeSyncReportDetail struct {
	HistoryData []HistoryData `json:"HistoryData" xml:"HistoryData"`
}

HistoryDataInDescribeSyncReportDetail is a nested struct in airec response

type IndeVersion added in v1.61.831

type IndeVersion struct {
	VersionId       string `json:"versionId" xml:"versionId"`
	Status          string `json:"status" xml:"status"`
	BuiltTime       string `json:"builtTime" xml:"builtTime"`
	SwitchedTime    string `json:"switchedTime" xml:"switchedTime"`
	RollbackEnabled bool   `json:"rollbackEnabled" xml:"rollbackEnabled"`
	CostSeconds     int    `json:"costSeconds" xml:"costSeconds"`
	Size            int64  `json:"size" xml:"size"`
	Progress        int    `json:"progress" xml:"progress"`
	FlowType        string `json:"flowType" xml:"flowType"`
	Code            string `json:"code" xml:"code"`
	Message         string `json:"message" xml:"message"`
}

IndeVersion is a nested struct in airec response

type IndexVersion added in v1.61.831

type IndexVersion struct {
	VersionId       string `json:"versionId" xml:"versionId"`
	Status          string `json:"status" xml:"status"`
	BuiltTime       string `json:"builtTime" xml:"builtTime"`
	SwitchedTime    string `json:"switchedTime" xml:"switchedTime"`
	RollbackEnabled bool   `json:"rollbackEnabled" xml:"rollbackEnabled"`
	CostSeconds     int    `json:"costSeconds" xml:"costSeconds"`
	Size            int64  `json:"size" xml:"size"`
	Progress        int    `json:"progress" xml:"progress"`
	FlowType        string `json:"flowType" xml:"flowType"`
	Code            string `json:"code" xml:"code"`
	Message         string `json:"message" xml:"message"`
}

IndexVersion is a nested struct in airec response

type ListDashboardDetailsFlowsRequest added in v1.61.287

type ListDashboardDetailsFlowsRequest struct {
	*requests.RoaRequest
	MetricType    string           `position:"Query" name:"metricType"`
	InstanceId    string           `position:"Path" name:"instanceId"`
	ExperimentIds string           `position:"Query" name:"experimentIds"`
	TraceIds      string           `position:"Query" name:"traceIds"`
	EndTime       requests.Integer `position:"Query" name:"endTime"`
	StartTime     requests.Integer `position:"Query" name:"startTime"`
	SceneIds      string           `position:"Query" name:"sceneIds"`
}

ListDashboardDetailsFlowsRequest is the request struct for api ListDashboardDetailsFlows

func CreateListDashboardDetailsFlowsRequest added in v1.61.287

func CreateListDashboardDetailsFlowsRequest() (request *ListDashboardDetailsFlowsRequest)

CreateListDashboardDetailsFlowsRequest creates a request to invoke ListDashboardDetailsFlows API

type ListDashboardDetailsFlowsResponse added in v1.61.287

type ListDashboardDetailsFlowsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	Result    Result `json:"result" xml:"result"`
}

ListDashboardDetailsFlowsResponse is the response struct for api ListDashboardDetailsFlows

func CreateListDashboardDetailsFlowsResponse added in v1.61.287

func CreateListDashboardDetailsFlowsResponse() (response *ListDashboardDetailsFlowsResponse)

CreateListDashboardDetailsFlowsResponse creates a response to parse from ListDashboardDetailsFlows response

type ListDashboardDetailsRequest added in v1.61.287

type ListDashboardDetailsRequest struct {
	*requests.RoaRequest
	MetricType    string           `position:"Query" name:"metricType"`
	InstanceId    string           `position:"Path" name:"instanceId"`
	ExperimentIds string           `position:"Query" name:"experimentIds"`
	TraceIds      string           `position:"Query" name:"traceIds"`
	EndTime       requests.Integer `position:"Query" name:"endTime"`
	StartTime     requests.Integer `position:"Query" name:"startTime"`
	SceneIds      string           `position:"Query" name:"sceneIds"`
}

ListDashboardDetailsRequest is the request struct for api ListDashboardDetails

func CreateListDashboardDetailsRequest added in v1.61.287

func CreateListDashboardDetailsRequest() (request *ListDashboardDetailsRequest)

CreateListDashboardDetailsRequest creates a request to invoke ListDashboardDetails API

type ListDashboardDetailsResponse added in v1.61.287

type ListDashboardDetailsResponse struct {
	*responses.BaseResponse
	RequestId string       `json:"requestId" xml:"requestId"`
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListDashboardDetailsResponse is the response struct for api ListDashboardDetails

func CreateListDashboardDetailsResponse added in v1.61.287

func CreateListDashboardDetailsResponse() (response *ListDashboardDetailsResponse)

CreateListDashboardDetailsResponse creates a response to parse from ListDashboardDetails response

type ListDashboardMetricsFlowsRequest added in v1.61.287

type ListDashboardMetricsFlowsRequest struct {
	*requests.RoaRequest
	MetricType string           `position:"Query" name:"metricType"`
	InstanceId string           `position:"Path" name:"instanceId"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
}

ListDashboardMetricsFlowsRequest is the request struct for api ListDashboardMetricsFlows

func CreateListDashboardMetricsFlowsRequest added in v1.61.287

func CreateListDashboardMetricsFlowsRequest() (request *ListDashboardMetricsFlowsRequest)

CreateListDashboardMetricsFlowsRequest creates a request to invoke ListDashboardMetricsFlows API

type ListDashboardMetricsFlowsResponse added in v1.61.287

type ListDashboardMetricsFlowsResponse struct {
	*responses.BaseResponse
	RequestId string       `json:"requestId" xml:"requestId"`
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListDashboardMetricsFlowsResponse is the response struct for api ListDashboardMetricsFlows

func CreateListDashboardMetricsFlowsResponse added in v1.61.287

func CreateListDashboardMetricsFlowsResponse() (response *ListDashboardMetricsFlowsResponse)

CreateListDashboardMetricsFlowsResponse creates a response to parse from ListDashboardMetricsFlows response

type ListDashboardMetricsRequest added in v1.61.287

type ListDashboardMetricsRequest struct {
	*requests.RoaRequest
	MetricType string           `position:"Query" name:"metricType"`
	InstanceId string           `position:"Path" name:"instanceId"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
}

ListDashboardMetricsRequest is the request struct for api ListDashboardMetrics

func CreateListDashboardMetricsRequest added in v1.61.287

func CreateListDashboardMetricsRequest() (request *ListDashboardMetricsRequest)

CreateListDashboardMetricsRequest creates a request to invoke ListDashboardMetrics API

type ListDashboardMetricsResponse added in v1.61.287

type ListDashboardMetricsResponse struct {
	*responses.BaseResponse
	RequestId string       `json:"requestId" xml:"requestId"`
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListDashboardMetricsResponse is the response struct for api ListDashboardMetrics

func CreateListDashboardMetricsResponse added in v1.61.287

func CreateListDashboardMetricsResponse() (response *ListDashboardMetricsResponse)

CreateListDashboardMetricsResponse creates a response to parse from ListDashboardMetrics response

type ListDataSetRequest

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

ListDataSetRequest is the request struct for api ListDataSet

func CreateListDataSetRequest

func CreateListDataSetRequest() (request *ListDataSetRequest)

CreateListDataSetRequest creates a request to invoke ListDataSet API

type ListDataSetResponse

type ListDataSetResponse struct {
	*responses.BaseResponse
	Code      string   `json:"code" xml:"code"`
	Message   string   `json:"message" xml:"message"`
	RequestId string   `json:"requestId" xml:"requestId"`
	Result    []Result `json:"result" xml:"result"`
}

ListDataSetResponse is the response struct for api ListDataSet

func CreateListDataSetResponse

func CreateListDataSetResponse() (response *ListDataSetResponse)

CreateListDataSetResponse creates a response to parse from ListDataSet response

type ListDataSourceRequest

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

ListDataSourceRequest is the request struct for api ListDataSource

func CreateListDataSourceRequest

func CreateListDataSourceRequest() (request *ListDataSourceRequest)

CreateListDataSourceRequest creates a request to invoke ListDataSource API

type ListDataSourceResponse

type ListDataSourceResponse struct {
	*responses.BaseResponse
	Code      string                   `json:"code" xml:"code"`
	Message   string                   `json:"message" xml:"message"`
	RequestId string                   `json:"requestId" xml:"requestId"`
	Result    []ResultInListDataSource `json:"result" xml:"result"`
}

ListDataSourceResponse is the response struct for api ListDataSource

func CreateListDataSourceResponse

func CreateListDataSourceResponse() (response *ListDataSourceResponse)

CreateListDataSourceResponse creates a response to parse from ListDataSource response

type ListExperimentsRequest added in v1.61.831

type ListExperimentsRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

ListExperimentsRequest is the request struct for api ListExperiments

func CreateListExperimentsRequest added in v1.61.831

func CreateListExperimentsRequest() (request *ListExperimentsRequest)

CreateListExperimentsRequest creates a request to invoke ListExperiments API

type ListExperimentsResponse added in v1.61.831

type ListExperimentsResponse struct {
	*responses.BaseResponse
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListExperimentsResponse is the response struct for api ListExperiments

func CreateListExperimentsResponse added in v1.61.831

func CreateListExperimentsResponse() (response *ListExperimentsResponse)

CreateListExperimentsResponse creates a response to parse from ListExperiments response

type ListFilteringAlgorithmsRequest added in v1.61.831

type ListFilteringAlgorithmsRequest struct {
	*requests.RoaRequest
	InstanceId  string           `position:"Path" name:"instanceId"`
	Size        requests.Integer `position:"Query" name:"size"`
	Page        requests.Integer `position:"Query" name:"page"`
	Status      string           `position:"Query" name:"status"`
	AlgorithmId string           `position:"Query" name:"algorithmId"`
}

ListFilteringAlgorithmsRequest is the request struct for api ListFilteringAlgorithms

func CreateListFilteringAlgorithmsRequest added in v1.61.831

func CreateListFilteringAlgorithmsRequest() (request *ListFilteringAlgorithmsRequest)

CreateListFilteringAlgorithmsRequest creates a request to invoke ListFilteringAlgorithms API

type ListFilteringAlgorithmsResponse added in v1.61.831

type ListFilteringAlgorithmsResponse struct {
	*responses.BaseResponse
	RequestId string               `json:"requestId" xml:"requestId"`
	Headers   Headers              `json:"headers" xml:"headers"`
	Result    []FilteringAlgorithm `json:"result" xml:"result"`
}

ListFilteringAlgorithmsResponse is the response struct for api ListFilteringAlgorithms

func CreateListFilteringAlgorithmsResponse added in v1.61.831

func CreateListFilteringAlgorithmsResponse() (response *ListFilteringAlgorithmsResponse)

CreateListFilteringAlgorithmsResponse creates a response to parse from ListFilteringAlgorithms response

type ListIndexVersionsRequest added in v1.61.831

type ListIndexVersionsRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

ListIndexVersionsRequest is the request struct for api ListIndexVersions

func CreateListIndexVersionsRequest added in v1.61.831

func CreateListIndexVersionsRequest() (request *ListIndexVersionsRequest)

CreateListIndexVersionsRequest creates a request to invoke ListIndexVersions API

type ListIndexVersionsResponse added in v1.61.831

type ListIndexVersionsResponse struct {
	*responses.BaseResponse
	RequestId string        `json:"requestId" xml:"requestId"`
	Result    []IndeVersion `json:"result" xml:"result"`
}

ListIndexVersionsResponse is the response struct for api ListIndexVersions

func CreateListIndexVersionsResponse added in v1.61.831

func CreateListIndexVersionsResponse() (response *ListIndexVersionsResponse)

CreateListIndexVersionsResponse creates a response to parse from ListIndexVersions response

type ListInstanceRequest

type ListInstanceRequest struct {
	*requests.RoaRequest
	InstanceId  string           `position:"Query" name:"instanceId"`
	Size        requests.Integer `position:"Query" name:"size"`
	Name        string           `position:"Query" name:"name"`
	ExpiredTime string           `position:"Query" name:"expiredTime"`
	Page        requests.Integer `position:"Query" name:"page"`
	Status      string           `position:"Query" name:"status"`
}

ListInstanceRequest is the request struct for api ListInstance

func CreateListInstanceRequest

func CreateListInstanceRequest() (request *ListInstanceRequest)

CreateListInstanceRequest creates a request to invoke ListInstance API

type ListInstanceResponse

type ListInstanceResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    []ResultInListInstance `json:"result" xml:"result"`
}

ListInstanceResponse is the response struct for api ListInstance

func CreateListInstanceResponse

func CreateListInstanceResponse() (response *ListInstanceResponse)

CreateListInstanceResponse creates a response to parse from ListInstance response

type ListInstanceTaskRequest

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

ListInstanceTaskRequest is the request struct for api ListInstanceTask

func CreateListInstanceTaskRequest

func CreateListInstanceTaskRequest() (request *ListInstanceTaskRequest)

CreateListInstanceTaskRequest creates a request to invoke ListInstanceTask API

type ListInstanceTaskResponse

type ListInstanceTaskResponse struct {
	*responses.BaseResponse
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListInstanceTaskResponse is the response struct for api ListInstanceTask

func CreateListInstanceTaskResponse

func CreateListInstanceTaskResponse() (response *ListInstanceTaskResponse)

CreateListInstanceTaskResponse creates a response to parse from ListInstanceTask response

type ListItemsRequest added in v1.61.831

type ListItemsRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	Size       requests.Integer `position:"Query" name:"size"`
	Page       requests.Integer `position:"Query" name:"page"`
}

ListItemsRequest is the request struct for api ListItems

func CreateListItemsRequest added in v1.61.831

func CreateListItemsRequest() (request *ListItemsRequest)

CreateListItemsRequest creates a request to invoke ListItems API

type ListItemsResponse added in v1.61.831

type ListItemsResponse struct {
	*responses.BaseResponse
	RequestId string            `json:"requestId" xml:"requestId"`
	Result    ResultInListItems `json:"result" xml:"result"`
}

ListItemsResponse is the response struct for api ListItems

func CreateListItemsResponse added in v1.61.831

func CreateListItemsResponse() (response *ListItemsResponse)

CreateListItemsResponse creates a response to parse from ListItems response

type ListLogsRequest added in v1.61.1014

type ListLogsRequest struct {
	*requests.RoaRequest
	InstanceId  string           `position:"Path" name:"instanceId"`
	Size        requests.Integer `position:"Query" name:"size"`
	QueryParams string           `position:"Query" name:"queryParams"`
	EndTime     requests.Integer `position:"Query" name:"endTime"`
	StartTime   requests.Integer `position:"Query" name:"startTime"`
	Page        requests.Integer `position:"Query" name:"page"`
}

ListLogsRequest is the request struct for api ListLogs

func CreateListLogsRequest added in v1.61.1014

func CreateListLogsRequest() (request *ListLogsRequest)

CreateListLogsRequest creates a request to invoke ListLogs API

type ListLogsResponse added in v1.61.1014

type ListLogsResponse struct {
	*responses.BaseResponse
	RequestId string                   `json:"requestId" xml:"requestId"`
	Code      string                   `json:"code" xml:"code"`
	Message   string                   `json:"message" xml:"message"`
	Result    []map[string]interface{} `json:"result" xml:"result"`
	Headers   Headers                  `json:"headers" xml:"headers"`
}

ListLogsResponse is the response struct for api ListLogs

func CreateListLogsResponse added in v1.61.1014

func CreateListLogsResponse() (response *ListLogsResponse)

CreateListLogsResponse creates a response to parse from ListLogs response

type ListMixCategoriesRequest added in v1.61.1014

type ListMixCategoriesRequest struct {
	*requests.RoaRequest
}

ListMixCategoriesRequest is the request struct for api ListMixCategories

func CreateListMixCategoriesRequest added in v1.61.1014

func CreateListMixCategoriesRequest() (request *ListMixCategoriesRequest)

CreateListMixCategoriesRequest creates a request to invoke ListMixCategories API

type ListMixCategoriesResponse added in v1.61.1014

type ListMixCategoriesResponse struct {
	*responses.BaseResponse
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListMixCategoriesResponse is the response struct for api ListMixCategories

func CreateListMixCategoriesResponse added in v1.61.1014

func CreateListMixCategoriesResponse() (response *ListMixCategoriesResponse)

CreateListMixCategoriesResponse creates a response to parse from ListMixCategories response

type ListRankingModelsRequest added in v1.61.831

type ListRankingModelsRequest struct {
	*requests.RoaRequest
	InstanceId     string           `position:"Path" name:"instanceId"`
	Size           requests.Integer `position:"Query" name:"size"`
	RankingModelId string           `position:"Query" name:"rankingModelId"`
	Page           requests.Integer `position:"Query" name:"page"`
}

ListRankingModelsRequest is the request struct for api ListRankingModels

func CreateListRankingModelsRequest added in v1.61.831

func CreateListRankingModelsRequest() (request *ListRankingModelsRequest)

CreateListRankingModelsRequest creates a request to invoke ListRankingModels API

type ListRankingModelsResponse added in v1.61.831

type ListRankingModelsResponse struct {
	*responses.BaseResponse
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListRankingModelsResponse is the response struct for api ListRankingModels

func CreateListRankingModelsResponse added in v1.61.831

func CreateListRankingModelsResponse() (response *ListRankingModelsResponse)

CreateListRankingModelsResponse creates a response to parse from ListRankingModels response

type ListRuleConditionsRequest added in v1.61.287

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

ListRuleConditionsRequest is the request struct for api ListRuleConditions

func CreateListRuleConditionsRequest added in v1.61.287

func CreateListRuleConditionsRequest() (request *ListRuleConditionsRequest)

CreateListRuleConditionsRequest creates a request to invoke ListRuleConditions API

type ListRuleConditionsResponse added in v1.61.287

type ListRuleConditionsResponse struct {
	*responses.BaseResponse
	RequestId string       `json:"requestId" xml:"requestId"`
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	Result    []ResultItem `json:"result" xml:"result"`
}

ListRuleConditionsResponse is the response struct for api ListRuleConditions

func CreateListRuleConditionsResponse added in v1.61.287

func CreateListRuleConditionsResponse() (response *ListRuleConditionsResponse)

CreateListRuleConditionsResponse creates a response to parse from ListRuleConditions response

type ListRuleTasksRequest added in v1.61.287

type ListRuleTasksRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Query" name:"sceneId"`
}

ListRuleTasksRequest is the request struct for api ListRuleTasks

func CreateListRuleTasksRequest added in v1.61.287

func CreateListRuleTasksRequest() (request *ListRuleTasksRequest)

CreateListRuleTasksRequest creates a request to invoke ListRuleTasks API

type ListRuleTasksResponse added in v1.61.287

type ListRuleTasksResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	Result    Result `json:"result" xml:"result"`
}

ListRuleTasksResponse is the response struct for api ListRuleTasks

func CreateListRuleTasksResponse added in v1.61.287

func CreateListRuleTasksResponse() (response *ListRuleTasksResponse)

CreateListRuleTasksResponse creates a response to parse from ListRuleTasks response

type ListRulesRequest added in v1.61.287

type ListRulesRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	Size       requests.Integer `position:"Query" name:"size"`
	RuleType   string           `position:"Query" name:"ruleType"`
	SceneId    string           `position:"Query" name:"sceneId"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	Page       requests.Integer `position:"Query" name:"page"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
	Status     string           `position:"Query" name:"status"`
}

ListRulesRequest is the request struct for api ListRules

func CreateListRulesRequest added in v1.61.287

func CreateListRulesRequest() (request *ListRulesRequest)

CreateListRulesRequest creates a request to invoke ListRules API

type ListRulesResponse added in v1.61.287

type ListRulesResponse struct {
	*responses.BaseResponse
	RequestId string              `json:"requestId" xml:"requestId"`
	Code      string              `json:"code" xml:"code"`
	Message   string              `json:"message" xml:"message"`
	Result    []ResultInListRules `json:"result" xml:"result"`
}

ListRulesResponse is the response struct for api ListRules

func CreateListRulesResponse added in v1.61.287

func CreateListRulesResponse() (response *ListRulesResponse)

CreateListRulesResponse creates a response to parse from ListRules response

type ListSceneItemsRequest added in v1.61.287

type ListSceneItemsRequest struct {
	*requests.RoaRequest
	SelectionRuleId string           `position:"Query" name:"selectionRuleId"`
	InstanceId      string           `position:"Path" name:"instanceId"`
	Size            requests.Integer `position:"Query" name:"size"`
	QueryCount      requests.Integer `position:"Query" name:"queryCount"`
	SceneId         string           `position:"Path" name:"sceneId"`
	OperationRuleId string           `position:"Query" name:"operationRuleId"`
	PreviewType     string           `position:"Query" name:"previewType"`
	Page            requests.Integer `position:"Query" name:"page"`
}

ListSceneItemsRequest is the request struct for api ListSceneItems

func CreateListSceneItemsRequest added in v1.61.287

func CreateListSceneItemsRequest() (request *ListSceneItemsRequest)

CreateListSceneItemsRequest creates a request to invoke ListSceneItems API

type ListSceneItemsResponse added in v1.61.287

type ListSceneItemsResponse struct {
	*responses.BaseResponse
	RequestId string                 `json:"requestId" xml:"requestId"`
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	Result    ResultInListSceneItems `json:"result" xml:"result"`
}

ListSceneItemsResponse is the response struct for api ListSceneItems

func CreateListSceneItemsResponse added in v1.61.287

func CreateListSceneItemsResponse() (response *ListSceneItemsResponse)

CreateListSceneItemsResponse creates a response to parse from ListSceneItems response

type ListSceneParametersRequest added in v1.61.831

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

ListSceneParametersRequest is the request struct for api ListSceneParameters

func CreateListSceneParametersRequest added in v1.61.831

func CreateListSceneParametersRequest() (request *ListSceneParametersRequest)

CreateListSceneParametersRequest creates a request to invoke ListSceneParameters API

type ListSceneParametersResponse added in v1.61.831

type ListSceneParametersResponse struct {
	*responses.BaseResponse
	Code      string                      `json:"code" xml:"code"`
	Message   string                      `json:"message" xml:"message"`
	RequestId string                      `json:"requestId" xml:"requestId"`
	Result    ResultInListSceneParameters `json:"result" xml:"result"`
}

ListSceneParametersResponse is the response struct for api ListSceneParameters

func CreateListSceneParametersResponse added in v1.61.831

func CreateListSceneParametersResponse() (response *ListSceneParametersResponse)

CreateListSceneParametersResponse creates a response to parse from ListSceneParameters response

type ListScenesRequest added in v1.61.287

type ListScenesRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	Size       requests.Integer `position:"Query" name:"size"`
	SceneId    string           `position:"Query" name:"sceneId"`
	Page       requests.Integer `position:"Query" name:"page"`
	Status     string           `position:"Query" name:"status"`
}

ListScenesRequest is the request struct for api ListScenes

func CreateListScenesRequest added in v1.61.287

func CreateListScenesRequest() (request *ListScenesRequest)

CreateListScenesRequest creates a request to invoke ListScenes API

type ListScenesResponse added in v1.61.287

type ListScenesResponse struct {
	*responses.BaseResponse
	RequestId string               `json:"requestId" xml:"requestId"`
	Code      string               `json:"code" xml:"code"`
	Message   string               `json:"message" xml:"message"`
	Result    []ResultInListScenes `json:"result" xml:"result"`
}

ListScenesResponse is the response struct for api ListScenes

func CreateListScenesResponse added in v1.61.287

func CreateListScenesResponse() (response *ListScenesResponse)

CreateListScenesResponse creates a response to parse from ListScenes response

type ListUmengAppkeysRequest added in v1.61.251

type ListUmengAppkeysRequest struct {
	*requests.RoaRequest
}

ListUmengAppkeysRequest is the request struct for api ListUmengAppkeys

func CreateListUmengAppkeysRequest added in v1.61.251

func CreateListUmengAppkeysRequest() (request *ListUmengAppkeysRequest)

CreateListUmengAppkeysRequest creates a request to invoke ListUmengAppkeys API

type ListUmengAppkeysResponse added in v1.61.251

type ListUmengAppkeysResponse struct {
	*responses.BaseResponse
	Code      string   `json:"code" xml:"code"`
	Message   string   `json:"message" xml:"message"`
	RequestId string   `json:"requestId" xml:"requestId"`
	Result    []Result `json:"result" xml:"result"`
}

ListUmengAppkeysResponse is the response struct for api ListUmengAppkeys

func CreateListUmengAppkeysResponse added in v1.61.251

func CreateListUmengAppkeysResponse() (response *ListUmengAppkeysResponse)

CreateListUmengAppkeysResponse creates a response to parse from ListUmengAppkeys response

type ListUserClustersRequest added in v1.61.831

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

ListUserClustersRequest is the request struct for api ListUserClusters

func CreateListUserClustersRequest added in v1.61.831

func CreateListUserClustersRequest() (request *ListUserClustersRequest)

CreateListUserClustersRequest creates a request to invoke ListUserClusters API

type ListUserClustersResponse added in v1.61.831

type ListUserClustersResponse struct {
	*responses.BaseResponse
	RequestId string        `json:"requestId" xml:"requestId"`
	Headers   Headers       `json:"headers" xml:"headers"`
	Result    []UserCluster `json:"result" xml:"result"`
}

ListUserClustersResponse is the response struct for api ListUserClusters

func CreateListUserClustersResponse added in v1.61.831

func CreateListUserClustersResponse() (response *ListUserClustersResponse)

CreateListUserClustersResponse creates a response to parse from ListUserClusters response

type Meta

type Meta struct {
	ExtInfo       map[string]interface{} `json:"extInfo" xml:"extInfo"`
	Type          string                 `json:"type" xml:"type"`
	Timestamp     int64                  `json:"timestamp" xml:"timestamp"`
	BucketName    string                 `json:"bucketName" xml:"bucketName"`
	AccessKeyId   string                 `json:"accessKeyId" xml:"accessKeyId"`
	TableName     string                 `json:"tableName" xml:"tableName"`
	CronEnabled   bool                   `json:"cronEnabled" xml:"cronEnabled"`
	GmtModified   string                 `json:"gmtModified" xml:"gmtModified"`
	Status        string                 `json:"status" xml:"status"`
	Category      string                 `json:"category" xml:"category"`
	AlgorithmName string                 `json:"algorithmName" xml:"algorithmName"`
	Description   string                 `json:"description" xml:"description"`
	GmtCreate     string                 `json:"gmtCreate" xml:"gmtCreate"`
	Partition     string                 `json:"partition" xml:"partition"`
	MetaType      string                 `json:"metaType" xml:"metaType"`
	Cron          string                 `json:"cron" xml:"cron"`
	ProjectName   string                 `json:"projectName" xml:"projectName"`
	Path          string                 `json:"path" xml:"path"`
	Threshold     Threshold              `json:"threshold" xml:"threshold"`
}

Meta is a nested struct in airec response

type MetaInDeleteFilteringAlgorithm added in v1.61.831

type MetaInDeleteFilteringAlgorithm struct {
	MetaType      string    `json:"metaType" xml:"metaType"`
	AlgorithmName string    `json:"algorithmName" xml:"algorithmName"`
	Cron          string    `json:"cron" xml:"cron"`
	CronEnabled   bool      `json:"cronEnabled" xml:"cronEnabled"`
	TaskId        string    `json:"taskId" xml:"taskId"`
	ProjectName   string    `json:"projectName" xml:"projectName"`
	TableName     string    `json:"tableName" xml:"tableName"`
	Type          string    `json:"type" xml:"type"`
	Category      string    `json:"category" xml:"category"`
	ClusterId     string    `json:"clusterId" xml:"clusterId"`
	Description   string    `json:"description" xml:"description"`
	ExtInfo       ExtInfo   `json:"extInfo" xml:"extInfo"`
	Threshold     Threshold `json:"threshold" xml:"threshold"`
}

MetaInDeleteFilteringAlgorithm is a nested struct in airec response

type MetaInDescribeFilteringAlgorithm added in v1.61.831

type MetaInDescribeFilteringAlgorithm struct {
	MetaType      string    `json:"metaType" xml:"metaType"`
	AlgorithmName string    `json:"algorithmName" xml:"algorithmName"`
	Cron          string    `json:"cron" xml:"cron"`
	CronEnabled   bool      `json:"cronEnabled" xml:"cronEnabled"`
	TaskId        string    `json:"taskId" xml:"taskId"`
	ProjectName   string    `json:"projectName" xml:"projectName"`
	TableName     string    `json:"tableName" xml:"tableName"`
	Type          string    `json:"type" xml:"type"`
	Category      string    `json:"category" xml:"category"`
	ClusterId     string    `json:"clusterId" xml:"clusterId"`
	Description   string    `json:"description" xml:"description"`
	ExtInfo       ExtInfo   `json:"extInfo" xml:"extInfo"`
	Threshold     Threshold `json:"threshold" xml:"threshold"`
}

MetaInDescribeFilteringAlgorithm is a nested struct in airec response

type MetaInListFilteringAlgorithms added in v1.61.831

type MetaInListFilteringAlgorithms struct {
	MetaType      string    `json:"metaType" xml:"metaType"`
	AlgorithmName string    `json:"algorithmName" xml:"algorithmName"`
	Cron          string    `json:"cron" xml:"cron"`
	CronEnabled   bool      `json:"cronEnabled" xml:"cronEnabled"`
	TaskId        string    `json:"taskId" xml:"taskId"`
	ProjectName   string    `json:"projectName" xml:"projectName"`
	TableName     string    `json:"tableName" xml:"tableName"`
	Type          string    `json:"type" xml:"type"`
	Category      string    `json:"category" xml:"category"`
	ClusterId     string    `json:"clusterId" xml:"clusterId"`
	Description   string    `json:"description" xml:"description"`
	ExtInfo       ExtInfo   `json:"extInfo" xml:"extInfo"`
	Threshold     Threshold `json:"threshold" xml:"threshold"`
}

MetaInListFilteringAlgorithms is a nested struct in airec response

type MetaInModifyFilteringAlgorithmMeta added in v1.61.831

type MetaInModifyFilteringAlgorithmMeta struct {
	MetaType      string    `json:"metaType" xml:"metaType"`
	AlgorithmName string    `json:"algorithmName" xml:"algorithmName"`
	Cron          string    `json:"cron" xml:"cron"`
	CronEnabled   bool      `json:"cronEnabled" xml:"cronEnabled"`
	TaskId        string    `json:"taskId" xml:"taskId"`
	ProjectName   string    `json:"projectName" xml:"projectName"`
	TableName     string    `json:"tableName" xml:"tableName"`
	Type          string    `json:"type" xml:"type"`
	Category      string    `json:"category" xml:"category"`
	ClusterId     string    `json:"clusterId" xml:"clusterId"`
	Description   string    `json:"description" xml:"description"`
	ExtInfo       ExtInfo   `json:"extInfo" xml:"extInfo"`
	Threshold     Threshold `json:"threshold" xml:"threshold"`
}

MetaInModifyFilteringAlgorithmMeta is a nested struct in airec response

type MetaInOfflineFilteringAlgorithm added in v1.61.831

type MetaInOfflineFilteringAlgorithm struct {
	MetaType      string    `json:"metaType" xml:"metaType"`
	AlgorithmName string    `json:"algorithmName" xml:"algorithmName"`
	Cron          string    `json:"cron" xml:"cron"`
	CronEnabled   bool      `json:"cronEnabled" xml:"cronEnabled"`
	TaskId        string    `json:"taskId" xml:"taskId"`
	ProjectName   string    `json:"projectName" xml:"projectName"`
	TableName     string    `json:"tableName" xml:"tableName"`
	Type          string    `json:"type" xml:"type"`
	Category      string    `json:"category" xml:"category"`
	ClusterId     string    `json:"clusterId" xml:"clusterId"`
	Description   string    `json:"description" xml:"description"`
	ExtInfo       ExtInfo   `json:"extInfo" xml:"extInfo"`
	Threshold     Threshold `json:"threshold" xml:"threshold"`
}

MetaInOfflineFilteringAlgorithm is a nested struct in airec response

type MetricData added in v1.61.287

type MetricData struct {
	SceneId   string                 `json:"sceneId" xml:"sceneId"`
	MetricRes map[string]interface{} `json:"metricRes" xml:"metricRes"`
	TraceId   string                 `json:"traceId" xml:"traceId"`
}

MetricData is a nested struct in airec response

type MetricDataInListDashboardDetailsFlows added in v1.61.831

type MetricDataInListDashboardDetailsFlows struct {
	MetricData []MetricData `json:"MetricData" xml:"MetricData"`
}

MetricDataInListDashboardDetailsFlows is a nested struct in airec response

type MetricRes added in v1.61.287

type MetricRes struct {
	Detail map[string]interface{} `json:"detail" xml:"detail"`
	Total  map[string]interface{} `json:"total" xml:"total"`
}

MetricRes is a nested struct in airec response

type ModifyDataSourceRequest

type ModifyDataSourceRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	TableName  string `position:"Path" name:"tableName"`
}

ModifyDataSourceRequest is the request struct for api ModifyDataSource

func CreateModifyDataSourceRequest

func CreateModifyDataSourceRequest() (request *ModifyDataSourceRequest)

CreateModifyDataSourceRequest creates a request to invoke ModifyDataSource API

type ModifyDataSourceResponse

type ModifyDataSourceResponse struct {
	*responses.BaseResponse
	Code      string                   `json:"code" xml:"code"`
	Message   string                   `json:"message" xml:"message"`
	RequestId string                   `json:"requestId" xml:"requestId"`
	Result    ResultInModifyDataSource `json:"result" xml:"result"`
}

ModifyDataSourceResponse is the response struct for api ModifyDataSource

func CreateModifyDataSourceResponse

func CreateModifyDataSourceResponse() (response *ModifyDataSourceResponse)

CreateModifyDataSourceResponse creates a response to parse from ModifyDataSource response

type ModifyFilteringAlgorithmMetaRequest added in v1.61.831

type ModifyFilteringAlgorithmMetaRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

ModifyFilteringAlgorithmMetaRequest is the request struct for api ModifyFilteringAlgorithmMeta

func CreateModifyFilteringAlgorithmMetaRequest added in v1.61.831

func CreateModifyFilteringAlgorithmMetaRequest() (request *ModifyFilteringAlgorithmMetaRequest)

CreateModifyFilteringAlgorithmMetaRequest creates a request to invoke ModifyFilteringAlgorithmMeta API

type ModifyFilteringAlgorithmMetaResponse added in v1.61.831

type ModifyFilteringAlgorithmMetaResponse struct {
	*responses.BaseResponse
	RequestId string                               `json:"requestId" xml:"requestId"`
	Result    ResultInModifyFilteringAlgorithmMeta `json:"result" xml:"result"`
}

ModifyFilteringAlgorithmMetaResponse is the response struct for api ModifyFilteringAlgorithmMeta

func CreateModifyFilteringAlgorithmMetaResponse added in v1.61.831

func CreateModifyFilteringAlgorithmMetaResponse() (response *ModifyFilteringAlgorithmMetaResponse)

CreateModifyFilteringAlgorithmMetaResponse creates a response to parse from ModifyFilteringAlgorithmMeta response

type ModifyInstanceRequest

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

ModifyInstanceRequest is the request struct for api ModifyInstance

func CreateModifyInstanceRequest

func CreateModifyInstanceRequest() (request *ModifyInstanceRequest)

CreateModifyInstanceRequest creates a request to invoke ModifyInstance API

type ModifyInstanceResponse

type ModifyInstanceResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    ResultInModifyInstance `json:"result" xml:"result"`
}

ModifyInstanceResponse is the response struct for api ModifyInstance

func CreateModifyInstanceResponse

func CreateModifyInstanceResponse() (response *ModifyInstanceResponse)

CreateModifyInstanceResponse creates a response to parse from ModifyInstance response

type ModifyItemsRequest added in v1.61.831

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

ModifyItemsRequest is the request struct for api ModifyItems

func CreateModifyItemsRequest added in v1.61.831

func CreateModifyItemsRequest() (request *ModifyItemsRequest)

CreateModifyItemsRequest creates a request to invoke ModifyItems API

type ModifyItemsResponse added in v1.61.831

type ModifyItemsResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

ModifyItemsResponse is the response struct for api ModifyItems

func CreateModifyItemsResponse added in v1.61.831

func CreateModifyItemsResponse() (response *ModifyItemsResponse)

CreateModifyItemsResponse creates a response to parse from ModifyItems response

type ModifyRankingModelRequest added in v1.61.831

type ModifyRankingModelRequest struct {
	*requests.RoaRequest
	InstanceId     string `position:"Path" name:"instanceId"`
	RankingModelId string `position:"Path" name:"rankingModelId"`
}

ModifyRankingModelRequest is the request struct for api ModifyRankingModel

func CreateModifyRankingModelRequest added in v1.61.831

func CreateModifyRankingModelRequest() (request *ModifyRankingModelRequest)

CreateModifyRankingModelRequest creates a request to invoke ModifyRankingModel API

type ModifyRankingModelResponse added in v1.61.831

type ModifyRankingModelResponse struct {
	*responses.BaseResponse
	Code      string                     `json:"code" xml:"code"`
	Message   string                     `json:"message" xml:"message"`
	RequestId string                     `json:"requestId" xml:"requestId"`
	Result    ResultInModifyRankingModel `json:"result" xml:"result"`
}

ModifyRankingModelResponse is the response struct for api ModifyRankingModel

func CreateModifyRankingModelResponse added in v1.61.831

func CreateModifyRankingModelResponse() (response *ModifyRankingModelResponse)

CreateModifyRankingModelResponse creates a response to parse from ModifyRankingModel response

type ModifyRuleRequest added in v1.61.287

type ModifyRuleRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	RuleId     string `position:"Path" name:"ruleId"`
}

ModifyRuleRequest is the request struct for api ModifyRule

func CreateModifyRuleRequest added in v1.61.287

func CreateModifyRuleRequest() (request *ModifyRuleRequest)

CreateModifyRuleRequest creates a request to invoke ModifyRule API

type ModifyRuleResponse added in v1.61.287

type ModifyRuleResponse struct {
	*responses.BaseResponse
	RequestId string             `json:"requestId" xml:"requestId"`
	Code      string             `json:"code" xml:"code"`
	Message   string             `json:"message" xml:"message"`
	Result    ResultInModifyRule `json:"result" xml:"result"`
}

ModifyRuleResponse is the response struct for api ModifyRule

func CreateModifyRuleResponse added in v1.61.287

func CreateModifyRuleResponse() (response *ModifyRuleResponse)

CreateModifyRuleResponse creates a response to parse from ModifyRule response

type ModifySceneRequest added in v1.61.287

type ModifySceneRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	SceneId    string `position:"Path" name:"sceneId"`
}

ModifySceneRequest is the request struct for api ModifyScene

func CreateModifySceneRequest added in v1.61.287

func CreateModifySceneRequest() (request *ModifySceneRequest)

CreateModifySceneRequest creates a request to invoke ModifyScene API

type ModifySceneResponse added in v1.61.287

type ModifySceneResponse struct {
	*responses.BaseResponse
	RequestId string              `json:"requestId" xml:"requestId"`
	Code      string              `json:"code" xml:"code"`
	Message   string              `json:"message" xml:"message"`
	Result    ResultInModifyScene `json:"result" xml:"result"`
}

ModifySceneResponse is the response struct for api ModifyScene

func CreateModifySceneResponse added in v1.61.287

func CreateModifySceneResponse() (response *ModifySceneResponse)

CreateModifySceneResponse creates a response to parse from ModifyScene response

type OfflineFilteringAlgorithmRequest added in v1.61.831

type OfflineFilteringAlgorithmRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

OfflineFilteringAlgorithmRequest is the request struct for api OfflineFilteringAlgorithm

func CreateOfflineFilteringAlgorithmRequest added in v1.61.831

func CreateOfflineFilteringAlgorithmRequest() (request *OfflineFilteringAlgorithmRequest)

CreateOfflineFilteringAlgorithmRequest creates a request to invoke OfflineFilteringAlgorithm API

type OfflineFilteringAlgorithmResponse added in v1.61.831

type OfflineFilteringAlgorithmResponse struct {
	*responses.BaseResponse
	RequestId string                            `json:"requestId" xml:"requestId"`
	Result    ResultInOfflineFilteringAlgorithm `json:"result" xml:"result"`
}

OfflineFilteringAlgorithmResponse is the response struct for api OfflineFilteringAlgorithm

func CreateOfflineFilteringAlgorithmResponse added in v1.61.831

func CreateOfflineFilteringAlgorithmResponse() (response *OfflineFilteringAlgorithmResponse)

CreateOfflineFilteringAlgorithmResponse creates a response to parse from OfflineFilteringAlgorithm response

type PublishRuleRequest added in v1.61.287

type PublishRuleRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	RuleType   string `position:"Query" name:"ruleType"`
	SceneId    string `position:"Query" name:"sceneId"`
	RuleId     string `position:"Path" name:"ruleId"`
}

PublishRuleRequest is the request struct for api PublishRule

func CreatePublishRuleRequest added in v1.61.287

func CreatePublishRuleRequest() (request *PublishRuleRequest)

CreatePublishRuleRequest creates a request to invoke PublishRule API

type PublishRuleResponse added in v1.61.287

type PublishRuleResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	Result    Result `json:"result" xml:"result"`
}

PublishRuleResponse is the response struct for api PublishRule

func CreatePublishRuleResponse added in v1.61.287

func CreatePublishRuleResponse() (response *PublishRuleResponse)

CreatePublishRuleResponse creates a response to parse from PublishRule response

type PushDocumentRequest

type PushDocumentRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	TableName  string `position:"Path" name:"tableName"`
}

PushDocumentRequest is the request struct for api PushDocument

func CreatePushDocumentRequest

func CreatePushDocumentRequest() (request *PushDocumentRequest)

CreatePushDocumentRequest creates a request to invoke PushDocument API

type PushDocumentResponse

type PushDocumentResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

PushDocumentResponse is the response struct for api PushDocument

func CreatePushDocumentResponse

func CreatePushDocumentResponse() (response *PushDocumentResponse)

CreatePushDocumentResponse creates a response to parse from PushDocument response

type PushInterventionRequest

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

PushInterventionRequest is the request struct for api PushIntervention

func CreatePushInterventionRequest

func CreatePushInterventionRequest() (request *PushInterventionRequest)

CreatePushInterventionRequest creates a request to invoke PushIntervention API

type PushInterventionResponse

type PushInterventionResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

PushInterventionResponse is the response struct for api PushIntervention

func CreatePushInterventionResponse

func CreatePushInterventionResponse() (response *PushInterventionResponse)

CreatePushInterventionResponse creates a response to parse from PushIntervention response

type QueryDataMessageRequest added in v1.61.251

type QueryDataMessageRequest struct {
	*requests.RoaRequest
	TraceId       string           `position:"Query" name:"traceId"`
	MessageSource string           `position:"Query" name:"messageSource"`
	EndTime       requests.Integer `position:"Query" name:"endTime"`
	UserType      string           `position:"Query" name:"userType"`
	StartTime     requests.Integer `position:"Query" name:"startTime"`
	UserId        string           `position:"Query" name:"userId"`
	ItemId        string           `position:"Query" name:"itemId"`
	InstanceId    string           `position:"Path" name:"instanceId"`
	ItemType      string           `position:"Query" name:"itemType"`
	CmdType       string           `position:"Query" name:"cmdType"`
	Size          requests.Integer `position:"Query" name:"size"`
	SceneId       string           `position:"Query" name:"sceneId"`
	BhvType       string           `position:"Query" name:"bhvType"`
	Page          requests.Integer `position:"Query" name:"page"`
	Table         string           `position:"Path" name:"table"`
}

QueryDataMessageRequest is the request struct for api QueryDataMessage

func CreateQueryDataMessageRequest added in v1.61.251

func CreateQueryDataMessageRequest() (request *QueryDataMessageRequest)

CreateQueryDataMessageRequest creates a request to invoke QueryDataMessage API

type QueryDataMessageResponse added in v1.61.251

type QueryDataMessageResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

QueryDataMessageResponse is the response struct for api QueryDataMessage

func CreateQueryDataMessageResponse added in v1.61.251

func CreateQueryDataMessageResponse() (response *QueryDataMessageResponse)

CreateQueryDataMessageResponse creates a response to parse from QueryDataMessage response

type QueryDataMessageStatisticsRequest added in v1.61.356

type QueryDataMessageStatisticsRequest struct {
	*requests.RoaRequest
	TraceId       string           `position:"Query" name:"traceId"`
	MessageSource string           `position:"Query" name:"messageSource"`
	EndTime       requests.Integer `position:"Query" name:"endTime"`
	UserType      string           `position:"Query" name:"userType"`
	StartTime     requests.Integer `position:"Query" name:"startTime"`
	UserId        string           `position:"Query" name:"userId"`
	ItemId        string           `position:"Query" name:"itemId"`
	InstanceId    string           `position:"Path" name:"instanceId"`
	ItemType      string           `position:"Query" name:"itemType"`
	CmdType       string           `position:"Query" name:"cmdType"`
	SceneId       string           `position:"Query" name:"sceneId"`
	BhvType       string           `position:"Query" name:"bhvType"`
	Table         string           `position:"Path" name:"table"`
}

QueryDataMessageStatisticsRequest is the request struct for api QueryDataMessageStatistics

func CreateQueryDataMessageStatisticsRequest added in v1.61.356

func CreateQueryDataMessageStatisticsRequest() (request *QueryDataMessageStatisticsRequest)

CreateQueryDataMessageStatisticsRequest creates a request to invoke QueryDataMessageStatistics API

type QueryDataMessageStatisticsResponse added in v1.61.356

type QueryDataMessageStatisticsResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

QueryDataMessageStatisticsResponse is the response struct for api QueryDataMessageStatistics

func CreateQueryDataMessageStatisticsResponse added in v1.61.356

func CreateQueryDataMessageStatisticsResponse() (response *QueryDataMessageStatisticsResponse)

CreateQueryDataMessageStatisticsResponse creates a response to parse from QueryDataMessageStatistics response

type QueryExceptionHistoryRequest added in v1.61.251

type QueryExceptionHistoryRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
	Type       string           `position:"Query" name:"type"`
}

QueryExceptionHistoryRequest is the request struct for api QueryExceptionHistory

func CreateQueryExceptionHistoryRequest added in v1.61.251

func CreateQueryExceptionHistoryRequest() (request *QueryExceptionHistoryRequest)

CreateQueryExceptionHistoryRequest creates a request to invoke QueryExceptionHistory API

type QueryExceptionHistoryResponse added in v1.61.251

type QueryExceptionHistoryResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

QueryExceptionHistoryResponse is the response struct for api QueryExceptionHistory

func CreateQueryExceptionHistoryResponse added in v1.61.251

func CreateQueryExceptionHistoryResponse() (response *QueryExceptionHistoryResponse)

CreateQueryExceptionHistoryResponse creates a response to parse from QueryExceptionHistory response

type QueryRawDataRequest added in v1.61.251

type QueryRawDataRequest struct {
	*requests.RoaRequest
	ItemId     string `position:"Query" name:"itemId"`
	InstanceId string `position:"Path" name:"instanceId"`
	ItemType   string `position:"Query" name:"itemType"`
	UserType   string `position:"Query" name:"userType"`
	UserId     string `position:"Query" name:"userId"`
	Table      string `position:"Path" name:"table"`
}

QueryRawDataRequest is the request struct for api QueryRawData

func CreateQueryRawDataRequest added in v1.61.251

func CreateQueryRawDataRequest() (request *QueryRawDataRequest)

CreateQueryRawDataRequest creates a request to invoke QueryRawData API

type QueryRawDataResponse added in v1.61.251

type QueryRawDataResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"Message" xml:"Message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

QueryRawDataResponse is the response struct for api QueryRawData

func CreateQueryRawDataResponse added in v1.61.251

func CreateQueryRawDataResponse() (response *QueryRawDataResponse)

CreateQueryRawDataResponse creates a response to parse from QueryRawData response

type QuerySingleAggregationReportRequest added in v1.61.251

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

QuerySingleAggregationReportRequest is the request struct for api QuerySingleAggregationReport

func CreateQuerySingleAggregationReportRequest added in v1.61.251

func CreateQuerySingleAggregationReportRequest() (request *QuerySingleAggregationReportRequest)

CreateQuerySingleAggregationReportRequest creates a request to invoke QuerySingleAggregationReport API

type QuerySingleAggregationReportResponse added in v1.61.251

type QuerySingleAggregationReportResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

QuerySingleAggregationReportResponse is the response struct for api QuerySingleAggregationReport

func CreateQuerySingleAggregationReportResponse added in v1.61.251

func CreateQuerySingleAggregationReportResponse() (response *QuerySingleAggregationReportResponse)

CreateQuerySingleAggregationReportResponse creates a response to parse from QuerySingleAggregationReport response

type QuerySingleReportRequest added in v1.61.251

type QuerySingleReportRequest struct {
	*requests.RoaRequest
	InstanceId string `position:"Path" name:"instanceId"`
	ReportType string `position:"Query" name:"reportType"`
}

QuerySingleReportRequest is the request struct for api QuerySingleReport

func CreateQuerySingleReportRequest added in v1.61.251

func CreateQuerySingleReportRequest() (request *QuerySingleReportRequest)

CreateQuerySingleReportRequest creates a request to invoke QuerySingleReport API

type QuerySingleReportResponse added in v1.61.251

type QuerySingleReportResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

QuerySingleReportResponse is the response struct for api QuerySingleReport

func CreateQuerySingleReportResponse added in v1.61.251

func CreateQuerySingleReportResponse() (response *QuerySingleReportResponse)

CreateQuerySingleReportResponse creates a response to parse from QuerySingleReport response

type QuerySyncReportAggregationRequest added in v1.61.251

type QuerySyncReportAggregationRequest struct {
	*requests.RoaRequest
	InstanceId string           `position:"Path" name:"instanceId"`
	EndTime    requests.Integer `position:"Query" name:"endTime"`
	StartTime  requests.Integer `position:"Query" name:"startTime"`
}

QuerySyncReportAggregationRequest is the request struct for api QuerySyncReportAggregation

func CreateQuerySyncReportAggregationRequest added in v1.61.251

func CreateQuerySyncReportAggregationRequest() (request *QuerySyncReportAggregationRequest)

CreateQuerySyncReportAggregationRequest creates a request to invoke QuerySyncReportAggregation API

type QuerySyncReportAggregationResponse added in v1.61.251

type QuerySyncReportAggregationResponse struct {
	*responses.BaseResponse
	Code      string                 `json:"code" xml:"code"`
	Message   string                 `json:"message" xml:"message"`
	RequestId string                 `json:"requestId" xml:"requestId"`
	Result    map[string]interface{} `json:"result" xml:"result"`
}

QuerySyncReportAggregationResponse is the response struct for api QuerySyncReportAggregation

func CreateQuerySyncReportAggregationResponse added in v1.61.251

func CreateQuerySyncReportAggregationResponse() (response *QuerySyncReportAggregationResponse)

CreateQuerySyncReportAggregationResponse creates a response to parse from QuerySyncReportAggregation response

type RebuildIndexRequest added in v1.61.831

type RebuildIndexRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

RebuildIndexRequest is the request struct for api RebuildIndex

func CreateRebuildIndexRequest added in v1.61.831

func CreateRebuildIndexRequest() (request *RebuildIndexRequest)

CreateRebuildIndexRequest creates a request to invoke RebuildIndex API

type RebuildIndexResponse added in v1.61.831

type RebuildIndexResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    string `json:"result" xml:"result"`
}

RebuildIndexResponse is the response struct for api RebuildIndex

func CreateRebuildIndexResponse added in v1.61.831

func CreateRebuildIndexResponse() (response *RebuildIndexResponse)

CreateRebuildIndexResponse creates a response to parse from RebuildIndex response

type RecommendRequest

type RecommendRequest struct {
	*requests.RoaRequest
	ReturnCount  requests.Integer `position:"Query" name:"returnCount"`
	ServiceType  string           `position:"Query" name:"serviceType"`
	InstanceId   string           `position:"Path" name:"instanceId"`
	Debug        string           `position:"Query" name:"debug"`
	Ip           string           `position:"Query" name:"ip"`
	LogLevel     string           `position:"Query" name:"logLevel"`
	SceneId      string           `position:"Query" name:"sceneId"`
	Imei         string           `position:"Query" name:"imei"`
	ExperimentId string           `position:"Query" name:"experimentId"`
	UserId       string           `position:"Query" name:"userId"`
	Items        string           `position:"Query" name:"items"`
	UserInfo     string           `position:"Query" name:"userInfo"`
}

RecommendRequest is the request struct for api Recommend

func CreateRecommendRequest

func CreateRecommendRequest() (request *RecommendRequest)

CreateRecommendRequest creates a request to invoke Recommend API

type RecommendResponse

type RecommendResponse struct {
	*responses.BaseResponse
	Code      string       `json:"code" xml:"code"`
	Message   string       `json:"message" xml:"message"`
	RequestId string       `json:"requestId" xml:"requestId"`
	Result    []ResultItem `json:"result" xml:"result"`
}

RecommendResponse is the response struct for api Recommend

func CreateRecommendResponse

func CreateRecommendResponse() (response *RecommendResponse)

CreateRecommendResponse creates a response to parse from Recommend response

type Result

type Result struct {
	OnlineTime     string                 `json:"onlineTime" xml:"onlineTime"`
	CurrentQps     int                    `json:"currentQps" xml:"currentQps"`
	UserCount      int64                  `json:"userCount" xml:"userCount"`
	RuleId         string                 `json:"ruleId" xml:"ruleId"`
	State          string                 `json:"state" xml:"state"`
	Num            int                    `json:"num" xml:"num"`
	Detail         map[string]interface{} `json:"detail" xml:"detail"`
	GmtModified    int64                  `json:"gmtModified" xml:"gmtModified"`
	VersionId      string                 `json:"versionId" xml:"versionId"`
	FinishRate     int                    `json:"finishRate" xml:"finishRate"`
	OfflineTime    string                 `json:"offlineTime" xml:"offlineTime"`
	Name           string                 `json:"name" xml:"name"`
	RankingModelId string                 `json:"rankingModelId" xml:"rankingModelId"`
	Base           bool                   `json:"base" xml:"base"`
	GmtCreate      int64                  `json:"gmtCreate" xml:"gmtCreate"`
	SceneId        string                 `json:"sceneId" xml:"sceneId"`
	Platform       string                 `json:"platform" xml:"platform"`
	UserCountUsed  int64                  `json:"userCountUsed" xml:"userCountUsed"`
	DivideType     string                 `json:"divideType" xml:"divideType"`
	Progress       int                    `json:"progress" xml:"progress"`
	Qps            int                    `json:"qps" xml:"qps"`
	ItemCountUsed  int64                  `json:"itemCountUsed" xml:"itemCountUsed"`
	InstanceId     string                 `json:"instanceId" xml:"instanceId"`
	Status         string                 `json:"status" xml:"status"`
	Description    string                 `json:"description" xml:"description"`
	FinishTime     int                    `json:"finishTime" xml:"finishTime"`
	ItemCount      int64                  `json:"itemCount" xml:"itemCount"`
	MetricType     string                 `json:"metricType" xml:"metricType"`
	ExperimentId   string                 `json:"experimentId" xml:"experimentId"`
	BucketCount    int                    `json:"bucketCount" xml:"bucketCount"`
	InUse          string                 `json:"inUse" xml:"inUse"`
	Meta           map[string]interface{} `json:"meta" xml:"meta"`
	PvCount        int64                  `json:"pvCount" xml:"pvCount"`
	Appkey         string                 `json:"appkey" xml:"appkey"`
	Buckets        []string               `json:"buckets" xml:"buckets"`
	Algorithms     []Algorithm            `json:"algorithms" xml:"algorithms"`
	MetricData     []MetricData           `json:"metricData" xml:"metricData"`
	DataPoints     []DataPoints           `json:"dataPoints" xml:"dataPoints"`
}

Result is a nested struct in airec response

type ResultInCreateFilteringAlgorithm added in v1.61.831

type ResultInCreateFilteringAlgorithm struct {
	AlgorithmId string `json:"algorithmId" xml:"algorithmId"`
	Status      string `json:"status" xml:"status"`
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	Meta        Meta   `json:"meta" xml:"meta"`
}

ResultInCreateFilteringAlgorithm is a nested struct in airec response

type ResultInCreateRankingModel added in v1.61.831

type ResultInCreateRankingModel struct {
	RankingModelId string                 `json:"rankingModelId" xml:"rankingModelId"`
	GmtModified    string                 `json:"gmtModified" xml:"gmtModified"`
	Meta           map[string]interface{} `json:"meta" xml:"meta"`
	GmtCreate      string                 `json:"gmtCreate" xml:"gmtCreate"`
}

ResultInCreateRankingModel is a nested struct in airec response

type ResultInCreateRule added in v1.61.287

type ResultInCreateRule struct {
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	RuleId      string `json:"ruleId" xml:"ruleId"`
	Status      string `json:"status" xml:"status"`
}

ResultInCreateRule is a nested struct in airec response

type ResultInCreateScene added in v1.61.287

type ResultInCreateScene struct {
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	SceneId     string `json:"sceneId" xml:"sceneId"`
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	Status      string `json:"status" xml:"status"`
}

ResultInCreateScene is a nested struct in airec response

type ResultInDecribeRankingModel added in v1.61.831

type ResultInDecribeRankingModel struct {
	GmtCreate      string                 `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified    string                 `json:"gmtModified" xml:"gmtModified"`
	Meta           map[string]interface{} `json:"meta" xml:"meta"`
	RankingModelId string                 `json:"rankingModelId" xml:"rankingModelId"`
}

ResultInDecribeRankingModel is a nested struct in airec response

type ResultInDeleteFilteringAlgorithm added in v1.61.831

type ResultInDeleteFilteringAlgorithm struct {
	Status      string                         `json:"status" xml:"status"`
	GmtCreate   string                         `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string                         `json:"gmtModified" xml:"gmtModified"`
	AlgorithmId string                         `json:"algorithmId" xml:"algorithmId"`
	Meta        MetaInDeleteFilteringAlgorithm `json:"meta" xml:"meta"`
}

ResultInDeleteFilteringAlgorithm is a nested struct in airec response

type ResultInDescribeDataSetMessage

type ResultInDescribeDataSetMessage struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInDescribeDataSetMessage is a nested struct in airec response

type ResultInDescribeDefaultAlgorithms added in v1.61.831

type ResultInDescribeDefaultAlgorithms struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInDescribeDefaultAlgorithms is a nested struct in airec response

type ResultInDescribeFilteringAlgorithm added in v1.61.831

type ResultInDescribeFilteringAlgorithm struct {
	Status      string                           `json:"status" xml:"status"`
	GmtCreate   string                           `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string                           `json:"gmtModified" xml:"gmtModified"`
	AlgorithmId string                           `json:"algorithmId" xml:"algorithmId"`
	Meta        MetaInDescribeFilteringAlgorithm `json:"meta" xml:"meta"`
}

ResultInDescribeFilteringAlgorithm is a nested struct in airec response

type ResultInDescribeInstance added in v1.61.251

type ResultInDescribeInstance struct {
	ChargeType     string `json:"chargeType" xml:"chargeType"`
	CommodityCode  string `json:"commodityCode" xml:"commodityCode"`
	DataSetVersion string `json:"dataSetVersion" xml:"dataSetVersion"`
	ExpiredTime    string `json:"expiredTime" xml:"expiredTime"`
	GmtCreate      string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified    string `json:"gmtModified" xml:"gmtModified"`
	Industry       string `json:"industry" xml:"industry"`
	InstanceId     string `json:"instanceId" xml:"instanceId"`
	LockMode       string `json:"lockMode" xml:"lockMode"`
	Name           string `json:"name" xml:"name"`
	RegionId       string `json:"regionId" xml:"regionId"`
	Scene          string `json:"scene" xml:"scene"`
	Status         string `json:"status" xml:"status"`
	Type           string `json:"type" xml:"type"`
}

ResultInDescribeInstance is a nested struct in airec response

type ResultInDescribeLatestTask added in v1.61.831

type ResultInDescribeLatestTask struct {
	IndexVersion []IndexVersion `json:"indexVersion" xml:"indexVersion"`
}

ResultInDescribeLatestTask is a nested struct in airec response

type ResultInDescribeRegions added in v1.61.251

type ResultInDescribeRegions struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInDescribeRegions is a nested struct in airec response

type ResultInDescribeRule added in v1.61.287

type ResultInDescribeRule struct {
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	RuleId      string `json:"ruleId" xml:"ruleId"`
	Status      string `json:"status" xml:"status"`
}

ResultInDescribeRule is a nested struct in airec response

type ResultInDescribeScene added in v1.61.287

type ResultInDescribeScene struct {
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	SceneId     string `json:"sceneId" xml:"sceneId"`
	Status      string `json:"status" xml:"status"`
}

ResultInDescribeScene is a nested struct in airec response

type ResultInDescribeSyncReportDetail added in v1.61.251

type ResultInDescribeSyncReportDetail struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInDescribeSyncReportDetail is a nested struct in airec response

type ResultInDescribeUserMetrics added in v1.61.251

type ResultInDescribeUserMetrics struct {
	Result []Result `json:"Result" xml:"Result"`
}

ResultInDescribeUserMetrics is a nested struct in airec response

type ResultInListDashboardDetails added in v1.61.287

type ResultInListDashboardDetails struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListDashboardDetails is a nested struct in airec response

type ResultInListDashboardMetrics added in v1.61.287

type ResultInListDashboardMetrics struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListDashboardMetrics is a nested struct in airec response

type ResultInListDashboardMetricsFlows added in v1.61.287

type ResultInListDashboardMetricsFlows struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListDashboardMetricsFlows is a nested struct in airec response

type ResultInListDataSet

type ResultInListDataSet struct {
	Result []Result `json:"Result" xml:"Result"`
}

ResultInListDataSet is a nested struct in airec response

type ResultInListDataSource

type ResultInListDataSource struct {
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	TableName   string `json:"tableName" xml:"tableName"`
	Meta        Meta   `json:"meta" xml:"meta"`
}

ResultInListDataSource is a nested struct in airec response

type ResultInListExperiments added in v1.61.831

type ResultInListExperiments struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListExperiments is a nested struct in airec response

type ResultInListFilteringAlgorithms added in v1.61.831

type ResultInListFilteringAlgorithms struct {
	FilteringAlgorithm []FilteringAlgorithm `json:"filteringAlgorithm" xml:"filteringAlgorithm"`
}

ResultInListFilteringAlgorithms is a nested struct in airec response

type ResultInListIndexVersions added in v1.61.831

type ResultInListIndexVersions struct {
	IndeVersion []IndeVersion `json:"indeVersion" xml:"indeVersion"`
}

ResultInListIndexVersions is a nested struct in airec response

type ResultInListInstance

type ResultInListInstance struct {
	ChargeType     string `json:"chargeType" xml:"chargeType"`
	CommodityCode  string `json:"commodityCode" xml:"commodityCode"`
	DataSetVersion string `json:"dataSetVersion" xml:"dataSetVersion"`
	ExpiredTime    string `json:"expiredTime" xml:"expiredTime"`
	GmtCreate      string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified    string `json:"gmtModified" xml:"gmtModified"`
	Industry       string `json:"industry" xml:"industry"`
	InstanceId     string `json:"instanceId" xml:"instanceId"`
	LockMode       string `json:"lockMode" xml:"lockMode"`
	Name           string `json:"name" xml:"name"`
	RegionId       string `json:"regionId" xml:"regionId"`
	Status         string `json:"status" xml:"status"`
	Type           string `json:"type" xml:"type"`
}

ResultInListInstance is a nested struct in airec response

type ResultInListInstanceTask

type ResultInListInstanceTask struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListInstanceTask is a nested struct in airec response

type ResultInListItems added in v1.61.831

type ResultInListItems struct {
	Total  Total        `json:"total" xml:"total"`
	Detail []DetailItem `json:"detail" xml:"detail"`
}

ResultInListItems is a nested struct in airec response

type ResultInListLogs added in v1.61.1014

type ResultInListLogs struct {
	Result []map[string]interface{} `json:"Result" xml:"Result"`
}

ResultInListLogs is a nested struct in airec response

type ResultInListMixCategories added in v1.61.1014

type ResultInListMixCategories struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListMixCategories is a nested struct in airec response

type ResultInListRankingModels added in v1.61.831

type ResultInListRankingModels struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListRankingModels is a nested struct in airec response

type ResultInListRuleConditions added in v1.61.287

type ResultInListRuleConditions struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInListRuleConditions is a nested struct in airec response

type ResultInListRules added in v1.61.287

type ResultInListRules struct {
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	RuleId      string `json:"ruleId" xml:"ruleId"`
	Status      string `json:"status" xml:"status"`
}

ResultInListRules is a nested struct in airec response

type ResultInListSceneItems added in v1.61.831

type ResultInListSceneItems struct {
	Total  Total    `json:"total" xml:"total"`
	Detail []Detail `json:"detail" xml:"detail"`
}

ResultInListSceneItems is a nested struct in airec response

type ResultInListSceneParameters added in v1.61.831

type ResultInListSceneParameters struct {
	SceneId []string `json:"sceneId" xml:"sceneId"`
	TraceId []string `json:"traceId" xml:"traceId"`
}

ResultInListSceneParameters is a nested struct in airec response

type ResultInListScenes added in v1.61.287

type ResultInListScenes struct {
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	SceneId     string `json:"sceneId" xml:"sceneId"`
	Status      string `json:"status" xml:"status"`
}

ResultInListScenes is a nested struct in airec response

type ResultInListUmengAppkeys added in v1.61.251

type ResultInListUmengAppkeys struct {
	Result []Result `json:"Result" xml:"Result"`
}

ResultInListUmengAppkeys is a nested struct in airec response

type ResultInListUserClusters added in v1.61.831

type ResultInListUserClusters struct {
	UserCluster []UserCluster `json:"userCluster" xml:"userCluster"`
}

ResultInListUserClusters is a nested struct in airec response

type ResultInModifyDataSource

type ResultInModifyDataSource struct {
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	TableName   string `json:"tableName" xml:"tableName"`
	Meta        Meta   `json:"meta" xml:"meta"`
}

ResultInModifyDataSource is a nested struct in airec response

type ResultInModifyFilteringAlgorithmMeta added in v1.61.831

type ResultInModifyFilteringAlgorithmMeta struct {
	Status      string                             `json:"status" xml:"status"`
	GmtCreate   string                             `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string                             `json:"gmtModified" xml:"gmtModified"`
	AlgorithmId string                             `json:"algorithmId" xml:"algorithmId"`
	Meta        MetaInModifyFilteringAlgorithmMeta `json:"meta" xml:"meta"`
}

ResultInModifyFilteringAlgorithmMeta is a nested struct in airec response

type ResultInModifyInstance added in v1.61.251

type ResultInModifyInstance struct {
	ChargeType     string `json:"chargeType" xml:"chargeType"`
	CommodityCode  string `json:"commodityCode" xml:"commodityCode"`
	DataSetVersion string `json:"dataSetVersion" xml:"dataSetVersion"`
	ExpiredTime    string `json:"expiredTime" xml:"expiredTime"`
	GmtCreate      string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified    string `json:"gmtModified" xml:"gmtModified"`
	Industry       string `json:"industry" xml:"industry"`
	InstanceId     string `json:"instanceId" xml:"instanceId"`
	LockMode       string `json:"lockMode" xml:"lockMode"`
	Name           string `json:"name" xml:"name"`
	RegionId       string `json:"regionId" xml:"regionId"`
	Status         string `json:"status" xml:"status"`
	Type           string `json:"type" xml:"type"`
}

ResultInModifyInstance is a nested struct in airec response

type ResultInModifyRankingModel added in v1.61.831

type ResultInModifyRankingModel struct {
	GmtCreate      string                 `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified    string                 `json:"gmtModified" xml:"gmtModified"`
	Meta           map[string]interface{} `json:"meta" xml:"meta"`
	RankingModelId string                 `json:"rankingModelId" xml:"rankingModelId"`
}

ResultInModifyRankingModel is a nested struct in airec response

type ResultInModifyRule added in v1.61.287

type ResultInModifyRule struct {
	GmtCreate   string                 `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string                 `json:"gmtModified" xml:"gmtModified"`
	RuleId      string                 `json:"ruleId" xml:"ruleId"`
	RuleMeta    map[string]interface{} `json:"ruleMeta" xml:"ruleMeta"`
	Status      string                 `json:"status" xml:"status"`
}

ResultInModifyRule is a nested struct in airec response

type ResultInModifyScene added in v1.61.287

type ResultInModifyScene struct {
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	SceneId     string `json:"sceneId" xml:"sceneId"`
	Status      string `json:"status" xml:"status"`
}

ResultInModifyScene is a nested struct in airec response

type ResultInOfflineFilteringAlgorithm added in v1.61.831

type ResultInOfflineFilteringAlgorithm struct {
	Status      string                          `json:"status" xml:"status"`
	GmtCreate   string                          `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string                          `json:"gmtModified" xml:"gmtModified"`
	AlgorithmId string                          `json:"algorithmId" xml:"algorithmId"`
	Meta        MetaInOfflineFilteringAlgorithm `json:"meta" xml:"meta"`
}

ResultInOfflineFilteringAlgorithm is a nested struct in airec response

type ResultInRecommend

type ResultInRecommend struct {
	ResultItem []ResultItem `json:"result" xml:"result"`
}

ResultInRecommend is a nested struct in airec response

type ResultItem

type ResultItem struct {
	OnlineTime         string                 `json:"onlineTime" xml:"onlineTime"`
	Timestamp          string                 `json:"timestamp" xml:"timestamp"`
	DefaultDisplay     bool                   `json:"defaultDisplay" xml:"defaultDisplay"`
	DefaultValue       string                 `json:"defaultValue" xml:"defaultValue"`
	TraceInfo          string                 `json:"traceInfo" xml:"traceInfo"`
	OfflineTime        string                 `json:"offlineTime" xml:"offlineTime"`
	Name               string                 `json:"name" xml:"name"`
	RankingModelId     string                 `json:"rankingModelId" xml:"rankingModelId"`
	Base               bool                   `json:"base" xml:"base"`
	ErrorLevel         string                 `json:"errorLevel" xml:"errorLevel"`
	ConsoleUrl         string                 `json:"consoleUrl" xml:"consoleUrl"`
	Endpoint           string                 `json:"endpoint" xml:"endpoint"`
	MetricData         map[string]interface{} `json:"metricData" xml:"metricData"`
	Key                string                 `json:"key" xml:"key"`
	RegionId           string                 `json:"regionId" xml:"regionId"`
	LocalName          string                 `json:"localName" xml:"localName"`
	Message            string                 `json:"message" xml:"message"`
	SelectionOperation string                 `json:"selectionOperation" xml:"selectionOperation"`
	Weight             float64                `json:"weight" xml:"weight"`
	SelectValue        string                 `json:"selectValue" xml:"selectValue"`
	ErrorPercent       float64                `json:"errorPercent" xml:"errorPercent"`
	MetricType         string                 `json:"metricType" xml:"metricType"`
	Total              map[string]interface{} `json:"total" xml:"total"`
	ExperimentValue    string                 `json:"experimentValue" xml:"experimentValue"`
	Meta               map[string]interface{} `json:"meta" xml:"meta"`
	ErrorType          string                 `json:"errorType" xml:"errorType"`
	SelectType         string                 `json:"selectType" xml:"selectType"`
	GmtModified        string                 `json:"gmtModified" xml:"gmtModified"`
	Category           string                 `json:"category" xml:"category"`
	HasConfig          bool                   `json:"hasConfig" xml:"hasConfig"`
	Type               string                 `json:"type" xml:"type"`
	SceneId            string                 `json:"sceneId" xml:"sceneId"`
	ErrorCount         int                    `json:"errorCount" xml:"errorCount"`
	SampleDisplay      bool                   `json:"sampleDisplay" xml:"sampleDisplay"`
	Position           int                    `json:"position" xml:"position"`
	TraceId            string                 `json:"traceId" xml:"traceId"`
	Status             string                 `json:"status" xml:"status"`
	Description        string                 `json:"description" xml:"description"`
	MatchInfo          string                 `json:"matchInfo" xml:"matchInfo"`
	GmtCreate          string                 `json:"gmtCreate" xml:"gmtCreate"`
	TotalProgress      int                    `json:"totalProgress" xml:"totalProgress"`
	ExperimentId       string                 `json:"experimentId" xml:"experimentId"`
	ItemId             string                 `json:"itemId" xml:"itemId"`
	ItemType           string                 `json:"itemType" xml:"itemType"`
	Buckets            []string               `json:"buckets" xml:"buckets"`
	Categories         []int64                `json:"categories" xml:"categories"`
	MetricRes          MetricRes              `json:"metricRes" xml:"metricRes"`
	HistoryData        []HistoryData          `json:"historyData" xml:"historyData"`
	Detail             []DetailItem           `json:"detail" xml:"detail"`
	Config             []ConfigItem           `json:"config" xml:"config"`
	SubProgressInfos   []SubProgressInfosItem `json:"subProgressInfos" xml:"subProgressInfos"`
}

ResultItem is a nested struct in airec response

type RunInstanceRequest

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

RunInstanceRequest is the request struct for api RunInstance

func CreateRunInstanceRequest

func CreateRunInstanceRequest() (request *RunInstanceRequest)

CreateRunInstanceRequest creates a request to invoke RunInstance API

type RunInstanceResponse

type RunInstanceResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

RunInstanceResponse is the response struct for api RunInstance

func CreateRunInstanceResponse

func CreateRunInstanceResponse() (response *RunInstanceResponse)

CreateRunInstanceResponse creates a response to parse from RunInstance response

type SceneId

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

SceneId is a nested struct in airec response

type StopDataSetRequest

type StopDataSetRequest struct {
	*requests.RoaRequest
	VersionId  string `position:"Path" name:"versionId"`
	InstanceId string `position:"Path" name:"instanceId"`
}

StopDataSetRequest is the request struct for api StopDataSet

func CreateStopDataSetRequest

func CreateStopDataSetRequest() (request *StopDataSetRequest)

CreateStopDataSetRequest creates a request to invoke StopDataSet API

type StopDataSetResponse

type StopDataSetResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

StopDataSetResponse is the response struct for api StopDataSet

func CreateStopDataSetResponse

func CreateStopDataSetResponse() (response *StopDataSetResponse)

CreateStopDataSetResponse creates a response to parse from StopDataSet response

type SubProgressInfos

type SubProgressInfos struct {
	SubProgressInfosItem []SubProgressInfosItem `json:"subProgressInfos" xml:"subProgressInfos"`
}

SubProgressInfos is a nested struct in airec response

type SubProgressInfosItem

type SubProgressInfosItem struct {
	Detail      string `json:"detail" xml:"detail"`
	FinishedNum int    `json:"finishedNum" xml:"finishedNum"`
	Progress    int    `json:"progress" xml:"progress"`
	TotalNum    int    `json:"totalNum" xml:"totalNum"`
	Type        string `json:"type" xml:"type"`
}

SubProgressInfosItem is a nested struct in airec response

type Threshold added in v1.61.831

type Threshold struct {
	SourceDataSizeThreshold   int `json:"sourceDataSizeThreshold" xml:"sourceDataSizeThreshold"`
	IndexSizeThreshold        int `json:"indexSizeThreshold" xml:"indexSizeThreshold"`
	IndexLossThreshold        int `json:"indexLossThreshold" xml:"indexLossThreshold"`
	SourceDataRecordThreshold int `json:"sourceDataRecordThreshold" xml:"sourceDataRecordThreshold"`
}

Threshold is a nested struct in airec response

type Total added in v1.61.287

type Total struct {
	QueryCount            int64 `json:"queryCount" xml:"queryCount"`
	TotalCount            int64 `json:"totalCount" xml:"totalCount"`
	SceneRecommendItem    int64 `json:"sceneRecommendItem" xml:"sceneRecommendItem"`
	InstanceRecommendItem int64 `json:"instanceRecommendItem" xml:"instanceRecommendItem"`
	SceneWeightItem       int64 `json:"sceneWeightItem" xml:"sceneWeightItem"`
	WeightItem            int64 `json:"weightItem" xml:"weightItem"`
}

Total is a nested struct in airec response

type TraceId

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

TraceId is a nested struct in airec response

type UnLockIndexVersionRequest added in v1.61.831

type UnLockIndexVersionRequest struct {
	*requests.RoaRequest
	InstanceId  string `position:"Path" name:"instanceId"`
	AlgorithmId string `position:"Path" name:"algorithmId"`
}

UnLockIndexVersionRequest is the request struct for api UnLockIndexVersion

func CreateUnLockIndexVersionRequest added in v1.61.831

func CreateUnLockIndexVersionRequest() (request *UnLockIndexVersionRequest)

CreateUnLockIndexVersionRequest creates a request to invoke UnLockIndexVersion API

type UnLockIndexVersionResponse added in v1.61.831

type UnLockIndexVersionResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

UnLockIndexVersionResponse is the response struct for api UnLockIndexVersion

func CreateUnLockIndexVersionResponse added in v1.61.831

func CreateUnLockIndexVersionResponse() (response *UnLockIndexVersionResponse)

CreateUnLockIndexVersionResponse creates a response to parse from UnLockIndexVersion response

type UpdateExperimentBasicInfoRequest added in v1.61.831

type UpdateExperimentBasicInfoRequest struct {
	*requests.RoaRequest
	InstanceId   string `position:"Path" name:"instanceId"`
	SceneId      string `position:"Path" name:"sceneId"`
	ExperimentId string `position:"Path" name:"experimentId"`
}

UpdateExperimentBasicInfoRequest is the request struct for api UpdateExperimentBasicInfo

func CreateUpdateExperimentBasicInfoRequest added in v1.61.831

func CreateUpdateExperimentBasicInfoRequest() (request *UpdateExperimentBasicInfoRequest)

CreateUpdateExperimentBasicInfoRequest creates a request to invoke UpdateExperimentBasicInfo API

type UpdateExperimentBasicInfoResponse added in v1.61.831

type UpdateExperimentBasicInfoResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

UpdateExperimentBasicInfoResponse is the response struct for api UpdateExperimentBasicInfo

func CreateUpdateExperimentBasicInfoResponse added in v1.61.831

func CreateUpdateExperimentBasicInfoResponse() (response *UpdateExperimentBasicInfoResponse)

CreateUpdateExperimentBasicInfoResponse creates a response to parse from UpdateExperimentBasicInfo response

type UpdateExperimentConfigRequest added in v1.61.831

type UpdateExperimentConfigRequest struct {
	*requests.RoaRequest
	InstanceId   string `position:"Path" name:"instanceId"`
	SceneId      string `position:"Path" name:"sceneId"`
	ExperimentId string `position:"Path" name:"experimentId"`
}

UpdateExperimentConfigRequest is the request struct for api UpdateExperimentConfig

func CreateUpdateExperimentConfigRequest added in v1.61.831

func CreateUpdateExperimentConfigRequest() (request *UpdateExperimentConfigRequest)

CreateUpdateExperimentConfigRequest creates a request to invoke UpdateExperimentConfig API

type UpdateExperimentConfigResponse added in v1.61.831

type UpdateExperimentConfigResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

UpdateExperimentConfigResponse is the response struct for api UpdateExperimentConfig

func CreateUpdateExperimentConfigResponse added in v1.61.831

func CreateUpdateExperimentConfigResponse() (response *UpdateExperimentConfigResponse)

CreateUpdateExperimentConfigResponse creates a response to parse from UpdateExperimentConfig response

type UpdateExperimentStatusRequest added in v1.61.831

type UpdateExperimentStatusRequest struct {
	*requests.RoaRequest
	InstanceId   string `position:"Path" name:"instanceId"`
	SceneId      string `position:"Path" name:"sceneId"`
	ExperimentId string `position:"Path" name:"experimentId"`
}

UpdateExperimentStatusRequest is the request struct for api UpdateExperimentStatus

func CreateUpdateExperimentStatusRequest added in v1.61.831

func CreateUpdateExperimentStatusRequest() (request *UpdateExperimentStatusRequest)

CreateUpdateExperimentStatusRequest creates a request to invoke UpdateExperimentStatus API

type UpdateExperimentStatusResponse added in v1.61.831

type UpdateExperimentStatusResponse struct {
	*responses.BaseResponse
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

UpdateExperimentStatusResponse is the response struct for api UpdateExperimentStatus

func CreateUpdateExperimentStatusResponse added in v1.61.831

func CreateUpdateExperimentStatusResponse() (response *UpdateExperimentStatusResponse)

CreateUpdateExperimentStatusResponse creates a response to parse from UpdateExperimentStatus response

type UpgradeInstanceRequest

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

UpgradeInstanceRequest is the request struct for api UpgradeInstance

func CreateUpgradeInstanceRequest

func CreateUpgradeInstanceRequest() (request *UpgradeInstanceRequest)

CreateUpgradeInstanceRequest creates a request to invoke UpgradeInstance API

type UpgradeInstanceResponse

type UpgradeInstanceResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    Result `json:"result" xml:"result"`
}

UpgradeInstanceResponse is the response struct for api UpgradeInstance

func CreateUpgradeInstanceResponse

func CreateUpgradeInstanceResponse() (response *UpgradeInstanceResponse)

CreateUpgradeInstanceResponse creates a response to parse from UpgradeInstance response

type UserCluster added in v1.61.831

type UserCluster struct {
	Name        string `json:"name" xml:"name"`
	Status      string `json:"status" xml:"status"`
	GmtCreate   string `json:"gmtCreate" xml:"gmtCreate"`
	GmtModified string `json:"gmtModified" xml:"gmtModified"`
	Meta        Meta   `json:"meta" xml:"meta"`
}

UserCluster is a nested struct in airec response

type ValidateInstanceRequest

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

ValidateInstanceRequest is the request struct for api ValidateInstance

func CreateValidateInstanceRequest

func CreateValidateInstanceRequest() (request *ValidateInstanceRequest)

CreateValidateInstanceRequest creates a request to invoke ValidateInstance API

type ValidateInstanceResponse

type ValidateInstanceResponse struct {
	*responses.BaseResponse
	Code      string `json:"code" xml:"code"`
	Message   string `json:"message" xml:"message"`
	RequestId string `json:"requestId" xml:"requestId"`
	Result    bool   `json:"result" xml:"result"`
}

ValidateInstanceResponse is the response struct for api ValidateInstance

func CreateValidateInstanceResponse

func CreateValidateInstanceResponse() (response *ValidateInstanceResponse)

CreateValidateInstanceResponse creates a response to parse from ValidateInstance response

Source Files

Jump to

Keyboard shortcuts

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