opensearch

package
v1.62.411 Latest Latest
Warning

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

Go to latest
Published: Jul 3, 2023 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.88

func GetEndpointMap() map[string]string

GetEndpointMap Get Endpoint Data Map

func GetEndpointType ¶ added in v1.61.88

func GetEndpointType() string

GetEndpointType Get Endpoint Type Value

func SetClientProperty ¶ added in v1.61.88

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

SetClientProperty Set Property by Reflect

func SetEndpointDataToClient ¶ added in v1.61.88

func SetEndpointDataToClient(client *Client)

SetEndpointDataToClient Set EndpointMap and ENdpointType

Types ¶

type Algo ¶ added in v1.61.1033

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

Algo is a nested struct in opensearch response

type Belongs ¶ added in v1.62.56

type Belongs struct {
	Category string `json:"Category" xml:"Category"`
	Domain   string `json:"Domain" xml:"Domain"`
	Language string `json:"Language" xml:"Language"`
}

Belongs is a nested struct in opensearch response

type BindESUserAnalyzerRequest ¶ added in v1.62.56

type BindESUserAnalyzerRequest struct {
	*requests.RoaRequest
	EsInstanceId     string `position:"Path" name:"esInstanceId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

BindESUserAnalyzerRequest is the request struct for api BindESUserAnalyzer

func CreateBindESUserAnalyzerRequest ¶ added in v1.62.56

func CreateBindESUserAnalyzerRequest() (request *BindESUserAnalyzerRequest)

CreateBindESUserAnalyzerRequest creates a request to invoke BindESUserAnalyzer API

type BindESUserAnalyzerResponse ¶ added in v1.62.56

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

BindESUserAnalyzerResponse is the response struct for api BindESUserAnalyzer

func CreateBindESUserAnalyzerResponse ¶ added in v1.62.56

func CreateBindESUserAnalyzerResponse() (response *BindESUserAnalyzerResponse)

CreateBindESUserAnalyzerResponse creates a response to parse from BindESUserAnalyzer response

type BindEsInstanceRequest ¶ added in v1.62.56

type BindEsInstanceRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

BindEsInstanceRequest is the request struct for api BindEsInstance

func CreateBindEsInstanceRequest ¶ added in v1.62.56

func CreateBindEsInstanceRequest() (request *BindEsInstanceRequest)

CreateBindEsInstanceRequest creates a request to invoke BindEsInstance API

type BindEsInstanceResponse ¶ added in v1.62.56

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

BindEsInstanceResponse is the response struct for api BindEsInstance

func CreateBindEsInstanceResponse ¶ added in v1.62.56

func CreateBindEsInstanceResponse() (response *BindEsInstanceResponse)

CreateBindEsInstanceResponse creates a response to parse from BindEsInstance 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 ¶ added in v1.61.88

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 ¶ added in v1.61.88

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) BindESUserAnalyzer ¶ added in v1.62.56

func (client *Client) BindESUserAnalyzer(request *BindESUserAnalyzerRequest) (response *BindESUserAnalyzerResponse, err error)

BindESUserAnalyzer invokes the opensearch.BindESUserAnalyzer API synchronously

func (*Client) BindESUserAnalyzerWithCallback ¶ added in v1.62.56

func (client *Client) BindESUserAnalyzerWithCallback(request *BindESUserAnalyzerRequest, callback func(response *BindESUserAnalyzerResponse, err error)) <-chan int

BindESUserAnalyzerWithCallback invokes the opensearch.BindESUserAnalyzer API asynchronously

func (*Client) BindESUserAnalyzerWithChan ¶ added in v1.62.56

func (client *Client) BindESUserAnalyzerWithChan(request *BindESUserAnalyzerRequest) (<-chan *BindESUserAnalyzerResponse, <-chan error)

BindESUserAnalyzerWithChan invokes the opensearch.BindESUserAnalyzer API asynchronously

func (*Client) BindEsInstance ¶ added in v1.62.56

func (client *Client) BindEsInstance(request *BindEsInstanceRequest) (response *BindEsInstanceResponse, err error)

BindEsInstance invokes the opensearch.BindEsInstance API synchronously

func (*Client) BindEsInstanceWithCallback ¶ added in v1.62.56

func (client *Client) BindEsInstanceWithCallback(request *BindEsInstanceRequest, callback func(response *BindEsInstanceResponse, err error)) <-chan int

BindEsInstanceWithCallback invokes the opensearch.BindEsInstance API asynchronously

func (*Client) BindEsInstanceWithChan ¶ added in v1.62.56

func (client *Client) BindEsInstanceWithChan(request *BindEsInstanceRequest) (<-chan *BindEsInstanceResponse, <-chan error)

BindEsInstanceWithChan invokes the opensearch.BindEsInstance API asynchronously

func (*Client) CompileSortScript ¶ added in v1.61.88

func (client *Client) CompileSortScript(request *CompileSortScriptRequest) (response *CompileSortScriptResponse, err error)

CompileSortScript invokes the opensearch.CompileSortScript API synchronously

func (*Client) CompileSortScriptWithCallback ¶ added in v1.61.88

func (client *Client) CompileSortScriptWithCallback(request *CompileSortScriptRequest, callback func(response *CompileSortScriptResponse, err error)) <-chan int

CompileSortScriptWithCallback invokes the opensearch.CompileSortScript API asynchronously

func (*Client) CompileSortScriptWithChan ¶ added in v1.61.88

func (client *Client) CompileSortScriptWithChan(request *CompileSortScriptRequest) (<-chan *CompileSortScriptResponse, <-chan error)

CompileSortScriptWithChan invokes the opensearch.CompileSortScript API asynchronously

func (*Client) CreateABTestExperiment ¶ added in v1.61.367

func (client *Client) CreateABTestExperiment(request *CreateABTestExperimentRequest) (response *CreateABTestExperimentResponse, err error)

CreateABTestExperiment invokes the opensearch.CreateABTestExperiment API synchronously

func (*Client) CreateABTestExperimentWithCallback ¶ added in v1.61.367

func (client *Client) CreateABTestExperimentWithCallback(request *CreateABTestExperimentRequest, callback func(response *CreateABTestExperimentResponse, err error)) <-chan int

CreateABTestExperimentWithCallback invokes the opensearch.CreateABTestExperiment API asynchronously

func (*Client) CreateABTestExperimentWithChan ¶ added in v1.61.367

func (client *Client) CreateABTestExperimentWithChan(request *CreateABTestExperimentRequest) (<-chan *CreateABTestExperimentResponse, <-chan error)

CreateABTestExperimentWithChan invokes the opensearch.CreateABTestExperiment API asynchronously

func (*Client) CreateABTestGroup ¶ added in v1.61.367

func (client *Client) CreateABTestGroup(request *CreateABTestGroupRequest) (response *CreateABTestGroupResponse, err error)

CreateABTestGroup invokes the opensearch.CreateABTestGroup API synchronously

func (*Client) CreateABTestGroupWithCallback ¶ added in v1.61.367

func (client *Client) CreateABTestGroupWithCallback(request *CreateABTestGroupRequest, callback func(response *CreateABTestGroupResponse, err error)) <-chan int

CreateABTestGroupWithCallback invokes the opensearch.CreateABTestGroup API asynchronously

func (*Client) CreateABTestGroupWithChan ¶ added in v1.61.367

func (client *Client) CreateABTestGroupWithChan(request *CreateABTestGroupRequest) (<-chan *CreateABTestGroupResponse, <-chan error)

CreateABTestGroupWithChan invokes the opensearch.CreateABTestGroup API asynchronously

func (*Client) CreateABTestScene ¶ added in v1.61.367

func (client *Client) CreateABTestScene(request *CreateABTestSceneRequest) (response *CreateABTestSceneResponse, err error)

CreateABTestScene invokes the opensearch.CreateABTestScene API synchronously

func (*Client) CreateABTestSceneWithCallback ¶ added in v1.61.367

func (client *Client) CreateABTestSceneWithCallback(request *CreateABTestSceneRequest, callback func(response *CreateABTestSceneResponse, err error)) <-chan int

CreateABTestSceneWithCallback invokes the opensearch.CreateABTestScene API asynchronously

func (*Client) CreateABTestSceneWithChan ¶ added in v1.61.367

func (client *Client) CreateABTestSceneWithChan(request *CreateABTestSceneRequest) (<-chan *CreateABTestSceneResponse, <-chan error)

CreateABTestSceneWithChan invokes the opensearch.CreateABTestScene API asynchronously

func (*Client) CreateApp ¶ added in v1.61.225

func (client *Client) CreateApp(request *CreateAppRequest) (response *CreateAppResponse, err error)

CreateApp invokes the opensearch.CreateApp API synchronously

func (*Client) CreateAppGroup ¶ added in v1.61.225

func (client *Client) CreateAppGroup(request *CreateAppGroupRequest) (response *CreateAppGroupResponse, err error)

CreateAppGroup invokes the opensearch.CreateAppGroup API synchronously

func (*Client) CreateAppGroupWithCallback ¶ added in v1.61.225

func (client *Client) CreateAppGroupWithCallback(request *CreateAppGroupRequest, callback func(response *CreateAppGroupResponse, err error)) <-chan int

CreateAppGroupWithCallback invokes the opensearch.CreateAppGroup API asynchronously

func (*Client) CreateAppGroupWithChan ¶ added in v1.61.225

func (client *Client) CreateAppGroupWithChan(request *CreateAppGroupRequest) (<-chan *CreateAppGroupResponse, <-chan error)

CreateAppGroupWithChan invokes the opensearch.CreateAppGroup API asynchronously

func (*Client) CreateAppWithCallback ¶ added in v1.61.225

func (client *Client) CreateAppWithCallback(request *CreateAppRequest, callback func(response *CreateAppResponse, err error)) <-chan int

CreateAppWithCallback invokes the opensearch.CreateApp API asynchronously

func (*Client) CreateAppWithChan ¶ added in v1.61.225

func (client *Client) CreateAppWithChan(request *CreateAppRequest) (<-chan *CreateAppResponse, <-chan error)

CreateAppWithChan invokes the opensearch.CreateApp API asynchronously

func (*Client) CreateFirstRank ¶ added in v1.61.329

func (client *Client) CreateFirstRank(request *CreateFirstRankRequest) (response *CreateFirstRankResponse, err error)

CreateFirstRank invokes the opensearch.CreateFirstRank API synchronously

func (*Client) CreateFirstRankWithCallback ¶ added in v1.61.329

func (client *Client) CreateFirstRankWithCallback(request *CreateFirstRankRequest, callback func(response *CreateFirstRankResponse, err error)) <-chan int

CreateFirstRankWithCallback invokes the opensearch.CreateFirstRank API asynchronously

func (*Client) CreateFirstRankWithChan ¶ added in v1.61.329

func (client *Client) CreateFirstRankWithChan(request *CreateFirstRankRequest) (<-chan *CreateFirstRankResponse, <-chan error)

CreateFirstRankWithChan invokes the opensearch.CreateFirstRank API asynchronously

func (*Client) CreateFunctionInstance ¶ added in v1.62.56

func (client *Client) CreateFunctionInstance(request *CreateFunctionInstanceRequest) (response *CreateFunctionInstanceResponse, err error)

CreateFunctionInstance invokes the opensearch.CreateFunctionInstance API synchronously

func (*Client) CreateFunctionInstanceWithCallback ¶ added in v1.62.56

func (client *Client) CreateFunctionInstanceWithCallback(request *CreateFunctionInstanceRequest, callback func(response *CreateFunctionInstanceResponse, err error)) <-chan int

CreateFunctionInstanceWithCallback invokes the opensearch.CreateFunctionInstance API asynchronously

func (*Client) CreateFunctionInstanceWithChan ¶ added in v1.62.56

func (client *Client) CreateFunctionInstanceWithChan(request *CreateFunctionInstanceRequest) (<-chan *CreateFunctionInstanceResponse, <-chan error)

CreateFunctionInstanceWithChan invokes the opensearch.CreateFunctionInstance API asynchronously

func (*Client) CreateFunctionTask ¶ added in v1.62.56

func (client *Client) CreateFunctionTask(request *CreateFunctionTaskRequest) (response *CreateFunctionTaskResponse, err error)

CreateFunctionTask invokes the opensearch.CreateFunctionTask API synchronously

func (*Client) CreateFunctionTaskWithCallback ¶ added in v1.62.56

func (client *Client) CreateFunctionTaskWithCallback(request *CreateFunctionTaskRequest, callback func(response *CreateFunctionTaskResponse, err error)) <-chan int

CreateFunctionTaskWithCallback invokes the opensearch.CreateFunctionTask API asynchronously

func (*Client) CreateFunctionTaskWithChan ¶ added in v1.62.56

func (client *Client) CreateFunctionTaskWithChan(request *CreateFunctionTaskRequest) (<-chan *CreateFunctionTaskResponse, <-chan error)

CreateFunctionTaskWithChan invokes the opensearch.CreateFunctionTask API asynchronously

func (*Client) CreateInterventionDictionary ¶ added in v1.61.329

func (client *Client) CreateInterventionDictionary(request *CreateInterventionDictionaryRequest) (response *CreateInterventionDictionaryResponse, err error)

CreateInterventionDictionary invokes the opensearch.CreateInterventionDictionary API synchronously

func (*Client) CreateInterventionDictionaryWithCallback ¶ added in v1.61.329

func (client *Client) CreateInterventionDictionaryWithCallback(request *CreateInterventionDictionaryRequest, callback func(response *CreateInterventionDictionaryResponse, err error)) <-chan int

CreateInterventionDictionaryWithCallback invokes the opensearch.CreateInterventionDictionary API asynchronously

func (*Client) CreateInterventionDictionaryWithChan ¶ added in v1.61.329

func (client *Client) CreateInterventionDictionaryWithChan(request *CreateInterventionDictionaryRequest) (<-chan *CreateInterventionDictionaryResponse, <-chan error)

CreateInterventionDictionaryWithChan invokes the opensearch.CreateInterventionDictionary API asynchronously

func (*Client) CreateQueryProcessor ¶ added in v1.61.329

func (client *Client) CreateQueryProcessor(request *CreateQueryProcessorRequest) (response *CreateQueryProcessorResponse, err error)

CreateQueryProcessor invokes the opensearch.CreateQueryProcessor API synchronously

func (*Client) CreateQueryProcessorWithCallback ¶ added in v1.61.329

func (client *Client) CreateQueryProcessorWithCallback(request *CreateQueryProcessorRequest, callback func(response *CreateQueryProcessorResponse, err error)) <-chan int

CreateQueryProcessorWithCallback invokes the opensearch.CreateQueryProcessor API asynchronously

func (*Client) CreateQueryProcessorWithChan ¶ added in v1.61.329

func (client *Client) CreateQueryProcessorWithChan(request *CreateQueryProcessorRequest) (<-chan *CreateQueryProcessorResponse, <-chan error)

CreateQueryProcessorWithChan invokes the opensearch.CreateQueryProcessor API asynchronously

func (*Client) CreateScheduledTask ¶ added in v1.61.329

func (client *Client) CreateScheduledTask(request *CreateScheduledTaskRequest) (response *CreateScheduledTaskResponse, err error)

CreateScheduledTask invokes the opensearch.CreateScheduledTask API synchronously

func (*Client) CreateScheduledTaskWithCallback ¶ added in v1.61.329

func (client *Client) CreateScheduledTaskWithCallback(request *CreateScheduledTaskRequest, callback func(response *CreateScheduledTaskResponse, err error)) <-chan int

CreateScheduledTaskWithCallback invokes the opensearch.CreateScheduledTask API asynchronously

func (*Client) CreateScheduledTaskWithChan ¶ added in v1.61.329

func (client *Client) CreateScheduledTaskWithChan(request *CreateScheduledTaskRequest) (<-chan *CreateScheduledTaskResponse, <-chan error)

CreateScheduledTaskWithChan invokes the opensearch.CreateScheduledTask API asynchronously

func (*Client) CreateSearchStrategy ¶ added in v1.62.56

func (client *Client) CreateSearchStrategy(request *CreateSearchStrategyRequest) (response *CreateSearchStrategyResponse, err error)

CreateSearchStrategy invokes the opensearch.CreateSearchStrategy API synchronously

func (*Client) CreateSearchStrategyWithCallback ¶ added in v1.62.56

func (client *Client) CreateSearchStrategyWithCallback(request *CreateSearchStrategyRequest, callback func(response *CreateSearchStrategyResponse, err error)) <-chan int

CreateSearchStrategyWithCallback invokes the opensearch.CreateSearchStrategy API asynchronously

func (*Client) CreateSearchStrategyWithChan ¶ added in v1.62.56

func (client *Client) CreateSearchStrategyWithChan(request *CreateSearchStrategyRequest) (<-chan *CreateSearchStrategyResponse, <-chan error)

CreateSearchStrategyWithChan invokes the opensearch.CreateSearchStrategy API asynchronously

func (*Client) CreateSecondRank ¶ added in v1.61.329

func (client *Client) CreateSecondRank(request *CreateSecondRankRequest) (response *CreateSecondRankResponse, err error)

CreateSecondRank invokes the opensearch.CreateSecondRank API synchronously

func (*Client) CreateSecondRankWithCallback ¶ added in v1.61.329

func (client *Client) CreateSecondRankWithCallback(request *CreateSecondRankRequest, callback func(response *CreateSecondRankResponse, err error)) <-chan int

CreateSecondRankWithCallback invokes the opensearch.CreateSecondRank API asynchronously

func (*Client) CreateSecondRankWithChan ¶ added in v1.61.329

func (client *Client) CreateSecondRankWithChan(request *CreateSecondRankRequest) (<-chan *CreateSecondRankResponse, <-chan error)

CreateSecondRankWithChan invokes the opensearch.CreateSecondRank API asynchronously

func (*Client) CreateSortScript ¶ added in v1.61.88

func (client *Client) CreateSortScript(request *CreateSortScriptRequest) (response *CreateSortScriptResponse, err error)

CreateSortScript invokes the opensearch.CreateSortScript API synchronously

func (*Client) CreateSortScriptWithCallback ¶ added in v1.61.88

func (client *Client) CreateSortScriptWithCallback(request *CreateSortScriptRequest, callback func(response *CreateSortScriptResponse, err error)) <-chan int

CreateSortScriptWithCallback invokes the opensearch.CreateSortScript API asynchronously

func (*Client) CreateSortScriptWithChan ¶ added in v1.61.88

func (client *Client) CreateSortScriptWithChan(request *CreateSortScriptRequest) (<-chan *CreateSortScriptResponse, <-chan error)

CreateSortScriptWithChan invokes the opensearch.CreateSortScript API asynchronously

func (*Client) CreateUserAnalyzer ¶ added in v1.61.367

func (client *Client) CreateUserAnalyzer(request *CreateUserAnalyzerRequest) (response *CreateUserAnalyzerResponse, err error)

CreateUserAnalyzer invokes the opensearch.CreateUserAnalyzer API synchronously

func (*Client) CreateUserAnalyzerWithCallback ¶ added in v1.61.367

func (client *Client) CreateUserAnalyzerWithCallback(request *CreateUserAnalyzerRequest, callback func(response *CreateUserAnalyzerResponse, err error)) <-chan int

CreateUserAnalyzerWithCallback invokes the opensearch.CreateUserAnalyzer API asynchronously

func (*Client) CreateUserAnalyzerWithChan ¶ added in v1.61.367

func (client *Client) CreateUserAnalyzerWithChan(request *CreateUserAnalyzerRequest) (<-chan *CreateUserAnalyzerResponse, <-chan error)

CreateUserAnalyzerWithChan invokes the opensearch.CreateUserAnalyzer API asynchronously

func (*Client) DeleteABTestExperiment ¶ added in v1.61.367

func (client *Client) DeleteABTestExperiment(request *DeleteABTestExperimentRequest) (response *DeleteABTestExperimentResponse, err error)

DeleteABTestExperiment invokes the opensearch.DeleteABTestExperiment API synchronously

func (*Client) DeleteABTestExperimentWithCallback ¶ added in v1.61.367

func (client *Client) DeleteABTestExperimentWithCallback(request *DeleteABTestExperimentRequest, callback func(response *DeleteABTestExperimentResponse, err error)) <-chan int

DeleteABTestExperimentWithCallback invokes the opensearch.DeleteABTestExperiment API asynchronously

func (*Client) DeleteABTestExperimentWithChan ¶ added in v1.61.367

func (client *Client) DeleteABTestExperimentWithChan(request *DeleteABTestExperimentRequest) (<-chan *DeleteABTestExperimentResponse, <-chan error)

DeleteABTestExperimentWithChan invokes the opensearch.DeleteABTestExperiment API asynchronously

func (*Client) DeleteABTestGroup ¶ added in v1.61.367

func (client *Client) DeleteABTestGroup(request *DeleteABTestGroupRequest) (response *DeleteABTestGroupResponse, err error)

DeleteABTestGroup invokes the opensearch.DeleteABTestGroup API synchronously

func (*Client) DeleteABTestGroupWithCallback ¶ added in v1.61.367

func (client *Client) DeleteABTestGroupWithCallback(request *DeleteABTestGroupRequest, callback func(response *DeleteABTestGroupResponse, err error)) <-chan int

DeleteABTestGroupWithCallback invokes the opensearch.DeleteABTestGroup API asynchronously

func (*Client) DeleteABTestGroupWithChan ¶ added in v1.61.367

func (client *Client) DeleteABTestGroupWithChan(request *DeleteABTestGroupRequest) (<-chan *DeleteABTestGroupResponse, <-chan error)

DeleteABTestGroupWithChan invokes the opensearch.DeleteABTestGroup API asynchronously

func (*Client) DeleteABTestScene ¶ added in v1.61.367

func (client *Client) DeleteABTestScene(request *DeleteABTestSceneRequest) (response *DeleteABTestSceneResponse, err error)

DeleteABTestScene invokes the opensearch.DeleteABTestScene API synchronously

func (*Client) DeleteABTestSceneWithCallback ¶ added in v1.61.367

func (client *Client) DeleteABTestSceneWithCallback(request *DeleteABTestSceneRequest, callback func(response *DeleteABTestSceneResponse, err error)) <-chan int

DeleteABTestSceneWithCallback invokes the opensearch.DeleteABTestScene API asynchronously

func (*Client) DeleteABTestSceneWithChan ¶ added in v1.61.367

func (client *Client) DeleteABTestSceneWithChan(request *DeleteABTestSceneRequest) (<-chan *DeleteABTestSceneResponse, <-chan error)

DeleteABTestSceneWithChan invokes the opensearch.DeleteABTestScene API asynchronously

func (*Client) DeleteFunctionInstance ¶ added in v1.62.56

func (client *Client) DeleteFunctionInstance(request *DeleteFunctionInstanceRequest) (response *DeleteFunctionInstanceResponse, err error)

DeleteFunctionInstance invokes the opensearch.DeleteFunctionInstance API synchronously

func (*Client) DeleteFunctionInstanceWithCallback ¶ added in v1.62.56

func (client *Client) DeleteFunctionInstanceWithCallback(request *DeleteFunctionInstanceRequest, callback func(response *DeleteFunctionInstanceResponse, err error)) <-chan int

DeleteFunctionInstanceWithCallback invokes the opensearch.DeleteFunctionInstance API asynchronously

func (*Client) DeleteFunctionInstanceWithChan ¶ added in v1.62.56

func (client *Client) DeleteFunctionInstanceWithChan(request *DeleteFunctionInstanceRequest) (<-chan *DeleteFunctionInstanceResponse, <-chan error)

DeleteFunctionInstanceWithChan invokes the opensearch.DeleteFunctionInstance API asynchronously

func (*Client) DeleteFunctionTask ¶ added in v1.62.56

func (client *Client) DeleteFunctionTask(request *DeleteFunctionTaskRequest) (response *DeleteFunctionTaskResponse, err error)

DeleteFunctionTask invokes the opensearch.DeleteFunctionTask API synchronously

func (*Client) DeleteFunctionTaskWithCallback ¶ added in v1.62.56

func (client *Client) DeleteFunctionTaskWithCallback(request *DeleteFunctionTaskRequest, callback func(response *DeleteFunctionTaskResponse, err error)) <-chan int

DeleteFunctionTaskWithCallback invokes the opensearch.DeleteFunctionTask API asynchronously

func (*Client) DeleteFunctionTaskWithChan ¶ added in v1.62.56

func (client *Client) DeleteFunctionTaskWithChan(request *DeleteFunctionTaskRequest) (<-chan *DeleteFunctionTaskResponse, <-chan error)

DeleteFunctionTaskWithChan invokes the opensearch.DeleteFunctionTask API asynchronously

func (*Client) DeleteSortScript ¶ added in v1.61.88

func (client *Client) DeleteSortScript(request *DeleteSortScriptRequest) (response *DeleteSortScriptResponse, err error)

DeleteSortScript invokes the opensearch.DeleteSortScript API synchronously

func (*Client) DeleteSortScriptFile ¶ added in v1.61.580

func (client *Client) DeleteSortScriptFile(request *DeleteSortScriptFileRequest) (response *DeleteSortScriptFileResponse, err error)

DeleteSortScriptFile invokes the opensearch.DeleteSortScriptFile API synchronously

func (*Client) DeleteSortScriptFileWithCallback ¶ added in v1.61.580

func (client *Client) DeleteSortScriptFileWithCallback(request *DeleteSortScriptFileRequest, callback func(response *DeleteSortScriptFileResponse, err error)) <-chan int

DeleteSortScriptFileWithCallback invokes the opensearch.DeleteSortScriptFile API asynchronously

func (*Client) DeleteSortScriptFileWithChan ¶ added in v1.61.580

func (client *Client) DeleteSortScriptFileWithChan(request *DeleteSortScriptFileRequest) (<-chan *DeleteSortScriptFileResponse, <-chan error)

DeleteSortScriptFileWithChan invokes the opensearch.DeleteSortScriptFile API asynchronously

func (*Client) DeleteSortScriptWithCallback ¶ added in v1.61.88

func (client *Client) DeleteSortScriptWithCallback(request *DeleteSortScriptRequest, callback func(response *DeleteSortScriptResponse, err error)) <-chan int

DeleteSortScriptWithCallback invokes the opensearch.DeleteSortScript API asynchronously

func (*Client) DeleteSortScriptWithChan ¶ added in v1.61.88

func (client *Client) DeleteSortScriptWithChan(request *DeleteSortScriptRequest) (<-chan *DeleteSortScriptResponse, <-chan error)

DeleteSortScriptWithChan invokes the opensearch.DeleteSortScript API asynchronously

func (*Client) DescribeABTestExperiment ¶ added in v1.61.367

func (client *Client) DescribeABTestExperiment(request *DescribeABTestExperimentRequest) (response *DescribeABTestExperimentResponse, err error)

DescribeABTestExperiment invokes the opensearch.DescribeABTestExperiment API synchronously

func (*Client) DescribeABTestExperimentWithCallback ¶ added in v1.61.367

func (client *Client) DescribeABTestExperimentWithCallback(request *DescribeABTestExperimentRequest, callback func(response *DescribeABTestExperimentResponse, err error)) <-chan int

DescribeABTestExperimentWithCallback invokes the opensearch.DescribeABTestExperiment API asynchronously

func (*Client) DescribeABTestExperimentWithChan ¶ added in v1.61.367

func (client *Client) DescribeABTestExperimentWithChan(request *DescribeABTestExperimentRequest) (<-chan *DescribeABTestExperimentResponse, <-chan error)

DescribeABTestExperimentWithChan invokes the opensearch.DescribeABTestExperiment API asynchronously

func (*Client) DescribeABTestGroup ¶ added in v1.61.367

func (client *Client) DescribeABTestGroup(request *DescribeABTestGroupRequest) (response *DescribeABTestGroupResponse, err error)

DescribeABTestGroup invokes the opensearch.DescribeABTestGroup API synchronously

func (*Client) DescribeABTestGroupWithCallback ¶ added in v1.61.367

func (client *Client) DescribeABTestGroupWithCallback(request *DescribeABTestGroupRequest, callback func(response *DescribeABTestGroupResponse, err error)) <-chan int

DescribeABTestGroupWithCallback invokes the opensearch.DescribeABTestGroup API asynchronously

func (*Client) DescribeABTestGroupWithChan ¶ added in v1.61.367

func (client *Client) DescribeABTestGroupWithChan(request *DescribeABTestGroupRequest) (<-chan *DescribeABTestGroupResponse, <-chan error)

DescribeABTestGroupWithChan invokes the opensearch.DescribeABTestGroup API asynchronously

func (*Client) DescribeABTestScene ¶ added in v1.61.367

func (client *Client) DescribeABTestScene(request *DescribeABTestSceneRequest) (response *DescribeABTestSceneResponse, err error)

DescribeABTestScene invokes the opensearch.DescribeABTestScene API synchronously

func (*Client) DescribeABTestSceneWithCallback ¶ added in v1.61.367

func (client *Client) DescribeABTestSceneWithCallback(request *DescribeABTestSceneRequest, callback func(response *DescribeABTestSceneResponse, err error)) <-chan int

DescribeABTestSceneWithCallback invokes the opensearch.DescribeABTestScene API asynchronously

func (*Client) DescribeABTestSceneWithChan ¶ added in v1.61.367

func (client *Client) DescribeABTestSceneWithChan(request *DescribeABTestSceneRequest) (<-chan *DescribeABTestSceneResponse, <-chan error)

DescribeABTestSceneWithChan invokes the opensearch.DescribeABTestScene API asynchronously

func (*Client) DescribeApp ¶ added in v1.61.225

func (client *Client) DescribeApp(request *DescribeAppRequest) (response *DescribeAppResponse, err error)

DescribeApp invokes the opensearch.DescribeApp API synchronously

func (*Client) DescribeAppGroup ¶ added in v1.61.225

func (client *Client) DescribeAppGroup(request *DescribeAppGroupRequest) (response *DescribeAppGroupResponse, err error)

DescribeAppGroup invokes the opensearch.DescribeAppGroup API synchronously

func (*Client) DescribeAppGroupWithCallback ¶ added in v1.61.225

func (client *Client) DescribeAppGroupWithCallback(request *DescribeAppGroupRequest, callback func(response *DescribeAppGroupResponse, err error)) <-chan int

DescribeAppGroupWithCallback invokes the opensearch.DescribeAppGroup API asynchronously

func (*Client) DescribeAppGroupWithChan ¶ added in v1.61.225

func (client *Client) DescribeAppGroupWithChan(request *DescribeAppGroupRequest) (<-chan *DescribeAppGroupResponse, <-chan error)

DescribeAppGroupWithChan invokes the opensearch.DescribeAppGroup API asynchronously

func (*Client) DescribeAppStatistics ¶ added in v1.61.329

func (client *Client) DescribeAppStatistics(request *DescribeAppStatisticsRequest) (response *DescribeAppStatisticsResponse, err error)

DescribeAppStatistics invokes the opensearch.DescribeAppStatistics API synchronously

func (*Client) DescribeAppStatisticsWithCallback ¶ added in v1.61.329

func (client *Client) DescribeAppStatisticsWithCallback(request *DescribeAppStatisticsRequest, callback func(response *DescribeAppStatisticsResponse, err error)) <-chan int

DescribeAppStatisticsWithCallback invokes the opensearch.DescribeAppStatistics API asynchronously

func (*Client) DescribeAppStatisticsWithChan ¶ added in v1.61.329

func (client *Client) DescribeAppStatisticsWithChan(request *DescribeAppStatisticsRequest) (<-chan *DescribeAppStatisticsResponse, <-chan error)

DescribeAppStatisticsWithChan invokes the opensearch.DescribeAppStatistics API asynchronously

func (*Client) DescribeAppWithCallback ¶ added in v1.61.225

func (client *Client) DescribeAppWithCallback(request *DescribeAppRequest, callback func(response *DescribeAppResponse, err error)) <-chan int

DescribeAppWithCallback invokes the opensearch.DescribeApp API asynchronously

func (*Client) DescribeAppWithChan ¶ added in v1.61.225

func (client *Client) DescribeAppWithChan(request *DescribeAppRequest) (<-chan *DescribeAppResponse, <-chan error)

DescribeAppWithChan invokes the opensearch.DescribeApp API asynchronously

func (*Client) DescribeApps ¶ added in v1.61.225

func (client *Client) DescribeApps(request *DescribeAppsRequest) (response *DescribeAppsResponse, err error)

DescribeApps invokes the opensearch.DescribeApps API synchronously

func (*Client) DescribeAppsWithCallback ¶ added in v1.61.225

func (client *Client) DescribeAppsWithCallback(request *DescribeAppsRequest, callback func(response *DescribeAppsResponse, err error)) <-chan int

DescribeAppsWithCallback invokes the opensearch.DescribeApps API asynchronously

func (*Client) DescribeAppsWithChan ¶ added in v1.61.225

func (client *Client) DescribeAppsWithChan(request *DescribeAppsRequest) (<-chan *DescribeAppsResponse, <-chan error)

DescribeAppsWithChan invokes the opensearch.DescribeApps API asynchronously

func (*Client) DescribeDataCollction ¶ added in v1.61.329

func (client *Client) DescribeDataCollction(request *DescribeDataCollctionRequest) (response *DescribeDataCollctionResponse, err error)

DescribeDataCollction invokes the opensearch.DescribeDataCollction API synchronously

func (*Client) DescribeDataCollctionWithCallback ¶ added in v1.61.329

func (client *Client) DescribeDataCollctionWithCallback(request *DescribeDataCollctionRequest, callback func(response *DescribeDataCollctionResponse, err error)) <-chan int

DescribeDataCollctionWithCallback invokes the opensearch.DescribeDataCollction API asynchronously

func (*Client) DescribeDataCollctionWithChan ¶ added in v1.61.329

func (client *Client) DescribeDataCollctionWithChan(request *DescribeDataCollctionRequest) (<-chan *DescribeDataCollctionResponse, <-chan error)

DescribeDataCollctionWithChan invokes the opensearch.DescribeDataCollction API asynchronously

func (*Client) DescribeFirstRank ¶ added in v1.61.329

func (client *Client) DescribeFirstRank(request *DescribeFirstRankRequest) (response *DescribeFirstRankResponse, err error)

DescribeFirstRank invokes the opensearch.DescribeFirstRank API synchronously

func (*Client) DescribeFirstRankWithCallback ¶ added in v1.61.329

func (client *Client) DescribeFirstRankWithCallback(request *DescribeFirstRankRequest, callback func(response *DescribeFirstRankResponse, err error)) <-chan int

DescribeFirstRankWithCallback invokes the opensearch.DescribeFirstRank API asynchronously

func (*Client) DescribeFirstRankWithChan ¶ added in v1.61.329

func (client *Client) DescribeFirstRankWithChan(request *DescribeFirstRankRequest) (<-chan *DescribeFirstRankResponse, <-chan error)

DescribeFirstRankWithChan invokes the opensearch.DescribeFirstRank API asynchronously

func (*Client) DescribeInterventionDictionary ¶ added in v1.61.329

func (client *Client) DescribeInterventionDictionary(request *DescribeInterventionDictionaryRequest) (response *DescribeInterventionDictionaryResponse, err error)

DescribeInterventionDictionary invokes the opensearch.DescribeInterventionDictionary API synchronously

func (*Client) DescribeInterventionDictionaryWithCallback ¶ added in v1.61.329

func (client *Client) DescribeInterventionDictionaryWithCallback(request *DescribeInterventionDictionaryRequest, callback func(response *DescribeInterventionDictionaryResponse, err error)) <-chan int

DescribeInterventionDictionaryWithCallback invokes the opensearch.DescribeInterventionDictionary API asynchronously

func (*Client) DescribeInterventionDictionaryWithChan ¶ added in v1.61.329

func (client *Client) DescribeInterventionDictionaryWithChan(request *DescribeInterventionDictionaryRequest) (<-chan *DescribeInterventionDictionaryResponse, <-chan error)

DescribeInterventionDictionaryWithChan invokes the opensearch.DescribeInterventionDictionary API asynchronously

func (*Client) DescribeQueryProcessor ¶ added in v1.61.329

func (client *Client) DescribeQueryProcessor(request *DescribeQueryProcessorRequest) (response *DescribeQueryProcessorResponse, err error)

DescribeQueryProcessor invokes the opensearch.DescribeQueryProcessor API synchronously

func (*Client) DescribeQueryProcessorWithCallback ¶ added in v1.61.329

func (client *Client) DescribeQueryProcessorWithCallback(request *DescribeQueryProcessorRequest, callback func(response *DescribeQueryProcessorResponse, err error)) <-chan int

DescribeQueryProcessorWithCallback invokes the opensearch.DescribeQueryProcessor API asynchronously

func (*Client) DescribeQueryProcessorWithChan ¶ added in v1.61.329

func (client *Client) DescribeQueryProcessorWithChan(request *DescribeQueryProcessorRequest) (<-chan *DescribeQueryProcessorResponse, <-chan error)

DescribeQueryProcessorWithChan invokes the opensearch.DescribeQueryProcessor API asynchronously

func (*Client) DescribeRegion ¶ added in v1.61.329

func (client *Client) DescribeRegion(request *DescribeRegionRequest) (response *DescribeRegionResponse, err error)

DescribeRegion invokes the opensearch.DescribeRegion API synchronously

func (*Client) DescribeRegionWithCallback ¶ added in v1.61.329

func (client *Client) DescribeRegionWithCallback(request *DescribeRegionRequest, callback func(response *DescribeRegionResponse, err error)) <-chan int

DescribeRegionWithCallback invokes the opensearch.DescribeRegion API asynchronously

func (*Client) DescribeRegionWithChan ¶ added in v1.61.329

func (client *Client) DescribeRegionWithChan(request *DescribeRegionRequest) (<-chan *DescribeRegionResponse, <-chan error)

DescribeRegionWithChan invokes the opensearch.DescribeRegion API asynchronously

func (*Client) DescribeRegions ¶ added in v1.61.88

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

DescribeRegions invokes the opensearch.DescribeRegions API synchronously

func (*Client) DescribeRegionsWithCallback ¶ added in v1.61.88

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

DescribeRegionsWithCallback invokes the opensearch.DescribeRegions API asynchronously

func (*Client) DescribeRegionsWithChan ¶ added in v1.61.88

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

DescribeRegionsWithChan invokes the opensearch.DescribeRegions API asynchronously

func (*Client) DescribeScheduledTask ¶ added in v1.61.329

func (client *Client) DescribeScheduledTask(request *DescribeScheduledTaskRequest) (response *DescribeScheduledTaskResponse, err error)

DescribeScheduledTask invokes the opensearch.DescribeScheduledTask API synchronously

func (*Client) DescribeScheduledTaskWithCallback ¶ added in v1.61.329

func (client *Client) DescribeScheduledTaskWithCallback(request *DescribeScheduledTaskRequest, callback func(response *DescribeScheduledTaskResponse, err error)) <-chan int

DescribeScheduledTaskWithCallback invokes the opensearch.DescribeScheduledTask API asynchronously

func (*Client) DescribeScheduledTaskWithChan ¶ added in v1.61.329

func (client *Client) DescribeScheduledTaskWithChan(request *DescribeScheduledTaskRequest) (<-chan *DescribeScheduledTaskResponse, <-chan error)

DescribeScheduledTaskWithChan invokes the opensearch.DescribeScheduledTask API asynchronously

func (*Client) DescribeSecondRank ¶ added in v1.61.329

func (client *Client) DescribeSecondRank(request *DescribeSecondRankRequest) (response *DescribeSecondRankResponse, err error)

DescribeSecondRank invokes the opensearch.DescribeSecondRank API synchronously

func (*Client) DescribeSecondRankWithCallback ¶ added in v1.61.329

func (client *Client) DescribeSecondRankWithCallback(request *DescribeSecondRankRequest, callback func(response *DescribeSecondRankResponse, err error)) <-chan int

DescribeSecondRankWithCallback invokes the opensearch.DescribeSecondRank API asynchronously

func (*Client) DescribeSecondRankWithChan ¶ added in v1.61.329

func (client *Client) DescribeSecondRankWithChan(request *DescribeSecondRankRequest) (<-chan *DescribeSecondRankResponse, <-chan error)

DescribeSecondRankWithChan invokes the opensearch.DescribeSecondRank API asynchronously

func (*Client) DescribeSlowQueryStatus ¶ added in v1.61.329

func (client *Client) DescribeSlowQueryStatus(request *DescribeSlowQueryStatusRequest) (response *DescribeSlowQueryStatusResponse, err error)

DescribeSlowQueryStatus invokes the opensearch.DescribeSlowQueryStatus API synchronously

func (*Client) DescribeSlowQueryStatusWithCallback ¶ added in v1.61.329

func (client *Client) DescribeSlowQueryStatusWithCallback(request *DescribeSlowQueryStatusRequest, callback func(response *DescribeSlowQueryStatusResponse, err error)) <-chan int

DescribeSlowQueryStatusWithCallback invokes the opensearch.DescribeSlowQueryStatus API asynchronously

func (*Client) DescribeSlowQueryStatusWithChan ¶ added in v1.61.329

func (client *Client) DescribeSlowQueryStatusWithChan(request *DescribeSlowQueryStatusRequest) (<-chan *DescribeSlowQueryStatusResponse, <-chan error)

DescribeSlowQueryStatusWithChan invokes the opensearch.DescribeSlowQueryStatus API asynchronously

func (*Client) DescribeUserAnalyzer ¶ added in v1.61.367

func (client *Client) DescribeUserAnalyzer(request *DescribeUserAnalyzerRequest) (response *DescribeUserAnalyzerResponse, err error)

DescribeUserAnalyzer invokes the opensearch.DescribeUserAnalyzer API synchronously

func (*Client) DescribeUserAnalyzerWithCallback ¶ added in v1.61.367

func (client *Client) DescribeUserAnalyzerWithCallback(request *DescribeUserAnalyzerRequest, callback func(response *DescribeUserAnalyzerResponse, err error)) <-chan int

DescribeUserAnalyzerWithCallback invokes the opensearch.DescribeUserAnalyzer API asynchronously

func (*Client) DescribeUserAnalyzerWithChan ¶ added in v1.61.367

func (client *Client) DescribeUserAnalyzerWithChan(request *DescribeUserAnalyzerRequest) (<-chan *DescribeUserAnalyzerResponse, <-chan error)

DescribeUserAnalyzerWithChan invokes the opensearch.DescribeUserAnalyzer API asynchronously

func (*Client) DisableSlowQuery ¶ added in v1.61.329

func (client *Client) DisableSlowQuery(request *DisableSlowQueryRequest) (response *DisableSlowQueryResponse, err error)

DisableSlowQuery invokes the opensearch.DisableSlowQuery API synchronously

func (*Client) DisableSlowQueryWithCallback ¶ added in v1.61.329

func (client *Client) DisableSlowQueryWithCallback(request *DisableSlowQueryRequest, callback func(response *DisableSlowQueryResponse, err error)) <-chan int

DisableSlowQueryWithCallback invokes the opensearch.DisableSlowQuery API asynchronously

func (*Client) DisableSlowQueryWithChan ¶ added in v1.61.329

func (client *Client) DisableSlowQueryWithChan(request *DisableSlowQueryRequest) (<-chan *DisableSlowQueryResponse, <-chan error)

DisableSlowQueryWithChan invokes the opensearch.DisableSlowQuery API asynchronously

func (*Client) EnableSlowQuery ¶ added in v1.61.329

func (client *Client) EnableSlowQuery(request *EnableSlowQueryRequest) (response *EnableSlowQueryResponse, err error)

EnableSlowQuery invokes the opensearch.EnableSlowQuery API synchronously

func (*Client) EnableSlowQueryWithCallback ¶ added in v1.61.329

func (client *Client) EnableSlowQueryWithCallback(request *EnableSlowQueryRequest, callback func(response *EnableSlowQueryResponse, err error)) <-chan int

EnableSlowQueryWithCallback invokes the opensearch.EnableSlowQuery API asynchronously

func (*Client) EnableSlowQueryWithChan ¶ added in v1.61.329

func (client *Client) EnableSlowQueryWithChan(request *EnableSlowQueryRequest) (<-chan *EnableSlowQueryResponse, <-chan error)

EnableSlowQueryWithChan invokes the opensearch.EnableSlowQuery API asynchronously

func (*Client) GenerateMergedTable ¶ added in v1.61.1074

func (client *Client) GenerateMergedTable(request *GenerateMergedTableRequest) (response *GenerateMergedTableResponse, err error)

GenerateMergedTable invokes the opensearch.GenerateMergedTable API synchronously

func (*Client) GenerateMergedTableWithCallback ¶ added in v1.61.1074

func (client *Client) GenerateMergedTableWithCallback(request *GenerateMergedTableRequest, callback func(response *GenerateMergedTableResponse, err error)) <-chan int

GenerateMergedTableWithCallback invokes the opensearch.GenerateMergedTable API asynchronously

func (*Client) GenerateMergedTableWithChan ¶ added in v1.61.1074

func (client *Client) GenerateMergedTableWithChan(request *GenerateMergedTableRequest) (<-chan *GenerateMergedTableResponse, <-chan error)

GenerateMergedTableWithChan invokes the opensearch.GenerateMergedTable API asynchronously

func (*Client) GetDomain ¶ added in v1.61.1033

func (client *Client) GetDomain(request *GetDomainRequest) (response *GetDomainResponse, err error)

GetDomain invokes the opensearch.GetDomain API synchronously

func (*Client) GetDomainWithCallback ¶ added in v1.61.1033

func (client *Client) GetDomainWithCallback(request *GetDomainRequest, callback func(response *GetDomainResponse, err error)) <-chan int

GetDomainWithCallback invokes the opensearch.GetDomain API asynchronously

func (*Client) GetDomainWithChan ¶ added in v1.61.1033

func (client *Client) GetDomainWithChan(request *GetDomainRequest) (<-chan *GetDomainResponse, <-chan error)

GetDomainWithChan invokes the opensearch.GetDomain API asynchronously

func (*Client) GetFunctionCurrentVersion ¶ added in v1.62.56

func (client *Client) GetFunctionCurrentVersion(request *GetFunctionCurrentVersionRequest) (response *GetFunctionCurrentVersionResponse, err error)

GetFunctionCurrentVersion invokes the opensearch.GetFunctionCurrentVersion API synchronously

func (*Client) GetFunctionCurrentVersionWithCallback ¶ added in v1.62.56

func (client *Client) GetFunctionCurrentVersionWithCallback(request *GetFunctionCurrentVersionRequest, callback func(response *GetFunctionCurrentVersionResponse, err error)) <-chan int

GetFunctionCurrentVersionWithCallback invokes the opensearch.GetFunctionCurrentVersion API asynchronously

func (*Client) GetFunctionCurrentVersionWithChan ¶ added in v1.62.56

func (client *Client) GetFunctionCurrentVersionWithChan(request *GetFunctionCurrentVersionRequest) (<-chan *GetFunctionCurrentVersionResponse, <-chan error)

GetFunctionCurrentVersionWithChan invokes the opensearch.GetFunctionCurrentVersion API asynchronously

func (*Client) GetFunctionDefaultInstance ¶ added in v1.62.56

func (client *Client) GetFunctionDefaultInstance(request *GetFunctionDefaultInstanceRequest) (response *GetFunctionDefaultInstanceResponse, err error)

GetFunctionDefaultInstance invokes the opensearch.GetFunctionDefaultInstance API synchronously

func (*Client) GetFunctionDefaultInstanceWithCallback ¶ added in v1.62.56

func (client *Client) GetFunctionDefaultInstanceWithCallback(request *GetFunctionDefaultInstanceRequest, callback func(response *GetFunctionDefaultInstanceResponse, err error)) <-chan int

GetFunctionDefaultInstanceWithCallback invokes the opensearch.GetFunctionDefaultInstance API asynchronously

func (*Client) GetFunctionDefaultInstanceWithChan ¶ added in v1.62.56

func (client *Client) GetFunctionDefaultInstanceWithChan(request *GetFunctionDefaultInstanceRequest) (<-chan *GetFunctionDefaultInstanceResponse, <-chan error)

GetFunctionDefaultInstanceWithChan invokes the opensearch.GetFunctionDefaultInstance API asynchronously

func (*Client) GetFunctionInstance ¶ added in v1.62.56

func (client *Client) GetFunctionInstance(request *GetFunctionInstanceRequest) (response *GetFunctionInstanceResponse, err error)

GetFunctionInstance invokes the opensearch.GetFunctionInstance API synchronously

func (*Client) GetFunctionInstanceWithCallback ¶ added in v1.62.56

func (client *Client) GetFunctionInstanceWithCallback(request *GetFunctionInstanceRequest, callback func(response *GetFunctionInstanceResponse, err error)) <-chan int

GetFunctionInstanceWithCallback invokes the opensearch.GetFunctionInstance API asynchronously

func (*Client) GetFunctionInstanceWithChan ¶ added in v1.62.56

func (client *Client) GetFunctionInstanceWithChan(request *GetFunctionInstanceRequest) (<-chan *GetFunctionInstanceResponse, <-chan error)

GetFunctionInstanceWithChan invokes the opensearch.GetFunctionInstance API asynchronously

func (*Client) GetFunctionTask ¶ added in v1.62.56

func (client *Client) GetFunctionTask(request *GetFunctionTaskRequest) (response *GetFunctionTaskResponse, err error)

GetFunctionTask invokes the opensearch.GetFunctionTask API synchronously

func (*Client) GetFunctionTaskWithCallback ¶ added in v1.62.56

func (client *Client) GetFunctionTaskWithCallback(request *GetFunctionTaskRequest, callback func(response *GetFunctionTaskResponse, err error)) <-chan int

GetFunctionTaskWithCallback invokes the opensearch.GetFunctionTask API asynchronously

func (*Client) GetFunctionTaskWithChan ¶ added in v1.62.56

func (client *Client) GetFunctionTaskWithChan(request *GetFunctionTaskRequest) (<-chan *GetFunctionTaskResponse, <-chan error)

GetFunctionTaskWithChan invokes the opensearch.GetFunctionTask API asynchronously

func (*Client) GetFunctionVersion ¶ added in v1.62.56

func (client *Client) GetFunctionVersion(request *GetFunctionVersionRequest) (response *GetFunctionVersionResponse, err error)

GetFunctionVersion invokes the opensearch.GetFunctionVersion API synchronously

func (*Client) GetFunctionVersionWithCallback ¶ added in v1.62.56

func (client *Client) GetFunctionVersionWithCallback(request *GetFunctionVersionRequest, callback func(response *GetFunctionVersionResponse, err error)) <-chan int

GetFunctionVersionWithCallback invokes the opensearch.GetFunctionVersion API asynchronously

func (*Client) GetFunctionVersionWithChan ¶ added in v1.62.56

func (client *Client) GetFunctionVersionWithChan(request *GetFunctionVersionRequest) (<-chan *GetFunctionVersionResponse, <-chan error)

GetFunctionVersionWithChan invokes the opensearch.GetFunctionVersion API asynchronously

func (*Client) GetModelReport ¶ added in v1.61.580

func (client *Client) GetModelReport(request *GetModelReportRequest) (response *GetModelReportResponse, err error)

GetModelReport invokes the opensearch.GetModelReport API synchronously

func (*Client) GetModelReportWithCallback ¶ added in v1.61.580

func (client *Client) GetModelReportWithCallback(request *GetModelReportRequest, callback func(response *GetModelReportResponse, err error)) <-chan int

GetModelReportWithCallback invokes the opensearch.GetModelReport API asynchronously

func (*Client) GetModelReportWithChan ¶ added in v1.61.580

func (client *Client) GetModelReportWithChan(request *GetModelReportRequest) (<-chan *GetModelReportResponse, <-chan error)

GetModelReportWithChan invokes the opensearch.GetModelReport API asynchronously

func (*Client) GetScriptFileNames ¶ added in v1.61.858

func (client *Client) GetScriptFileNames(request *GetScriptFileNamesRequest) (response *GetScriptFileNamesResponse, err error)

GetScriptFileNames invokes the opensearch.GetScriptFileNames API synchronously

func (*Client) GetScriptFileNamesWithCallback ¶ added in v1.61.858

func (client *Client) GetScriptFileNamesWithCallback(request *GetScriptFileNamesRequest, callback func(response *GetScriptFileNamesResponse, err error)) <-chan int

GetScriptFileNamesWithCallback invokes the opensearch.GetScriptFileNames API asynchronously

func (*Client) GetScriptFileNamesWithChan ¶ added in v1.61.858

func (client *Client) GetScriptFileNamesWithChan(request *GetScriptFileNamesRequest) (<-chan *GetScriptFileNamesResponse, <-chan error)

GetScriptFileNamesWithChan invokes the opensearch.GetScriptFileNames API asynchronously

func (*Client) GetSearchStrategy ¶ added in v1.62.56

func (client *Client) GetSearchStrategy(request *GetSearchStrategyRequest) (response *GetSearchStrategyResponse, err error)

GetSearchStrategy invokes the opensearch.GetSearchStrategy API synchronously

func (*Client) GetSearchStrategyWithCallback ¶ added in v1.62.56

func (client *Client) GetSearchStrategyWithCallback(request *GetSearchStrategyRequest, callback func(response *GetSearchStrategyResponse, err error)) <-chan int

GetSearchStrategyWithCallback invokes the opensearch.GetSearchStrategy API asynchronously

func (*Client) GetSearchStrategyWithChan ¶ added in v1.62.56

func (client *Client) GetSearchStrategyWithChan(request *GetSearchStrategyRequest) (<-chan *GetSearchStrategyResponse, <-chan error)

GetSearchStrategyWithChan invokes the opensearch.GetSearchStrategy API asynchronously

func (*Client) GetSortScript ¶ added in v1.61.88

func (client *Client) GetSortScript(request *GetSortScriptRequest) (response *GetSortScriptResponse, err error)

GetSortScript invokes the opensearch.GetSortScript API synchronously

func (*Client) GetSortScriptFile ¶ added in v1.61.88

func (client *Client) GetSortScriptFile(request *GetSortScriptFileRequest) (response *GetSortScriptFileResponse, err error)

GetSortScriptFile invokes the opensearch.GetSortScriptFile API synchronously

func (*Client) GetSortScriptFileWithCallback ¶ added in v1.61.88

func (client *Client) GetSortScriptFileWithCallback(request *GetSortScriptFileRequest, callback func(response *GetSortScriptFileResponse, err error)) <-chan int

GetSortScriptFileWithCallback invokes the opensearch.GetSortScriptFile API asynchronously

func (*Client) GetSortScriptFileWithChan ¶ added in v1.61.88

func (client *Client) GetSortScriptFileWithChan(request *GetSortScriptFileRequest) (<-chan *GetSortScriptFileResponse, <-chan error)

GetSortScriptFileWithChan invokes the opensearch.GetSortScriptFile API asynchronously

func (*Client) GetSortScriptWithCallback ¶ added in v1.61.88

func (client *Client) GetSortScriptWithCallback(request *GetSortScriptRequest, callback func(response *GetSortScriptResponse, err error)) <-chan int

GetSortScriptWithCallback invokes the opensearch.GetSortScript API asynchronously

func (*Client) GetSortScriptWithChan ¶ added in v1.61.88

func (client *Client) GetSortScriptWithChan(request *GetSortScriptRequest) (<-chan *GetSortScriptResponse, <-chan error)

GetSortScriptWithChan invokes the opensearch.GetSortScript API asynchronously

func (*Client) ListABTestExperiments ¶ added in v1.61.367

func (client *Client) ListABTestExperiments(request *ListABTestExperimentsRequest) (response *ListABTestExperimentsResponse, err error)

ListABTestExperiments invokes the opensearch.ListABTestExperiments API synchronously

func (*Client) ListABTestExperimentsWithCallback ¶ added in v1.61.367

func (client *Client) ListABTestExperimentsWithCallback(request *ListABTestExperimentsRequest, callback func(response *ListABTestExperimentsResponse, err error)) <-chan int

ListABTestExperimentsWithCallback invokes the opensearch.ListABTestExperiments API asynchronously

func (*Client) ListABTestExperimentsWithChan ¶ added in v1.61.367

func (client *Client) ListABTestExperimentsWithChan(request *ListABTestExperimentsRequest) (<-chan *ListABTestExperimentsResponse, <-chan error)

ListABTestExperimentsWithChan invokes the opensearch.ListABTestExperiments API asynchronously

func (*Client) ListABTestFixedFlowDividers ¶ added in v1.61.367

func (client *Client) ListABTestFixedFlowDividers(request *ListABTestFixedFlowDividersRequest) (response *ListABTestFixedFlowDividersResponse, err error)

ListABTestFixedFlowDividers invokes the opensearch.ListABTestFixedFlowDividers API synchronously

func (*Client) ListABTestFixedFlowDividersWithCallback ¶ added in v1.61.367

func (client *Client) ListABTestFixedFlowDividersWithCallback(request *ListABTestFixedFlowDividersRequest, callback func(response *ListABTestFixedFlowDividersResponse, err error)) <-chan int

ListABTestFixedFlowDividersWithCallback invokes the opensearch.ListABTestFixedFlowDividers API asynchronously

func (*Client) ListABTestFixedFlowDividersWithChan ¶ added in v1.61.367

func (client *Client) ListABTestFixedFlowDividersWithChan(request *ListABTestFixedFlowDividersRequest) (<-chan *ListABTestFixedFlowDividersResponse, <-chan error)

ListABTestFixedFlowDividersWithChan invokes the opensearch.ListABTestFixedFlowDividers API asynchronously

func (*Client) ListABTestGroups ¶ added in v1.61.367

func (client *Client) ListABTestGroups(request *ListABTestGroupsRequest) (response *ListABTestGroupsResponse, err error)

ListABTestGroups invokes the opensearch.ListABTestGroups API synchronously

func (*Client) ListABTestGroupsWithCallback ¶ added in v1.61.367

func (client *Client) ListABTestGroupsWithCallback(request *ListABTestGroupsRequest, callback func(response *ListABTestGroupsResponse, err error)) <-chan int

ListABTestGroupsWithCallback invokes the opensearch.ListABTestGroups API asynchronously

func (*Client) ListABTestGroupsWithChan ¶ added in v1.61.367

func (client *Client) ListABTestGroupsWithChan(request *ListABTestGroupsRequest) (<-chan *ListABTestGroupsResponse, <-chan error)

ListABTestGroupsWithChan invokes the opensearch.ListABTestGroups API asynchronously

func (*Client) ListABTestScenes ¶ added in v1.61.367

func (client *Client) ListABTestScenes(request *ListABTestScenesRequest) (response *ListABTestScenesResponse, err error)

ListABTestScenes invokes the opensearch.ListABTestScenes API synchronously

func (*Client) ListABTestScenesWithCallback ¶ added in v1.61.367

func (client *Client) ListABTestScenesWithCallback(request *ListABTestScenesRequest, callback func(response *ListABTestScenesResponse, err error)) <-chan int

ListABTestScenesWithCallback invokes the opensearch.ListABTestScenes API asynchronously

func (*Client) ListABTestScenesWithChan ¶ added in v1.61.367

func (client *Client) ListABTestScenesWithChan(request *ListABTestScenesRequest) (<-chan *ListABTestScenesResponse, <-chan error)

ListABTestScenesWithChan invokes the opensearch.ListABTestScenes API asynchronously

func (*Client) ListAppGroups ¶ added in v1.61.225

func (client *Client) ListAppGroups(request *ListAppGroupsRequest) (response *ListAppGroupsResponse, err error)

ListAppGroups invokes the opensearch.ListAppGroups API synchronously

func (*Client) ListAppGroupsWithCallback ¶ added in v1.61.225

func (client *Client) ListAppGroupsWithCallback(request *ListAppGroupsRequest, callback func(response *ListAppGroupsResponse, err error)) <-chan int

ListAppGroupsWithCallback invokes the opensearch.ListAppGroups API asynchronously

func (*Client) ListAppGroupsWithChan ¶ added in v1.61.225

func (client *Client) ListAppGroupsWithChan(request *ListAppGroupsRequest) (<-chan *ListAppGroupsResponse, <-chan error)

ListAppGroupsWithChan invokes the opensearch.ListAppGroups API asynchronously

func (*Client) ListApps ¶

func (client *Client) ListApps(request *ListAppsRequest) (response *ListAppsResponse, err error)

ListApps invokes the opensearch.ListApps API synchronously

func (*Client) ListAppsWithCallback ¶

func (client *Client) ListAppsWithCallback(request *ListAppsRequest, callback func(response *ListAppsResponse, err error)) <-chan int

ListAppsWithCallback invokes the opensearch.ListApps API asynchronously

func (*Client) ListAppsWithChan ¶

func (client *Client) ListAppsWithChan(request *ListAppsRequest) (<-chan *ListAppsResponse, <-chan error)

ListAppsWithChan invokes the opensearch.ListApps API asynchronously

func (*Client) ListDataCollections ¶ added in v1.61.329

func (client *Client) ListDataCollections(request *ListDataCollectionsRequest) (response *ListDataCollectionsResponse, err error)

ListDataCollections invokes the opensearch.ListDataCollections API synchronously

func (*Client) ListDataCollectionsWithCallback ¶ added in v1.61.329

func (client *Client) ListDataCollectionsWithCallback(request *ListDataCollectionsRequest, callback func(response *ListDataCollectionsResponse, err error)) <-chan int

ListDataCollectionsWithCallback invokes the opensearch.ListDataCollections API asynchronously

func (*Client) ListDataCollectionsWithChan ¶ added in v1.61.329

func (client *Client) ListDataCollectionsWithChan(request *ListDataCollectionsRequest) (<-chan *ListDataCollectionsResponse, <-chan error)

ListDataCollectionsWithChan invokes the opensearch.ListDataCollections API asynchronously

func (*Client) ListDataSourceTableFields ¶ added in v1.61.1074

func (client *Client) ListDataSourceTableFields(request *ListDataSourceTableFieldsRequest) (response *ListDataSourceTableFieldsResponse, err error)

ListDataSourceTableFields invokes the opensearch.ListDataSourceTableFields API synchronously

func (*Client) ListDataSourceTableFieldsWithCallback ¶ added in v1.61.1074

func (client *Client) ListDataSourceTableFieldsWithCallback(request *ListDataSourceTableFieldsRequest, callback func(response *ListDataSourceTableFieldsResponse, err error)) <-chan int

ListDataSourceTableFieldsWithCallback invokes the opensearch.ListDataSourceTableFields API asynchronously

func (*Client) ListDataSourceTableFieldsWithChan ¶ added in v1.61.1074

func (client *Client) ListDataSourceTableFieldsWithChan(request *ListDataSourceTableFieldsRequest) (<-chan *ListDataSourceTableFieldsResponse, <-chan error)

ListDataSourceTableFieldsWithChan invokes the opensearch.ListDataSourceTableFields API asynchronously

func (*Client) ListDataSourceTables ¶ added in v1.61.1074

func (client *Client) ListDataSourceTables(request *ListDataSourceTablesRequest) (response *ListDataSourceTablesResponse, err error)

ListDataSourceTables invokes the opensearch.ListDataSourceTables API synchronously

func (*Client) ListDataSourceTablesWithCallback ¶ added in v1.61.1074

func (client *Client) ListDataSourceTablesWithCallback(request *ListDataSourceTablesRequest, callback func(response *ListDataSourceTablesResponse, err error)) <-chan int

ListDataSourceTablesWithCallback invokes the opensearch.ListDataSourceTables API asynchronously

func (*Client) ListDataSourceTablesWithChan ¶ added in v1.61.1074

func (client *Client) ListDataSourceTablesWithChan(request *ListDataSourceTablesRequest) (<-chan *ListDataSourceTablesResponse, <-chan error)

ListDataSourceTablesWithChan invokes the opensearch.ListDataSourceTables API asynchronously

func (*Client) ListFirstRanks ¶ added in v1.61.329

func (client *Client) ListFirstRanks(request *ListFirstRanksRequest) (response *ListFirstRanksResponse, err error)

ListFirstRanks invokes the opensearch.ListFirstRanks API synchronously

func (*Client) ListFirstRanksWithCallback ¶ added in v1.61.329

func (client *Client) ListFirstRanksWithCallback(request *ListFirstRanksRequest, callback func(response *ListFirstRanksResponse, err error)) <-chan int

ListFirstRanksWithCallback invokes the opensearch.ListFirstRanks API asynchronously

func (*Client) ListFirstRanksWithChan ¶ added in v1.61.329

func (client *Client) ListFirstRanksWithChan(request *ListFirstRanksRequest) (<-chan *ListFirstRanksResponse, <-chan error)

ListFirstRanksWithChan invokes the opensearch.ListFirstRanks API asynchronously

func (*Client) ListFunctionInstances ¶ added in v1.62.56

func (client *Client) ListFunctionInstances(request *ListFunctionInstancesRequest) (response *ListFunctionInstancesResponse, err error)

ListFunctionInstances invokes the opensearch.ListFunctionInstances API synchronously

func (*Client) ListFunctionInstancesWithCallback ¶ added in v1.62.56

func (client *Client) ListFunctionInstancesWithCallback(request *ListFunctionInstancesRequest, callback func(response *ListFunctionInstancesResponse, err error)) <-chan int

ListFunctionInstancesWithCallback invokes the opensearch.ListFunctionInstances API asynchronously

func (*Client) ListFunctionInstancesWithChan ¶ added in v1.62.56

func (client *Client) ListFunctionInstancesWithChan(request *ListFunctionInstancesRequest) (<-chan *ListFunctionInstancesResponse, <-chan error)

ListFunctionInstancesWithChan invokes the opensearch.ListFunctionInstances API asynchronously

func (*Client) ListFunctionTasks ¶ added in v1.62.56

func (client *Client) ListFunctionTasks(request *ListFunctionTasksRequest) (response *ListFunctionTasksResponse, err error)

ListFunctionTasks invokes the opensearch.ListFunctionTasks API synchronously

func (*Client) ListFunctionTasksWithCallback ¶ added in v1.62.56

func (client *Client) ListFunctionTasksWithCallback(request *ListFunctionTasksRequest, callback func(response *ListFunctionTasksResponse, err error)) <-chan int

ListFunctionTasksWithCallback invokes the opensearch.ListFunctionTasks API asynchronously

func (*Client) ListFunctionTasksWithChan ¶ added in v1.62.56

func (client *Client) ListFunctionTasksWithChan(request *ListFunctionTasksRequest) (<-chan *ListFunctionTasksResponse, <-chan error)

ListFunctionTasksWithChan invokes the opensearch.ListFunctionTasks API asynchronously

func (*Client) ListInterventionDictionaries ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaries(request *ListInterventionDictionariesRequest) (response *ListInterventionDictionariesResponse, err error)

ListInterventionDictionaries invokes the opensearch.ListInterventionDictionaries API synchronously

func (*Client) ListInterventionDictionariesWithCallback ¶ added in v1.61.329

func (client *Client) ListInterventionDictionariesWithCallback(request *ListInterventionDictionariesRequest, callback func(response *ListInterventionDictionariesResponse, err error)) <-chan int

ListInterventionDictionariesWithCallback invokes the opensearch.ListInterventionDictionaries API asynchronously

func (*Client) ListInterventionDictionariesWithChan ¶ added in v1.61.329

func (client *Client) ListInterventionDictionariesWithChan(request *ListInterventionDictionariesRequest) (<-chan *ListInterventionDictionariesResponse, <-chan error)

ListInterventionDictionariesWithChan invokes the opensearch.ListInterventionDictionaries API asynchronously

func (*Client) ListInterventionDictionaryEntries ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryEntries(request *ListInterventionDictionaryEntriesRequest) (response *ListInterventionDictionaryEntriesResponse, err error)

ListInterventionDictionaryEntries invokes the opensearch.ListInterventionDictionaryEntries API synchronously

func (*Client) ListInterventionDictionaryEntriesWithCallback ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryEntriesWithCallback(request *ListInterventionDictionaryEntriesRequest, callback func(response *ListInterventionDictionaryEntriesResponse, err error)) <-chan int

ListInterventionDictionaryEntriesWithCallback invokes the opensearch.ListInterventionDictionaryEntries API asynchronously

func (*Client) ListInterventionDictionaryEntriesWithChan ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryEntriesWithChan(request *ListInterventionDictionaryEntriesRequest) (<-chan *ListInterventionDictionaryEntriesResponse, <-chan error)

ListInterventionDictionaryEntriesWithChan invokes the opensearch.ListInterventionDictionaryEntries API asynchronously

func (*Client) ListInterventionDictionaryNerResults ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryNerResults(request *ListInterventionDictionaryNerResultsRequest) (response *ListInterventionDictionaryNerResultsResponse, err error)

ListInterventionDictionaryNerResults invokes the opensearch.ListInterventionDictionaryNerResults API synchronously

func (*Client) ListInterventionDictionaryNerResultsWithCallback ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryNerResultsWithCallback(request *ListInterventionDictionaryNerResultsRequest, callback func(response *ListInterventionDictionaryNerResultsResponse, err error)) <-chan int

ListInterventionDictionaryNerResultsWithCallback invokes the opensearch.ListInterventionDictionaryNerResults API asynchronously

func (*Client) ListInterventionDictionaryNerResultsWithChan ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryNerResultsWithChan(request *ListInterventionDictionaryNerResultsRequest) (<-chan *ListInterventionDictionaryNerResultsResponse, <-chan error)

ListInterventionDictionaryNerResultsWithChan invokes the opensearch.ListInterventionDictionaryNerResults API asynchronously

func (*Client) ListInterventionDictionaryRelatedEntities ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryRelatedEntities(request *ListInterventionDictionaryRelatedEntitiesRequest) (response *ListInterventionDictionaryRelatedEntitiesResponse, err error)

ListInterventionDictionaryRelatedEntities invokes the opensearch.ListInterventionDictionaryRelatedEntities API synchronously

func (*Client) ListInterventionDictionaryRelatedEntitiesWithCallback ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryRelatedEntitiesWithCallback(request *ListInterventionDictionaryRelatedEntitiesRequest, callback func(response *ListInterventionDictionaryRelatedEntitiesResponse, err error)) <-chan int

ListInterventionDictionaryRelatedEntitiesWithCallback invokes the opensearch.ListInterventionDictionaryRelatedEntities API asynchronously

func (*Client) ListInterventionDictionaryRelatedEntitiesWithChan ¶ added in v1.61.329

func (client *Client) ListInterventionDictionaryRelatedEntitiesWithChan(request *ListInterventionDictionaryRelatedEntitiesRequest) (<-chan *ListInterventionDictionaryRelatedEntitiesResponse, <-chan error)

ListInterventionDictionaryRelatedEntitiesWithChan invokes the opensearch.ListInterventionDictionaryRelatedEntities API asynchronously

func (*Client) ListModels ¶ added in v1.61.410

func (client *Client) ListModels(request *ListModelsRequest) (response *ListModelsResponse, err error)

ListModels invokes the opensearch.ListModels API synchronously

func (*Client) ListModelsWithCallback ¶ added in v1.61.410

func (client *Client) ListModelsWithCallback(request *ListModelsRequest, callback func(response *ListModelsResponse, err error)) <-chan int

ListModelsWithCallback invokes the opensearch.ListModels API asynchronously

func (*Client) ListModelsWithChan ¶ added in v1.61.410

func (client *Client) ListModelsWithChan(request *ListModelsRequest) (<-chan *ListModelsResponse, <-chan error)

ListModelsWithChan invokes the opensearch.ListModels API asynchronously

func (*Client) ListProceedings ¶ added in v1.62.56

func (client *Client) ListProceedings(request *ListProceedingsRequest) (response *ListProceedingsResponse, err error)

ListProceedings invokes the opensearch.ListProceedings API synchronously

func (*Client) ListProceedingsWithCallback ¶ added in v1.62.56

func (client *Client) ListProceedingsWithCallback(request *ListProceedingsRequest, callback func(response *ListProceedingsResponse, err error)) <-chan int

ListProceedingsWithCallback invokes the opensearch.ListProceedings API asynchronously

func (*Client) ListProceedingsWithChan ¶ added in v1.62.56

func (client *Client) ListProceedingsWithChan(request *ListProceedingsRequest) (<-chan *ListProceedingsResponse, <-chan error)

ListProceedingsWithChan invokes the opensearch.ListProceedings API asynchronously

func (*Client) ListQueryProcessorAnalyzerResults ¶ added in v1.62.56

func (client *Client) ListQueryProcessorAnalyzerResults(request *ListQueryProcessorAnalyzerResultsRequest) (response *ListQueryProcessorAnalyzerResultsResponse, err error)

ListQueryProcessorAnalyzerResults invokes the opensearch.ListQueryProcessorAnalyzerResults API synchronously

func (*Client) ListQueryProcessorAnalyzerResultsWithCallback ¶ added in v1.62.56

func (client *Client) ListQueryProcessorAnalyzerResultsWithCallback(request *ListQueryProcessorAnalyzerResultsRequest, callback func(response *ListQueryProcessorAnalyzerResultsResponse, err error)) <-chan int

ListQueryProcessorAnalyzerResultsWithCallback invokes the opensearch.ListQueryProcessorAnalyzerResults API asynchronously

func (*Client) ListQueryProcessorAnalyzerResultsWithChan ¶ added in v1.62.56

func (client *Client) ListQueryProcessorAnalyzerResultsWithChan(request *ListQueryProcessorAnalyzerResultsRequest) (<-chan *ListQueryProcessorAnalyzerResultsResponse, <-chan error)

ListQueryProcessorAnalyzerResultsWithChan invokes the opensearch.ListQueryProcessorAnalyzerResults API asynchronously

func (*Client) ListQueryProcessorNers ¶ added in v1.61.329

func (client *Client) ListQueryProcessorNers(request *ListQueryProcessorNersRequest) (response *ListQueryProcessorNersResponse, err error)

ListQueryProcessorNers invokes the opensearch.ListQueryProcessorNers API synchronously

func (*Client) ListQueryProcessorNersWithCallback ¶ added in v1.61.329

func (client *Client) ListQueryProcessorNersWithCallback(request *ListQueryProcessorNersRequest, callback func(response *ListQueryProcessorNersResponse, err error)) <-chan int

ListQueryProcessorNersWithCallback invokes the opensearch.ListQueryProcessorNers API asynchronously

func (*Client) ListQueryProcessorNersWithChan ¶ added in v1.61.329

func (client *Client) ListQueryProcessorNersWithChan(request *ListQueryProcessorNersRequest) (<-chan *ListQueryProcessorNersResponse, <-chan error)

ListQueryProcessorNersWithChan invokes the opensearch.ListQueryProcessorNers API asynchronously

func (*Client) ListQueryProcessors ¶ added in v1.61.329

func (client *Client) ListQueryProcessors(request *ListQueryProcessorsRequest) (response *ListQueryProcessorsResponse, err error)

ListQueryProcessors invokes the opensearch.ListQueryProcessors API synchronously

func (*Client) ListQueryProcessorsWithCallback ¶ added in v1.61.329

func (client *Client) ListQueryProcessorsWithCallback(request *ListQueryProcessorsRequest, callback func(response *ListQueryProcessorsResponse, err error)) <-chan int

ListQueryProcessorsWithCallback invokes the opensearch.ListQueryProcessors API asynchronously

func (*Client) ListQueryProcessorsWithChan ¶ added in v1.61.329

func (client *Client) ListQueryProcessorsWithChan(request *ListQueryProcessorsRequest) (<-chan *ListQueryProcessorsResponse, <-chan error)

ListQueryProcessorsWithChan invokes the opensearch.ListQueryProcessors API asynchronously

func (*Client) ListQuotaReviewTasks ¶ added in v1.61.1092

func (client *Client) ListQuotaReviewTasks(request *ListQuotaReviewTasksRequest) (response *ListQuotaReviewTasksResponse, err error)

ListQuotaReviewTasks invokes the opensearch.ListQuotaReviewTasks API synchronously

func (*Client) ListQuotaReviewTasksWithCallback ¶ added in v1.61.1092

func (client *Client) ListQuotaReviewTasksWithCallback(request *ListQuotaReviewTasksRequest, callback func(response *ListQuotaReviewTasksResponse, err error)) <-chan int

ListQuotaReviewTasksWithCallback invokes the opensearch.ListQuotaReviewTasks API asynchronously

func (*Client) ListQuotaReviewTasksWithChan ¶ added in v1.61.1092

func (client *Client) ListQuotaReviewTasksWithChan(request *ListQuotaReviewTasksRequest) (<-chan *ListQuotaReviewTasksResponse, <-chan error)

ListQuotaReviewTasksWithChan invokes the opensearch.ListQuotaReviewTasks API asynchronously

func (*Client) ListScheduledTasks ¶ added in v1.61.329

func (client *Client) ListScheduledTasks(request *ListScheduledTasksRequest) (response *ListScheduledTasksResponse, err error)

ListScheduledTasks invokes the opensearch.ListScheduledTasks API synchronously

func (*Client) ListScheduledTasksWithCallback ¶ added in v1.61.329

func (client *Client) ListScheduledTasksWithCallback(request *ListScheduledTasksRequest, callback func(response *ListScheduledTasksResponse, err error)) <-chan int

ListScheduledTasksWithCallback invokes the opensearch.ListScheduledTasks API asynchronously

func (*Client) ListScheduledTasksWithChan ¶ added in v1.61.329

func (client *Client) ListScheduledTasksWithChan(request *ListScheduledTasksRequest) (<-chan *ListScheduledTasksResponse, <-chan error)

ListScheduledTasksWithChan invokes the opensearch.ListScheduledTasks API asynchronously

func (*Client) ListSearchStrategies ¶ added in v1.62.56

func (client *Client) ListSearchStrategies(request *ListSearchStrategiesRequest) (response *ListSearchStrategiesResponse, err error)

ListSearchStrategies invokes the opensearch.ListSearchStrategies API synchronously

func (*Client) ListSearchStrategiesWithCallback ¶ added in v1.62.56

func (client *Client) ListSearchStrategiesWithCallback(request *ListSearchStrategiesRequest, callback func(response *ListSearchStrategiesResponse, err error)) <-chan int

ListSearchStrategiesWithCallback invokes the opensearch.ListSearchStrategies API asynchronously

func (*Client) ListSearchStrategiesWithChan ¶ added in v1.62.56

func (client *Client) ListSearchStrategiesWithChan(request *ListSearchStrategiesRequest) (<-chan *ListSearchStrategiesResponse, <-chan error)

ListSearchStrategiesWithChan invokes the opensearch.ListSearchStrategies API asynchronously

func (*Client) ListSecondRanks ¶ added in v1.61.329

func (client *Client) ListSecondRanks(request *ListSecondRanksRequest) (response *ListSecondRanksResponse, err error)

ListSecondRanks invokes the opensearch.ListSecondRanks API synchronously

func (*Client) ListSecondRanksWithCallback ¶ added in v1.61.329

func (client *Client) ListSecondRanksWithCallback(request *ListSecondRanksRequest, callback func(response *ListSecondRanksResponse, err error)) <-chan int

ListSecondRanksWithCallback invokes the opensearch.ListSecondRanks API asynchronously

func (*Client) ListSecondRanksWithChan ¶ added in v1.61.329

func (client *Client) ListSecondRanksWithChan(request *ListSecondRanksRequest) (<-chan *ListSecondRanksResponse, <-chan error)

ListSecondRanksWithChan invokes the opensearch.ListSecondRanks API asynchronously

func (*Client) ListSlowQueryCategories ¶ added in v1.61.329

func (client *Client) ListSlowQueryCategories(request *ListSlowQueryCategoriesRequest) (response *ListSlowQueryCategoriesResponse, err error)

ListSlowQueryCategories invokes the opensearch.ListSlowQueryCategories API synchronously

func (*Client) ListSlowQueryCategoriesWithCallback ¶ added in v1.61.329

func (client *Client) ListSlowQueryCategoriesWithCallback(request *ListSlowQueryCategoriesRequest, callback func(response *ListSlowQueryCategoriesResponse, err error)) <-chan int

ListSlowQueryCategoriesWithCallback invokes the opensearch.ListSlowQueryCategories API asynchronously

func (*Client) ListSlowQueryCategoriesWithChan ¶ added in v1.61.329

func (client *Client) ListSlowQueryCategoriesWithChan(request *ListSlowQueryCategoriesRequest) (<-chan *ListSlowQueryCategoriesResponse, <-chan error)

ListSlowQueryCategoriesWithChan invokes the opensearch.ListSlowQueryCategories API asynchronously

func (*Client) ListSlowQueryQueries ¶ added in v1.61.329

func (client *Client) ListSlowQueryQueries(request *ListSlowQueryQueriesRequest) (response *ListSlowQueryQueriesResponse, err error)

ListSlowQueryQueries invokes the opensearch.ListSlowQueryQueries API synchronously

func (*Client) ListSlowQueryQueriesWithCallback ¶ added in v1.61.329

func (client *Client) ListSlowQueryQueriesWithCallback(request *ListSlowQueryQueriesRequest, callback func(response *ListSlowQueryQueriesResponse, err error)) <-chan int

ListSlowQueryQueriesWithCallback invokes the opensearch.ListSlowQueryQueries API asynchronously

func (*Client) ListSlowQueryQueriesWithChan ¶ added in v1.61.329

func (client *Client) ListSlowQueryQueriesWithChan(request *ListSlowQueryQueriesRequest) (<-chan *ListSlowQueryQueriesResponse, <-chan error)

ListSlowQueryQueriesWithChan invokes the opensearch.ListSlowQueryQueries API asynchronously

func (*Client) ListSortExpressions ¶ added in v1.61.367

func (client *Client) ListSortExpressions(request *ListSortExpressionsRequest) (response *ListSortExpressionsResponse, err error)

ListSortExpressions invokes the opensearch.ListSortExpressions API synchronously

func (*Client) ListSortExpressionsWithCallback ¶ added in v1.61.367

func (client *Client) ListSortExpressionsWithCallback(request *ListSortExpressionsRequest, callback func(response *ListSortExpressionsResponse, err error)) <-chan int

ListSortExpressionsWithCallback invokes the opensearch.ListSortExpressions API asynchronously

func (*Client) ListSortExpressionsWithChan ¶ added in v1.61.367

func (client *Client) ListSortExpressionsWithChan(request *ListSortExpressionsRequest) (<-chan *ListSortExpressionsResponse, <-chan error)

ListSortExpressionsWithChan invokes the opensearch.ListSortExpressions API asynchronously

func (*Client) ListSortScripts ¶ added in v1.61.88

func (client *Client) ListSortScripts(request *ListSortScriptsRequest) (response *ListSortScriptsResponse, err error)

ListSortScripts invokes the opensearch.ListSortScripts API synchronously

func (*Client) ListSortScriptsWithCallback ¶ added in v1.61.88

func (client *Client) ListSortScriptsWithCallback(request *ListSortScriptsRequest, callback func(response *ListSortScriptsResponse, err error)) <-chan int

ListSortScriptsWithCallback invokes the opensearch.ListSortScripts API asynchronously

func (*Client) ListSortScriptsWithChan ¶ added in v1.61.88

func (client *Client) ListSortScriptsWithChan(request *ListSortScriptsRequest) (<-chan *ListSortScriptsResponse, <-chan error)

ListSortScriptsWithChan invokes the opensearch.ListSortScripts API asynchronously

func (*Client) ListStatisticLogs ¶ added in v1.61.580

func (client *Client) ListStatisticLogs(request *ListStatisticLogsRequest) (response *ListStatisticLogsResponse, err error)

ListStatisticLogs invokes the opensearch.ListStatisticLogs API synchronously

func (*Client) ListStatisticLogsWithCallback ¶ added in v1.61.580

func (client *Client) ListStatisticLogsWithCallback(request *ListStatisticLogsRequest, callback func(response *ListStatisticLogsResponse, err error)) <-chan int

ListStatisticLogsWithCallback invokes the opensearch.ListStatisticLogs API asynchronously

func (*Client) ListStatisticLogsWithChan ¶ added in v1.61.580

func (client *Client) ListStatisticLogsWithChan(request *ListStatisticLogsRequest) (<-chan *ListStatisticLogsResponse, <-chan error)

ListStatisticLogsWithChan invokes the opensearch.ListStatisticLogs API asynchronously

func (*Client) ListStatisticReport ¶ added in v1.61.580

func (client *Client) ListStatisticReport(request *ListStatisticReportRequest) (response *ListStatisticReportResponse, err error)

ListStatisticReport invokes the opensearch.ListStatisticReport API synchronously

func (*Client) ListStatisticReportWithCallback ¶ added in v1.61.580

func (client *Client) ListStatisticReportWithCallback(request *ListStatisticReportRequest, callback func(response *ListStatisticReportResponse, err error)) <-chan int

ListStatisticReportWithCallback invokes the opensearch.ListStatisticReport API asynchronously

func (*Client) ListStatisticReportWithChan ¶ added in v1.61.580

func (client *Client) ListStatisticReportWithChan(request *ListStatisticReportRequest) (<-chan *ListStatisticReportResponse, <-chan error)

ListStatisticReportWithChan invokes the opensearch.ListStatisticReport API asynchronously

func (*Client) ListTagResources ¶ added in v1.62.56

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

ListTagResources invokes the opensearch.ListTagResources API synchronously

func (*Client) ListTagResourcesWithCallback ¶ added in v1.62.56

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

ListTagResourcesWithCallback invokes the opensearch.ListTagResources API asynchronously

func (*Client) ListTagResourcesWithChan ¶ added in v1.62.56

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

ListTagResourcesWithChan invokes the opensearch.ListTagResources API asynchronously

func (*Client) ListUserAnalyzerEntries ¶ added in v1.61.367

func (client *Client) ListUserAnalyzerEntries(request *ListUserAnalyzerEntriesRequest) (response *ListUserAnalyzerEntriesResponse, err error)

ListUserAnalyzerEntries invokes the opensearch.ListUserAnalyzerEntries API synchronously

func (*Client) ListUserAnalyzerEntriesWithCallback ¶ added in v1.61.367

func (client *Client) ListUserAnalyzerEntriesWithCallback(request *ListUserAnalyzerEntriesRequest, callback func(response *ListUserAnalyzerEntriesResponse, err error)) <-chan int

ListUserAnalyzerEntriesWithCallback invokes the opensearch.ListUserAnalyzerEntries API asynchronously

func (*Client) ListUserAnalyzerEntriesWithChan ¶ added in v1.61.367

func (client *Client) ListUserAnalyzerEntriesWithChan(request *ListUserAnalyzerEntriesRequest) (<-chan *ListUserAnalyzerEntriesResponse, <-chan error)

ListUserAnalyzerEntriesWithChan invokes the opensearch.ListUserAnalyzerEntries API asynchronously

func (*Client) ListUserAnalyzers ¶ added in v1.61.367

func (client *Client) ListUserAnalyzers(request *ListUserAnalyzersRequest) (response *ListUserAnalyzersResponse, err error)

ListUserAnalyzers invokes the opensearch.ListUserAnalyzers API synchronously

func (*Client) ListUserAnalyzersWithCallback ¶ added in v1.61.367

func (client *Client) ListUserAnalyzersWithCallback(request *ListUserAnalyzersRequest, callback func(response *ListUserAnalyzersResponse, err error)) <-chan int

ListUserAnalyzersWithCallback invokes the opensearch.ListUserAnalyzers API asynchronously

func (*Client) ListUserAnalyzersWithChan ¶ added in v1.61.367

func (client *Client) ListUserAnalyzersWithChan(request *ListUserAnalyzersRequest) (<-chan *ListUserAnalyzersResponse, <-chan error)

ListUserAnalyzersWithChan invokes the opensearch.ListUserAnalyzers API asynchronously

func (*Client) ModifyAppGroup ¶ added in v1.61.225

func (client *Client) ModifyAppGroup(request *ModifyAppGroupRequest) (response *ModifyAppGroupResponse, err error)

ModifyAppGroup invokes the opensearch.ModifyAppGroup API synchronously

func (*Client) ModifyAppGroupQuota ¶ added in v1.61.225

func (client *Client) ModifyAppGroupQuota(request *ModifyAppGroupQuotaRequest) (response *ModifyAppGroupQuotaResponse, err error)

ModifyAppGroupQuota invokes the opensearch.ModifyAppGroupQuota API synchronously

func (*Client) ModifyAppGroupQuotaWithCallback ¶ added in v1.61.225

func (client *Client) ModifyAppGroupQuotaWithCallback(request *ModifyAppGroupQuotaRequest, callback func(response *ModifyAppGroupQuotaResponse, err error)) <-chan int

ModifyAppGroupQuotaWithCallback invokes the opensearch.ModifyAppGroupQuota API asynchronously

func (*Client) ModifyAppGroupQuotaWithChan ¶ added in v1.61.225

func (client *Client) ModifyAppGroupQuotaWithChan(request *ModifyAppGroupQuotaRequest) (<-chan *ModifyAppGroupQuotaResponse, <-chan error)

ModifyAppGroupQuotaWithChan invokes the opensearch.ModifyAppGroupQuota API asynchronously

func (*Client) ModifyAppGroupWithCallback ¶ added in v1.61.225

func (client *Client) ModifyAppGroupWithCallback(request *ModifyAppGroupRequest, callback func(response *ModifyAppGroupResponse, err error)) <-chan int

ModifyAppGroupWithCallback invokes the opensearch.ModifyAppGroup API asynchronously

func (*Client) ModifyAppGroupWithChan ¶ added in v1.61.225

func (client *Client) ModifyAppGroupWithChan(request *ModifyAppGroupRequest) (<-chan *ModifyAppGroupResponse, <-chan error)

ModifyAppGroupWithChan invokes the opensearch.ModifyAppGroup API asynchronously

func (*Client) ModifyFirstRank ¶ added in v1.61.329

func (client *Client) ModifyFirstRank(request *ModifyFirstRankRequest) (response *ModifyFirstRankResponse, err error)

ModifyFirstRank invokes the opensearch.ModifyFirstRank API synchronously

func (*Client) ModifyFirstRankWithCallback ¶ added in v1.61.329

func (client *Client) ModifyFirstRankWithCallback(request *ModifyFirstRankRequest, callback func(response *ModifyFirstRankResponse, err error)) <-chan int

ModifyFirstRankWithCallback invokes the opensearch.ModifyFirstRank API asynchronously

func (*Client) ModifyFirstRankWithChan ¶ added in v1.61.329

func (client *Client) ModifyFirstRankWithChan(request *ModifyFirstRankRequest) (<-chan *ModifyFirstRankResponse, <-chan error)

ModifyFirstRankWithChan invokes the opensearch.ModifyFirstRank API asynchronously

func (*Client) ModifyQueryProcessor ¶ added in v1.61.329

func (client *Client) ModifyQueryProcessor(request *ModifyQueryProcessorRequest) (response *ModifyQueryProcessorResponse, err error)

ModifyQueryProcessor invokes the opensearch.ModifyQueryProcessor API synchronously

func (*Client) ModifyQueryProcessorWithCallback ¶ added in v1.61.329

func (client *Client) ModifyQueryProcessorWithCallback(request *ModifyQueryProcessorRequest, callback func(response *ModifyQueryProcessorResponse, err error)) <-chan int

ModifyQueryProcessorWithCallback invokes the opensearch.ModifyQueryProcessor API asynchronously

func (*Client) ModifyQueryProcessorWithChan ¶ added in v1.61.329

func (client *Client) ModifyQueryProcessorWithChan(request *ModifyQueryProcessorRequest) (<-chan *ModifyQueryProcessorResponse, <-chan error)

ModifyQueryProcessorWithChan invokes the opensearch.ModifyQueryProcessor API asynchronously

func (*Client) ModifyScheduledTask ¶ added in v1.61.329

func (client *Client) ModifyScheduledTask(request *ModifyScheduledTaskRequest) (response *ModifyScheduledTaskResponse, err error)

ModifyScheduledTask invokes the opensearch.ModifyScheduledTask API synchronously

func (*Client) ModifyScheduledTaskWithCallback ¶ added in v1.61.329

func (client *Client) ModifyScheduledTaskWithCallback(request *ModifyScheduledTaskRequest, callback func(response *ModifyScheduledTaskResponse, err error)) <-chan int

ModifyScheduledTaskWithCallback invokes the opensearch.ModifyScheduledTask API asynchronously

func (*Client) ModifyScheduledTaskWithChan ¶ added in v1.61.329

func (client *Client) ModifyScheduledTaskWithChan(request *ModifyScheduledTaskRequest) (<-chan *ModifyScheduledTaskResponse, <-chan error)

ModifyScheduledTaskWithChan invokes the opensearch.ModifyScheduledTask API asynchronously

func (*Client) ModifySecondRank ¶ added in v1.61.329

func (client *Client) ModifySecondRank(request *ModifySecondRankRequest) (response *ModifySecondRankResponse, err error)

ModifySecondRank invokes the opensearch.ModifySecondRank API synchronously

func (*Client) ModifySecondRankWithCallback ¶ added in v1.61.329

func (client *Client) ModifySecondRankWithCallback(request *ModifySecondRankRequest, callback func(response *ModifySecondRankResponse, err error)) <-chan int

ModifySecondRankWithCallback invokes the opensearch.ModifySecondRank API asynchronously

func (*Client) ModifySecondRankWithChan ¶ added in v1.61.329

func (client *Client) ModifySecondRankWithChan(request *ModifySecondRankRequest) (<-chan *ModifySecondRankResponse, <-chan error)

ModifySecondRankWithChan invokes the opensearch.ModifySecondRank API asynchronously

func (*Client) PreviewModel ¶ added in v1.61.580

func (client *Client) PreviewModel(request *PreviewModelRequest) (response *PreviewModelResponse, err error)

PreviewModel invokes the opensearch.PreviewModel API synchronously

func (*Client) PreviewModelWithCallback ¶ added in v1.61.580

func (client *Client) PreviewModelWithCallback(request *PreviewModelRequest, callback func(response *PreviewModelResponse, err error)) <-chan int

PreviewModelWithCallback invokes the opensearch.PreviewModel API asynchronously

func (*Client) PreviewModelWithChan ¶ added in v1.61.580

func (client *Client) PreviewModelWithChan(request *PreviewModelRequest) (<-chan *PreviewModelResponse, <-chan error)

PreviewModelWithChan invokes the opensearch.PreviewModel API asynchronously

func (*Client) PushInterventionDictionaryEntries ¶ added in v1.61.329

func (client *Client) PushInterventionDictionaryEntries(request *PushInterventionDictionaryEntriesRequest) (response *PushInterventionDictionaryEntriesResponse, err error)

PushInterventionDictionaryEntries invokes the opensearch.PushInterventionDictionaryEntries API synchronously

func (*Client) PushInterventionDictionaryEntriesWithCallback ¶ added in v1.61.329

func (client *Client) PushInterventionDictionaryEntriesWithCallback(request *PushInterventionDictionaryEntriesRequest, callback func(response *PushInterventionDictionaryEntriesResponse, err error)) <-chan int

PushInterventionDictionaryEntriesWithCallback invokes the opensearch.PushInterventionDictionaryEntries API asynchronously

func (*Client) PushInterventionDictionaryEntriesWithChan ¶ added in v1.61.329

func (client *Client) PushInterventionDictionaryEntriesWithChan(request *PushInterventionDictionaryEntriesRequest) (<-chan *PushInterventionDictionaryEntriesResponse, <-chan error)

PushInterventionDictionaryEntriesWithChan invokes the opensearch.PushInterventionDictionaryEntries API asynchronously

func (*Client) PushUserAnalyzerEntries ¶ added in v1.61.367

func (client *Client) PushUserAnalyzerEntries(request *PushUserAnalyzerEntriesRequest) (response *PushUserAnalyzerEntriesResponse, err error)

PushUserAnalyzerEntries invokes the opensearch.PushUserAnalyzerEntries API synchronously

func (*Client) PushUserAnalyzerEntriesWithCallback ¶ added in v1.61.367

func (client *Client) PushUserAnalyzerEntriesWithCallback(request *PushUserAnalyzerEntriesRequest, callback func(response *PushUserAnalyzerEntriesResponse, err error)) <-chan int

PushUserAnalyzerEntriesWithCallback invokes the opensearch.PushUserAnalyzerEntries API asynchronously

func (*Client) PushUserAnalyzerEntriesWithChan ¶ added in v1.61.367

func (client *Client) PushUserAnalyzerEntriesWithChan(request *PushUserAnalyzerEntriesRequest) (<-chan *PushUserAnalyzerEntriesResponse, <-chan error)

PushUserAnalyzerEntriesWithChan invokes the opensearch.PushUserAnalyzerEntries API asynchronously

func (*Client) RankPreviewQuery ¶ added in v1.61.580

func (client *Client) RankPreviewQuery(request *RankPreviewQueryRequest) (response *RankPreviewQueryResponse, err error)

RankPreviewQuery invokes the opensearch.RankPreviewQuery API synchronously

func (*Client) RankPreviewQueryWithCallback ¶ added in v1.61.580

func (client *Client) RankPreviewQueryWithCallback(request *RankPreviewQueryRequest, callback func(response *RankPreviewQueryResponse, err error)) <-chan int

RankPreviewQueryWithCallback invokes the opensearch.RankPreviewQuery API asynchronously

func (*Client) RankPreviewQueryWithChan ¶ added in v1.61.580

func (client *Client) RankPreviewQueryWithChan(request *RankPreviewQueryRequest) (<-chan *RankPreviewQueryResponse, <-chan error)

RankPreviewQueryWithChan invokes the opensearch.RankPreviewQuery API asynchronously

func (*Client) ReleaseSortScript ¶ added in v1.61.88

func (client *Client) ReleaseSortScript(request *ReleaseSortScriptRequest) (response *ReleaseSortScriptResponse, err error)

ReleaseSortScript invokes the opensearch.ReleaseSortScript API synchronously

func (*Client) ReleaseSortScriptWithCallback ¶ added in v1.61.88

func (client *Client) ReleaseSortScriptWithCallback(request *ReleaseSortScriptRequest, callback func(response *ReleaseSortScriptResponse, err error)) <-chan int

ReleaseSortScriptWithCallback invokes the opensearch.ReleaseSortScript API asynchronously

func (*Client) ReleaseSortScriptWithChan ¶ added in v1.61.88

func (client *Client) ReleaseSortScriptWithChan(request *ReleaseSortScriptRequest) (<-chan *ReleaseSortScriptResponse, <-chan error)

ReleaseSortScriptWithChan invokes the opensearch.ReleaseSortScript API asynchronously

func (*Client) RemoveApp ¶ added in v1.61.225

func (client *Client) RemoveApp(request *RemoveAppRequest) (response *RemoveAppResponse, err error)

RemoveApp invokes the opensearch.RemoveApp API synchronously

func (*Client) RemoveAppGroup ¶ added in v1.61.225

func (client *Client) RemoveAppGroup(request *RemoveAppGroupRequest) (response *RemoveAppGroupResponse, err error)

RemoveAppGroup invokes the opensearch.RemoveAppGroup API synchronously

func (*Client) RemoveAppGroupWithCallback ¶ added in v1.61.225

func (client *Client) RemoveAppGroupWithCallback(request *RemoveAppGroupRequest, callback func(response *RemoveAppGroupResponse, err error)) <-chan int

RemoveAppGroupWithCallback invokes the opensearch.RemoveAppGroup API asynchronously

func (*Client) RemoveAppGroupWithChan ¶ added in v1.61.225

func (client *Client) RemoveAppGroupWithChan(request *RemoveAppGroupRequest) (<-chan *RemoveAppGroupResponse, <-chan error)

RemoveAppGroupWithChan invokes the opensearch.RemoveAppGroup API asynchronously

func (*Client) RemoveAppWithCallback ¶ added in v1.61.225

func (client *Client) RemoveAppWithCallback(request *RemoveAppRequest, callback func(response *RemoveAppResponse, err error)) <-chan int

RemoveAppWithCallback invokes the opensearch.RemoveApp API asynchronously

func (*Client) RemoveAppWithChan ¶ added in v1.61.225

func (client *Client) RemoveAppWithChan(request *RemoveAppRequest) (<-chan *RemoveAppResponse, <-chan error)

RemoveAppWithChan invokes the opensearch.RemoveApp API asynchronously

func (*Client) RemoveDataCollection ¶ added in v1.61.329

func (client *Client) RemoveDataCollection(request *RemoveDataCollectionRequest) (response *RemoveDataCollectionResponse, err error)

RemoveDataCollection invokes the opensearch.RemoveDataCollection API synchronously

func (*Client) RemoveDataCollectionWithCallback ¶ added in v1.61.329

func (client *Client) RemoveDataCollectionWithCallback(request *RemoveDataCollectionRequest, callback func(response *RemoveDataCollectionResponse, err error)) <-chan int

RemoveDataCollectionWithCallback invokes the opensearch.RemoveDataCollection API asynchronously

func (*Client) RemoveDataCollectionWithChan ¶ added in v1.61.329

func (client *Client) RemoveDataCollectionWithChan(request *RemoveDataCollectionRequest) (<-chan *RemoveDataCollectionResponse, <-chan error)

RemoveDataCollectionWithChan invokes the opensearch.RemoveDataCollection API asynchronously

func (*Client) RemoveFirstRank ¶ added in v1.61.329

func (client *Client) RemoveFirstRank(request *RemoveFirstRankRequest) (response *RemoveFirstRankResponse, err error)

RemoveFirstRank invokes the opensearch.RemoveFirstRank API synchronously

func (*Client) RemoveFirstRankWithCallback ¶ added in v1.61.329

func (client *Client) RemoveFirstRankWithCallback(request *RemoveFirstRankRequest, callback func(response *RemoveFirstRankResponse, err error)) <-chan int

RemoveFirstRankWithCallback invokes the opensearch.RemoveFirstRank API asynchronously

func (*Client) RemoveFirstRankWithChan ¶ added in v1.61.329

func (client *Client) RemoveFirstRankWithChan(request *RemoveFirstRankRequest) (<-chan *RemoveFirstRankResponse, <-chan error)

RemoveFirstRankWithChan invokes the opensearch.RemoveFirstRank API asynchronously

func (*Client) RemoveInterventionDictionary ¶ added in v1.61.329

func (client *Client) RemoveInterventionDictionary(request *RemoveInterventionDictionaryRequest) (response *RemoveInterventionDictionaryResponse, err error)

RemoveInterventionDictionary invokes the opensearch.RemoveInterventionDictionary API synchronously

func (*Client) RemoveInterventionDictionaryWithCallback ¶ added in v1.61.329

func (client *Client) RemoveInterventionDictionaryWithCallback(request *RemoveInterventionDictionaryRequest, callback func(response *RemoveInterventionDictionaryResponse, err error)) <-chan int

RemoveInterventionDictionaryWithCallback invokes the opensearch.RemoveInterventionDictionary API asynchronously

func (*Client) RemoveInterventionDictionaryWithChan ¶ added in v1.61.329

func (client *Client) RemoveInterventionDictionaryWithChan(request *RemoveInterventionDictionaryRequest) (<-chan *RemoveInterventionDictionaryResponse, <-chan error)

RemoveInterventionDictionaryWithChan invokes the opensearch.RemoveInterventionDictionary API asynchronously

func (*Client) RemoveQueryProcessor ¶ added in v1.61.329

func (client *Client) RemoveQueryProcessor(request *RemoveQueryProcessorRequest) (response *RemoveQueryProcessorResponse, err error)

RemoveQueryProcessor invokes the opensearch.RemoveQueryProcessor API synchronously

func (*Client) RemoveQueryProcessorWithCallback ¶ added in v1.61.329

func (client *Client) RemoveQueryProcessorWithCallback(request *RemoveQueryProcessorRequest, callback func(response *RemoveQueryProcessorResponse, err error)) <-chan int

RemoveQueryProcessorWithCallback invokes the opensearch.RemoveQueryProcessor API asynchronously

func (*Client) RemoveQueryProcessorWithChan ¶ added in v1.61.329

func (client *Client) RemoveQueryProcessorWithChan(request *RemoveQueryProcessorRequest) (<-chan *RemoveQueryProcessorResponse, <-chan error)

RemoveQueryProcessorWithChan invokes the opensearch.RemoveQueryProcessor API asynchronously

func (*Client) RemoveScheduledTask ¶ added in v1.61.329

func (client *Client) RemoveScheduledTask(request *RemoveScheduledTaskRequest) (response *RemoveScheduledTaskResponse, err error)

RemoveScheduledTask invokes the opensearch.RemoveScheduledTask API synchronously

func (*Client) RemoveScheduledTaskWithCallback ¶ added in v1.61.329

func (client *Client) RemoveScheduledTaskWithCallback(request *RemoveScheduledTaskRequest, callback func(response *RemoveScheduledTaskResponse, err error)) <-chan int

RemoveScheduledTaskWithCallback invokes the opensearch.RemoveScheduledTask API asynchronously

func (*Client) RemoveScheduledTaskWithChan ¶ added in v1.61.329

func (client *Client) RemoveScheduledTaskWithChan(request *RemoveScheduledTaskRequest) (<-chan *RemoveScheduledTaskResponse, <-chan error)

RemoveScheduledTaskWithChan invokes the opensearch.RemoveScheduledTask API asynchronously

func (*Client) RemoveSearchStrategy ¶ added in v1.62.56

func (client *Client) RemoveSearchStrategy(request *RemoveSearchStrategyRequest) (response *RemoveSearchStrategyResponse, err error)

RemoveSearchStrategy invokes the opensearch.RemoveSearchStrategy API synchronously

func (*Client) RemoveSearchStrategyWithCallback ¶ added in v1.62.56

func (client *Client) RemoveSearchStrategyWithCallback(request *RemoveSearchStrategyRequest, callback func(response *RemoveSearchStrategyResponse, err error)) <-chan int

RemoveSearchStrategyWithCallback invokes the opensearch.RemoveSearchStrategy API asynchronously

func (*Client) RemoveSearchStrategyWithChan ¶ added in v1.62.56

func (client *Client) RemoveSearchStrategyWithChan(request *RemoveSearchStrategyRequest) (<-chan *RemoveSearchStrategyResponse, <-chan error)

RemoveSearchStrategyWithChan invokes the opensearch.RemoveSearchStrategy API asynchronously

func (*Client) RemoveSecondRank ¶ added in v1.61.329

func (client *Client) RemoveSecondRank(request *RemoveSecondRankRequest) (response *RemoveSecondRankResponse, err error)

RemoveSecondRank invokes the opensearch.RemoveSecondRank API synchronously

func (*Client) RemoveSecondRankWithCallback ¶ added in v1.61.329

func (client *Client) RemoveSecondRankWithCallback(request *RemoveSecondRankRequest, callback func(response *RemoveSecondRankResponse, err error)) <-chan int

RemoveSecondRankWithCallback invokes the opensearch.RemoveSecondRank API asynchronously

func (*Client) RemoveSecondRankWithChan ¶ added in v1.61.329

func (client *Client) RemoveSecondRankWithChan(request *RemoveSecondRankRequest) (<-chan *RemoveSecondRankResponse, <-chan error)

RemoveSecondRankWithChan invokes the opensearch.RemoveSecondRank API asynchronously

func (*Client) RemoveUserAnalyzer ¶ added in v1.61.367

func (client *Client) RemoveUserAnalyzer(request *RemoveUserAnalyzerRequest) (response *RemoveUserAnalyzerResponse, err error)

RemoveUserAnalyzer invokes the opensearch.RemoveUserAnalyzer API synchronously

func (*Client) RemoveUserAnalyzerWithCallback ¶ added in v1.61.367

func (client *Client) RemoveUserAnalyzerWithCallback(request *RemoveUserAnalyzerRequest, callback func(response *RemoveUserAnalyzerResponse, err error)) <-chan int

RemoveUserAnalyzerWithCallback invokes the opensearch.RemoveUserAnalyzer API asynchronously

func (*Client) RemoveUserAnalyzerWithChan ¶ added in v1.61.367

func (client *Client) RemoveUserAnalyzerWithChan(request *RemoveUserAnalyzerRequest) (<-chan *RemoveUserAnalyzerResponse, <-chan error)

RemoveUserAnalyzerWithChan invokes the opensearch.RemoveUserAnalyzer API asynchronously

func (*Client) RenewAppGroup ¶ added in v1.61.425

func (client *Client) RenewAppGroup(request *RenewAppGroupRequest) (response *RenewAppGroupResponse, err error)

RenewAppGroup invokes the opensearch.RenewAppGroup API synchronously

func (*Client) RenewAppGroupWithCallback ¶ added in v1.61.425

func (client *Client) RenewAppGroupWithCallback(request *RenewAppGroupRequest, callback func(response *RenewAppGroupResponse, err error)) <-chan int

RenewAppGroupWithCallback invokes the opensearch.RenewAppGroup API asynchronously

func (*Client) RenewAppGroupWithChan ¶ added in v1.61.425

func (client *Client) RenewAppGroupWithChan(request *RenewAppGroupRequest) (<-chan *RenewAppGroupResponse, <-chan error)

RenewAppGroupWithChan invokes the opensearch.RenewAppGroup API asynchronously

func (*Client) ReplaceAppGroupCommodityCode ¶ added in v1.61.329

func (client *Client) ReplaceAppGroupCommodityCode(request *ReplaceAppGroupCommodityCodeRequest) (response *ReplaceAppGroupCommodityCodeResponse, err error)

ReplaceAppGroupCommodityCode invokes the opensearch.ReplaceAppGroupCommodityCode API synchronously

func (*Client) ReplaceAppGroupCommodityCodeWithCallback ¶ added in v1.61.329

func (client *Client) ReplaceAppGroupCommodityCodeWithCallback(request *ReplaceAppGroupCommodityCodeRequest, callback func(response *ReplaceAppGroupCommodityCodeResponse, err error)) <-chan int

ReplaceAppGroupCommodityCodeWithCallback invokes the opensearch.ReplaceAppGroupCommodityCode API asynchronously

func (*Client) ReplaceAppGroupCommodityCodeWithChan ¶ added in v1.61.329

func (client *Client) ReplaceAppGroupCommodityCodeWithChan(request *ReplaceAppGroupCommodityCodeRequest) (<-chan *ReplaceAppGroupCommodityCodeResponse, <-chan error)

ReplaceAppGroupCommodityCodeWithChan invokes the opensearch.ReplaceAppGroupCommodityCode API asynchronously

func (*Client) SaveSortScriptFile ¶ added in v1.61.88

func (client *Client) SaveSortScriptFile(request *SaveSortScriptFileRequest) (response *SaveSortScriptFileResponse, err error)

SaveSortScriptFile invokes the opensearch.SaveSortScriptFile API synchronously

func (*Client) SaveSortScriptFileWithCallback ¶ added in v1.61.88

func (client *Client) SaveSortScriptFileWithCallback(request *SaveSortScriptFileRequest, callback func(response *SaveSortScriptFileResponse, err error)) <-chan int

SaveSortScriptFileWithCallback invokes the opensearch.SaveSortScriptFile API asynchronously

func (*Client) SaveSortScriptFileWithChan ¶ added in v1.61.88

func (client *Client) SaveSortScriptFileWithChan(request *SaveSortScriptFileRequest) (<-chan *SaveSortScriptFileResponse, <-chan error)

SaveSortScriptFileWithChan invokes the opensearch.SaveSortScriptFile API asynchronously

func (*Client) StartSlowQueryAnalyzer ¶ added in v1.61.329

func (client *Client) StartSlowQueryAnalyzer(request *StartSlowQueryAnalyzerRequest) (response *StartSlowQueryAnalyzerResponse, err error)

StartSlowQueryAnalyzer invokes the opensearch.StartSlowQueryAnalyzer API synchronously

func (*Client) StartSlowQueryAnalyzerWithCallback ¶ added in v1.61.329

func (client *Client) StartSlowQueryAnalyzerWithCallback(request *StartSlowQueryAnalyzerRequest, callback func(response *StartSlowQueryAnalyzerResponse, err error)) <-chan int

StartSlowQueryAnalyzerWithCallback invokes the opensearch.StartSlowQueryAnalyzer API asynchronously

func (*Client) StartSlowQueryAnalyzerWithChan ¶ added in v1.61.329

func (client *Client) StartSlowQueryAnalyzerWithChan(request *StartSlowQueryAnalyzerRequest) (<-chan *StartSlowQueryAnalyzerResponse, <-chan error)

StartSlowQueryAnalyzerWithChan invokes the opensearch.StartSlowQueryAnalyzer API asynchronously

func (*Client) TagResources ¶ added in v1.62.56

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

TagResources invokes the opensearch.TagResources API synchronously

func (*Client) TagResourcesWithCallback ¶ added in v1.62.56

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

TagResourcesWithCallback invokes the opensearch.TagResources API asynchronously

func (*Client) TagResourcesWithChan ¶ added in v1.62.56

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

TagResourcesWithChan invokes the opensearch.TagResources API asynchronously

func (*Client) UnbindESUserAnalyzer ¶ added in v1.62.56

func (client *Client) UnbindESUserAnalyzer(request *UnbindESUserAnalyzerRequest) (response *UnbindESUserAnalyzerResponse, err error)

UnbindESUserAnalyzer invokes the opensearch.UnbindESUserAnalyzer API synchronously

func (*Client) UnbindESUserAnalyzerWithCallback ¶ added in v1.62.56

func (client *Client) UnbindESUserAnalyzerWithCallback(request *UnbindESUserAnalyzerRequest, callback func(response *UnbindESUserAnalyzerResponse, err error)) <-chan int

UnbindESUserAnalyzerWithCallback invokes the opensearch.UnbindESUserAnalyzer API asynchronously

func (*Client) UnbindESUserAnalyzerWithChan ¶ added in v1.62.56

func (client *Client) UnbindESUserAnalyzerWithChan(request *UnbindESUserAnalyzerRequest) (<-chan *UnbindESUserAnalyzerResponse, <-chan error)

UnbindESUserAnalyzerWithChan invokes the opensearch.UnbindESUserAnalyzer API asynchronously

func (*Client) UnbindEsInstance ¶ added in v1.62.56

func (client *Client) UnbindEsInstance(request *UnbindEsInstanceRequest) (response *UnbindEsInstanceResponse, err error)

UnbindEsInstance invokes the opensearch.UnbindEsInstance API synchronously

func (*Client) UnbindEsInstanceWithCallback ¶ added in v1.62.56

func (client *Client) UnbindEsInstanceWithCallback(request *UnbindEsInstanceRequest, callback func(response *UnbindEsInstanceResponse, err error)) <-chan int

UnbindEsInstanceWithCallback invokes the opensearch.UnbindEsInstance API asynchronously

func (*Client) UnbindEsInstanceWithChan ¶ added in v1.62.56

func (client *Client) UnbindEsInstanceWithChan(request *UnbindEsInstanceRequest) (<-chan *UnbindEsInstanceResponse, <-chan error)

UnbindEsInstanceWithChan invokes the opensearch.UnbindEsInstance API asynchronously

func (*Client) UntagResources ¶ added in v1.62.56

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

UntagResources invokes the opensearch.UntagResources API synchronously

func (*Client) UntagResourcesWithCallback ¶ added in v1.62.56

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

UntagResourcesWithCallback invokes the opensearch.UntagResources API asynchronously

func (*Client) UntagResourcesWithChan ¶ added in v1.62.56

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

UntagResourcesWithChan invokes the opensearch.UntagResources API asynchronously

func (*Client) UpdateABTestExperiment ¶ added in v1.61.367

func (client *Client) UpdateABTestExperiment(request *UpdateABTestExperimentRequest) (response *UpdateABTestExperimentResponse, err error)

UpdateABTestExperiment invokes the opensearch.UpdateABTestExperiment API synchronously

func (*Client) UpdateABTestExperimentWithCallback ¶ added in v1.61.367

func (client *Client) UpdateABTestExperimentWithCallback(request *UpdateABTestExperimentRequest, callback func(response *UpdateABTestExperimentResponse, err error)) <-chan int

UpdateABTestExperimentWithCallback invokes the opensearch.UpdateABTestExperiment API asynchronously

func (*Client) UpdateABTestExperimentWithChan ¶ added in v1.61.367

func (client *Client) UpdateABTestExperimentWithChan(request *UpdateABTestExperimentRequest) (<-chan *UpdateABTestExperimentResponse, <-chan error)

UpdateABTestExperimentWithChan invokes the opensearch.UpdateABTestExperiment API asynchronously

func (*Client) UpdateABTestFixedFlowDividers ¶ added in v1.61.367

func (client *Client) UpdateABTestFixedFlowDividers(request *UpdateABTestFixedFlowDividersRequest) (response *UpdateABTestFixedFlowDividersResponse, err error)

UpdateABTestFixedFlowDividers invokes the opensearch.UpdateABTestFixedFlowDividers API synchronously

func (*Client) UpdateABTestFixedFlowDividersWithCallback ¶ added in v1.61.367

func (client *Client) UpdateABTestFixedFlowDividersWithCallback(request *UpdateABTestFixedFlowDividersRequest, callback func(response *UpdateABTestFixedFlowDividersResponse, err error)) <-chan int

UpdateABTestFixedFlowDividersWithCallback invokes the opensearch.UpdateABTestFixedFlowDividers API asynchronously

func (*Client) UpdateABTestFixedFlowDividersWithChan ¶ added in v1.61.367

func (client *Client) UpdateABTestFixedFlowDividersWithChan(request *UpdateABTestFixedFlowDividersRequest) (<-chan *UpdateABTestFixedFlowDividersResponse, <-chan error)

UpdateABTestFixedFlowDividersWithChan invokes the opensearch.UpdateABTestFixedFlowDividers API asynchronously

func (*Client) UpdateABTestGroup ¶ added in v1.61.367

func (client *Client) UpdateABTestGroup(request *UpdateABTestGroupRequest) (response *UpdateABTestGroupResponse, err error)

UpdateABTestGroup invokes the opensearch.UpdateABTestGroup API synchronously

func (*Client) UpdateABTestGroupWithCallback ¶ added in v1.61.367

func (client *Client) UpdateABTestGroupWithCallback(request *UpdateABTestGroupRequest, callback func(response *UpdateABTestGroupResponse, err error)) <-chan int

UpdateABTestGroupWithCallback invokes the opensearch.UpdateABTestGroup API asynchronously

func (*Client) UpdateABTestGroupWithChan ¶ added in v1.61.367

func (client *Client) UpdateABTestGroupWithChan(request *UpdateABTestGroupRequest) (<-chan *UpdateABTestGroupResponse, <-chan error)

UpdateABTestGroupWithChan invokes the opensearch.UpdateABTestGroup API asynchronously

func (*Client) UpdateABTestScene ¶ added in v1.61.367

func (client *Client) UpdateABTestScene(request *UpdateABTestSceneRequest) (response *UpdateABTestSceneResponse, err error)

UpdateABTestScene invokes the opensearch.UpdateABTestScene API synchronously

func (*Client) UpdateABTestSceneWithCallback ¶ added in v1.61.367

func (client *Client) UpdateABTestSceneWithCallback(request *UpdateABTestSceneRequest, callback func(response *UpdateABTestSceneResponse, err error)) <-chan int

UpdateABTestSceneWithCallback invokes the opensearch.UpdateABTestScene API asynchronously

func (*Client) UpdateABTestSceneWithChan ¶ added in v1.61.367

func (client *Client) UpdateABTestSceneWithChan(request *UpdateABTestSceneRequest) (<-chan *UpdateABTestSceneResponse, <-chan error)

UpdateABTestSceneWithChan invokes the opensearch.UpdateABTestScene API asynchronously

func (*Client) UpdateFetchFields ¶ added in v1.61.329

func (client *Client) UpdateFetchFields(request *UpdateFetchFieldsRequest) (response *UpdateFetchFieldsResponse, err error)

UpdateFetchFields invokes the opensearch.UpdateFetchFields API synchronously

func (*Client) UpdateFetchFieldsWithCallback ¶ added in v1.61.329

func (client *Client) UpdateFetchFieldsWithCallback(request *UpdateFetchFieldsRequest, callback func(response *UpdateFetchFieldsResponse, err error)) <-chan int

UpdateFetchFieldsWithCallback invokes the opensearch.UpdateFetchFields API asynchronously

func (*Client) UpdateFetchFieldsWithChan ¶ added in v1.61.329

func (client *Client) UpdateFetchFieldsWithChan(request *UpdateFetchFieldsRequest) (<-chan *UpdateFetchFieldsResponse, <-chan error)

UpdateFetchFieldsWithChan invokes the opensearch.UpdateFetchFields API asynchronously

func (*Client) UpdateFunctionDefaultInstance ¶ added in v1.62.56

func (client *Client) UpdateFunctionDefaultInstance(request *UpdateFunctionDefaultInstanceRequest) (response *UpdateFunctionDefaultInstanceResponse, err error)

UpdateFunctionDefaultInstance invokes the opensearch.UpdateFunctionDefaultInstance API synchronously

func (*Client) UpdateFunctionDefaultInstanceWithCallback ¶ added in v1.62.56

func (client *Client) UpdateFunctionDefaultInstanceWithCallback(request *UpdateFunctionDefaultInstanceRequest, callback func(response *UpdateFunctionDefaultInstanceResponse, err error)) <-chan int

UpdateFunctionDefaultInstanceWithCallback invokes the opensearch.UpdateFunctionDefaultInstance API asynchronously

func (*Client) UpdateFunctionDefaultInstanceWithChan ¶ added in v1.62.56

func (client *Client) UpdateFunctionDefaultInstanceWithChan(request *UpdateFunctionDefaultInstanceRequest) (<-chan *UpdateFunctionDefaultInstanceResponse, <-chan error)

UpdateFunctionDefaultInstanceWithChan invokes the opensearch.UpdateFunctionDefaultInstance API asynchronously

func (*Client) UpdateFunctionInstance ¶ added in v1.62.56

func (client *Client) UpdateFunctionInstance(request *UpdateFunctionInstanceRequest) (response *UpdateFunctionInstanceResponse, err error)

UpdateFunctionInstance invokes the opensearch.UpdateFunctionInstance API synchronously

func (*Client) UpdateFunctionInstanceWithCallback ¶ added in v1.62.56

func (client *Client) UpdateFunctionInstanceWithCallback(request *UpdateFunctionInstanceRequest, callback func(response *UpdateFunctionInstanceResponse, err error)) <-chan int

UpdateFunctionInstanceWithCallback invokes the opensearch.UpdateFunctionInstance API asynchronously

func (*Client) UpdateFunctionInstanceWithChan ¶ added in v1.62.56

func (client *Client) UpdateFunctionInstanceWithChan(request *UpdateFunctionInstanceRequest) (<-chan *UpdateFunctionInstanceResponse, <-chan error)

UpdateFunctionInstanceWithChan invokes the opensearch.UpdateFunctionInstance API asynchronously

func (*Client) UpdateSearchStrategy ¶ added in v1.62.56

func (client *Client) UpdateSearchStrategy(request *UpdateSearchStrategyRequest) (response *UpdateSearchStrategyResponse, err error)

UpdateSearchStrategy invokes the opensearch.UpdateSearchStrategy API synchronously

func (*Client) UpdateSearchStrategyWithCallback ¶ added in v1.62.56

func (client *Client) UpdateSearchStrategyWithCallback(request *UpdateSearchStrategyRequest, callback func(response *UpdateSearchStrategyResponse, err error)) <-chan int

UpdateSearchStrategyWithCallback invokes the opensearch.UpdateSearchStrategy API asynchronously

func (*Client) UpdateSearchStrategyWithChan ¶ added in v1.62.56

func (client *Client) UpdateSearchStrategyWithChan(request *UpdateSearchStrategyRequest) (<-chan *UpdateSearchStrategyResponse, <-chan error)

UpdateSearchStrategyWithChan invokes the opensearch.UpdateSearchStrategy API asynchronously

func (*Client) UpdateSortScript ¶ added in v1.61.1092

func (client *Client) UpdateSortScript(request *UpdateSortScriptRequest) (response *UpdateSortScriptResponse, err error)

UpdateSortScript invokes the opensearch.UpdateSortScript API synchronously

func (*Client) UpdateSortScriptWithCallback ¶ added in v1.61.1092

func (client *Client) UpdateSortScriptWithCallback(request *UpdateSortScriptRequest, callback func(response *UpdateSortScriptResponse, err error)) <-chan int

UpdateSortScriptWithCallback invokes the opensearch.UpdateSortScript API asynchronously

func (*Client) UpdateSortScriptWithChan ¶ added in v1.61.1092

func (client *Client) UpdateSortScriptWithChan(request *UpdateSortScriptRequest) (<-chan *UpdateSortScriptResponse, <-chan error)

UpdateSortScriptWithChan invokes the opensearch.UpdateSortScript API asynchronously

func (*Client) UpdateSummaries ¶ added in v1.61.329

func (client *Client) UpdateSummaries(request *UpdateSummariesRequest) (response *UpdateSummariesResponse, err error)

UpdateSummaries invokes the opensearch.UpdateSummaries API synchronously

func (*Client) UpdateSummariesWithCallback ¶ added in v1.61.329

func (client *Client) UpdateSummariesWithCallback(request *UpdateSummariesRequest, callback func(response *UpdateSummariesResponse, err error)) <-chan int

UpdateSummariesWithCallback invokes the opensearch.UpdateSummaries API asynchronously

func (*Client) UpdateSummariesWithChan ¶ added in v1.61.329

func (client *Client) UpdateSummariesWithChan(request *UpdateSummariesRequest) (<-chan *UpdateSummariesResponse, <-chan error)

UpdateSummariesWithChan invokes the opensearch.UpdateSummaries API asynchronously

func (*Client) ValidateDataSources ¶ added in v1.62.56

func (client *Client) ValidateDataSources(request *ValidateDataSourcesRequest) (response *ValidateDataSourcesResponse, err error)

ValidateDataSources invokes the opensearch.ValidateDataSources API synchronously

func (*Client) ValidateDataSourcesWithCallback ¶ added in v1.62.56

func (client *Client) ValidateDataSourcesWithCallback(request *ValidateDataSourcesRequest, callback func(response *ValidateDataSourcesResponse, err error)) <-chan int

ValidateDataSourcesWithCallback invokes the opensearch.ValidateDataSources API asynchronously

func (*Client) ValidateDataSourcesWithChan ¶ added in v1.62.56

func (client *Client) ValidateDataSourcesWithChan(request *ValidateDataSourcesRequest) (<-chan *ValidateDataSourcesResponse, <-chan error)

ValidateDataSourcesWithChan invokes the opensearch.ValidateDataSources API asynchronously

type CompileSortScriptRequest ¶ added in v1.61.88

type CompileSortScriptRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

CompileSortScriptRequest is the request struct for api CompileSortScript

func CreateCompileSortScriptRequest ¶ added in v1.61.88

func CreateCompileSortScriptRequest() (request *CompileSortScriptRequest)

CreateCompileSortScriptRequest creates a request to invoke CompileSortScript API

type CompileSortScriptResponse ¶ added in v1.61.88

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

CompileSortScriptResponse is the response struct for api CompileSortScript

func CreateCompileSortScriptResponse ¶ added in v1.61.88

func CreateCompileSortScriptResponse() (response *CompileSortScriptResponse)

CreateCompileSortScriptResponse creates a response to parse from CompileSortScript response

type CreateABTestExperimentRequest ¶ added in v1.61.367

type CreateABTestExperimentRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

CreateABTestExperimentRequest is the request struct for api CreateABTestExperiment

func CreateCreateABTestExperimentRequest ¶ added in v1.61.367

func CreateCreateABTestExperimentRequest() (request *CreateABTestExperimentRequest)

CreateCreateABTestExperimentRequest creates a request to invoke CreateABTestExperiment API

type CreateABTestExperimentResponse ¶ added in v1.61.367

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

CreateABTestExperimentResponse is the response struct for api CreateABTestExperiment

func CreateCreateABTestExperimentResponse ¶ added in v1.61.367

func CreateCreateABTestExperimentResponse() (response *CreateABTestExperimentResponse)

CreateCreateABTestExperimentResponse creates a response to parse from CreateABTestExperiment response

type CreateABTestGroupRequest ¶ added in v1.61.367

type CreateABTestGroupRequest struct {
	*requests.RoaRequest
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

CreateABTestGroupRequest is the request struct for api CreateABTestGroup

func CreateCreateABTestGroupRequest ¶ added in v1.61.367

func CreateCreateABTestGroupRequest() (request *CreateABTestGroupRequest)

CreateCreateABTestGroupRequest creates a request to invoke CreateABTestGroup API

type CreateABTestGroupResponse ¶ added in v1.61.367

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

CreateABTestGroupResponse is the response struct for api CreateABTestGroup

func CreateCreateABTestGroupResponse ¶ added in v1.61.367

func CreateCreateABTestGroupResponse() (response *CreateABTestGroupResponse)

CreateCreateABTestGroupResponse creates a response to parse from CreateABTestGroup response

type CreateABTestSceneRequest ¶ added in v1.61.367

type CreateABTestSceneRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

CreateABTestSceneRequest is the request struct for api CreateABTestScene

func CreateCreateABTestSceneRequest ¶ added in v1.61.367

func CreateCreateABTestSceneRequest() (request *CreateABTestSceneRequest)

CreateCreateABTestSceneRequest creates a request to invoke CreateABTestScene API

type CreateABTestSceneResponse ¶ added in v1.61.367

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

CreateABTestSceneResponse is the response struct for api CreateABTestScene

func CreateCreateABTestSceneResponse ¶ added in v1.61.367

func CreateCreateABTestSceneResponse() (response *CreateABTestSceneResponse)

CreateCreateABTestSceneResponse creates a response to parse from CreateABTestScene response

type CreateAppGroupRequest ¶ added in v1.61.225

type CreateAppGroupRequest struct {
	*requests.RoaRequest
}

CreateAppGroupRequest is the request struct for api CreateAppGroup

func CreateCreateAppGroupRequest ¶ added in v1.61.225

func CreateCreateAppGroupRequest() (request *CreateAppGroupRequest)

CreateCreateAppGroupRequest creates a request to invoke CreateAppGroup API

type CreateAppGroupResponse ¶ added in v1.61.225

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

CreateAppGroupResponse is the response struct for api CreateAppGroup

func CreateCreateAppGroupResponse ¶ added in v1.61.225

func CreateCreateAppGroupResponse() (response *CreateAppGroupResponse)

CreateCreateAppGroupResponse creates a response to parse from CreateAppGroup response

type CreateAppRequest ¶ added in v1.61.225

type CreateAppRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

CreateAppRequest is the request struct for api CreateApp

func CreateCreateAppRequest ¶ added in v1.61.225

func CreateCreateAppRequest() (request *CreateAppRequest)

CreateCreateAppRequest creates a request to invoke CreateApp API

type CreateAppResponse ¶ added in v1.61.225

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

CreateAppResponse is the response struct for api CreateApp

func CreateCreateAppResponse ¶ added in v1.61.225

func CreateCreateAppResponse() (response *CreateAppResponse)

CreateCreateAppResponse creates a response to parse from CreateApp response

type CreateFirstRankRequest ¶ added in v1.61.329

type CreateFirstRankRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

CreateFirstRankRequest is the request struct for api CreateFirstRank

func CreateCreateFirstRankRequest ¶ added in v1.61.329

func CreateCreateFirstRankRequest() (request *CreateFirstRankRequest)

CreateCreateFirstRankRequest creates a request to invoke CreateFirstRank API

type CreateFirstRankResponse ¶ added in v1.61.329

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

CreateFirstRankResponse is the response struct for api CreateFirstRank

func CreateCreateFirstRankResponse ¶ added in v1.61.329

func CreateCreateFirstRankResponse() (response *CreateFirstRankResponse)

CreateCreateFirstRankResponse creates a response to parse from CreateFirstRank response

type CreateFunctionInstanceRequest ¶ added in v1.62.56

type CreateFunctionInstanceRequest struct {
	*requests.RoaRequest
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

CreateFunctionInstanceRequest is the request struct for api CreateFunctionInstance

func CreateCreateFunctionInstanceRequest ¶ added in v1.62.56

func CreateCreateFunctionInstanceRequest() (request *CreateFunctionInstanceRequest)

CreateCreateFunctionInstanceRequest creates a request to invoke CreateFunctionInstance API

type CreateFunctionInstanceResponse ¶ added in v1.62.56

type CreateFunctionInstanceResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
}

CreateFunctionInstanceResponse is the response struct for api CreateFunctionInstance

func CreateCreateFunctionInstanceResponse ¶ added in v1.62.56

func CreateCreateFunctionInstanceResponse() (response *CreateFunctionInstanceResponse)

CreateCreateFunctionInstanceResponse creates a response to parse from CreateFunctionInstance response

type CreateFunctionTaskRequest ¶ added in v1.62.56

type CreateFunctionTaskRequest struct {
	*requests.RoaRequest
	InstanceName     string `position:"Path" name:"instanceName"`
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

CreateFunctionTaskRequest is the request struct for api CreateFunctionTask

func CreateCreateFunctionTaskRequest ¶ added in v1.62.56

func CreateCreateFunctionTaskRequest() (request *CreateFunctionTaskRequest)

CreateCreateFunctionTaskRequest creates a request to invoke CreateFunctionTask API

type CreateFunctionTaskResponse ¶ added in v1.62.56

type CreateFunctionTaskResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
}

CreateFunctionTaskResponse is the response struct for api CreateFunctionTask

func CreateCreateFunctionTaskResponse ¶ added in v1.62.56

func CreateCreateFunctionTaskResponse() (response *CreateFunctionTaskResponse)

CreateCreateFunctionTaskResponse creates a response to parse from CreateFunctionTask response

type CreateInterventionDictionaryRequest ¶ added in v1.61.329

type CreateInterventionDictionaryRequest struct {
	*requests.RoaRequest
}

CreateInterventionDictionaryRequest is the request struct for api CreateInterventionDictionary

func CreateCreateInterventionDictionaryRequest ¶ added in v1.61.329

func CreateCreateInterventionDictionaryRequest() (request *CreateInterventionDictionaryRequest)

CreateCreateInterventionDictionaryRequest creates a request to invoke CreateInterventionDictionary API

type CreateInterventionDictionaryResponse ¶ added in v1.61.329

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

CreateInterventionDictionaryResponse is the response struct for api CreateInterventionDictionary

func CreateCreateInterventionDictionaryResponse ¶ added in v1.61.329

func CreateCreateInterventionDictionaryResponse() (response *CreateInterventionDictionaryResponse)

CreateCreateInterventionDictionaryResponse creates a response to parse from CreateInterventionDictionary response

type CreateParametersInGetFunctionCurrentVersion ¶ added in v1.62.56

type CreateParametersInGetFunctionCurrentVersion struct {
	CreateParametersItem []CreateParametersItem `json:"CreateParameters" xml:"CreateParameters"`
}

CreateParametersInGetFunctionCurrentVersion is a nested struct in opensearch response

type CreateParametersInGetFunctionInstance ¶ added in v1.62.56

type CreateParametersInGetFunctionInstance struct {
	CreateParametersItem []CreateParametersItem `json:"CreateParameters" xml:"CreateParameters"`
}

CreateParametersInGetFunctionInstance is a nested struct in opensearch response

type CreateParametersInGetFunctionVersion ¶ added in v1.62.56

type CreateParametersInGetFunctionVersion struct {
	CreateParametersItem []CreateParametersItem `json:"CreateParameters" xml:"CreateParameters"`
}

CreateParametersInGetFunctionVersion is a nested struct in opensearch response

type CreateParametersInListFunctionInstances ¶ added in v1.62.56

type CreateParametersInListFunctionInstances struct {
	CreateParametersItem []CreateParametersItem `json:"CreateParameters" xml:"CreateParameters"`
}

CreateParametersInListFunctionInstances is a nested struct in opensearch response

type CreateParametersItem ¶ added in v1.62.56

type CreateParametersItem struct {
	Name     string `json:"Name" xml:"Name"`
	Value    string `json:"Value" xml:"Value"`
	Required string `json:"Required" xml:"Required"`
}

CreateParametersItem is a nested struct in opensearch response

type CreateQueryProcessorRequest ¶ added in v1.61.329

type CreateQueryProcessorRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

CreateQueryProcessorRequest is the request struct for api CreateQueryProcessor

func CreateCreateQueryProcessorRequest ¶ added in v1.61.329

func CreateCreateQueryProcessorRequest() (request *CreateQueryProcessorRequest)

CreateCreateQueryProcessorRequest creates a request to invoke CreateQueryProcessor API

type CreateQueryProcessorResponse ¶ added in v1.61.329

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

CreateQueryProcessorResponse is the response struct for api CreateQueryProcessor

func CreateCreateQueryProcessorResponse ¶ added in v1.61.329

func CreateCreateQueryProcessorResponse() (response *CreateQueryProcessorResponse)

CreateCreateQueryProcessorResponse creates a response to parse from CreateQueryProcessor response

type CreateScheduledTaskRequest ¶ added in v1.61.329

type CreateScheduledTaskRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

CreateScheduledTaskRequest is the request struct for api CreateScheduledTask

func CreateCreateScheduledTaskRequest ¶ added in v1.61.329

func CreateCreateScheduledTaskRequest() (request *CreateScheduledTaskRequest)

CreateCreateScheduledTaskRequest creates a request to invoke CreateScheduledTask API

type CreateScheduledTaskResponse ¶ added in v1.61.329

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

CreateScheduledTaskResponse is the response struct for api CreateScheduledTask

func CreateCreateScheduledTaskResponse ¶ added in v1.61.329

func CreateCreateScheduledTaskResponse() (response *CreateScheduledTaskResponse)

CreateCreateScheduledTaskResponse creates a response to parse from CreateScheduledTask response

type CreateSearchStrategyRequest ¶ added in v1.62.56

type CreateSearchStrategyRequest struct {
	*requests.RoaRequest
	AppId            string `position:"Path" name:"appId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

CreateSearchStrategyRequest is the request struct for api CreateSearchStrategy

func CreateCreateSearchStrategyRequest ¶ added in v1.62.56

func CreateCreateSearchStrategyRequest() (request *CreateSearchStrategyRequest)

CreateCreateSearchStrategyRequest creates a request to invoke CreateSearchStrategy API

type CreateSearchStrategyResponse ¶ added in v1.62.56

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

CreateSearchStrategyResponse is the response struct for api CreateSearchStrategy

func CreateCreateSearchStrategyResponse ¶ added in v1.62.56

func CreateCreateSearchStrategyResponse() (response *CreateSearchStrategyResponse)

CreateCreateSearchStrategyResponse creates a response to parse from CreateSearchStrategy response

type CreateSecondRankRequest ¶ added in v1.61.329

type CreateSecondRankRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

CreateSecondRankRequest is the request struct for api CreateSecondRank

func CreateCreateSecondRankRequest ¶ added in v1.61.329

func CreateCreateSecondRankRequest() (request *CreateSecondRankRequest)

CreateCreateSecondRankRequest creates a request to invoke CreateSecondRank API

type CreateSecondRankResponse ¶ added in v1.61.329

type CreateSecondRankResponse struct {
	*responses.BaseResponse
	Result    map[string]interface{} `json:"result" xml:"result"`
	RequestId string                 `json:"RequestId" xml:"RequestId"`
}

CreateSecondRankResponse is the response struct for api CreateSecondRank

func CreateCreateSecondRankResponse ¶ added in v1.61.329

func CreateCreateSecondRankResponse() (response *CreateSecondRankResponse)

CreateCreateSecondRankResponse creates a response to parse from CreateSecondRank response

type CreateSortScriptRequest ¶ added in v1.61.88

type CreateSortScriptRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

CreateSortScriptRequest is the request struct for api CreateSortScript

func CreateCreateSortScriptRequest ¶ added in v1.61.88

func CreateCreateSortScriptRequest() (request *CreateSortScriptRequest)

CreateCreateSortScriptRequest creates a request to invoke CreateSortScript API

type CreateSortScriptResponse ¶ added in v1.61.88

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

CreateSortScriptResponse is the response struct for api CreateSortScript

func CreateCreateSortScriptResponse ¶ added in v1.61.88

func CreateCreateSortScriptResponse() (response *CreateSortScriptResponse)

CreateCreateSortScriptResponse creates a response to parse from CreateSortScript response

type CreateUserAnalyzerRequest ¶ added in v1.61.367

type CreateUserAnalyzerRequest struct {
	*requests.RoaRequest
}

CreateUserAnalyzerRequest is the request struct for api CreateUserAnalyzer

func CreateCreateUserAnalyzerRequest ¶ added in v1.61.367

func CreateCreateUserAnalyzerRequest() (request *CreateUserAnalyzerRequest)

CreateCreateUserAnalyzerRequest creates a request to invoke CreateUserAnalyzer API

type CreateUserAnalyzerResponse ¶ added in v1.61.367

type CreateUserAnalyzerResponse struct {
	*responses.BaseResponse
	Result    map[string]interface{} `json:"result" xml:"result"`
	RequestId string                 `json:"RequestId" xml:"RequestId"`
}

CreateUserAnalyzerResponse is the response struct for api CreateUserAnalyzer

func CreateCreateUserAnalyzerResponse ¶ added in v1.61.367

func CreateCreateUserAnalyzerResponse() (response *CreateUserAnalyzerResponse)

CreateCreateUserAnalyzerResponse creates a response to parse from CreateUserAnalyzer response

type DataSource ¶ added in v1.62.56

type DataSource struct {
	TableName  string                 `json:"tableName" xml:"tableName"`
	Type       string                 `json:"type" xml:"type"`
	Parameters map[string]interface{} `json:"parameters" xml:"parameters"`
}

DataSource is a nested struct in opensearch response

type DeleteABTestExperimentRequest ¶ added in v1.61.367

type DeleteABTestExperimentRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	ExperimentId     requests.Integer `position:"Path" name:"experimentId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DeleteABTestExperimentRequest is the request struct for api DeleteABTestExperiment

func CreateDeleteABTestExperimentRequest ¶ added in v1.61.367

func CreateDeleteABTestExperimentRequest() (request *DeleteABTestExperimentRequest)

CreateDeleteABTestExperimentRequest creates a request to invoke DeleteABTestExperiment API

type DeleteABTestExperimentResponse ¶ added in v1.61.367

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

DeleteABTestExperimentResponse is the response struct for api DeleteABTestExperiment

func CreateDeleteABTestExperimentResponse ¶ added in v1.61.367

func CreateDeleteABTestExperimentResponse() (response *DeleteABTestExperimentResponse)

CreateDeleteABTestExperimentResponse creates a response to parse from DeleteABTestExperiment response

type DeleteABTestGroupRequest ¶ added in v1.61.367

type DeleteABTestGroupRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DeleteABTestGroupRequest is the request struct for api DeleteABTestGroup

func CreateDeleteABTestGroupRequest ¶ added in v1.61.367

func CreateDeleteABTestGroupRequest() (request *DeleteABTestGroupRequest)

CreateDeleteABTestGroupRequest creates a request to invoke DeleteABTestGroup API

type DeleteABTestGroupResponse ¶ added in v1.61.367

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

DeleteABTestGroupResponse is the response struct for api DeleteABTestGroup

func CreateDeleteABTestGroupResponse ¶ added in v1.61.367

func CreateDeleteABTestGroupResponse() (response *DeleteABTestGroupResponse)

CreateDeleteABTestGroupResponse creates a response to parse from DeleteABTestGroup response

type DeleteABTestSceneRequest ¶ added in v1.61.367

type DeleteABTestSceneRequest struct {
	*requests.RoaRequest
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DeleteABTestSceneRequest is the request struct for api DeleteABTestScene

func CreateDeleteABTestSceneRequest ¶ added in v1.61.367

func CreateDeleteABTestSceneRequest() (request *DeleteABTestSceneRequest)

CreateDeleteABTestSceneRequest creates a request to invoke DeleteABTestScene API

type DeleteABTestSceneResponse ¶ added in v1.61.367

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

DeleteABTestSceneResponse is the response struct for api DeleteABTestScene

func CreateDeleteABTestSceneResponse ¶ added in v1.61.367

func CreateDeleteABTestSceneResponse() (response *DeleteABTestSceneResponse)

CreateDeleteABTestSceneResponse creates a response to parse from DeleteABTestScene response

type DeleteFunctionInstanceRequest ¶ added in v1.62.56

type DeleteFunctionInstanceRequest struct {
	*requests.RoaRequest
	InstanceName     string `position:"Path" name:"instanceName"`
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DeleteFunctionInstanceRequest is the request struct for api DeleteFunctionInstance

func CreateDeleteFunctionInstanceRequest ¶ added in v1.62.56

func CreateDeleteFunctionInstanceRequest() (request *DeleteFunctionInstanceRequest)

CreateDeleteFunctionInstanceRequest creates a request to invoke DeleteFunctionInstance API

type DeleteFunctionInstanceResponse ¶ added in v1.62.56

type DeleteFunctionInstanceResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
}

DeleteFunctionInstanceResponse is the response struct for api DeleteFunctionInstance

func CreateDeleteFunctionInstanceResponse ¶ added in v1.62.56

func CreateDeleteFunctionInstanceResponse() (response *DeleteFunctionInstanceResponse)

CreateDeleteFunctionInstanceResponse creates a response to parse from DeleteFunctionInstance response

type DeleteFunctionTaskRequest ¶ added in v1.62.56

type DeleteFunctionTaskRequest struct {
	*requests.RoaRequest
	Generation       string `position:"Path" name:"generation"`
	InstanceName     string `position:"Path" name:"instanceName"`
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DeleteFunctionTaskRequest is the request struct for api DeleteFunctionTask

func CreateDeleteFunctionTaskRequest ¶ added in v1.62.56

func CreateDeleteFunctionTaskRequest() (request *DeleteFunctionTaskRequest)

CreateDeleteFunctionTaskRequest creates a request to invoke DeleteFunctionTask API

type DeleteFunctionTaskResponse ¶ added in v1.62.56

type DeleteFunctionTaskResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
}

DeleteFunctionTaskResponse is the response struct for api DeleteFunctionTask

func CreateDeleteFunctionTaskResponse ¶ added in v1.62.56

func CreateDeleteFunctionTaskResponse() (response *DeleteFunctionTaskResponse)

CreateDeleteFunctionTaskResponse creates a response to parse from DeleteFunctionTask response

type DeleteSortScriptFileRequest ¶ added in v1.61.580

type DeleteSortScriptFileRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	FileName         string `position:"Path" name:"fileName"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DeleteSortScriptFileRequest is the request struct for api DeleteSortScriptFile

func CreateDeleteSortScriptFileRequest ¶ added in v1.61.580

func CreateDeleteSortScriptFileRequest() (request *DeleteSortScriptFileRequest)

CreateDeleteSortScriptFileRequest creates a request to invoke DeleteSortScriptFile API

type DeleteSortScriptFileResponse ¶ added in v1.61.580

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

DeleteSortScriptFileResponse is the response struct for api DeleteSortScriptFile

func CreateDeleteSortScriptFileResponse ¶ added in v1.61.580

func CreateDeleteSortScriptFileResponse() (response *DeleteSortScriptFileResponse)

CreateDeleteSortScriptFileResponse creates a response to parse from DeleteSortScriptFile response

type DeleteSortScriptRequest ¶ added in v1.61.88

type DeleteSortScriptRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DeleteSortScriptRequest is the request struct for api DeleteSortScript

func CreateDeleteSortScriptRequest ¶ added in v1.61.88

func CreateDeleteSortScriptRequest() (request *DeleteSortScriptRequest)

CreateDeleteSortScriptRequest creates a request to invoke DeleteSortScript API

type DeleteSortScriptResponse ¶ added in v1.61.88

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

DeleteSortScriptResponse is the response struct for api DeleteSortScript

func CreateDeleteSortScriptResponse ¶ added in v1.61.88

func CreateDeleteSortScriptResponse() (response *DeleteSortScriptResponse)

CreateDeleteSortScriptResponse creates a response to parse from DeleteSortScript response

type DependsInGetFunctionCurrentVersion ¶ added in v1.62.56

type DependsInGetFunctionCurrentVersion struct {
	DependsItem []DependsItem `json:"Depends" xml:"Depends"`
}

DependsInGetFunctionCurrentVersion is a nested struct in opensearch response

type DependsInGetFunctionVersion ¶ added in v1.62.56

type DependsInGetFunctionVersion struct {
	DependsItem []DependsItem `json:"Depends" xml:"Depends"`
}

DependsInGetFunctionVersion is a nested struct in opensearch response

type DependsItem ¶ added in v1.62.56

type DependsItem struct {
	Dependency  string `json:"Dependency" xml:"Dependency"`
	Condition   string `json:"Condition" xml:"Condition"`
	Description string `json:"Description" xml:"Description"`
}

DependsItem is a nested struct in opensearch response

type DescribeABTestExperimentRequest ¶ added in v1.61.367

type DescribeABTestExperimentRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	ExperimentId     requests.Integer `position:"Path" name:"experimentId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DescribeABTestExperimentRequest is the request struct for api DescribeABTestExperiment

func CreateDescribeABTestExperimentRequest ¶ added in v1.61.367

func CreateDescribeABTestExperimentRequest() (request *DescribeABTestExperimentRequest)

CreateDescribeABTestExperimentRequest creates a request to invoke DescribeABTestExperiment API

type DescribeABTestExperimentResponse ¶ added in v1.61.367

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

DescribeABTestExperimentResponse is the response struct for api DescribeABTestExperiment

func CreateDescribeABTestExperimentResponse ¶ added in v1.61.367

func CreateDescribeABTestExperimentResponse() (response *DescribeABTestExperimentResponse)

CreateDescribeABTestExperimentResponse creates a response to parse from DescribeABTestExperiment response

type DescribeABTestGroupRequest ¶ added in v1.61.367

type DescribeABTestGroupRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DescribeABTestGroupRequest is the request struct for api DescribeABTestGroup

func CreateDescribeABTestGroupRequest ¶ added in v1.61.367

func CreateDescribeABTestGroupRequest() (request *DescribeABTestGroupRequest)

CreateDescribeABTestGroupRequest creates a request to invoke DescribeABTestGroup API

type DescribeABTestGroupResponse ¶ added in v1.61.367

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

DescribeABTestGroupResponse is the response struct for api DescribeABTestGroup

func CreateDescribeABTestGroupResponse ¶ added in v1.61.367

func CreateDescribeABTestGroupResponse() (response *DescribeABTestGroupResponse)

CreateDescribeABTestGroupResponse creates a response to parse from DescribeABTestGroup response

type DescribeABTestSceneRequest ¶ added in v1.61.367

type DescribeABTestSceneRequest struct {
	*requests.RoaRequest
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DescribeABTestSceneRequest is the request struct for api DescribeABTestScene

func CreateDescribeABTestSceneRequest ¶ added in v1.61.367

func CreateDescribeABTestSceneRequest() (request *DescribeABTestSceneRequest)

CreateDescribeABTestSceneRequest creates a request to invoke DescribeABTestScene API

type DescribeABTestSceneResponse ¶ added in v1.61.367

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

DescribeABTestSceneResponse is the response struct for api DescribeABTestScene

func CreateDescribeABTestSceneResponse ¶ added in v1.61.367

func CreateDescribeABTestSceneResponse() (response *DescribeABTestSceneResponse)

CreateDescribeABTestSceneResponse creates a response to parse from DescribeABTestScene response

type DescribeAppGroupRequest ¶ added in v1.61.225

type DescribeAppGroupRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DescribeAppGroupRequest is the request struct for api DescribeAppGroup

func CreateDescribeAppGroupRequest ¶ added in v1.61.225

func CreateDescribeAppGroupRequest() (request *DescribeAppGroupRequest)

CreateDescribeAppGroupRequest creates a request to invoke DescribeAppGroup API

type DescribeAppGroupResponse ¶ added in v1.61.225

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

DescribeAppGroupResponse is the response struct for api DescribeAppGroup

func CreateDescribeAppGroupResponse ¶ added in v1.61.225

func CreateDescribeAppGroupResponse() (response *DescribeAppGroupResponse)

CreateDescribeAppGroupResponse creates a response to parse from DescribeAppGroup response

type DescribeAppRequest ¶ added in v1.61.225

type DescribeAppRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DescribeAppRequest is the request struct for api DescribeApp

func CreateDescribeAppRequest ¶ added in v1.61.225

func CreateDescribeAppRequest() (request *DescribeAppRequest)

CreateDescribeAppRequest creates a request to invoke DescribeApp API

type DescribeAppResponse ¶ added in v1.61.225

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

DescribeAppResponse is the response struct for api DescribeApp

func CreateDescribeAppResponse ¶ added in v1.61.225

func CreateDescribeAppResponse() (response *DescribeAppResponse)

CreateDescribeAppResponse creates a response to parse from DescribeApp response

type DescribeAppStatisticsRequest ¶ added in v1.61.329

type DescribeAppStatisticsRequest struct {
	*requests.RoaRequest
	AppId            string `position:"Path" name:"appId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DescribeAppStatisticsRequest is the request struct for api DescribeAppStatistics

func CreateDescribeAppStatisticsRequest ¶ added in v1.61.329

func CreateDescribeAppStatisticsRequest() (request *DescribeAppStatisticsRequest)

CreateDescribeAppStatisticsRequest creates a request to invoke DescribeAppStatistics API

type DescribeAppStatisticsResponse ¶ added in v1.61.329

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

DescribeAppStatisticsResponse is the response struct for api DescribeAppStatistics

func CreateDescribeAppStatisticsResponse ¶ added in v1.61.329

func CreateDescribeAppStatisticsResponse() (response *DescribeAppStatisticsResponse)

CreateDescribeAppStatisticsResponse creates a response to parse from DescribeAppStatistics response

type DescribeAppsRequest ¶ added in v1.61.225

type DescribeAppsRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DescribeAppsRequest is the request struct for api DescribeApps

func CreateDescribeAppsRequest ¶ added in v1.61.225

func CreateDescribeAppsRequest() (request *DescribeAppsRequest)

CreateDescribeAppsRequest creates a request to invoke DescribeApps API

type DescribeAppsResponse ¶ added in v1.61.225

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

DescribeAppsResponse is the response struct for api DescribeApps

func CreateDescribeAppsResponse ¶ added in v1.61.225

func CreateDescribeAppsResponse() (response *DescribeAppsResponse)

CreateDescribeAppsResponse creates a response to parse from DescribeApps response

type DescribeDataCollctionRequest ¶ added in v1.61.329

type DescribeDataCollctionRequest struct {
	*requests.RoaRequest
	DataCollectionIdentity string `position:"Path" name:"dataCollectionIdentity"`
	AppGroupIdentity       string `position:"Path" name:"appGroupIdentity"`
}

DescribeDataCollctionRequest is the request struct for api DescribeDataCollction

func CreateDescribeDataCollctionRequest ¶ added in v1.61.329

func CreateDescribeDataCollctionRequest() (request *DescribeDataCollctionRequest)

CreateDescribeDataCollctionRequest creates a request to invoke DescribeDataCollction API

type DescribeDataCollctionResponse ¶ added in v1.61.329

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

DescribeDataCollctionResponse is the response struct for api DescribeDataCollction

func CreateDescribeDataCollctionResponse ¶ added in v1.61.329

func CreateDescribeDataCollctionResponse() (response *DescribeDataCollctionResponse)

CreateDescribeDataCollctionResponse creates a response to parse from DescribeDataCollction response

type DescribeFirstRankRequest ¶ added in v1.61.329

type DescribeFirstRankRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DescribeFirstRankRequest is the request struct for api DescribeFirstRank

func CreateDescribeFirstRankRequest ¶ added in v1.61.329

func CreateDescribeFirstRankRequest() (request *DescribeFirstRankRequest)

CreateDescribeFirstRankRequest creates a request to invoke DescribeFirstRank API

type DescribeFirstRankResponse ¶ added in v1.61.329

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

DescribeFirstRankResponse is the response struct for api DescribeFirstRank

func CreateDescribeFirstRankResponse ¶ added in v1.61.329

func CreateDescribeFirstRankResponse() (response *DescribeFirstRankResponse)

CreateDescribeFirstRankResponse creates a response to parse from DescribeFirstRank response

type DescribeInterventionDictionaryRequest ¶ added in v1.61.329

type DescribeInterventionDictionaryRequest struct {
	*requests.RoaRequest
	Name string `position:"Path" name:"name"`
}

DescribeInterventionDictionaryRequest is the request struct for api DescribeInterventionDictionary

func CreateDescribeInterventionDictionaryRequest ¶ added in v1.61.329

func CreateDescribeInterventionDictionaryRequest() (request *DescribeInterventionDictionaryRequest)

CreateDescribeInterventionDictionaryRequest creates a request to invoke DescribeInterventionDictionary API

type DescribeInterventionDictionaryResponse ¶ added in v1.61.329

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

DescribeInterventionDictionaryResponse is the response struct for api DescribeInterventionDictionary

func CreateDescribeInterventionDictionaryResponse ¶ added in v1.61.329

func CreateDescribeInterventionDictionaryResponse() (response *DescribeInterventionDictionaryResponse)

CreateDescribeInterventionDictionaryResponse creates a response to parse from DescribeInterventionDictionary response

type DescribeQueryProcessorRequest ¶ added in v1.61.329

type DescribeQueryProcessorRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DescribeQueryProcessorRequest is the request struct for api DescribeQueryProcessor

func CreateDescribeQueryProcessorRequest ¶ added in v1.61.329

func CreateDescribeQueryProcessorRequest() (request *DescribeQueryProcessorRequest)

CreateDescribeQueryProcessorRequest creates a request to invoke DescribeQueryProcessor API

type DescribeQueryProcessorResponse ¶ added in v1.61.329

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

DescribeQueryProcessorResponse is the response struct for api DescribeQueryProcessor

func CreateDescribeQueryProcessorResponse ¶ added in v1.61.329

func CreateDescribeQueryProcessorResponse() (response *DescribeQueryProcessorResponse)

CreateDescribeQueryProcessorResponse creates a response to parse from DescribeQueryProcessor response

type DescribeRegionRequest ¶ added in v1.61.329

type DescribeRegionRequest struct {
	*requests.RoaRequest
}

DescribeRegionRequest is the request struct for api DescribeRegion

func CreateDescribeRegionRequest ¶ added in v1.61.329

func CreateDescribeRegionRequest() (request *DescribeRegionRequest)

CreateDescribeRegionRequest creates a request to invoke DescribeRegion API

type DescribeRegionResponse ¶ added in v1.61.329

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

DescribeRegionResponse is the response struct for api DescribeRegion

func CreateDescribeRegionResponse ¶ added in v1.61.329

func CreateDescribeRegionResponse() (response *DescribeRegionResponse)

CreateDescribeRegionResponse creates a response to parse from DescribeRegion response

type DescribeRegionsRequest ¶ added in v1.61.88

type DescribeRegionsRequest struct {
	*requests.RoaRequest
}

DescribeRegionsRequest is the request struct for api DescribeRegions

func CreateDescribeRegionsRequest ¶ added in v1.61.88

func CreateDescribeRegionsRequest() (request *DescribeRegionsRequest)

CreateDescribeRegionsRequest creates a request to invoke DescribeRegions API

type DescribeRegionsResponse ¶ added in v1.61.88

type DescribeRegionsResponse struct {
	*responses.BaseResponse
	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.88

func CreateDescribeRegionsResponse() (response *DescribeRegionsResponse)

CreateDescribeRegionsResponse creates a response to parse from DescribeRegions response

type DescribeScheduledTaskRequest ¶ added in v1.61.329

type DescribeScheduledTaskRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
	TaskId           string `position:"Path" name:"taskId"`
}

DescribeScheduledTaskRequest is the request struct for api DescribeScheduledTask

func CreateDescribeScheduledTaskRequest ¶ added in v1.61.329

func CreateDescribeScheduledTaskRequest() (request *DescribeScheduledTaskRequest)

CreateDescribeScheduledTaskRequest creates a request to invoke DescribeScheduledTask API

type DescribeScheduledTaskResponse ¶ added in v1.61.329

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

DescribeScheduledTaskResponse is the response struct for api DescribeScheduledTask

func CreateDescribeScheduledTaskResponse ¶ added in v1.61.329

func CreateDescribeScheduledTaskResponse() (response *DescribeScheduledTaskResponse)

CreateDescribeScheduledTaskResponse creates a response to parse from DescribeScheduledTask response

type DescribeSecondRankRequest ¶ added in v1.61.329

type DescribeSecondRankRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

DescribeSecondRankRequest is the request struct for api DescribeSecondRank

func CreateDescribeSecondRankRequest ¶ added in v1.61.329

func CreateDescribeSecondRankRequest() (request *DescribeSecondRankRequest)

CreateDescribeSecondRankRequest creates a request to invoke DescribeSecondRank API

type DescribeSecondRankResponse ¶ added in v1.61.329

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

DescribeSecondRankResponse is the response struct for api DescribeSecondRank

func CreateDescribeSecondRankResponse ¶ added in v1.61.329

func CreateDescribeSecondRankResponse() (response *DescribeSecondRankResponse)

CreateDescribeSecondRankResponse creates a response to parse from DescribeSecondRank response

type DescribeSlowQueryStatusRequest ¶ added in v1.61.329

type DescribeSlowQueryStatusRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DescribeSlowQueryStatusRequest is the request struct for api DescribeSlowQueryStatus

func CreateDescribeSlowQueryStatusRequest ¶ added in v1.61.329

func CreateDescribeSlowQueryStatusRequest() (request *DescribeSlowQueryStatusRequest)

CreateDescribeSlowQueryStatusRequest creates a request to invoke DescribeSlowQueryStatus API

type DescribeSlowQueryStatusResponse ¶ added in v1.61.329

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

DescribeSlowQueryStatusResponse is the response struct for api DescribeSlowQueryStatus

func CreateDescribeSlowQueryStatusResponse ¶ added in v1.61.329

func CreateDescribeSlowQueryStatusResponse() (response *DescribeSlowQueryStatusResponse)

CreateDescribeSlowQueryStatusResponse creates a response to parse from DescribeSlowQueryStatus response

type DescribeUserAnalyzerRequest ¶ added in v1.61.367

type DescribeUserAnalyzerRequest struct {
	*requests.RoaRequest
	With string `position:"Query" name:"with"`
	Name string `position:"Path" name:"name"`
}

DescribeUserAnalyzerRequest is the request struct for api DescribeUserAnalyzer

func CreateDescribeUserAnalyzerRequest ¶ added in v1.61.367

func CreateDescribeUserAnalyzerRequest() (request *DescribeUserAnalyzerRequest)

CreateDescribeUserAnalyzerRequest creates a request to invoke DescribeUserAnalyzer API

type DescribeUserAnalyzerResponse ¶ added in v1.61.367

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

DescribeUserAnalyzerResponse is the response struct for api DescribeUserAnalyzer

func CreateDescribeUserAnalyzerResponse ¶ added in v1.61.367

func CreateDescribeUserAnalyzerResponse() (response *DescribeUserAnalyzerResponse)

CreateDescribeUserAnalyzerResponse creates a response to parse from DescribeUserAnalyzer response

type Dicts ¶ added in v1.61.367

type Dicts struct {
	DictsItem []DictsItem `json:"dicts" xml:"dicts"`
}

Dicts is a nested struct in opensearch response

type DictsItem ¶ added in v1.61.367

type DictsItem struct {
	Created      int    `json:"created" xml:"created"`
	EntriesCount int    `json:"entriesCount" xml:"entriesCount"`
	Type         string `json:"type" xml:"type"`
	EntriesLimit int    `json:"entriesLimit" xml:"entriesLimit"`
	Available    bool   `json:"available" xml:"available"`
	Updated      int    `json:"updated" xml:"updated"`
	Id           string `json:"id" xml:"id"`
}

DictsItem is a nested struct in opensearch response

type DisableSlowQueryRequest ¶ added in v1.61.329

type DisableSlowQueryRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

DisableSlowQueryRequest is the request struct for api DisableSlowQuery

func CreateDisableSlowQueryRequest ¶ added in v1.61.329

func CreateDisableSlowQueryRequest() (request *DisableSlowQueryRequest)

CreateDisableSlowQueryRequest creates a request to invoke DisableSlowQuery API

type DisableSlowQueryResponse ¶ added in v1.61.329

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

DisableSlowQueryResponse is the response struct for api DisableSlowQuery

func CreateDisableSlowQueryResponse ¶ added in v1.61.329

func CreateDisableSlowQueryResponse() (response *DisableSlowQueryResponse)

CreateDisableSlowQueryResponse creates a response to parse from DisableSlowQuery response

type Domain ¶ added in v1.61.1033

type Domain struct {
	Category  string    `json:"category" xml:"category"`
	Name      string    `json:"name" xml:"name"`
	Functions Functions `json:"functions" xml:"functions"`
}

Domain is a nested struct in opensearch response

type EnableSlowQueryRequest ¶ added in v1.61.329

type EnableSlowQueryRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

EnableSlowQueryRequest is the request struct for api EnableSlowQuery

func CreateEnableSlowQueryRequest ¶ added in v1.61.329

func CreateEnableSlowQueryRequest() (request *EnableSlowQueryRequest)

CreateEnableSlowQueryRequest creates a request to invoke EnableSlowQuery API

type EnableSlowQueryResponse ¶ added in v1.61.329

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

EnableSlowQueryResponse is the response struct for api EnableSlowQuery

func CreateEnableSlowQueryResponse ¶ added in v1.61.329

func CreateEnableSlowQueryResponse() (response *EnableSlowQueryResponse)

CreateEnableSlowQueryResponse creates a response to parse from EnableSlowQuery response

type FetchFields ¶ added in v1.61.225

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

FetchFields is a nested struct in opensearch response

type FileInfos ¶ added in v1.61.858

type FileInfos struct {
	CreateTime string `json:"createTime" xml:"createTime"`
	FileName   string `json:"fileName" xml:"fileName"`
	ModifyTime string `json:"modifyTime" xml:"modifyTime"`
	PathName   string `json:"pathName" xml:"pathName"`
}

FileInfos is a nested struct in opensearch response

type FirstRankItem ¶ added in v1.61.329

type FirstRankItem struct {
	Description string                     `json:"description" xml:"description"`
	Updated     int                        `json:"updated" xml:"updated"`
	Created     int                        `json:"created" xml:"created"`
	Name        string                     `json:"name" xml:"name"`
	Active      bool                       `json:"active" xml:"active"`
	Meta        []MetaItemInListFirstRanks `json:"meta" xml:"meta"`
}

FirstRankItem is a nested struct in opensearch response

type Functions ¶ added in v1.61.1033

type Functions struct {
	Service []string `json:"service" xml:"service"`
	Qp      []string `json:"qp" xml:"qp"`
	Algo    []string `json:"algo" xml:"algo"`
}

Functions is a nested struct in opensearch response

type GenerateMergedTableRequest ¶ added in v1.61.1074

type GenerateMergedTableRequest struct {
	*requests.RoaRequest
	Spec string `position:"Query" name:"spec"`
}

GenerateMergedTableRequest is the request struct for api GenerateMergedTable

func CreateGenerateMergedTableRequest ¶ added in v1.61.1074

func CreateGenerateMergedTableRequest() (request *GenerateMergedTableRequest)

CreateGenerateMergedTableRequest creates a request to invoke GenerateMergedTable API

type GenerateMergedTableResponse ¶ added in v1.61.1074

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

GenerateMergedTableResponse is the response struct for api GenerateMergedTable

func CreateGenerateMergedTableResponse ¶ added in v1.61.1074

func CreateGenerateMergedTableResponse() (response *GenerateMergedTableResponse)

CreateGenerateMergedTableResponse creates a response to parse from GenerateMergedTable response

type GetDomainRequest ¶ added in v1.61.1033

type GetDomainRequest struct {
	*requests.RoaRequest
	DomainName       string `position:"Path" name:"domainName"`
	AppGroupIdentity string `position:"Query" name:"appGroupIdentity"`
}

GetDomainRequest is the request struct for api GetDomain

func CreateGetDomainRequest ¶ added in v1.61.1033

func CreateGetDomainRequest() (request *GetDomainRequest)

CreateGetDomainRequest creates a request to invoke GetDomain API

type GetDomainResponse ¶ added in v1.61.1033

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

GetDomainResponse is the response struct for api GetDomain

func CreateGetDomainResponse ¶ added in v1.61.1033

func CreateGetDomainResponse() (response *GetDomainResponse)

CreateGetDomainResponse creates a response to parse from GetDomain response

type GetFunctionCurrentVersionRequest ¶ added in v1.62.56

type GetFunctionCurrentVersionRequest struct {
	*requests.RoaRequest
	ModelType    string `position:"Query" name:"modelType"`
	FunctionName string `position:"Path" name:"functionName"`
	Domain       string `position:"Query" name:"domain"`
	FunctionType string `position:"Query" name:"functionType"`
	Category     string `position:"Query" name:"category"`
}

GetFunctionCurrentVersionRequest is the request struct for api GetFunctionCurrentVersion

func CreateGetFunctionCurrentVersionRequest ¶ added in v1.62.56

func CreateGetFunctionCurrentVersionRequest() (request *GetFunctionCurrentVersionRequest)

CreateGetFunctionCurrentVersionRequest creates a request to invoke GetFunctionCurrentVersion API

type GetFunctionCurrentVersionResponse ¶ added in v1.62.56

type GetFunctionCurrentVersionResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
	Result    Result `json:"Result" xml:"Result"`
}

GetFunctionCurrentVersionResponse is the response struct for api GetFunctionCurrentVersion

func CreateGetFunctionCurrentVersionResponse ¶ added in v1.62.56

func CreateGetFunctionCurrentVersionResponse() (response *GetFunctionCurrentVersionResponse)

CreateGetFunctionCurrentVersionResponse creates a response to parse from GetFunctionCurrentVersion response

type GetFunctionDefaultInstanceRequest ¶ added in v1.62.56

type GetFunctionDefaultInstanceRequest struct {
	*requests.RoaRequest
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetFunctionDefaultInstanceRequest is the request struct for api GetFunctionDefaultInstance

func CreateGetFunctionDefaultInstanceRequest ¶ added in v1.62.56

func CreateGetFunctionDefaultInstanceRequest() (request *GetFunctionDefaultInstanceRequest)

CreateGetFunctionDefaultInstanceRequest creates a request to invoke GetFunctionDefaultInstance API

type GetFunctionDefaultInstanceResponse ¶ added in v1.62.56

type GetFunctionDefaultInstanceResponse struct {
	*responses.BaseResponse
	Status       string `json:"Status" xml:"Status"`
	HttpCode     int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	Message      string `json:"Message" xml:"Message"`
	Code         string `json:"Code" xml:"Code"`
	Latency      int64  `json:"Latency" xml:"Latency"`
	InstanceName string `json:"InstanceName" xml:"InstanceName"`
	FunctionName string `json:"FunctionName" xml:"FunctionName"`
	Result       Result `json:"Result" xml:"Result"`
}

GetFunctionDefaultInstanceResponse is the response struct for api GetFunctionDefaultInstance

func CreateGetFunctionDefaultInstanceResponse ¶ added in v1.62.56

func CreateGetFunctionDefaultInstanceResponse() (response *GetFunctionDefaultInstanceResponse)

CreateGetFunctionDefaultInstanceResponse creates a response to parse from GetFunctionDefaultInstance response

type GetFunctionInstanceRequest ¶ added in v1.62.56

type GetFunctionInstanceRequest struct {
	*requests.RoaRequest
	Output           string `position:"Query" name:"output"`
	InstanceName     string `position:"Path" name:"instanceName"`
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetFunctionInstanceRequest is the request struct for api GetFunctionInstance

func CreateGetFunctionInstanceRequest ¶ added in v1.62.56

func CreateGetFunctionInstanceRequest() (request *GetFunctionInstanceRequest)

CreateGetFunctionInstanceRequest creates a request to invoke GetFunctionInstance API

type GetFunctionInstanceResponse ¶ added in v1.62.56

type GetFunctionInstanceResponse struct {
	*responses.BaseResponse
	Status    string                      `json:"Status" xml:"Status"`
	HttpCode  int64                       `json:"HttpCode" xml:"HttpCode"`
	RequestId string                      `json:"RequestId" xml:"RequestId"`
	Message   string                      `json:"Message" xml:"Message"`
	Code      string                      `json:"Code" xml:"Code"`
	Latency   int64                       `json:"Latency" xml:"Latency"`
	Result    ResultInGetFunctionInstance `json:"Result" xml:"Result"`
}

GetFunctionInstanceResponse is the response struct for api GetFunctionInstance

func CreateGetFunctionInstanceResponse ¶ added in v1.62.56

func CreateGetFunctionInstanceResponse() (response *GetFunctionInstanceResponse)

CreateGetFunctionInstanceResponse creates a response to parse from GetFunctionInstance response

type GetFunctionTaskRequest ¶ added in v1.62.56

type GetFunctionTaskRequest struct {
	*requests.RoaRequest
	Generation       string `position:"Path" name:"generation"`
	InstanceName     string `position:"Path" name:"instanceName"`
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetFunctionTaskRequest is the request struct for api GetFunctionTask

func CreateGetFunctionTaskRequest ¶ added in v1.62.56

func CreateGetFunctionTaskRequest() (request *GetFunctionTaskRequest)

CreateGetFunctionTaskRequest creates a request to invoke GetFunctionTask API

type GetFunctionTaskResponse ¶ added in v1.62.56

type GetFunctionTaskResponse struct {
	*responses.BaseResponse
	Status    string                  `json:"Status" xml:"Status"`
	HttpCode  int64                   `json:"HttpCode" xml:"HttpCode"`
	RequestId string                  `json:"RequestId" xml:"RequestId"`
	Message   string                  `json:"Message" xml:"Message"`
	Code      string                  `json:"Code" xml:"Code"`
	Latency   int64                   `json:"Latency" xml:"Latency"`
	Result    ResultInGetFunctionTask `json:"Result" xml:"Result"`
}

GetFunctionTaskResponse is the response struct for api GetFunctionTask

func CreateGetFunctionTaskResponse ¶ added in v1.62.56

func CreateGetFunctionTaskResponse() (response *GetFunctionTaskResponse)

CreateGetFunctionTaskResponse creates a response to parse from GetFunctionTask response

type GetFunctionVersionRequest ¶ added in v1.62.56

type GetFunctionVersionRequest struct {
	*requests.RoaRequest
	VersionId    requests.Integer `position:"Path" name:"versionId"`
	FunctionName string           `position:"Path" name:"functionName"`
}

GetFunctionVersionRequest is the request struct for api GetFunctionVersion

func CreateGetFunctionVersionRequest ¶ added in v1.62.56

func CreateGetFunctionVersionRequest() (request *GetFunctionVersionRequest)

CreateGetFunctionVersionRequest creates a request to invoke GetFunctionVersion API

type GetFunctionVersionResponse ¶ added in v1.62.56

type GetFunctionVersionResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
	Result    Result `json:"Result" xml:"Result"`
}

GetFunctionVersionResponse is the response struct for api GetFunctionVersion

func CreateGetFunctionVersionResponse ¶ added in v1.62.56

func CreateGetFunctionVersionResponse() (response *GetFunctionVersionResponse)

CreateGetFunctionVersionResponse creates a response to parse from GetFunctionVersion response

type GetModelReportRequest ¶ added in v1.61.580

type GetModelReportRequest struct {
	*requests.RoaRequest
	ModelName        string `position:"Path" name:"modelName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetModelReportRequest is the request struct for api GetModelReport

func CreateGetModelReportRequest ¶ added in v1.61.580

func CreateGetModelReportRequest() (request *GetModelReportRequest)

CreateGetModelReportRequest creates a request to invoke GetModelReport API

type GetModelReportResponse ¶ added in v1.61.580

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

GetModelReportResponse is the response struct for api GetModelReport

func CreateGetModelReportResponse ¶ added in v1.61.580

func CreateGetModelReportResponse() (response *GetModelReportResponse)

CreateGetModelReportResponse creates a response to parse from GetModelReport response

type GetScriptFileNamesRequest ¶ added in v1.61.858

type GetScriptFileNamesRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetScriptFileNamesRequest is the request struct for api GetScriptFileNames

func CreateGetScriptFileNamesRequest ¶ added in v1.61.858

func CreateGetScriptFileNamesRequest() (request *GetScriptFileNamesRequest)

CreateGetScriptFileNamesRequest creates a request to invoke GetScriptFileNames API

type GetScriptFileNamesResponse ¶ added in v1.61.858

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

GetScriptFileNamesResponse is the response struct for api GetScriptFileNames

func CreateGetScriptFileNamesResponse ¶ added in v1.61.858

func CreateGetScriptFileNamesResponse() (response *GetScriptFileNamesResponse)

CreateGetScriptFileNamesResponse creates a response to parse from GetScriptFileNames response

type GetSearchStrategyRequest ¶ added in v1.62.56

type GetSearchStrategyRequest struct {
	*requests.RoaRequest
	StrategyName     string `position:"Path" name:"strategyName"`
	AppId            string `position:"Path" name:"appId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetSearchStrategyRequest is the request struct for api GetSearchStrategy

func CreateGetSearchStrategyRequest ¶ added in v1.62.56

func CreateGetSearchStrategyRequest() (request *GetSearchStrategyRequest)

CreateGetSearchStrategyRequest creates a request to invoke GetSearchStrategy API

type GetSearchStrategyResponse ¶ added in v1.62.56

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

GetSearchStrategyResponse is the response struct for api GetSearchStrategy

func CreateGetSearchStrategyResponse ¶ added in v1.62.56

func CreateGetSearchStrategyResponse() (response *GetSearchStrategyResponse)

CreateGetSearchStrategyResponse creates a response to parse from GetSearchStrategy response

type GetSortScriptFileRequest ¶ added in v1.61.88

type GetSortScriptFileRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	FileName         string `position:"Path" name:"fileName"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetSortScriptFileRequest is the request struct for api GetSortScriptFile

func CreateGetSortScriptFileRequest ¶ added in v1.61.88

func CreateGetSortScriptFileRequest() (request *GetSortScriptFileRequest)

CreateGetSortScriptFileRequest creates a request to invoke GetSortScriptFile API

type GetSortScriptFileResponse ¶ added in v1.61.88

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

GetSortScriptFileResponse is the response struct for api GetSortScriptFile

func CreateGetSortScriptFileResponse ¶ added in v1.61.88

func CreateGetSortScriptFileResponse() (response *GetSortScriptFileResponse)

CreateGetSortScriptFileResponse creates a response to parse from GetSortScriptFile response

type GetSortScriptRequest ¶ added in v1.61.88

type GetSortScriptRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

GetSortScriptRequest is the request struct for api GetSortScript

func CreateGetSortScriptRequest ¶ added in v1.61.88

func CreateGetSortScriptRequest() (request *GetSortScriptRequest)

CreateGetSortScriptRequest creates a request to invoke GetSortScript API

type GetSortScriptResponse ¶ added in v1.61.88

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

GetSortScriptResponse is the response struct for api GetSortScript

func CreateGetSortScriptResponse ¶ added in v1.61.88

func CreateGetSortScriptResponse() (response *GetSortScriptResponse)

CreateGetSortScriptResponse creates a response to parse from GetSortScript response

type IndexesInCreateQueryProcessor ¶ added in v1.61.329

type IndexesInCreateQueryProcessor struct {
	Indexes []string `json:"indexes" xml:"indexes"`
}

IndexesInCreateQueryProcessor is a nested struct in opensearch response

type IndexesInDescribeQueryProcessor ¶ added in v1.61.329

type IndexesInDescribeQueryProcessor struct {
	Indexes []string `json:"indexes" xml:"indexes"`
}

IndexesInDescribeQueryProcessor is a nested struct in opensearch response

type IndexesInListQueryProcessors ¶ added in v1.61.329

type IndexesInListQueryProcessors struct {
	Indexes []string `json:"indexes" xml:"indexes"`
}

IndexesInListQueryProcessors is a nested struct in opensearch response

type IndexesInModifyQueryProcessor ¶ added in v1.61.329

type IndexesInModifyQueryProcessor struct {
	Indexes []string `json:"indexes" xml:"indexes"`
}

IndexesInModifyQueryProcessor is a nested struct in opensearch response

type ListABTestExperimentsRequest ¶ added in v1.61.367

type ListABTestExperimentsRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListABTestExperimentsRequest is the request struct for api ListABTestExperiments

func CreateListABTestExperimentsRequest ¶ added in v1.61.367

func CreateListABTestExperimentsRequest() (request *ListABTestExperimentsRequest)

CreateListABTestExperimentsRequest creates a request to invoke ListABTestExperiments API

type ListABTestExperimentsResponse ¶ added in v1.61.367

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

ListABTestExperimentsResponse is the response struct for api ListABTestExperiments

func CreateListABTestExperimentsResponse ¶ added in v1.61.367

func CreateListABTestExperimentsResponse() (response *ListABTestExperimentsResponse)

CreateListABTestExperimentsResponse creates a response to parse from ListABTestExperiments response

type ListABTestFixedFlowDividersRequest ¶ added in v1.61.367

type ListABTestFixedFlowDividersRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	ExperimentId     requests.Integer `position:"Path" name:"experimentId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListABTestFixedFlowDividersRequest is the request struct for api ListABTestFixedFlowDividers

func CreateListABTestFixedFlowDividersRequest ¶ added in v1.61.367

func CreateListABTestFixedFlowDividersRequest() (request *ListABTestFixedFlowDividersRequest)

CreateListABTestFixedFlowDividersRequest creates a request to invoke ListABTestFixedFlowDividers API

type ListABTestFixedFlowDividersResponse ¶ added in v1.61.367

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

ListABTestFixedFlowDividersResponse is the response struct for api ListABTestFixedFlowDividers

func CreateListABTestFixedFlowDividersResponse ¶ added in v1.61.367

func CreateListABTestFixedFlowDividersResponse() (response *ListABTestFixedFlowDividersResponse)

CreateListABTestFixedFlowDividersResponse creates a response to parse from ListABTestFixedFlowDividers response

type ListABTestGroupsRequest ¶ added in v1.61.367

type ListABTestGroupsRequest struct {
	*requests.RoaRequest
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListABTestGroupsRequest is the request struct for api ListABTestGroups

func CreateListABTestGroupsRequest ¶ added in v1.61.367

func CreateListABTestGroupsRequest() (request *ListABTestGroupsRequest)

CreateListABTestGroupsRequest creates a request to invoke ListABTestGroups API

type ListABTestGroupsResponse ¶ added in v1.61.367

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

ListABTestGroupsResponse is the response struct for api ListABTestGroups

func CreateListABTestGroupsResponse ¶ added in v1.61.367

func CreateListABTestGroupsResponse() (response *ListABTestGroupsResponse)

CreateListABTestGroupsResponse creates a response to parse from ListABTestGroups response

type ListABTestScenesRequest ¶ added in v1.61.367

type ListABTestScenesRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ListABTestScenesRequest is the request struct for api ListABTestScenes

func CreateListABTestScenesRequest ¶ added in v1.61.367

func CreateListABTestScenesRequest() (request *ListABTestScenesRequest)

CreateListABTestScenesRequest creates a request to invoke ListABTestScenes API

type ListABTestScenesResponse ¶ added in v1.61.367

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

ListABTestScenesResponse is the response struct for api ListABTestScenes

func CreateListABTestScenesResponse ¶ added in v1.61.367

func CreateListABTestScenesResponse() (response *ListABTestScenesResponse)

CreateListABTestScenesResponse creates a response to parse from ListABTestScenes response

type ListAppGroupsRequest ¶ added in v1.61.225

type ListAppGroupsRequest struct {
	*requests.RoaRequest
	ResourceGroupId string           `position:"Query" name:"resourceGroupId"`
	InstanceId      string           `position:"Query" name:"instanceId"`
	PageSize        requests.Integer `position:"Query" name:"pageSize"`
	Name            string           `position:"Query" name:"name"`
	SortBy          requests.Integer `position:"Query" name:"sortBy"`
	Type            string           `position:"Query" name:"type"`
	PageNumber      requests.Integer `position:"Query" name:"pageNumber"`
}

ListAppGroupsRequest is the request struct for api ListAppGroups

func CreateListAppGroupsRequest ¶ added in v1.61.225

func CreateListAppGroupsRequest() (request *ListAppGroupsRequest)

CreateListAppGroupsRequest creates a request to invoke ListAppGroups API

type ListAppGroupsResponse ¶ added in v1.61.225

type ListAppGroupsResponse struct {
	*responses.BaseResponse
	TotalCount int                         `json:"totalCount" xml:"totalCount"`
	RequestId  string                      `json:"requestId" xml:"requestId"`
	Result     []ResultItemInListAppGroups `json:"result" xml:"result"`
}

ListAppGroupsResponse is the response struct for api ListAppGroups

func CreateListAppGroupsResponse ¶ added in v1.61.225

func CreateListAppGroupsResponse() (response *ListAppGroupsResponse)

CreateListAppGroupsResponse creates a response to parse from ListAppGroups response

type ListAppsRequest ¶

type ListAppsRequest struct {
	*requests.RoaRequest
	Size  requests.Integer `position:"Query" name:"size"`
	Page  requests.Integer `position:"Query" name:"page"`
	Group requests.Boolean `position:"Query" name:"group"`
}

ListAppsRequest is the request struct for api ListApps

func CreateListAppsRequest ¶

func CreateListAppsRequest() (request *ListAppsRequest)

CreateListAppsRequest creates a request to invoke ListApps API

type ListAppsResponse ¶

type ListAppsResponse struct {
	*responses.BaseResponse
}

ListAppsResponse is the response struct for api ListApps

func CreateListAppsResponse ¶

func CreateListAppsResponse() (response *ListAppsResponse)

CreateListAppsResponse creates a response to parse from ListApps response

type ListDataCollectionsRequest ¶ added in v1.61.329

type ListDataCollectionsRequest struct {
	*requests.RoaRequest
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
}

ListDataCollectionsRequest is the request struct for api ListDataCollections

func CreateListDataCollectionsRequest ¶ added in v1.61.329

func CreateListDataCollectionsRequest() (request *ListDataCollectionsRequest)

CreateListDataCollectionsRequest creates a request to invoke ListDataCollections API

type ListDataCollectionsResponse ¶ added in v1.61.329

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

ListDataCollectionsResponse is the response struct for api ListDataCollections

func CreateListDataCollectionsResponse ¶ added in v1.61.329

func CreateListDataCollectionsResponse() (response *ListDataCollectionsResponse)

CreateListDataCollectionsResponse creates a response to parse from ListDataCollections response

type ListDataSourceTableFieldsRequest ¶ added in v1.61.1074

type ListDataSourceTableFieldsRequest struct {
	*requests.RoaRequest
	DataSourceType string `position:"Path" name:"dataSourceType"`
	Params         string `position:"Query" name:"params"`
}

ListDataSourceTableFieldsRequest is the request struct for api ListDataSourceTableFields

func CreateListDataSourceTableFieldsRequest ¶ added in v1.61.1074

func CreateListDataSourceTableFieldsRequest() (request *ListDataSourceTableFieldsRequest)

CreateListDataSourceTableFieldsRequest creates a request to invoke ListDataSourceTableFields API

type ListDataSourceTableFieldsResponse ¶ added in v1.61.1074

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

ListDataSourceTableFieldsResponse is the response struct for api ListDataSourceTableFields

func CreateListDataSourceTableFieldsResponse ¶ added in v1.61.1074

func CreateListDataSourceTableFieldsResponse() (response *ListDataSourceTableFieldsResponse)

CreateListDataSourceTableFieldsResponse creates a response to parse from ListDataSourceTableFields response

type ListDataSourceTablesRequest ¶ added in v1.61.1074

type ListDataSourceTablesRequest struct {
	*requests.RoaRequest
	DataSourceType string `position:"Path" name:"dataSourceType"`
	Params         string `position:"Query" name:"params"`
}

ListDataSourceTablesRequest is the request struct for api ListDataSourceTables

func CreateListDataSourceTablesRequest ¶ added in v1.61.1074

func CreateListDataSourceTablesRequest() (request *ListDataSourceTablesRequest)

CreateListDataSourceTablesRequest creates a request to invoke ListDataSourceTables API

type ListDataSourceTablesResponse ¶ added in v1.61.1074

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

ListDataSourceTablesResponse is the response struct for api ListDataSourceTables

func CreateListDataSourceTablesResponse ¶ added in v1.61.1074

func CreateListDataSourceTablesResponse() (response *ListDataSourceTablesResponse)

CreateListDataSourceTablesResponse creates a response to parse from ListDataSourceTables response

type ListFirstRanksRequest ¶ added in v1.61.329

type ListFirstRanksRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListFirstRanksRequest is the request struct for api ListFirstRanks

func CreateListFirstRanksRequest ¶ added in v1.61.329

func CreateListFirstRanksRequest() (request *ListFirstRanksRequest)

CreateListFirstRanksRequest creates a request to invoke ListFirstRanks API

type ListFirstRanksResponse ¶ added in v1.61.329

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

ListFirstRanksResponse is the response struct for api ListFirstRanks

func CreateListFirstRanksResponse ¶ added in v1.61.329

func CreateListFirstRanksResponse() (response *ListFirstRanksResponse)

CreateListFirstRanksResponse creates a response to parse from ListFirstRanks response

type ListFunctionInstancesRequest ¶ added in v1.62.56

type ListFunctionInstancesRequest struct {
	*requests.RoaRequest
	Output           string           `position:"Query" name:"output"`
	ModelType        string           `position:"Query" name:"modelType"`
	FunctionName     string           `position:"Path" name:"functionName"`
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	FunctionType     string           `position:"Query" name:"functionType"`
	Source           string           `position:"Query" name:"source"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
}

ListFunctionInstancesRequest is the request struct for api ListFunctionInstances

func CreateListFunctionInstancesRequest ¶ added in v1.62.56

func CreateListFunctionInstancesRequest() (request *ListFunctionInstancesRequest)

CreateListFunctionInstancesRequest creates a request to invoke ListFunctionInstances API

type ListFunctionInstancesResponse ¶ added in v1.62.56

type ListFunctionInstancesResponse struct {
	*responses.BaseResponse
	Status     string                              `json:"Status" xml:"Status"`
	HttpCode   int64                               `json:"HttpCode" xml:"HttpCode"`
	TotalCount int64                               `json:"TotalCount" xml:"TotalCount"`
	RequestId  string                              `json:"RequestId" xml:"RequestId"`
	Message    string                              `json:"Message" xml:"Message"`
	Code       string                              `json:"Code" xml:"Code"`
	Latency    int64                               `json:"Latency" xml:"Latency"`
	Result     []ResultItemInListFunctionInstances `json:"Result" xml:"Result"`
}

ListFunctionInstancesResponse is the response struct for api ListFunctionInstances

func CreateListFunctionInstancesResponse ¶ added in v1.62.56

func CreateListFunctionInstancesResponse() (response *ListFunctionInstancesResponse)

CreateListFunctionInstancesResponse creates a response to parse from ListFunctionInstances response

type ListFunctionTasksRequest ¶ added in v1.62.56

type ListFunctionTasksRequest struct {
	*requests.RoaRequest
	InstanceName     string           `position:"Path" name:"instanceName"`
	FunctionName     string           `position:"Path" name:"functionName"`
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	EndTime          requests.Integer `position:"Query" name:"endTime"`
	StartTime        requests.Integer `position:"Query" name:"startTime"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
	Status           string           `position:"Query" name:"status"`
}

ListFunctionTasksRequest is the request struct for api ListFunctionTasks

func CreateListFunctionTasksRequest ¶ added in v1.62.56

func CreateListFunctionTasksRequest() (request *ListFunctionTasksRequest)

CreateListFunctionTasksRequest creates a request to invoke ListFunctionTasks API

type ListFunctionTasksResponse ¶ added in v1.62.56

type ListFunctionTasksResponse struct {
	*responses.BaseResponse
	Status     string                          `json:"Status" xml:"Status"`
	HttpCode   int64                           `json:"HttpCode" xml:"HttpCode"`
	TotalCount int64                           `json:"TotalCount" xml:"TotalCount"`
	RequestId  string                          `json:"RequestId" xml:"RequestId"`
	Message    string                          `json:"Message" xml:"Message"`
	Code       string                          `json:"Code" xml:"Code"`
	Latency    int64                           `json:"Latency" xml:"Latency"`
	Result     []ResultItemInListFunctionTasks `json:"Result" xml:"Result"`
}

ListFunctionTasksResponse is the response struct for api ListFunctionTasks

func CreateListFunctionTasksResponse ¶ added in v1.62.56

func CreateListFunctionTasksResponse() (response *ListFunctionTasksResponse)

CreateListFunctionTasksResponse creates a response to parse from ListFunctionTasks response

type ListInterventionDictionariesRequest ¶ added in v1.61.329

type ListInterventionDictionariesRequest struct {
	*requests.RoaRequest
	Types      string           `position:"Query" name:"types"`
	PageSize   requests.Integer `position:"Query" name:"pageSize"`
	PageNumber requests.Integer `position:"Query" name:"pageNumber"`
}

ListInterventionDictionariesRequest is the request struct for api ListInterventionDictionaries

func CreateListInterventionDictionariesRequest ¶ added in v1.61.329

func CreateListInterventionDictionariesRequest() (request *ListInterventionDictionariesRequest)

CreateListInterventionDictionariesRequest creates a request to invoke ListInterventionDictionaries API

type ListInterventionDictionariesResponse ¶ added in v1.61.329

type ListInterventionDictionariesResponse struct {
	*responses.BaseResponse
	TotalCount int                                        `json:"totalCount" xml:"totalCount"`
	RequestId  string                                     `json:"requestId" xml:"requestId"`
	Result     []ResultItemInListInterventionDictionaries `json:"result" xml:"result"`
}

ListInterventionDictionariesResponse is the response struct for api ListInterventionDictionaries

func CreateListInterventionDictionariesResponse ¶ added in v1.61.329

func CreateListInterventionDictionariesResponse() (response *ListInterventionDictionariesResponse)

CreateListInterventionDictionariesResponse creates a response to parse from ListInterventionDictionaries response

type ListInterventionDictionaryEntriesRequest ¶ added in v1.61.329

type ListInterventionDictionaryEntriesRequest struct {
	*requests.RoaRequest
	Name       string           `position:"Path" name:"name"`
	PageSize   requests.Integer `position:"Query" name:"pageSize"`
	Word       string           `position:"Query" name:"word"`
	PageNumber requests.Integer `position:"Query" name:"pageNumber"`
}

ListInterventionDictionaryEntriesRequest is the request struct for api ListInterventionDictionaryEntries

func CreateListInterventionDictionaryEntriesRequest ¶ added in v1.61.329

func CreateListInterventionDictionaryEntriesRequest() (request *ListInterventionDictionaryEntriesRequest)

CreateListInterventionDictionaryEntriesRequest creates a request to invoke ListInterventionDictionaryEntries API

type ListInterventionDictionaryEntriesResponse ¶ added in v1.61.329

type ListInterventionDictionaryEntriesResponse struct {
	*responses.BaseResponse
	TotalCount int        `json:"totalCount" xml:"totalCount"`
	RequestId  string     `json:"requestId" xml:"requestId"`
	Result     []WordItem `json:"result" xml:"result"`
}

ListInterventionDictionaryEntriesResponse is the response struct for api ListInterventionDictionaryEntries

func CreateListInterventionDictionaryEntriesResponse ¶ added in v1.61.329

func CreateListInterventionDictionaryEntriesResponse() (response *ListInterventionDictionaryEntriesResponse)

CreateListInterventionDictionaryEntriesResponse creates a response to parse from ListInterventionDictionaryEntries response

type ListInterventionDictionaryNerResultsRequest ¶ added in v1.61.329

type ListInterventionDictionaryNerResultsRequest struct {
	*requests.RoaRequest
	Query string `position:"Query" name:"query"`
	Name  string `position:"Path" name:"name"`
}

ListInterventionDictionaryNerResultsRequest is the request struct for api ListInterventionDictionaryNerResults

func CreateListInterventionDictionaryNerResultsRequest ¶ added in v1.61.329

func CreateListInterventionDictionaryNerResultsRequest() (request *ListInterventionDictionaryNerResultsRequest)

CreateListInterventionDictionaryNerResultsRequest creates a request to invoke ListInterventionDictionaryNerResults API

type ListInterventionDictionaryNerResultsResponse ¶ added in v1.61.329

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

ListInterventionDictionaryNerResultsResponse is the response struct for api ListInterventionDictionaryNerResults

func CreateListInterventionDictionaryNerResultsResponse ¶ added in v1.61.329

func CreateListInterventionDictionaryNerResultsResponse() (response *ListInterventionDictionaryNerResultsResponse)

CreateListInterventionDictionaryNerResultsResponse creates a response to parse from ListInterventionDictionaryNerResults response

type ListInterventionDictionaryRelatedEntitiesRequest ¶ added in v1.61.329

type ListInterventionDictionaryRelatedEntitiesRequest struct {
	*requests.RoaRequest
	Name string `position:"Path" name:"name"`
}

ListInterventionDictionaryRelatedEntitiesRequest is the request struct for api ListInterventionDictionaryRelatedEntities

func CreateListInterventionDictionaryRelatedEntitiesRequest ¶ added in v1.61.329

func CreateListInterventionDictionaryRelatedEntitiesRequest() (request *ListInterventionDictionaryRelatedEntitiesRequest)

CreateListInterventionDictionaryRelatedEntitiesRequest creates a request to invoke ListInterventionDictionaryRelatedEntities API

type ListInterventionDictionaryRelatedEntitiesResponse ¶ added in v1.61.329

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

ListInterventionDictionaryRelatedEntitiesResponse is the response struct for api ListInterventionDictionaryRelatedEntities

func CreateListInterventionDictionaryRelatedEntitiesResponse ¶ added in v1.61.329

func CreateListInterventionDictionaryRelatedEntitiesResponse() (response *ListInterventionDictionaryRelatedEntitiesResponse)

CreateListInterventionDictionaryRelatedEntitiesResponse creates a response to parse from ListInterventionDictionaryRelatedEntities response

type ListModelsRequest ¶ added in v1.61.410

type ListModelsRequest struct {
	*requests.RoaRequest
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	Type             string           `position:"Query" name:"type"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
}

ListModelsRequest is the request struct for api ListModels

func CreateListModelsRequest ¶ added in v1.61.410

func CreateListModelsRequest() (request *ListModelsRequest)

CreateListModelsRequest creates a request to invoke ListModels API

type ListModelsResponse ¶ added in v1.61.410

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

ListModelsResponse is the response struct for api ListModels

func CreateListModelsResponse ¶ added in v1.61.410

func CreateListModelsResponse() (response *ListModelsResponse)

CreateListModelsResponse creates a response to parse from ListModels response

type ListProceedingsRequest ¶ added in v1.62.56

type ListProceedingsRequest struct {
	*requests.RoaRequest
	FilterFinished   requests.Boolean `position:"Query" name:"filterFinished"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListProceedingsRequest is the request struct for api ListProceedings

func CreateListProceedingsRequest ¶ added in v1.62.56

func CreateListProceedingsRequest() (request *ListProceedingsRequest)

CreateListProceedingsRequest creates a request to invoke ListProceedings API

type ListProceedingsResponse ¶ added in v1.62.56

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

ListProceedingsResponse is the response struct for api ListProceedings

func CreateListProceedingsResponse ¶ added in v1.62.56

func CreateListProceedingsResponse() (response *ListProceedingsResponse)

CreateListProceedingsResponse creates a response to parse from ListProceedings response

type ListQueryProcessorAnalyzerResultsRequest ¶ added in v1.62.56

type ListQueryProcessorAnalyzerResultsRequest struct {
	*requests.RoaRequest
	AppId            string `position:"Path" name:"appId"`
	Name             string `position:"Path" name:"name"`
	Text             string `position:"Query" name:"text"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ListQueryProcessorAnalyzerResultsRequest is the request struct for api ListQueryProcessorAnalyzerResults

func CreateListQueryProcessorAnalyzerResultsRequest ¶ added in v1.62.56

func CreateListQueryProcessorAnalyzerResultsRequest() (request *ListQueryProcessorAnalyzerResultsRequest)

CreateListQueryProcessorAnalyzerResultsRequest creates a request to invoke ListQueryProcessorAnalyzerResults API

type ListQueryProcessorAnalyzerResultsResponse ¶ added in v1.62.56

type ListQueryProcessorAnalyzerResultsResponse struct {
	*responses.BaseResponse
	Result    map[string]interface{} `json:"result" xml:"result"`
	RequestId string                 `json:"RequestId" xml:"RequestId"`
}

ListQueryProcessorAnalyzerResultsResponse is the response struct for api ListQueryProcessorAnalyzerResults

func CreateListQueryProcessorAnalyzerResultsResponse ¶ added in v1.62.56

func CreateListQueryProcessorAnalyzerResultsResponse() (response *ListQueryProcessorAnalyzerResultsResponse)

CreateListQueryProcessorAnalyzerResultsResponse creates a response to parse from ListQueryProcessorAnalyzerResults response

type ListQueryProcessorNersRequest ¶ added in v1.61.329

type ListQueryProcessorNersRequest struct {
	*requests.RoaRequest
	Domain string `position:"Query" name:"domain"`
}

ListQueryProcessorNersRequest is the request struct for api ListQueryProcessorNers

func CreateListQueryProcessorNersRequest ¶ added in v1.61.329

func CreateListQueryProcessorNersRequest() (request *ListQueryProcessorNersRequest)

CreateListQueryProcessorNersRequest creates a request to invoke ListQueryProcessorNers API

type ListQueryProcessorNersResponse ¶ added in v1.61.329

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

ListQueryProcessorNersResponse is the response struct for api ListQueryProcessorNers

func CreateListQueryProcessorNersResponse ¶ added in v1.61.329

func CreateListQueryProcessorNersResponse() (response *ListQueryProcessorNersResponse)

CreateListQueryProcessorNersResponse creates a response to parse from ListQueryProcessorNers response

type ListQueryProcessorsRequest ¶ added in v1.61.329

type ListQueryProcessorsRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	IsActive         requests.Integer `position:"Query" name:"isActive"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListQueryProcessorsRequest is the request struct for api ListQueryProcessors

func CreateListQueryProcessorsRequest ¶ added in v1.61.329

func CreateListQueryProcessorsRequest() (request *ListQueryProcessorsRequest)

CreateListQueryProcessorsRequest creates a request to invoke ListQueryProcessors API

type ListQueryProcessorsResponse ¶ added in v1.61.329

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

ListQueryProcessorsResponse is the response struct for api ListQueryProcessors

func CreateListQueryProcessorsResponse ¶ added in v1.61.329

func CreateListQueryProcessorsResponse() (response *ListQueryProcessorsResponse)

CreateListQueryProcessorsResponse creates a response to parse from ListQueryProcessors response

type ListQuotaReviewTasksRequest ¶ added in v1.61.1092

type ListQuotaReviewTasksRequest struct {
	*requests.RoaRequest
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
}

ListQuotaReviewTasksRequest is the request struct for api ListQuotaReviewTasks

func CreateListQuotaReviewTasksRequest ¶ added in v1.61.1092

func CreateListQuotaReviewTasksRequest() (request *ListQuotaReviewTasksRequest)

CreateListQuotaReviewTasksRequest creates a request to invoke ListQuotaReviewTasks API

type ListQuotaReviewTasksResponse ¶ added in v1.61.1092

type ListQuotaReviewTasksResponse struct {
	*responses.BaseResponse
	TotalCount int                                `json:"totalCount" xml:"totalCount"`
	RequestId  string                             `json:"requestId" xml:"requestId"`
	Result     []ResultItemInListQuotaReviewTasks `json:"result" xml:"result"`
}

ListQuotaReviewTasksResponse is the response struct for api ListQuotaReviewTasks

func CreateListQuotaReviewTasksResponse ¶ added in v1.61.1092

func CreateListQuotaReviewTasksResponse() (response *ListQuotaReviewTasksResponse)

CreateListQuotaReviewTasksResponse creates a response to parse from ListQuotaReviewTasks response

type ListScheduledTasksRequest ¶ added in v1.61.329

type ListScheduledTasksRequest struct {
	*requests.RoaRequest
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	Type             string           `position:"Query" name:"type"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
}

ListScheduledTasksRequest is the request struct for api ListScheduledTasks

func CreateListScheduledTasksRequest ¶ added in v1.61.329

func CreateListScheduledTasksRequest() (request *ListScheduledTasksRequest)

CreateListScheduledTasksRequest creates a request to invoke ListScheduledTasks API

type ListScheduledTasksResponse ¶ added in v1.61.329

type ListScheduledTasksResponse struct {
	*responses.BaseResponse
	TotalCount int64                    `json:"totalCount" xml:"totalCount"`
	RequestId  string                   `json:"requestId" xml:"requestId"`
	Result     []map[string]interface{} `json:"result" xml:"result"`
}

ListScheduledTasksResponse is the response struct for api ListScheduledTasks

func CreateListScheduledTasksResponse ¶ added in v1.61.329

func CreateListScheduledTasksResponse() (response *ListScheduledTasksResponse)

CreateListScheduledTasksResponse creates a response to parse from ListScheduledTasks response

type ListSearchStrategiesRequest ¶ added in v1.62.56

type ListSearchStrategiesRequest struct {
	*requests.RoaRequest
	AppId            string `position:"Path" name:"appId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ListSearchStrategiesRequest is the request struct for api ListSearchStrategies

func CreateListSearchStrategiesRequest ¶ added in v1.62.56

func CreateListSearchStrategiesRequest() (request *ListSearchStrategiesRequest)

CreateListSearchStrategiesRequest creates a request to invoke ListSearchStrategies API

type ListSearchStrategiesResponse ¶ added in v1.62.56

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

ListSearchStrategiesResponse is the response struct for api ListSearchStrategies

func CreateListSearchStrategiesResponse ¶ added in v1.62.56

func CreateListSearchStrategiesResponse() (response *ListSearchStrategiesResponse)

CreateListSearchStrategiesResponse creates a response to parse from ListSearchStrategies response

type ListSecondRanksRequest ¶ added in v1.61.329

type ListSecondRanksRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListSecondRanksRequest is the request struct for api ListSecondRanks

func CreateListSecondRanksRequest ¶ added in v1.61.329

func CreateListSecondRanksRequest() (request *ListSecondRanksRequest)

CreateListSecondRanksRequest creates a request to invoke ListSecondRanks API

type ListSecondRanksResponse ¶ added in v1.61.329

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

ListSecondRanksResponse is the response struct for api ListSecondRanks

func CreateListSecondRanksResponse ¶ added in v1.61.329

func CreateListSecondRanksResponse() (response *ListSecondRanksResponse)

CreateListSecondRanksResponse creates a response to parse from ListSecondRanks response

type ListSlowQueryCategoriesRequest ¶ added in v1.61.329

type ListSlowQueryCategoriesRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ListSlowQueryCategoriesRequest is the request struct for api ListSlowQueryCategories

func CreateListSlowQueryCategoriesRequest ¶ added in v1.61.329

func CreateListSlowQueryCategoriesRequest() (request *ListSlowQueryCategoriesRequest)

CreateListSlowQueryCategoriesRequest creates a request to invoke ListSlowQueryCategories API

type ListSlowQueryCategoriesResponse ¶ added in v1.61.329

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

ListSlowQueryCategoriesResponse is the response struct for api ListSlowQueryCategories

func CreateListSlowQueryCategoriesResponse ¶ added in v1.61.329

func CreateListSlowQueryCategoriesResponse() (response *ListSlowQueryCategoriesResponse)

CreateListSlowQueryCategoriesResponse creates a response to parse from ListSlowQueryCategories response

type ListSlowQueryQueriesRequest ¶ added in v1.61.329

type ListSlowQueryQueriesRequest struct {
	*requests.RoaRequest
	CategoryIndex    string `position:"Path" name:"categoryIndex"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ListSlowQueryQueriesRequest is the request struct for api ListSlowQueryQueries

func CreateListSlowQueryQueriesRequest ¶ added in v1.61.329

func CreateListSlowQueryQueriesRequest() (request *ListSlowQueryQueriesRequest)

CreateListSlowQueryQueriesRequest creates a request to invoke ListSlowQueryQueries API

type ListSlowQueryQueriesResponse ¶ added in v1.61.329

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

ListSlowQueryQueriesResponse is the response struct for api ListSlowQueryQueries

func CreateListSlowQueryQueriesResponse ¶ added in v1.61.329

func CreateListSlowQueryQueriesResponse() (response *ListSlowQueryQueriesResponse)

CreateListSlowQueryQueriesResponse creates a response to parse from ListSlowQueryQueries response

type ListSortExpressionsRequest ¶ added in v1.61.367

type ListSortExpressionsRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ListSortExpressionsRequest is the request struct for api ListSortExpressions

func CreateListSortExpressionsRequest ¶ added in v1.61.367

func CreateListSortExpressionsRequest() (request *ListSortExpressionsRequest)

CreateListSortExpressionsRequest creates a request to invoke ListSortExpressions API

type ListSortExpressionsResponse ¶ added in v1.61.367

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

ListSortExpressionsResponse is the response struct for api ListSortExpressions

func CreateListSortExpressionsResponse ¶ added in v1.61.367

func CreateListSortExpressionsResponse() (response *ListSortExpressionsResponse)

CreateListSortExpressionsResponse creates a response to parse from ListSortExpressions response

type ListSortScriptsRequest ¶ added in v1.61.88

type ListSortScriptsRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ListSortScriptsRequest is the request struct for api ListSortScripts

func CreateListSortScriptsRequest ¶ added in v1.61.88

func CreateListSortScriptsRequest() (request *ListSortScriptsRequest)

CreateListSortScriptsRequest creates a request to invoke ListSortScripts API

type ListSortScriptsResponse ¶ added in v1.61.88

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

ListSortScriptsResponse is the response struct for api ListSortScripts

func CreateListSortScriptsResponse ¶ added in v1.61.88

func CreateListSortScriptsResponse() (response *ListSortScriptsResponse)

CreateListSortScriptsResponse creates a response to parse from ListSortScripts response

type ListStatisticLogsRequest ¶ added in v1.61.580

type ListStatisticLogsRequest struct {
	*requests.RoaRequest
	Columns          string           `position:"Query" name:"columns"`
	Query            string           `position:"Query" name:"query"`
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	ModuleName       string           `position:"Path" name:"moduleName"`
	Distinct         requests.Boolean `position:"Query" name:"distinct"`
	SortBy           string           `position:"Query" name:"sortBy"`
	StartTime        requests.Integer `position:"Query" name:"startTime"`
	StopTime         requests.Integer `position:"Query" name:"stopTime"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
}

ListStatisticLogsRequest is the request struct for api ListStatisticLogs

func CreateListStatisticLogsRequest ¶ added in v1.61.580

func CreateListStatisticLogsRequest() (request *ListStatisticLogsRequest)

CreateListStatisticLogsRequest creates a request to invoke ListStatisticLogs API

type ListStatisticLogsResponse ¶ added in v1.61.580

type ListStatisticLogsResponse struct {
	*responses.BaseResponse
	TotalCount int64                    `json:"totalCount" xml:"totalCount"`
	RequestId  string                   `json:"requestId" xml:"requestId"`
	Result     []map[string]interface{} `json:"result" xml:"result"`
}

ListStatisticLogsResponse is the response struct for api ListStatisticLogs

func CreateListStatisticLogsResponse ¶ added in v1.61.580

func CreateListStatisticLogsResponse() (response *ListStatisticLogsResponse)

CreateListStatisticLogsResponse creates a response to parse from ListStatisticLogs response

type ListStatisticReportRequest ¶ added in v1.61.580

type ListStatisticReportRequest struct {
	*requests.RoaRequest
	Columns          string           `position:"Query" name:"columns"`
	Query            string           `position:"Query" name:"query"`
	PageSize         requests.Integer `position:"Query" name:"pageSize"`
	ModuleName       string           `position:"Path" name:"moduleName"`
	EndTime          requests.Integer `position:"Query" name:"endTime"`
	StartTime        requests.Integer `position:"Query" name:"startTime"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
	PageNumber       requests.Integer `position:"Query" name:"pageNumber"`
}

ListStatisticReportRequest is the request struct for api ListStatisticReport

func CreateListStatisticReportRequest ¶ added in v1.61.580

func CreateListStatisticReportRequest() (request *ListStatisticReportRequest)

CreateListStatisticReportRequest creates a request to invoke ListStatisticReport API

type ListStatisticReportResponse ¶ added in v1.61.580

type ListStatisticReportResponse struct {
	*responses.BaseResponse
	TotalCount int64                    `json:"totalCount" xml:"totalCount"`
	RequestId  string                   `json:"requestId" xml:"requestId"`
	Result     []map[string]interface{} `json:"result" xml:"result"`
}

ListStatisticReportResponse is the response struct for api ListStatisticReport

func CreateListStatisticReportResponse ¶ added in v1.61.580

func CreateListStatisticReportResponse() (response *ListStatisticReportResponse)

CreateListStatisticReportResponse creates a response to parse from ListStatisticReport response

type ListTagResourcesRequest ¶ added in v1.62.56

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

ListTagResourcesRequest is the request struct for api ListTagResources

func CreateListTagResourcesRequest ¶ added in v1.62.56

func CreateListTagResourcesRequest() (request *ListTagResourcesRequest)

CreateListTagResourcesRequest creates a request to invoke ListTagResources API

type ListTagResourcesResponse ¶ added in v1.62.56

type ListTagResourcesResponse struct {
	*responses.BaseResponse
	RequestId string        `json:"requestId" xml:"requestId"`
	NextToken string        `json:"nextToken" xml:"nextToken"`
	Result    []TagResource `json:"result" xml:"result"`
}

ListTagResourcesResponse is the response struct for api ListTagResources

func CreateListTagResourcesResponse ¶ added in v1.62.56

func CreateListTagResourcesResponse() (response *ListTagResourcesResponse)

CreateListTagResourcesResponse creates a response to parse from ListTagResources response

type ListUserAnalyzerEntriesRequest ¶ added in v1.61.367

type ListUserAnalyzerEntriesRequest struct {
	*requests.RoaRequest
	Name       string           `position:"Path" name:"name"`
	PageSize   requests.Integer `position:"Query" name:"pageSize"`
	Word       string           `position:"Query" name:"word"`
	PageNumber requests.Integer `position:"Query" name:"pageNumber"`
}

ListUserAnalyzerEntriesRequest is the request struct for api ListUserAnalyzerEntries

func CreateListUserAnalyzerEntriesRequest ¶ added in v1.61.367

func CreateListUserAnalyzerEntriesRequest() (request *ListUserAnalyzerEntriesRequest)

CreateListUserAnalyzerEntriesRequest creates a request to invoke ListUserAnalyzerEntries API

type ListUserAnalyzerEntriesResponse ¶ added in v1.61.367

type ListUserAnalyzerEntriesResponse struct {
	*responses.BaseResponse
	Result    map[string]interface{} `json:"result" xml:"result"`
	RequestId string                 `json:"RequestId" xml:"RequestId"`
}

ListUserAnalyzerEntriesResponse is the response struct for api ListUserAnalyzerEntries

func CreateListUserAnalyzerEntriesResponse ¶ added in v1.61.367

func CreateListUserAnalyzerEntriesResponse() (response *ListUserAnalyzerEntriesResponse)

CreateListUserAnalyzerEntriesResponse creates a response to parse from ListUserAnalyzerEntries response

type ListUserAnalyzersRequest ¶ added in v1.61.367

type ListUserAnalyzersRequest struct {
	*requests.RoaRequest
	PageSize   requests.Integer `position:"Query" name:"pageSize"`
	PageNumber requests.Integer `position:"Query" name:"pageNumber"`
}

ListUserAnalyzersRequest is the request struct for api ListUserAnalyzers

func CreateListUserAnalyzersRequest ¶ added in v1.61.367

func CreateListUserAnalyzersRequest() (request *ListUserAnalyzersRequest)

CreateListUserAnalyzersRequest creates a request to invoke ListUserAnalyzers API

type ListUserAnalyzersResponse ¶ added in v1.61.367

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

ListUserAnalyzersResponse is the response struct for api ListUserAnalyzers

func CreateListUserAnalyzersResponse ¶ added in v1.61.367

func CreateListUserAnalyzersResponse() (response *ListUserAnalyzersResponse)

CreateListUserAnalyzersResponse creates a response to parse from ListUserAnalyzers response

type MetaInCreateFirstRank ¶ added in v1.61.329

type MetaInCreateFirstRank struct {
	MetaItem []MetaItem `json:"metaItem" xml:"metaItem"`
}

MetaInCreateFirstRank is a nested struct in opensearch response

type MetaInDescribeFirstRank ¶ added in v1.61.329

type MetaInDescribeFirstRank struct {
	MetaItem []MetaItem `json:"metaItem" xml:"metaItem"`
}

MetaInDescribeFirstRank is a nested struct in opensearch response

type MetaInListFirstRanks ¶ added in v1.61.329

type MetaInListFirstRanks struct {
	MetaItem []MetaItemInListFirstRanks `json:"metaItem" xml:"metaItem"`
}

MetaInListFirstRanks is a nested struct in opensearch response

type MetaInModifyFirstRank ¶ added in v1.61.329

type MetaInModifyFirstRank struct {
	MetaItem []MetaItem `json:"metaItem" xml:"metaItem"`
}

MetaInModifyFirstRank is a nested struct in opensearch response

type MetaInRemoveFirstRank ¶ added in v1.61.329

type MetaInRemoveFirstRank struct {
	MetaItem []MetaItem `json:"metaItem" xml:"metaItem"`
}

MetaInRemoveFirstRank is a nested struct in opensearch response

type MetaItem ¶ added in v1.61.329

type MetaItem struct {
	Attribute string  `json:"attribute" xml:"attribute"`
	Weight    float64 `json:"weight" xml:"weight"`
	Arg       string  `json:"arg" xml:"arg"`
}

MetaItem is a nested struct in opensearch response

type MetaItemInListFirstRanks ¶ added in v1.61.329

type MetaItemInListFirstRanks struct {
	Arg       string `json:"arg" xml:"arg"`
	Attribute string `json:"attribute" xml:"attribute"`
	Weight    int    `json:"weight" xml:"weight"`
}

MetaItemInListFirstRanks is a nested struct in opensearch response

type ModifyAppGroupQuotaRequest ¶ added in v1.61.225

type ModifyAppGroupQuotaRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ModifyAppGroupQuotaRequest is the request struct for api ModifyAppGroupQuota

func CreateModifyAppGroupQuotaRequest ¶ added in v1.61.225

func CreateModifyAppGroupQuotaRequest() (request *ModifyAppGroupQuotaRequest)

CreateModifyAppGroupQuotaRequest creates a request to invoke ModifyAppGroupQuota API

type ModifyAppGroupQuotaResponse ¶ added in v1.61.225

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

ModifyAppGroupQuotaResponse is the response struct for api ModifyAppGroupQuota

func CreateModifyAppGroupQuotaResponse ¶ added in v1.61.225

func CreateModifyAppGroupQuotaResponse() (response *ModifyAppGroupQuotaResponse)

CreateModifyAppGroupQuotaResponse creates a response to parse from ModifyAppGroupQuota response

type ModifyAppGroupRequest ¶ added in v1.61.225

type ModifyAppGroupRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ModifyAppGroupRequest is the request struct for api ModifyAppGroup

func CreateModifyAppGroupRequest ¶ added in v1.61.225

func CreateModifyAppGroupRequest() (request *ModifyAppGroupRequest)

CreateModifyAppGroupRequest creates a request to invoke ModifyAppGroup API

type ModifyAppGroupResponse ¶ added in v1.61.225

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

ModifyAppGroupResponse is the response struct for api ModifyAppGroup

func CreateModifyAppGroupResponse ¶ added in v1.61.225

func CreateModifyAppGroupResponse() (response *ModifyAppGroupResponse)

CreateModifyAppGroupResponse creates a response to parse from ModifyAppGroup response

type ModifyFirstRankRequest ¶ added in v1.61.329

type ModifyFirstRankRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ModifyFirstRankRequest is the request struct for api ModifyFirstRank

func CreateModifyFirstRankRequest ¶ added in v1.61.329

func CreateModifyFirstRankRequest() (request *ModifyFirstRankRequest)

CreateModifyFirstRankRequest creates a request to invoke ModifyFirstRank API

type ModifyFirstRankResponse ¶ added in v1.61.329

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

ModifyFirstRankResponse is the response struct for api ModifyFirstRank

func CreateModifyFirstRankResponse ¶ added in v1.61.329

func CreateModifyFirstRankResponse() (response *ModifyFirstRankResponse)

CreateModifyFirstRankResponse creates a response to parse from ModifyFirstRank response

type ModifyQueryProcessorRequest ¶ added in v1.61.329

type ModifyQueryProcessorRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ModifyQueryProcessorRequest is the request struct for api ModifyQueryProcessor

func CreateModifyQueryProcessorRequest ¶ added in v1.61.329

func CreateModifyQueryProcessorRequest() (request *ModifyQueryProcessorRequest)

CreateModifyQueryProcessorRequest creates a request to invoke ModifyQueryProcessor API

type ModifyQueryProcessorResponse ¶ added in v1.61.329

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

ModifyQueryProcessorResponse is the response struct for api ModifyQueryProcessor

func CreateModifyQueryProcessorResponse ¶ added in v1.61.329

func CreateModifyQueryProcessorResponse() (response *ModifyQueryProcessorResponse)

CreateModifyQueryProcessorResponse creates a response to parse from ModifyQueryProcessor response

type ModifyScheduledTaskRequest ¶ added in v1.61.329

type ModifyScheduledTaskRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
	TaskId           string `position:"Path" name:"taskId"`
}

ModifyScheduledTaskRequest is the request struct for api ModifyScheduledTask

func CreateModifyScheduledTaskRequest ¶ added in v1.61.329

func CreateModifyScheduledTaskRequest() (request *ModifyScheduledTaskRequest)

CreateModifyScheduledTaskRequest creates a request to invoke ModifyScheduledTask API

type ModifyScheduledTaskResponse ¶ added in v1.61.329

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

ModifyScheduledTaskResponse is the response struct for api ModifyScheduledTask

func CreateModifyScheduledTaskResponse ¶ added in v1.61.329

func CreateModifyScheduledTaskResponse() (response *ModifyScheduledTaskResponse)

CreateModifyScheduledTaskResponse creates a response to parse from ModifyScheduledTask response

type ModifySecondRankRequest ¶ added in v1.61.329

type ModifySecondRankRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

ModifySecondRankRequest is the request struct for api ModifySecondRank

func CreateModifySecondRankRequest ¶ added in v1.61.329

func CreateModifySecondRankRequest() (request *ModifySecondRankRequest)

CreateModifySecondRankRequest creates a request to invoke ModifySecondRank API

type ModifySecondRankResponse ¶ added in v1.61.329

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

ModifySecondRankResponse is the response struct for api ModifySecondRank

func CreateModifySecondRankResponse ¶ added in v1.61.329

func CreateModifySecondRankResponse() (response *ModifySecondRankResponse)

CreateModifySecondRankResponse creates a response to parse from ModifySecondRank response

type NerItem ¶ added in v1.61.329

type NerItem struct {
	Tag      string `json:"tag" xml:"tag"`
	Token    string `json:"token" xml:"token"`
	Order    int    `json:"order" xml:"order"`
	TagLabel string `json:"tagLabel" xml:"tagLabel"`
}

NerItem is a nested struct in opensearch response

type Params ¶ added in v1.61.367

type Params struct {
	FirstFormulaName string `json:"first_formula_name" xml:"first_formula_name"`
}

Params is a nested struct in opensearch response

type PreviewModelRequest ¶ added in v1.61.580

type PreviewModelRequest struct {
	*requests.RoaRequest
	ModelName        string `position:"Path" name:"modelName"`
	Query            string `position:"Query" name:"query"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

PreviewModelRequest is the request struct for api PreviewModel

func CreatePreviewModelRequest ¶ added in v1.61.580

func CreatePreviewModelRequest() (request *PreviewModelRequest)

CreatePreviewModelRequest creates a request to invoke PreviewModel API

type PreviewModelResponse ¶ added in v1.61.580

type PreviewModelResponse struct {
	*responses.BaseResponse
	TotalCount int64                    `json:"totalCount" xml:"totalCount"`
	RequestId  string                   `json:"requestId" xml:"requestId"`
	Result     []map[string]interface{} `json:"result" xml:"result"`
}

PreviewModelResponse is the response struct for api PreviewModel

func CreatePreviewModelResponse ¶ added in v1.61.580

func CreatePreviewModelResponse() (response *PreviewModelResponse)

CreatePreviewModelResponse creates a response to parse from PreviewModel response

type ProcessorsInCreateQueryProcessor ¶ added in v1.61.329

type ProcessorsInCreateQueryProcessor struct {
	Processors []map[string]interface{} `json:"processors" xml:"processors"`
}

ProcessorsInCreateQueryProcessor is a nested struct in opensearch response

type ProcessorsInDescribeQueryProcessor ¶ added in v1.61.329

type ProcessorsInDescribeQueryProcessor struct {
	Processors []map[string]interface{} `json:"processors" xml:"processors"`
}

ProcessorsInDescribeQueryProcessor is a nested struct in opensearch response

type ProcessorsInListQueryProcessors ¶ added in v1.61.329

type ProcessorsInListQueryProcessors struct {
	Processors []map[string]interface{} `json:"processors" xml:"processors"`
}

ProcessorsInListQueryProcessors is a nested struct in opensearch response

type ProcessorsInModifyQueryProcessor ¶ added in v1.61.329

type ProcessorsInModifyQueryProcessor struct {
	Processors []map[string]interface{} `json:"processors" xml:"processors"`
}

ProcessorsInModifyQueryProcessor is a nested struct in opensearch response

type PushInterventionDictionaryEntriesRequest ¶ added in v1.61.329

type PushInterventionDictionaryEntriesRequest struct {
	*requests.RoaRequest
	Name string `position:"Path" name:"name"`
}

PushInterventionDictionaryEntriesRequest is the request struct for api PushInterventionDictionaryEntries

func CreatePushInterventionDictionaryEntriesRequest ¶ added in v1.61.329

func CreatePushInterventionDictionaryEntriesRequest() (request *PushInterventionDictionaryEntriesRequest)

CreatePushInterventionDictionaryEntriesRequest creates a request to invoke PushInterventionDictionaryEntries API

type PushInterventionDictionaryEntriesResponse ¶ added in v1.61.329

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

PushInterventionDictionaryEntriesResponse is the response struct for api PushInterventionDictionaryEntries

func CreatePushInterventionDictionaryEntriesResponse ¶ added in v1.61.329

func CreatePushInterventionDictionaryEntriesResponse() (response *PushInterventionDictionaryEntriesResponse)

CreatePushInterventionDictionaryEntriesResponse creates a response to parse from PushInterventionDictionaryEntries response

type PushUserAnalyzerEntriesRequest ¶ added in v1.61.367

type PushUserAnalyzerEntriesRequest struct {
	*requests.RoaRequest
	Name string `position:"Path" name:"name"`
}

PushUserAnalyzerEntriesRequest is the request struct for api PushUserAnalyzerEntries

func CreatePushUserAnalyzerEntriesRequest ¶ added in v1.61.367

func CreatePushUserAnalyzerEntriesRequest() (request *PushUserAnalyzerEntriesRequest)

CreatePushUserAnalyzerEntriesRequest creates a request to invoke PushUserAnalyzerEntries API

type PushUserAnalyzerEntriesResponse ¶ added in v1.61.367

type PushUserAnalyzerEntriesResponse struct {
	*responses.BaseResponse
	Result    map[string]interface{} `json:"result" xml:"result"`
	RequestId string                 `json:"RequestId" xml:"RequestId"`
}

PushUserAnalyzerEntriesResponse is the response struct for api PushUserAnalyzerEntries

func CreatePushUserAnalyzerEntriesResponse ¶ added in v1.61.367

func CreatePushUserAnalyzerEntriesResponse() (response *PushUserAnalyzerEntriesResponse)

CreatePushUserAnalyzerEntriesResponse creates a response to parse from PushUserAnalyzerEntries response

type Qp ¶ added in v1.61.1033

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

Qp is a nested struct in opensearch response

type Quota ¶ added in v1.61.225

type Quota struct {
	Spec            string `json:"spec" xml:"spec"`
	Qps             int    `json:"qps" xml:"qps"`
	DocSize         int    `json:"docSize" xml:"docSize"`
	ComputeResource int    `json:"computeResource" xml:"computeResource"`
}

Quota is a nested struct in opensearch response

type RankPreviewQueryRequest ¶ added in v1.61.580

type RankPreviewQueryRequest struct {
	*requests.RoaRequest
	ModelName        string `position:"Path" name:"modelName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

RankPreviewQueryRequest is the request struct for api RankPreviewQuery

func CreateRankPreviewQueryRequest ¶ added in v1.61.580

func CreateRankPreviewQueryRequest() (request *RankPreviewQueryRequest)

CreateRankPreviewQueryRequest creates a request to invoke RankPreviewQuery API

type RankPreviewQueryResponse ¶ added in v1.61.580

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

RankPreviewQueryResponse is the response struct for api RankPreviewQuery

func CreateRankPreviewQueryResponse ¶ added in v1.61.580

func CreateRankPreviewQueryResponse() (response *RankPreviewQueryResponse)

CreateRankPreviewQueryResponse creates a response to parse from RankPreviewQuery response

type ReleaseSortScriptRequest ¶ added in v1.61.88

type ReleaseSortScriptRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ReleaseSortScriptRequest is the request struct for api ReleaseSortScript

func CreateReleaseSortScriptRequest ¶ added in v1.61.88

func CreateReleaseSortScriptRequest() (request *ReleaseSortScriptRequest)

CreateReleaseSortScriptRequest creates a request to invoke ReleaseSortScript API

type ReleaseSortScriptResponse ¶ added in v1.61.88

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

ReleaseSortScriptResponse is the response struct for api ReleaseSortScript

func CreateReleaseSortScriptResponse ¶ added in v1.61.88

func CreateReleaseSortScriptResponse() (response *ReleaseSortScriptResponse)

CreateReleaseSortScriptResponse creates a response to parse from ReleaseSortScript response

type RemoveAppGroupRequest ¶ added in v1.61.225

type RemoveAppGroupRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

RemoveAppGroupRequest is the request struct for api RemoveAppGroup

func CreateRemoveAppGroupRequest ¶ added in v1.61.225

func CreateRemoveAppGroupRequest() (request *RemoveAppGroupRequest)

CreateRemoveAppGroupRequest creates a request to invoke RemoveAppGroup API

type RemoveAppGroupResponse ¶ added in v1.61.225

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

RemoveAppGroupResponse is the response struct for api RemoveAppGroup

func CreateRemoveAppGroupResponse ¶ added in v1.61.225

func CreateRemoveAppGroupResponse() (response *RemoveAppGroupResponse)

CreateRemoveAppGroupResponse creates a response to parse from RemoveAppGroup response

type RemoveAppRequest ¶ added in v1.61.225

type RemoveAppRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

RemoveAppRequest is the request struct for api RemoveApp

func CreateRemoveAppRequest ¶ added in v1.61.225

func CreateRemoveAppRequest() (request *RemoveAppRequest)

CreateRemoveAppRequest creates a request to invoke RemoveApp API

type RemoveAppResponse ¶ added in v1.61.225

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

RemoveAppResponse is the response struct for api RemoveApp

func CreateRemoveAppResponse ¶ added in v1.61.225

func CreateRemoveAppResponse() (response *RemoveAppResponse)

CreateRemoveAppResponse creates a response to parse from RemoveApp response

type RemoveDataCollectionRequest ¶ added in v1.61.329

type RemoveDataCollectionRequest struct {
	*requests.RoaRequest
	DataCollectionIdentity string `position:"Path" name:"dataCollectionIdentity"`
	AppGroupIdentity       string `position:"Path" name:"appGroupIdentity"`
}

RemoveDataCollectionRequest is the request struct for api RemoveDataCollection

func CreateRemoveDataCollectionRequest ¶ added in v1.61.329

func CreateRemoveDataCollectionRequest() (request *RemoveDataCollectionRequest)

CreateRemoveDataCollectionRequest creates a request to invoke RemoveDataCollection API

type RemoveDataCollectionResponse ¶ added in v1.61.329

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

RemoveDataCollectionResponse is the response struct for api RemoveDataCollection

func CreateRemoveDataCollectionResponse ¶ added in v1.61.329

func CreateRemoveDataCollectionResponse() (response *RemoveDataCollectionResponse)

CreateRemoveDataCollectionResponse creates a response to parse from RemoveDataCollection response

type RemoveFirstRankRequest ¶ added in v1.61.329

type RemoveFirstRankRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

RemoveFirstRankRequest is the request struct for api RemoveFirstRank

func CreateRemoveFirstRankRequest ¶ added in v1.61.329

func CreateRemoveFirstRankRequest() (request *RemoveFirstRankRequest)

CreateRemoveFirstRankRequest creates a request to invoke RemoveFirstRank API

type RemoveFirstRankResponse ¶ added in v1.61.329

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

RemoveFirstRankResponse is the response struct for api RemoveFirstRank

func CreateRemoveFirstRankResponse ¶ added in v1.61.329

func CreateRemoveFirstRankResponse() (response *RemoveFirstRankResponse)

CreateRemoveFirstRankResponse creates a response to parse from RemoveFirstRank response

type RemoveInterventionDictionaryRequest ¶ added in v1.61.329

type RemoveInterventionDictionaryRequest struct {
	*requests.RoaRequest
	Name string `position:"Path" name:"name"`
}

RemoveInterventionDictionaryRequest is the request struct for api RemoveInterventionDictionary

func CreateRemoveInterventionDictionaryRequest ¶ added in v1.61.329

func CreateRemoveInterventionDictionaryRequest() (request *RemoveInterventionDictionaryRequest)

CreateRemoveInterventionDictionaryRequest creates a request to invoke RemoveInterventionDictionary API

type RemoveInterventionDictionaryResponse ¶ added in v1.61.329

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

RemoveInterventionDictionaryResponse is the response struct for api RemoveInterventionDictionary

func CreateRemoveInterventionDictionaryResponse ¶ added in v1.61.329

func CreateRemoveInterventionDictionaryResponse() (response *RemoveInterventionDictionaryResponse)

CreateRemoveInterventionDictionaryResponse creates a response to parse from RemoveInterventionDictionary response

type RemoveQueryProcessorRequest ¶ added in v1.61.329

type RemoveQueryProcessorRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

RemoveQueryProcessorRequest is the request struct for api RemoveQueryProcessor

func CreateRemoveQueryProcessorRequest ¶ added in v1.61.329

func CreateRemoveQueryProcessorRequest() (request *RemoveQueryProcessorRequest)

CreateRemoveQueryProcessorRequest creates a request to invoke RemoveQueryProcessor API

type RemoveQueryProcessorResponse ¶ added in v1.61.329

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

RemoveQueryProcessorResponse is the response struct for api RemoveQueryProcessor

func CreateRemoveQueryProcessorResponse ¶ added in v1.61.329

func CreateRemoveQueryProcessorResponse() (response *RemoveQueryProcessorResponse)

CreateRemoveQueryProcessorResponse creates a response to parse from RemoveQueryProcessor response

type RemoveScheduledTaskRequest ¶ added in v1.61.329

type RemoveScheduledTaskRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
	TaskId           string `position:"Path" name:"taskId"`
}

RemoveScheduledTaskRequest is the request struct for api RemoveScheduledTask

func CreateRemoveScheduledTaskRequest ¶ added in v1.61.329

func CreateRemoveScheduledTaskRequest() (request *RemoveScheduledTaskRequest)

CreateRemoveScheduledTaskRequest creates a request to invoke RemoveScheduledTask API

type RemoveScheduledTaskResponse ¶ added in v1.61.329

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

RemoveScheduledTaskResponse is the response struct for api RemoveScheduledTask

func CreateRemoveScheduledTaskResponse ¶ added in v1.61.329

func CreateRemoveScheduledTaskResponse() (response *RemoveScheduledTaskResponse)

CreateRemoveScheduledTaskResponse creates a response to parse from RemoveScheduledTask response

type RemoveSearchStrategyRequest ¶ added in v1.62.56

type RemoveSearchStrategyRequest struct {
	*requests.RoaRequest
	StrategyName     string `position:"Path" name:"strategyName"`
	AppId            string `position:"Path" name:"appId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

RemoveSearchStrategyRequest is the request struct for api RemoveSearchStrategy

func CreateRemoveSearchStrategyRequest ¶ added in v1.62.56

func CreateRemoveSearchStrategyRequest() (request *RemoveSearchStrategyRequest)

CreateRemoveSearchStrategyRequest creates a request to invoke RemoveSearchStrategy API

type RemoveSearchStrategyResponse ¶ added in v1.62.56

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

RemoveSearchStrategyResponse is the response struct for api RemoveSearchStrategy

func CreateRemoveSearchStrategyResponse ¶ added in v1.62.56

func CreateRemoveSearchStrategyResponse() (response *RemoveSearchStrategyResponse)

CreateRemoveSearchStrategyResponse creates a response to parse from RemoveSearchStrategy response

type RemoveSecondRankRequest ¶ added in v1.61.329

type RemoveSecondRankRequest struct {
	*requests.RoaRequest
	AppId            requests.Integer `position:"Path" name:"appId"`
	Name             string           `position:"Path" name:"name"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

RemoveSecondRankRequest is the request struct for api RemoveSecondRank

func CreateRemoveSecondRankRequest ¶ added in v1.61.329

func CreateRemoveSecondRankRequest() (request *RemoveSecondRankRequest)

CreateRemoveSecondRankRequest creates a request to invoke RemoveSecondRank API

type RemoveSecondRankResponse ¶ added in v1.61.329

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

RemoveSecondRankResponse is the response struct for api RemoveSecondRank

func CreateRemoveSecondRankResponse ¶ added in v1.61.329

func CreateRemoveSecondRankResponse() (response *RemoveSecondRankResponse)

CreateRemoveSecondRankResponse creates a response to parse from RemoveSecondRank response

type RemoveUserAnalyzerRequest ¶ added in v1.61.367

type RemoveUserAnalyzerRequest struct {
	*requests.RoaRequest
	Name string `position:"Path" name:"name"`
}

RemoveUserAnalyzerRequest is the request struct for api RemoveUserAnalyzer

func CreateRemoveUserAnalyzerRequest ¶ added in v1.61.367

func CreateRemoveUserAnalyzerRequest() (request *RemoveUserAnalyzerRequest)

CreateRemoveUserAnalyzerRequest creates a request to invoke RemoveUserAnalyzer API

type RemoveUserAnalyzerResponse ¶ added in v1.61.367

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

RemoveUserAnalyzerResponse is the response struct for api RemoveUserAnalyzer

func CreateRemoveUserAnalyzerResponse ¶ added in v1.61.367

func CreateRemoveUserAnalyzerResponse() (response *RemoveUserAnalyzerResponse)

CreateRemoveUserAnalyzerResponse creates a response to parse from RemoveUserAnalyzer response

type RenewAppGroupRequest ¶ added in v1.61.425

type RenewAppGroupRequest struct {
	*requests.RoaRequest
	ClientToken      string `position:"Query" name:"clientToken"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

RenewAppGroupRequest is the request struct for api RenewAppGroup

func CreateRenewAppGroupRequest ¶ added in v1.61.425

func CreateRenewAppGroupRequest() (request *RenewAppGroupRequest)

CreateRenewAppGroupRequest creates a request to invoke RenewAppGroup API

type RenewAppGroupResponse ¶ added in v1.61.425

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

RenewAppGroupResponse is the response struct for api RenewAppGroup

func CreateRenewAppGroupResponse ¶ added in v1.61.425

func CreateRenewAppGroupResponse() (response *RenewAppGroupResponse)

CreateRenewAppGroupResponse creates a response to parse from RenewAppGroup response

type ReplaceAppGroupCommodityCodeRequest ¶ added in v1.61.329

type ReplaceAppGroupCommodityCodeRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

ReplaceAppGroupCommodityCodeRequest is the request struct for api ReplaceAppGroupCommodityCode

func CreateReplaceAppGroupCommodityCodeRequest ¶ added in v1.61.329

func CreateReplaceAppGroupCommodityCodeRequest() (request *ReplaceAppGroupCommodityCodeRequest)

CreateReplaceAppGroupCommodityCodeRequest creates a request to invoke ReplaceAppGroupCommodityCode API

type ReplaceAppGroupCommodityCodeResponse ¶ added in v1.61.329

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

ReplaceAppGroupCommodityCodeResponse is the response struct for api ReplaceAppGroupCommodityCode

func CreateReplaceAppGroupCommodityCodeResponse ¶ added in v1.61.329

func CreateReplaceAppGroupCommodityCodeResponse() (response *ReplaceAppGroupCommodityCodeResponse)

CreateReplaceAppGroupCommodityCodeResponse creates a response to parse from ReplaceAppGroupCommodityCode response

type Result ¶ added in v1.61.88

type Result struct {
	Config             map[string]interface{}   `json:"config" xml:"config"`
	Traffic            int                      `json:"traffic" xml:"traffic"`
	Created            int                      `json:"created" xml:"created"`
	End                int                      `json:"end" xml:"end"`
	IndustryName       string                   `json:"industryName" xml:"industryName"`
	Start              int                      `json:"start" xml:"start"`
	AnalyzeStatus      string                   `json:"analyzeStatus" xml:"analyzeStatus"`
	Domain             string                   `json:"domain" xml:"domain"`
	VersionId          int64                    `json:"VersionId" xml:"VersionId"`
	Name               string                   `json:"name" xml:"name"`
	Index              int                      `json:"index" xml:"index"`
	FunctionType       string                   `json:"FunctionType" xml:"FunctionType"`
	CreateTime         string                   `json:"createTime" xml:"createTime"`
	FunctionName       string                   `json:"FunctionName" xml:"FunctionName"`
	Type               string                   `json:"type" xml:"type"`
	Updated            int                      `json:"updated" xml:"updated"`
	VersionName        string                   `json:"VersionName" xml:"VersionName"`
	Content            string                   `json:"content" xml:"content"`
	RegionId           string                   `json:"regionId" xml:"regionId"`
	ModelType          string                   `json:"ModelType" xml:"ModelType"`
	PrimaryKey         string                   `json:"primaryKey" xml:"primaryKey"`
	MergeTable         map[string]interface{}   `json:"mergeTable" xml:"mergeTable"`
	InstanceName       string                   `json:"InstanceName" xml:"InstanceName"`
	Status             int                      `json:"status" xml:"status"`
	Version            int64                    `json:"version" xml:"version"`
	Online             bool                     `json:"online" xml:"online"`
	Description        string                   `json:"description" xml:"description"`
	FromTable          map[string]interface{}   `json:"fromTable" xml:"fromTable"`
	SundialId          string                   `json:"sundialId" xml:"sundialId"`
	Params             map[string]interface{}   `json:"params" xml:"params"`
	AppQuery           string                   `json:"appQuery" xml:"appQuery"`
	ModifyTime         string                   `json:"modifyTime" xml:"modifyTime"`
	DataCollectionType string                   `json:"dataCollectionType" xml:"dataCollectionType"`
	Id                 string                   `json:"id" xml:"id"`
	Active             bool                     `json:"active" xml:"active"`
	Processors         []map[string]interface{} `json:"processors" xml:"processors"`
	Indexes            []string                 `json:"indexes" xml:"indexes"`
	Values             []string                 `json:"values" xml:"values"`
	VersionConfig      VersionConfig            `json:"VersionConfig" xml:"VersionConfig"`
	Meta               []MetaItem               `json:"meta" xml:"meta"`
}

Result is a nested struct in opensearch response

type ResultInCreateAppGroup ¶ added in v1.61.367

type ResultInCreateAppGroup struct {
	Created                           int    `json:"created" xml:"created"`
	CurrentVersion                    string `json:"currentVersion" xml:"currentVersion"`
	PendingSecondRankAlgoDeploymentId int    `json:"pendingSecondRankAlgoDeploymentId" xml:"pendingSecondRankAlgoDeploymentId"`
	LockMode                          string `json:"lockMode" xml:"lockMode"`
	Updated                           int    `json:"updated" xml:"updated"`
	Id                                string `json:"id" xml:"id"`
	ChargeType                        string `json:"chargeType" xml:"chargeType"`
	HasPendingQuotaReviewTask         int    `json:"hasPendingQuotaReviewTask" xml:"hasPendingQuotaReviewTask"`
	SecondRankAlgoDeploymentId        int    `json:"secondRankAlgoDeploymentId" xml:"secondRankAlgoDeploymentId"`
	Name                              string `json:"name" xml:"name"`
	InstanceId                        string `json:"instanceId" xml:"instanceId"`
	ProcessingOrderId                 string `json:"processingOrderId" xml:"processingOrderId"`
	ChargingWay                       int    `json:"chargingWay" xml:"chargingWay"`
	Type                              string `json:"type" xml:"type"`
	Status                            string `json:"status" xml:"status"`
	ProjectId                         string `json:"projectId" xml:"projectId"`
	SwitchedTime                      int    `json:"switchedTime" xml:"switchedTime"`
	CommodityCode                     string `json:"commodityCode" xml:"commodityCode"`
	ExpireOn                          string `json:"expireOn" xml:"expireOn"`
	Domain                            string `json:"domain" xml:"domain"`
	Description                       string `json:"description" xml:"description"`
	FirstRankAlgoDeploymentId         int    `json:"firstRankAlgoDeploymentId" xml:"firstRankAlgoDeploymentId"`
	Produced                          int    `json:"produced" xml:"produced"`
	LockedByExpiration                int    `json:"lockedByExpiration" xml:"lockedByExpiration"`
	Quota                             Quota  `json:"quota" xml:"quota"`
}

ResultInCreateAppGroup is a nested struct in opensearch response

type ResultInCreateInterventionDictionary ¶ added in v1.61.329

type ResultInCreateInterventionDictionary struct {
	Created  string `json:"created" xml:"created"`
	Analyzer string `json:"analyzer" xml:"analyzer"`
	Updated  string `json:"updated" xml:"updated"`
	Type     string `json:"type" xml:"type"`
	Name     string `json:"name" xml:"name"`
}

ResultInCreateInterventionDictionary is a nested struct in opensearch response

type ResultInDescribeABTestExperiment ¶ added in v1.61.367

type ResultInDescribeABTestExperiment struct {
	Created int    `json:"created" xml:"created"`
	Traffic int    `json:"traffic" xml:"traffic"`
	Online  bool   `json:"online" xml:"online"`
	Name    string `json:"name" xml:"name"`
	Updated int    `json:"updated" xml:"updated"`
	Id      string `json:"id" xml:"id"`
	Params  Params `json:"params" xml:"params"`
}

ResultInDescribeABTestExperiment is a nested struct in opensearch response

type ResultInDescribeApp ¶ added in v1.61.367

type ResultInDescribeApp struct {
	Created          int                    `json:"created" xml:"created"`
	ClusterName      string                 `json:"clusterName" xml:"clusterName"`
	AutoSwitch       bool                   `json:"autoSwitch" xml:"autoSwitch"`
	AlgoDeploymentId int                    `json:"algoDeploymentId" xml:"algoDeploymentId"`
	Type             string                 `json:"type" xml:"type"`
	Description      string                 `json:"description" xml:"description"`
	Status           string                 `json:"status" xml:"status"`
	Schema           map[string]interface{} `json:"schema" xml:"schema"`
	ProgressPercent  int                    `json:"progressPercent" xml:"progressPercent"`
	Id               string                 `json:"id" xml:"id"`
	FetchFields      []string               `json:"fetchFields" xml:"fetchFields"`
	Quota            Quota                  `json:"quota" xml:"quota"`
	Domain           Domain                 `json:"domain" xml:"domain"`
}

ResultInDescribeApp is a nested struct in opensearch response

type ResultInDescribeAppGroup ¶ added in v1.61.367

type ResultInDescribeAppGroup struct {
	Created                           int        `json:"created" xml:"created"`
	CurrentVersion                    string     `json:"currentVersion" xml:"currentVersion"`
	PendingSecondRankAlgoDeploymentId int        `json:"pendingSecondRankAlgoDeploymentId" xml:"pendingSecondRankAlgoDeploymentId"`
	LockMode                          string     `json:"lockMode" xml:"lockMode"`
	Updated                           int        `json:"updated" xml:"updated"`
	Id                                string     `json:"id" xml:"id"`
	ChargeType                        string     `json:"chargeType" xml:"chargeType"`
	HasPendingQuotaReviewTask         int        `json:"hasPendingQuotaReviewTask" xml:"hasPendingQuotaReviewTask"`
	SecondRankAlgoDeploymentId        int        `json:"secondRankAlgoDeploymentId" xml:"secondRankAlgoDeploymentId"`
	Name                              string     `json:"name" xml:"name"`
	InstanceId                        string     `json:"instanceId" xml:"instanceId"`
	ProcessingOrderId                 string     `json:"processingOrderId" xml:"processingOrderId"`
	ChargingWay                       int        `json:"chargingWay" xml:"chargingWay"`
	Type                              string     `json:"type" xml:"type"`
	Status                            string     `json:"status" xml:"status"`
	ProjectId                         string     `json:"projectId" xml:"projectId"`
	SwitchedTime                      int        `json:"switchedTime" xml:"switchedTime"`
	CommodityCode                     string     `json:"commodityCode" xml:"commodityCode"`
	ExpireOn                          string     `json:"expireOn" xml:"expireOn"`
	Domain                            string     `json:"domain" xml:"domain"`
	Description                       string     `json:"description" xml:"description"`
	FirstRankAlgoDeploymentId         int        `json:"firstRankAlgoDeploymentId" xml:"firstRankAlgoDeploymentId"`
	Produced                          int        `json:"produced" xml:"produced"`
	LockedByExpiration                int        `json:"lockedByExpiration" xml:"lockedByExpiration"`
	Quota                             Quota      `json:"quota" xml:"quota"`
	Tags                              []TagsItem `json:"tags" xml:"tags"`
}

ResultInDescribeAppGroup is a nested struct in opensearch response

type ResultInDescribeApps ¶ added in v1.61.225

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

ResultInDescribeApps is a nested struct in opensearch response

type ResultInDescribeInterventionDictionary ¶ added in v1.61.329

type ResultInDescribeInterventionDictionary struct {
	Created  string `json:"created" xml:"created"`
	Analyzer string `json:"analyzer" xml:"analyzer"`
	Updated  string `json:"updated" xml:"updated"`
	Type     string `json:"type" xml:"type"`
	Name     string `json:"name" xml:"name"`
}

ResultInDescribeInterventionDictionary is a nested struct in opensearch response

type ResultInDescribeRegions ¶ added in v1.61.329

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

ResultInDescribeRegions is a nested struct in opensearch response

type ResultInDescribeSecondRank ¶ added in v1.61.329

type ResultInDescribeSecondRank struct {
	Created     int    `json:"created" xml:"created"`
	Active      bool   `json:"active" xml:"active"`
	IsDefault   string `json:"isDefault" xml:"isDefault"`
	IsSys       string `json:"isSys" xml:"isSys"`
	Description string `json:"description" xml:"description"`
	Updated     int    `json:"updated" xml:"updated"`
	Name        string `json:"name" xml:"name"`
	Meta        string `json:"meta" xml:"meta"`
	Id          string `json:"id" xml:"id"`
}

ResultInDescribeSecondRank is a nested struct in opensearch response

type ResultInDescribeSlowQueryStatus ¶ added in v1.61.367

type ResultInDescribeSlowQueryStatus struct {
	Region     string `json:"region" xml:"region"`
	Status     string `json:"status" xml:"status"`
	AppGroupId string `json:"appGroupId" xml:"appGroupId"`
}

ResultInDescribeSlowQueryStatus is a nested struct in opensearch response

type ResultInGetFunctionInstance ¶ added in v1.62.56

type ResultInGetFunctionInstance struct {
	CreateTime       int64                  `json:"CreateTime" xml:"CreateTime"`
	Cron             string                 `json:"Cron" xml:"Cron"`
	Description      string                 `json:"Description" xml:"Description"`
	ExtendInfo       string                 `json:"ExtendInfo" xml:"ExtendInfo"`
	FunctionName     string                 `json:"FunctionName" xml:"FunctionName"`
	FunctionType     string                 `json:"FunctionType" xml:"FunctionType"`
	InstanceName     string                 `json:"InstanceName" xml:"InstanceName"`
	ModelType        string                 `json:"ModelType" xml:"ModelType"`
	Source           string                 `json:"Source" xml:"Source"`
	Status           string                 `json:"Status" xml:"Status"`
	VersionId        int64                  `json:"VersionId" xml:"VersionId"`
	Belongs          Belongs                `json:"Belongs" xml:"Belongs"`
	Task             Task                   `json:"Task" xml:"Task"`
	CreateParameters []CreateParametersItem `json:"CreateParameters" xml:"CreateParameters"`
	UsageParameters  []UsageParametersItem  `json:"UsageParameters" xml:"UsageParameters"`
}

ResultInGetFunctionInstance is a nested struct in opensearch response

type ResultInGetFunctionTask ¶ added in v1.62.56

type ResultInGetFunctionTask struct {
	EndTime      int64  `json:"EndTime" xml:"EndTime"`
	ExtendInfo   string `json:"ExtendInfo" xml:"ExtendInfo"`
	FunctionName string `json:"FunctionName" xml:"FunctionName"`
	Generation   string `json:"Generation" xml:"Generation"`
	Progress     int64  `json:"Progress" xml:"Progress"`
	RunId        string `json:"RunId" xml:"RunId"`
	StartTime    int64  `json:"StartTime" xml:"StartTime"`
	Status       string `json:"Status" xml:"Status"`
}

ResultInGetFunctionTask is a nested struct in opensearch response

type ResultInGetScriptFileNames ¶ added in v1.61.858

type ResultInGetScriptFileNames struct {
	FileInfos []FileInfos `json:"fileInfos" xml:"fileInfos"`
}

ResultInGetScriptFileNames is a nested struct in opensearch response

type ResultInGetSortScript ¶ added in v1.61.367

type ResultInGetSortScript struct {
	Scope      string `json:"scope" xml:"scope"`
	CreateTime string `json:"createTime" xml:"createTime"`
	Status     string `json:"status" xml:"status"`
	ModifyTime string `json:"modifyTime" xml:"modifyTime"`
	Type       string `json:"type" xml:"type"`
}

ResultInGetSortScript is a nested struct in opensearch response

type ResultInListABTestExperiments ¶ added in v1.61.367

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

ResultInListABTestExperiments is a nested struct in opensearch response

type ResultInListABTestFixedFlowDividers ¶ added in v1.61.367

type ResultInListABTestFixedFlowDividers struct {
	FlowDivider []string `json:"flowDivider" xml:"flowDivider"`
}

ResultInListABTestFixedFlowDividers is a nested struct in opensearch response

type ResultInListABTestGroups ¶ added in v1.61.367

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

ResultInListABTestGroups is a nested struct in opensearch response

type ResultInListABTestScenes ¶ added in v1.61.367

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

ResultInListABTestScenes is a nested struct in opensearch response

type ResultInListAppGroups ¶ added in v1.61.225

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

ResultInListAppGroups is a nested struct in opensearch response

type ResultInListDataCollections ¶ added in v1.61.329

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

ResultInListDataCollections is a nested struct in opensearch response

type ResultInListDataSourceTables ¶ added in v1.61.1074

type ResultInListDataSourceTables struct {
	Result []string `json:"result" xml:"result"`
}

ResultInListDataSourceTables is a nested struct in opensearch response

type ResultInListFirstRanks ¶ added in v1.61.329

type ResultInListFirstRanks struct {
	FirstRankItem []FirstRankItem `json:"firstRankItem" xml:"firstRankItem"`
}

ResultInListFirstRanks is a nested struct in opensearch response

type ResultInListFunctionInstances ¶ added in v1.62.56

type ResultInListFunctionInstances struct {
	ResultItem []ResultItemInListFunctionInstances `json:"Result" xml:"Result"`
}

ResultInListFunctionInstances is a nested struct in opensearch response

type ResultInListFunctionTasks ¶ added in v1.62.56

type ResultInListFunctionTasks struct {
	ResultItem []ResultItemInListFunctionTasks `json:"Result" xml:"Result"`
}

ResultInListFunctionTasks is a nested struct in opensearch response

type ResultInListInterventionDictionaries ¶ added in v1.61.329

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

ResultInListInterventionDictionaries is a nested struct in opensearch response

type ResultInListInterventionDictionaryEntries ¶ added in v1.61.329

type ResultInListInterventionDictionaryEntries struct {
	WordItem []WordItem `json:"wordItem" xml:"wordItem"`
}

ResultInListInterventionDictionaryEntries is a nested struct in opensearch response

type ResultInListInterventionDictionaryNerResults ¶ added in v1.61.329

type ResultInListInterventionDictionaryNerResults struct {
	NerItem []NerItem `json:"nerItem" xml:"nerItem"`
}

ResultInListInterventionDictionaryNerResults is a nested struct in opensearch response

type ResultInListInterventionDictionaryRelatedEntities ¶ added in v1.61.329

type ResultInListInterventionDictionaryRelatedEntities struct {
	RelatedItem []map[string]interface{} `json:"relatedItem" xml:"relatedItem"`
}

ResultInListInterventionDictionaryRelatedEntities is a nested struct in opensearch response

type ResultInListModels ¶ added in v1.61.410

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

ResultInListModels is a nested struct in opensearch response

type ResultInListQueryProcessorNers ¶ added in v1.61.329

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

ResultInListQueryProcessorNers is a nested struct in opensearch response

type ResultInListQueryProcessors ¶ added in v1.61.329

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

ResultInListQueryProcessors is a nested struct in opensearch response

type ResultInListQuotaReviewTasks ¶ added in v1.61.1092

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

ResultInListQuotaReviewTasks is a nested struct in opensearch response

type ResultInListScheduledTasks ¶ added in v1.61.329

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

ResultInListScheduledTasks is a nested struct in opensearch response

type ResultInListSecondRanks ¶ added in v1.61.329

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

ResultInListSecondRanks is a nested struct in opensearch response

type ResultInListSortExpressions ¶ added in v1.61.367

type ResultInListSortExpressions struct {
	FirstRankItem []FirstRankItem `json:"firstRankItem" xml:"firstRankItem"`
}

ResultInListSortExpressions is a nested struct in opensearch response

type ResultInListSortScripts ¶ added in v1.61.88

type ResultInListSortScripts struct {
	ScriptInfo []ScriptInfo `json:"scriptInfo" xml:"scriptInfo"`
}

ResultInListSortScripts is a nested struct in opensearch response

type ResultInListStatisticLogs ¶ added in v1.61.580

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

ResultInListStatisticLogs is a nested struct in opensearch response

type ResultInListStatisticReport ¶ added in v1.61.580

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

ResultInListStatisticReport is a nested struct in opensearch response

type ResultInListTagResources ¶ added in v1.62.56

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

ResultInListTagResources is a nested struct in opensearch response

type ResultInListUserAnalyzers ¶ added in v1.61.367

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

ResultInListUserAnalyzers is a nested struct in opensearch response

type ResultInModifyAppGroup ¶ added in v1.61.367

type ResultInModifyAppGroup struct {
	Created                           int    `json:"created" xml:"created"`
	CurrentVersion                    string `json:"currentVersion" xml:"currentVersion"`
	PendingSecondRankAlgoDeploymentId int    `json:"pendingSecondRankAlgoDeploymentId" xml:"pendingSecondRankAlgoDeploymentId"`
	LockMode                          string `json:"lockMode" xml:"lockMode"`
	Updated                           int    `json:"updated" xml:"updated"`
	Id                                string `json:"id" xml:"id"`
	ChargeType                        string `json:"chargeType" xml:"chargeType"`
	HasPendingQuotaReviewTask         int    `json:"hasPendingQuotaReviewTask" xml:"hasPendingQuotaReviewTask"`
	SecondRankAlgoDeploymentId        int    `json:"secondRankAlgoDeploymentId" xml:"secondRankAlgoDeploymentId"`
	Name                              string `json:"name" xml:"name"`
	InstanceId                        string `json:"instanceId" xml:"instanceId"`
	ProcessingOrderId                 string `json:"processingOrderId" xml:"processingOrderId"`
	ChargingWay                       int    `json:"chargingWay" xml:"chargingWay"`
	Type                              string `json:"type" xml:"type"`
	Status                            string `json:"status" xml:"status"`
	ProjectId                         string `json:"projectId" xml:"projectId"`
	SwitchedTime                      int    `json:"switchedTime" xml:"switchedTime"`
	CommodityCode                     string `json:"commodityCode" xml:"commodityCode"`
	ExpireOn                          string `json:"expireOn" xml:"expireOn"`
	Domain                            string `json:"domain" xml:"domain"`
	Description                       string `json:"description" xml:"description"`
	FirstRankAlgoDeploymentId         int    `json:"firstRankAlgoDeploymentId" xml:"firstRankAlgoDeploymentId"`
	Produced                          int    `json:"produced" xml:"produced"`
	LockedByExpiration                int    `json:"lockedByExpiration" xml:"lockedByExpiration"`
	Quota                             Quota  `json:"quota" xml:"quota"`
}

ResultInModifyAppGroup is a nested struct in opensearch response

type ResultInModifyAppGroupQuota ¶ added in v1.61.367

type ResultInModifyAppGroupQuota struct {
	Created                           int    `json:"created" xml:"created"`
	CurrentVersion                    string `json:"currentVersion" xml:"currentVersion"`
	PendingSecondRankAlgoDeploymentId int    `json:"pendingSecondRankAlgoDeploymentId" xml:"pendingSecondRankAlgoDeploymentId"`
	Type                              string `json:"type" xml:"type"`
	ChargingWay                       int    `json:"chargingWay" xml:"chargingWay"`
	LockMode                          string `json:"lockMode" xml:"lockMode"`
	Status                            string `json:"status" xml:"status"`
	Updated                           int    `json:"updated" xml:"updated"`
	ChargeType                        string `json:"chargeType" xml:"chargeType"`
	Id                                string `json:"id" xml:"id"`
	HasPendingQuotaReviewTask         int    `json:"hasPendingQuotaReviewTask" xml:"hasPendingQuotaReviewTask"`
	ProjectId                         string `json:"projectId" xml:"projectId"`
	SecondRankAlgoDeploymentId        int    `json:"secondRankAlgoDeploymentId" xml:"secondRankAlgoDeploymentId"`
	CommodityCode                     string `json:"commodityCode" xml:"commodityCode"`
	SwitchedTime                      int    `json:"switchedTime" xml:"switchedTime"`
	ExpireOn                          string `json:"expireOn" xml:"expireOn"`
	Description                       string `json:"description" xml:"description"`
	FirstRankAlgoDeploymentId         int    `json:"firstRankAlgoDeploymentId" xml:"firstRankAlgoDeploymentId"`
	LockedByExpiration                int    `json:"lockedByExpiration" xml:"lockedByExpiration"`
	Produced                          int    `json:"produced" xml:"produced"`
	Name                              string `json:"name" xml:"name"`
	ProcessingOrderId                 string `json:"processingOrderId" xml:"processingOrderId"`
	InstanceId                        string `json:"instanceId" xml:"instanceId"`
	Quota                             Quota  `json:"quota" xml:"quota"`
}

ResultInModifyAppGroupQuota is a nested struct in opensearch response

type ResultInModifySecondRank ¶ added in v1.61.329

type ResultInModifySecondRank struct {
	Created     int    `json:"created" xml:"created"`
	Active      bool   `json:"active" xml:"active"`
	IsDefault   string `json:"isDefault" xml:"isDefault"`
	IsSys       string `json:"isSys" xml:"isSys"`
	Description string `json:"description" xml:"description"`
	Updated     int    `json:"updated" xml:"updated"`
	Name        string `json:"name" xml:"name"`
	Meta        string `json:"meta" xml:"meta"`
	Id          string `json:"id" xml:"id"`
}

ResultInModifySecondRank is a nested struct in opensearch response

type ResultInPreviewModel ¶ added in v1.61.580

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

ResultInPreviewModel is a nested struct in opensearch response

type ResultInPushInterventionDictionaryEntries ¶ added in v1.61.329

type ResultInPushInterventionDictionaryEntries struct {
	WordItem []string `json:"wordItem" xml:"wordItem"`
}

ResultInPushInterventionDictionaryEntries is a nested struct in opensearch response

type ResultInRemoveApp ¶ added in v1.61.225

type ResultInRemoveApp struct {
	Result []int `json:"result" xml:"result"`
}

ResultInRemoveApp is a nested struct in opensearch response

type ResultInRemoveAppGroup ¶ added in v1.61.225

type ResultInRemoveAppGroup struct {
	Result []int `json:"result" xml:"result"`
}

ResultInRemoveAppGroup is a nested struct in opensearch response

type ResultInRemoveInterventionDictionary ¶ added in v1.61.329

type ResultInRemoveInterventionDictionary struct {
	Created  string `json:"created" xml:"created"`
	Analyzer string `json:"analyzer" xml:"analyzer"`
	Updated  string `json:"updated" xml:"updated"`
	Type     string `json:"type" xml:"type"`
	Name     string `json:"name" xml:"name"`
}

ResultInRemoveInterventionDictionary is a nested struct in opensearch response

type ResultInRemoveScheduledTask ¶ added in v1.61.329

type ResultInRemoveScheduledTask struct {
	Result []int `json:"result" xml:"result"`
}

ResultInRemoveScheduledTask is a nested struct in opensearch response

type ResultInReplaceAppGroupCommodityCode ¶ added in v1.61.367

type ResultInReplaceAppGroupCommodityCode struct {
	Created                           int      `json:"created" xml:"created"`
	CurrentVersion                    string   `json:"currentVersion" xml:"currentVersion"`
	PendingSecondRankAlgoDeploymentId int      `json:"pendingSecondRankAlgoDeploymentId" xml:"pendingSecondRankAlgoDeploymentId"`
	Type                              string   `json:"type" xml:"type"`
	ChargingWay                       int      `json:"chargingWay" xml:"chargingWay"`
	LockMode                          string   `json:"lockMode" xml:"lockMode"`
	Status                            string   `json:"status" xml:"status"`
	Updated                           int      `json:"updated" xml:"updated"`
	ChargeType                        string   `json:"chargeType" xml:"chargeType"`
	Id                                string   `json:"id" xml:"id"`
	HasPendingQuotaReviewTask         int      `json:"hasPendingQuotaReviewTask" xml:"hasPendingQuotaReviewTask"`
	ProjectId                         string   `json:"projectId" xml:"projectId"`
	SecondRankAlgoDeploymentId        int      `json:"secondRankAlgoDeploymentId" xml:"secondRankAlgoDeploymentId"`
	CommodityCode                     string   `json:"commodityCode" xml:"commodityCode"`
	SwitchedTime                      int      `json:"switchedTime" xml:"switchedTime"`
	ExpireOn                          string   `json:"expireOn" xml:"expireOn"`
	Description                       string   `json:"description" xml:"description"`
	FirstRankAlgoDeploymentId         int      `json:"firstRankAlgoDeploymentId" xml:"firstRankAlgoDeploymentId"`
	LockedByExpiration                int      `json:"lockedByExpiration" xml:"lockedByExpiration"`
	Produced                          int      `json:"produced" xml:"produced"`
	Name                              string   `json:"name" xml:"name"`
	ProcessingOrderId                 string   `json:"processingOrderId" xml:"processingOrderId"`
	InstanceId                        string   `json:"instanceId" xml:"instanceId"`
	Versions                          []string `json:"versions" xml:"versions"`
	Quota                             Quota    `json:"quota" xml:"quota"`
}

ResultInReplaceAppGroupCommodityCode is a nested struct in opensearch response

type ResultInUpdateABTestFixedFlowDividers ¶ added in v1.61.367

type ResultInUpdateABTestFixedFlowDividers struct {
	FlowDivider []string `json:"flowDivider" xml:"flowDivider"`
}

ResultInUpdateABTestFixedFlowDividers is a nested struct in opensearch response

type ResultInValidateDataSources ¶ added in v1.62.56

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

ResultInValidateDataSources is a nested struct in opensearch response

type ResultItem ¶ added in v1.61.225

type ResultItem struct {
	Traffic            int                      `json:"traffic" xml:"traffic"`
	Created            int                      `json:"created" xml:"created"`
	IndustryName       string                   `json:"industryName" xml:"industryName"`
	Meta               string                   `json:"meta" xml:"meta"`
	Business           string                   `json:"business" xml:"business"`
	Label              string                   `json:"label" xml:"label"`
	Domain             string                   `json:"domain" xml:"domain"`
	Name               string                   `json:"name" xml:"name"`
	IsSys              string                   `json:"isSys" xml:"isSys"`
	Type               string                   `json:"type" xml:"type"`
	Endpoint           string                   `json:"endpoint" xml:"endpoint"`
	ConsoleUrl         string                   `json:"consoleUrl" xml:"consoleUrl"`
	Updated            int                      `json:"updated" xml:"updated"`
	Code               string                   `json:"code" xml:"code"`
	RegionId           string                   `json:"regionId" xml:"regionId"`
	Tag                string                   `json:"tag" xml:"tag"`
	LocalName          string                   `json:"localName" xml:"localName"`
	Status             int                      `json:"status" xml:"status"`
	Message            string                   `json:"message" xml:"message"`
	Online             bool                     `json:"online" xml:"online"`
	Description        string                   `json:"description" xml:"description"`
	SundialId          string                   `json:"sundialId" xml:"sundialId"`
	Available          bool                     `json:"available" xml:"available"`
	Params             map[string]interface{}   `json:"params" xml:"params"`
	DataCollectionType string                   `json:"dataCollectionType" xml:"dataCollectionType"`
	Order              int                      `json:"order" xml:"order"`
	Priority           string                   `json:"priority" xml:"priority"`
	IsDefault          string                   `json:"isDefault" xml:"isDefault"`
	Id                 string                   `json:"id" xml:"id"`
	Active             bool                     `json:"active" xml:"active"`
	Processors         []map[string]interface{} `json:"processors" xml:"processors"`
	Indexes            []string                 `json:"indexes" xml:"indexes"`
	Values             []string                 `json:"values" xml:"values"`
	DataSource         DataSource               `json:"dataSource" xml:"dataSource"`
	Dicts              []DictsItem              `json:"dicts" xml:"dicts"`
}

ResultItem is a nested struct in opensearch response

type ResultItemInListAppGroups ¶ added in v1.61.367

type ResultItemInListAppGroups struct {
	Created                           int        `json:"created" xml:"created"`
	CurrentVersion                    string     `json:"currentVersion" xml:"currentVersion"`
	PendingSecondRankAlgoDeploymentId int        `json:"pendingSecondRankAlgoDeploymentId" xml:"pendingSecondRankAlgoDeploymentId"`
	LockMode                          string     `json:"lockMode" xml:"lockMode"`
	Updated                           int        `json:"updated" xml:"updated"`
	Id                                string     `json:"id" xml:"id"`
	ChargeType                        string     `json:"chargeType" xml:"chargeType"`
	HasPendingQuotaReviewTask         int        `json:"hasPendingQuotaReviewTask" xml:"hasPendingQuotaReviewTask"`
	SecondRankAlgoDeploymentId        int        `json:"secondRankAlgoDeploymentId" xml:"secondRankAlgoDeploymentId"`
	Name                              string     `json:"name" xml:"name"`
	InstanceId                        string     `json:"instanceId" xml:"instanceId"`
	ProcessingOrderId                 string     `json:"processingOrderId" xml:"processingOrderId"`
	ChargingWay                       int        `json:"chargingWay" xml:"chargingWay"`
	Type                              string     `json:"type" xml:"type"`
	Status                            string     `json:"status" xml:"status"`
	ProjectId                         string     `json:"projectId" xml:"projectId"`
	SwitchedTime                      int        `json:"switchedTime" xml:"switchedTime"`
	CommodityCode                     string     `json:"commodityCode" xml:"commodityCode"`
	ExpireOn                          string     `json:"expireOn" xml:"expireOn"`
	Domain                            string     `json:"domain" xml:"domain"`
	Description                       string     `json:"description" xml:"description"`
	FirstRankAlgoDeploymentId         int        `json:"firstRankAlgoDeploymentId" xml:"firstRankAlgoDeploymentId"`
	Produced                          int        `json:"produced" xml:"produced"`
	LockedByExpiration                int        `json:"lockedByExpiration" xml:"lockedByExpiration"`
	Quota                             Quota      `json:"quota" xml:"quota"`
	Tags                              []TagsItem `json:"tags" xml:"tags"`
}

ResultItemInListAppGroups is a nested struct in opensearch response

type ResultItemInListFunctionInstances ¶ added in v1.62.56

type ResultItemInListFunctionInstances struct {
	CreateTime       int64                  `json:"CreateTime" xml:"CreateTime"`
	Cron             string                 `json:"Cron" xml:"Cron"`
	Description      string                 `json:"Description" xml:"Description"`
	ExtendInfo       string                 `json:"ExtendInfo" xml:"ExtendInfo"`
	FunctionName     string                 `json:"FunctionName" xml:"FunctionName"`
	FunctionType     string                 `json:"FunctionType" xml:"FunctionType"`
	InstanceName     string                 `json:"InstanceName" xml:"InstanceName"`
	ModelType        string                 `json:"ModelType" xml:"ModelType"`
	Source           string                 `json:"Source" xml:"Source"`
	Status           string                 `json:"Status" xml:"Status"`
	VersionId        int64                  `json:"VersionId" xml:"VersionId"`
	Belongs          Belongs                `json:"Belongs" xml:"Belongs"`
	CreateParameters []CreateParametersItem `json:"CreateParameters" xml:"CreateParameters"`
	UsageParameters  []UsageParametersItem  `json:"UsageParameters" xml:"UsageParameters"`
}

ResultItemInListFunctionInstances is a nested struct in opensearch response

type ResultItemInListFunctionTasks ¶ added in v1.62.56

type ResultItemInListFunctionTasks struct {
	EndTime      int64  `json:"EndTime" xml:"EndTime"`
	ExtendInfo   string `json:"ExtendInfo" xml:"ExtendInfo"`
	FunctionName string `json:"FunctionName" xml:"FunctionName"`
	Progress     int64  `json:"Progress" xml:"Progress"`
	RunId        string `json:"RunId" xml:"RunId"`
	StartTime    int64  `json:"StartTime" xml:"StartTime"`
	Status       string `json:"Status" xml:"Status"`
	Generation   string `json:"Generation" xml:"Generation"`
}

ResultItemInListFunctionTasks is a nested struct in opensearch response

type ResultItemInListInterventionDictionaries ¶ added in v1.61.329

type ResultItemInListInterventionDictionaries struct {
	Created  int    `json:"created" xml:"created"`
	Type     string `json:"type" xml:"type"`
	Analyzer string `json:"analyzer" xml:"analyzer"`
	Name     string `json:"name" xml:"name"`
	Updated  int    `json:"updated" xml:"updated"`
	Id       int    `json:"id" xml:"id"`
}

ResultItemInListInterventionDictionaries is a nested struct in opensearch response

type ResultItemInListQuotaReviewTasks ¶ added in v1.61.1092

type ResultItemInListQuotaReviewTasks struct {
	OldDocSize         int    `json:"oldDocSize" xml:"oldDocSize"`
	Pending            bool   `json:"pending" xml:"pending"`
	Memo               string `json:"memo" xml:"memo"`
	Approved           bool   `json:"approved" xml:"approved"`
	OldSpec            string `json:"oldSpec" xml:"oldSpec"`
	OldComputeResource int    `json:"oldComputeResource" xml:"oldComputeResource"`
	AppGroupType       string `json:"appGroupType" xml:"appGroupType"`
	Available          bool   `json:"available" xml:"available"`
	GmtCreate          string `json:"gmtCreate" xml:"gmtCreate"`
	NewSocSize         int    `json:"newSocSize" xml:"newSocSize"`
	Id                 int    `json:"id" xml:"id"`
	AppGroupId         int    `json:"appGroupId" xml:"appGroupId"`
	NewComputeResource int    `json:"newComputeResource" xml:"newComputeResource"`
	AppGroupName       string `json:"appGroupName" xml:"appGroupName"`
	GmtModified        string `json:"gmtModified" xml:"gmtModified"`
	NewSpec            string `json:"newSpec" xml:"newSpec"`
}

ResultItemInListQuotaReviewTasks is a nested struct in opensearch response

type SaveSortScriptFileRequest ¶ added in v1.61.88

type SaveSortScriptFileRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	FileName         string `position:"Path" name:"fileName"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

SaveSortScriptFileRequest is the request struct for api SaveSortScriptFile

func CreateSaveSortScriptFileRequest ¶ added in v1.61.88

func CreateSaveSortScriptFileRequest() (request *SaveSortScriptFileRequest)

CreateSaveSortScriptFileRequest creates a request to invoke SaveSortScriptFile API

type SaveSortScriptFileResponse ¶ added in v1.61.88

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

SaveSortScriptFileResponse is the response struct for api SaveSortScriptFile

func CreateSaveSortScriptFileResponse ¶ added in v1.61.88

func CreateSaveSortScriptFileResponse() (response *SaveSortScriptFileResponse)

CreateSaveSortScriptFileResponse creates a response to parse from SaveSortScriptFile response

type ScriptInfo ¶ added in v1.61.88

type ScriptInfo struct {
	Type       string `json:"type" xml:"type"`
	Scope      string `json:"scope" xml:"scope"`
	CreateTime string `json:"createTime" xml:"createTime"`
	Status     string `json:"status" xml:"status"`
	ModifyTime string `json:"modifyTime" xml:"modifyTime"`
	ScriptName string `json:"scriptName" xml:"scriptName"`
}

ScriptInfo is a nested struct in opensearch response

type Service ¶ added in v1.61.1033

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

Service is a nested struct in opensearch response

type StartSlowQueryAnalyzerRequest ¶ added in v1.61.329

type StartSlowQueryAnalyzerRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

StartSlowQueryAnalyzerRequest is the request struct for api StartSlowQueryAnalyzer

func CreateStartSlowQueryAnalyzerRequest ¶ added in v1.61.329

func CreateStartSlowQueryAnalyzerRequest() (request *StartSlowQueryAnalyzerRequest)

CreateStartSlowQueryAnalyzerRequest creates a request to invoke StartSlowQueryAnalyzer API

type StartSlowQueryAnalyzerResponse ¶ added in v1.61.329

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

StartSlowQueryAnalyzerResponse is the response struct for api StartSlowQueryAnalyzer

func CreateStartSlowQueryAnalyzerResponse ¶ added in v1.61.329

func CreateStartSlowQueryAnalyzerResponse() (response *StartSlowQueryAnalyzerResponse)

CreateStartSlowQueryAnalyzerResponse creates a response to parse from StartSlowQueryAnalyzer response

type TagResource ¶ added in v1.62.56

type TagResource struct {
	TagKey       string `json:"tagKey" xml:"tagKey"`
	TagValue     string `json:"tagValue" xml:"tagValue"`
	ResourceId   string `json:"resourceId" xml:"resourceId"`
	ResourceType string `json:"resourceType" xml:"resourceType"`
}

TagResource is a nested struct in opensearch response

type TagResourcesRequest ¶ added in v1.62.56

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

TagResourcesRequest is the request struct for api TagResources

func CreateTagResourcesRequest ¶ added in v1.62.56

func CreateTagResourcesRequest() (request *TagResourcesRequest)

CreateTagResourcesRequest creates a request to invoke TagResources API

type TagResourcesResponse ¶ added in v1.62.56

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

TagResourcesResponse is the response struct for api TagResources

func CreateTagResourcesResponse ¶ added in v1.62.56

func CreateTagResourcesResponse() (response *TagResourcesResponse)

CreateTagResourcesResponse creates a response to parse from TagResources response

type TagsInDescribeAppGroup ¶ added in v1.62.56

type TagsInDescribeAppGroup struct {
	TagsItem []TagsItem `json:"tags" xml:"tags"`
}

TagsInDescribeAppGroup is a nested struct in opensearch response

type TagsInListAppGroups ¶ added in v1.62.56

type TagsInListAppGroups struct {
	TagsItem []TagsItem `json:"tags" xml:"tags"`
}

TagsInListAppGroups is a nested struct in opensearch response

type TagsItem ¶ added in v1.62.56

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

TagsItem is a nested struct in opensearch response

type Task ¶ added in v1.62.56

type Task struct {
	DagStatus   string `json:"DagStatus" xml:"DagStatus"`
	LastRunTime int64  `json:"LastRunTime" xml:"LastRunTime"`
}

Task is a nested struct in opensearch response

type Token ¶ added in v1.61.367

type Token struct {
	Tag      string `json:"tag" xml:"tag"`
	Token    string `json:"token" xml:"token"`
	Order    int    `json:"order" xml:"order"`
	TagLabel string `json:"tagLabel" xml:"tagLabel"`
}

Token is a nested struct in opensearch response

type Tokens ¶ added in v1.61.367

type Tokens struct {
	Token []Token `json:"token" xml:"token"`
}

Tokens is a nested struct in opensearch response

type UnbindESUserAnalyzerRequest ¶ added in v1.62.56

type UnbindESUserAnalyzerRequest struct {
	*requests.RoaRequest
	EsInstanceId     string `position:"Path" name:"esInstanceId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

UnbindESUserAnalyzerRequest is the request struct for api UnbindESUserAnalyzer

func CreateUnbindESUserAnalyzerRequest ¶ added in v1.62.56

func CreateUnbindESUserAnalyzerRequest() (request *UnbindESUserAnalyzerRequest)

CreateUnbindESUserAnalyzerRequest creates a request to invoke UnbindESUserAnalyzer API

type UnbindESUserAnalyzerResponse ¶ added in v1.62.56

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

UnbindESUserAnalyzerResponse is the response struct for api UnbindESUserAnalyzer

func CreateUnbindESUserAnalyzerResponse ¶ added in v1.62.56

func CreateUnbindESUserAnalyzerResponse() (response *UnbindESUserAnalyzerResponse)

CreateUnbindESUserAnalyzerResponse creates a response to parse from UnbindESUserAnalyzer response

type UnbindEsInstanceRequest ¶ added in v1.62.56

type UnbindEsInstanceRequest struct {
	*requests.RoaRequest
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

UnbindEsInstanceRequest is the request struct for api UnbindEsInstance

func CreateUnbindEsInstanceRequest ¶ added in v1.62.56

func CreateUnbindEsInstanceRequest() (request *UnbindEsInstanceRequest)

CreateUnbindEsInstanceRequest creates a request to invoke UnbindEsInstance API

type UnbindEsInstanceResponse ¶ added in v1.62.56

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

UnbindEsInstanceResponse is the response struct for api UnbindEsInstance

func CreateUnbindEsInstanceResponse ¶ added in v1.62.56

func CreateUnbindEsInstanceResponse() (response *UnbindEsInstanceResponse)

CreateUnbindEsInstanceResponse creates a response to parse from UnbindEsInstance response

type UntagResourcesRequest ¶ added in v1.62.56

type UntagResourcesRequest struct {
	*requests.RoaRequest
	All          requests.Boolean `position:"Query" name:"all"`
	ResourceType string           `position:"Query" name:"resourceType"`
}

UntagResourcesRequest is the request struct for api UntagResources

func CreateUntagResourcesRequest ¶ added in v1.62.56

func CreateUntagResourcesRequest() (request *UntagResourcesRequest)

CreateUntagResourcesRequest creates a request to invoke UntagResources API

type UntagResourcesResponse ¶ added in v1.62.56

type UntagResourcesResponse struct {
	*responses.BaseResponse
	TequestId string `json:"tequestId" xml:"tequestId"`
}

UntagResourcesResponse is the response struct for api UntagResources

func CreateUntagResourcesResponse ¶ added in v1.62.56

func CreateUntagResourcesResponse() (response *UntagResourcesResponse)

CreateUntagResourcesResponse creates a response to parse from UntagResources response

type UpdateABTestExperimentRequest ¶ added in v1.61.367

type UpdateABTestExperimentRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	ExperimentId     requests.Integer `position:"Path" name:"experimentId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

UpdateABTestExperimentRequest is the request struct for api UpdateABTestExperiment

func CreateUpdateABTestExperimentRequest ¶ added in v1.61.367

func CreateUpdateABTestExperimentRequest() (request *UpdateABTestExperimentRequest)

CreateUpdateABTestExperimentRequest creates a request to invoke UpdateABTestExperiment API

type UpdateABTestExperimentResponse ¶ added in v1.61.367

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

UpdateABTestExperimentResponse is the response struct for api UpdateABTestExperiment

func CreateUpdateABTestExperimentResponse ¶ added in v1.61.367

func CreateUpdateABTestExperimentResponse() (response *UpdateABTestExperimentResponse)

CreateUpdateABTestExperimentResponse creates a response to parse from UpdateABTestExperiment response

type UpdateABTestFixedFlowDividersRequest ¶ added in v1.61.367

type UpdateABTestFixedFlowDividersRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	ExperimentId     requests.Integer `position:"Path" name:"experimentId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

UpdateABTestFixedFlowDividersRequest is the request struct for api UpdateABTestFixedFlowDividers

func CreateUpdateABTestFixedFlowDividersRequest ¶ added in v1.61.367

func CreateUpdateABTestFixedFlowDividersRequest() (request *UpdateABTestFixedFlowDividersRequest)

CreateUpdateABTestFixedFlowDividersRequest creates a request to invoke UpdateABTestFixedFlowDividers API

type UpdateABTestFixedFlowDividersResponse ¶ added in v1.61.367

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

UpdateABTestFixedFlowDividersResponse is the response struct for api UpdateABTestFixedFlowDividers

func CreateUpdateABTestFixedFlowDividersResponse ¶ added in v1.61.367

func CreateUpdateABTestFixedFlowDividersResponse() (response *UpdateABTestFixedFlowDividersResponse)

CreateUpdateABTestFixedFlowDividersResponse creates a response to parse from UpdateABTestFixedFlowDividers response

type UpdateABTestGroupRequest ¶ added in v1.61.367

type UpdateABTestGroupRequest struct {
	*requests.RoaRequest
	GroupId          requests.Integer `position:"Path" name:"groupId"`
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

UpdateABTestGroupRequest is the request struct for api UpdateABTestGroup

func CreateUpdateABTestGroupRequest ¶ added in v1.61.367

func CreateUpdateABTestGroupRequest() (request *UpdateABTestGroupRequest)

CreateUpdateABTestGroupRequest creates a request to invoke UpdateABTestGroup API

type UpdateABTestGroupResponse ¶ added in v1.61.367

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

UpdateABTestGroupResponse is the response struct for api UpdateABTestGroup

func CreateUpdateABTestGroupResponse ¶ added in v1.61.367

func CreateUpdateABTestGroupResponse() (response *UpdateABTestGroupResponse)

CreateUpdateABTestGroupResponse creates a response to parse from UpdateABTestGroup response

type UpdateABTestSceneRequest ¶ added in v1.61.367

type UpdateABTestSceneRequest struct {
	*requests.RoaRequest
	SceneId          requests.Integer `position:"Path" name:"sceneId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

UpdateABTestSceneRequest is the request struct for api UpdateABTestScene

func CreateUpdateABTestSceneRequest ¶ added in v1.61.367

func CreateUpdateABTestSceneRequest() (request *UpdateABTestSceneRequest)

CreateUpdateABTestSceneRequest creates a request to invoke UpdateABTestScene API

type UpdateABTestSceneResponse ¶ added in v1.61.367

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

UpdateABTestSceneResponse is the response struct for api UpdateABTestScene

func CreateUpdateABTestSceneResponse ¶ added in v1.61.367

func CreateUpdateABTestSceneResponse() (response *UpdateABTestSceneResponse)

CreateUpdateABTestSceneResponse creates a response to parse from UpdateABTestScene response

type UpdateFetchFieldsRequest ¶ added in v1.61.329

type UpdateFetchFieldsRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

UpdateFetchFieldsRequest is the request struct for api UpdateFetchFields

func CreateUpdateFetchFieldsRequest ¶ added in v1.61.329

func CreateUpdateFetchFieldsRequest() (request *UpdateFetchFieldsRequest)

CreateUpdateFetchFieldsRequest creates a request to invoke UpdateFetchFields API

type UpdateFetchFieldsResponse ¶ added in v1.61.329

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

UpdateFetchFieldsResponse is the response struct for api UpdateFetchFields

func CreateUpdateFetchFieldsResponse ¶ added in v1.61.329

func CreateUpdateFetchFieldsResponse() (response *UpdateFetchFieldsResponse)

CreateUpdateFetchFieldsResponse creates a response to parse from UpdateFetchFields response

type UpdateFunctionDefaultInstanceRequest ¶ added in v1.62.56

type UpdateFunctionDefaultInstanceRequest struct {
	*requests.RoaRequest
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

UpdateFunctionDefaultInstanceRequest is the request struct for api UpdateFunctionDefaultInstance

func CreateUpdateFunctionDefaultInstanceRequest ¶ added in v1.62.56

func CreateUpdateFunctionDefaultInstanceRequest() (request *UpdateFunctionDefaultInstanceRequest)

CreateUpdateFunctionDefaultInstanceRequest creates a request to invoke UpdateFunctionDefaultInstance API

type UpdateFunctionDefaultInstanceResponse ¶ added in v1.62.56

type UpdateFunctionDefaultInstanceResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
}

UpdateFunctionDefaultInstanceResponse is the response struct for api UpdateFunctionDefaultInstance

func CreateUpdateFunctionDefaultInstanceResponse ¶ added in v1.62.56

func CreateUpdateFunctionDefaultInstanceResponse() (response *UpdateFunctionDefaultInstanceResponse)

CreateUpdateFunctionDefaultInstanceResponse creates a response to parse from UpdateFunctionDefaultInstance response

type UpdateFunctionInstanceRequest ¶ added in v1.62.56

type UpdateFunctionInstanceRequest struct {
	*requests.RoaRequest
	InstanceName     string `position:"Path" name:"instanceName"`
	FunctionName     string `position:"Path" name:"functionName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

UpdateFunctionInstanceRequest is the request struct for api UpdateFunctionInstance

func CreateUpdateFunctionInstanceRequest ¶ added in v1.62.56

func CreateUpdateFunctionInstanceRequest() (request *UpdateFunctionInstanceRequest)

CreateUpdateFunctionInstanceRequest creates a request to invoke UpdateFunctionInstance API

type UpdateFunctionInstanceResponse ¶ added in v1.62.56

type UpdateFunctionInstanceResponse struct {
	*responses.BaseResponse
	Status    string `json:"Status" xml:"Status"`
	HttpCode  int64  `json:"HttpCode" xml:"HttpCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	Message   string `json:"Message" xml:"Message"`
	Code      string `json:"Code" xml:"Code"`
	Latency   int64  `json:"Latency" xml:"Latency"`
}

UpdateFunctionInstanceResponse is the response struct for api UpdateFunctionInstance

func CreateUpdateFunctionInstanceResponse ¶ added in v1.62.56

func CreateUpdateFunctionInstanceResponse() (response *UpdateFunctionInstanceResponse)

CreateUpdateFunctionInstanceResponse creates a response to parse from UpdateFunctionInstance response

type UpdateSearchStrategyRequest ¶ added in v1.62.56

type UpdateSearchStrategyRequest struct {
	*requests.RoaRequest
	StrategyName     string `position:"Path" name:"strategyName"`
	AppId            string `position:"Path" name:"appId"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

UpdateSearchStrategyRequest is the request struct for api UpdateSearchStrategy

func CreateUpdateSearchStrategyRequest ¶ added in v1.62.56

func CreateUpdateSearchStrategyRequest() (request *UpdateSearchStrategyRequest)

CreateUpdateSearchStrategyRequest creates a request to invoke UpdateSearchStrategy API

type UpdateSearchStrategyResponse ¶ added in v1.62.56

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

UpdateSearchStrategyResponse is the response struct for api UpdateSearchStrategy

func CreateUpdateSearchStrategyResponse ¶ added in v1.62.56

func CreateUpdateSearchStrategyResponse() (response *UpdateSearchStrategyResponse)

CreateUpdateSearchStrategyResponse creates a response to parse from UpdateSearchStrategy response

type UpdateSortScriptRequest ¶ added in v1.61.1092

type UpdateSortScriptRequest struct {
	*requests.RoaRequest
	AppVersionId     string `position:"Path" name:"appVersionId"`
	ScriptName       string `position:"Path" name:"scriptName"`
	AppGroupIdentity string `position:"Path" name:"appGroupIdentity"`
}

UpdateSortScriptRequest is the request struct for api UpdateSortScript

func CreateUpdateSortScriptRequest ¶ added in v1.61.1092

func CreateUpdateSortScriptRequest() (request *UpdateSortScriptRequest)

CreateUpdateSortScriptRequest creates a request to invoke UpdateSortScript API

type UpdateSortScriptResponse ¶ added in v1.61.1092

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

UpdateSortScriptResponse is the response struct for api UpdateSortScript

func CreateUpdateSortScriptResponse ¶ added in v1.61.1092

func CreateUpdateSortScriptResponse() (response *UpdateSortScriptResponse)

CreateUpdateSortScriptResponse creates a response to parse from UpdateSortScript response

type UpdateSummariesRequest ¶ added in v1.61.329

type UpdateSummariesRequest struct {
	*requests.RoaRequest
	DryRun           requests.Boolean `position:"Query" name:"dryRun"`
	AppId            requests.Integer `position:"Path" name:"appId"`
	AppGroupIdentity string           `position:"Path" name:"appGroupIdentity"`
}

UpdateSummariesRequest is the request struct for api UpdateSummaries

func CreateUpdateSummariesRequest ¶ added in v1.61.329

func CreateUpdateSummariesRequest() (request *UpdateSummariesRequest)

CreateUpdateSummariesRequest creates a request to invoke UpdateSummaries API

type UpdateSummariesResponse ¶ added in v1.61.329

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

UpdateSummariesResponse is the response struct for api UpdateSummaries

func CreateUpdateSummariesResponse ¶ added in v1.61.329

func CreateUpdateSummariesResponse() (response *UpdateSummariesResponse)

CreateUpdateSummariesResponse creates a response to parse from UpdateSummaries response

type UsageParametersInGetFunctionCurrentVersion ¶ added in v1.62.56

type UsageParametersInGetFunctionCurrentVersion struct {
	UsageParametersItem []UsageParametersItem `json:"UsageParameters" xml:"UsageParameters"`
}

UsageParametersInGetFunctionCurrentVersion is a nested struct in opensearch response

type UsageParametersInGetFunctionInstance ¶ added in v1.62.56

type UsageParametersInGetFunctionInstance struct {
	UsageParametersItem []UsageParametersItem `json:"UsageParameters" xml:"UsageParameters"`
}

UsageParametersInGetFunctionInstance is a nested struct in opensearch response

type UsageParametersInGetFunctionVersion ¶ added in v1.62.56

type UsageParametersInGetFunctionVersion struct {
	UsageParametersItem []UsageParametersItem `json:"UsageParameters" xml:"UsageParameters"`
}

UsageParametersInGetFunctionVersion is a nested struct in opensearch response

type UsageParametersInListFunctionInstances ¶ added in v1.62.56

type UsageParametersInListFunctionInstances struct {
	UsageParametersItem []UsageParametersItem `json:"UsageParameters" xml:"UsageParameters"`
}

UsageParametersInListFunctionInstances is a nested struct in opensearch response

type UsageParametersItem ¶ added in v1.62.56

type UsageParametersItem struct {
	Name     string `json:"Name" xml:"Name"`
	Value    string `json:"Value" xml:"Value"`
	Required string `json:"Required" xml:"Required"`
}

UsageParametersItem is a nested struct in opensearch response

type ValidateDataSourcesRequest ¶ added in v1.62.56

type ValidateDataSourcesRequest struct {
	*requests.RoaRequest
}

ValidateDataSourcesRequest is the request struct for api ValidateDataSources

func CreateValidateDataSourcesRequest ¶ added in v1.62.56

func CreateValidateDataSourcesRequest() (request *ValidateDataSourcesRequest)

CreateValidateDataSourcesRequest creates a request to invoke ValidateDataSources API

type ValidateDataSourcesResponse ¶ added in v1.62.56

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

ValidateDataSourcesResponse is the response struct for api ValidateDataSources

func CreateValidateDataSourcesResponse ¶ added in v1.62.56

func CreateValidateDataSourcesResponse() (response *ValidateDataSourcesResponse)

CreateValidateDataSourcesResponse creates a response to parse from ValidateDataSources response

type ValuesInCreateABTestScene ¶ added in v1.61.367

type ValuesInCreateABTestScene struct {
	Values []string `json:"values" xml:"values"`
}

ValuesInCreateABTestScene is a nested struct in opensearch response

type ValuesInDescribeABTestScene ¶ added in v1.61.367

type ValuesInDescribeABTestScene struct {
	Values []string `json:"values" xml:"values"`
}

ValuesInDescribeABTestScene is a nested struct in opensearch response

type ValuesInListABTestScenes ¶ added in v1.61.367

type ValuesInListABTestScenes struct {
	Values []string `json:"values" xml:"values"`
}

ValuesInListABTestScenes is a nested struct in opensearch response

type VersionConfig ¶ added in v1.62.56

type VersionConfig struct {
	UsageParameters  []UsageParametersItem  `json:"UsageParameters" xml:"UsageParameters"`
	CreateParameters []CreateParametersItem `json:"CreateParameters" xml:"CreateParameters"`
	Depends          []DependsItem          `json:"Depends" xml:"Depends"`
}

VersionConfig is a nested struct in opensearch response

type Versions ¶ added in v1.61.329

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

Versions is a nested struct in opensearch response

type WordItem ¶ added in v1.61.329

type WordItem struct {
	Cmd       string                 `json:"cmd" xml:"cmd"`
	Created   int64                  `json:"created" xml:"created"`
	Word      string                 `json:"word" xml:"word"`
	Relevance map[string]interface{} `json:"relevance" xml:"relevance"`
	Status    string                 `json:"status" xml:"status"`
	Updated   int64                  `json:"updated" xml:"updated"`
	Tokens    []Token                `json:"tokens" xml:"tokens"`
}

WordItem is a nested struct in opensearch response

Source Files ¶

Jump to

Keyboard shortcuts

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