cloud_siem

package
v1.62.626 Latest Latest
Warning

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

Go to latest
Published: Dec 7, 2023 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AssetInfo added in v1.62.595

type AssetInfo struct {
	AssetInfoItem []AssetInfoItem `json:"AssetInfo" xml:"AssetInfo"`
}

AssetInfo is a nested struct in cloud_siem response

type AssetInfoItem added in v1.62.595

type AssetInfoItem struct {
	Key     string `json:"Key" xml:"Key"`
	KeyName string `json:"KeyName" xml:"KeyName"`
	Values  string `json:"Values" xml:"Values"`
}

AssetInfoItem is a nested struct in cloud_siem response

type AttCkLabelsInDescribeCloudSiemEventDetail added in v1.62.595

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

AttCkLabelsInDescribeCloudSiemEventDetail is a nested struct in cloud_siem response

type AttCkLabelsInDescribeCloudSiemEvents added in v1.62.595

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

AttCkLabelsInDescribeCloudSiemEvents is a nested struct in cloud_siem response

type BatchJobCheckRequest

type BatchJobCheckRequest struct {
	*requests.RpcRequest
	SubmitId string `position:"Body" name:"SubmitId"`
}

BatchJobCheckRequest is the request struct for api BatchJobCheck

func CreateBatchJobCheckRequest

func CreateBatchJobCheckRequest() (request *BatchJobCheckRequest)

CreateBatchJobCheckRequest creates a request to invoke BatchJobCheck API

type BatchJobCheckResponse

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

BatchJobCheckResponse is the response struct for api BatchJobCheck

func CreateBatchJobCheckResponse

func CreateBatchJobCheckResponse() (response *BatchJobCheckResponse)

CreateBatchJobCheckResponse creates a response to parse from BatchJobCheck response

type BatchJobSubmitRequest

type BatchJobSubmitRequest struct {
	*requests.RpcRequest
	JsonConfig string `position:"Body" name:"JsonConfig"`
}

BatchJobSubmitRequest is the request struct for api BatchJobSubmit

func CreateBatchJobSubmitRequest

func CreateBatchJobSubmitRequest() (request *BatchJobSubmitRequest)

CreateBatchJobSubmitRequest creates a request to invoke BatchJobSubmit API

type BatchJobSubmitResponse

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

BatchJobSubmitResponse is the response struct for api BatchJobSubmit

func CreateBatchJobSubmitResponse

func CreateBatchJobSubmitResponse() (response *BatchJobSubmitResponse)

CreateBatchJobSubmitResponse creates a response to parse from BatchJobSubmit response

type Client

type Client struct {
	sdk.Client
}

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

func NewClient

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

NewClient creates a sdk client with environment variables

func NewClientWithAccessKey

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

NewClientWithAccessKey is a shortcut to create sdk client with accesskey usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithEcsRamRole

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

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

func NewClientWithOptions

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

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

func NewClientWithProvider

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

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

func NewClientWithRamRoleArn

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

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

func NewClientWithRamRoleArnAndPolicy

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

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

func NewClientWithRsaKeyPair

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

NewClientWithRsaKeyPair is a shortcut to create sdk client with rsa key pair usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func NewClientWithStsToken

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

NewClientWithStsToken is a shortcut to create sdk client with sts token usage: https://github.com/aliyun/alibaba-cloud-sdk-go/blob/master/docs/2-Client-EN.md

func (*Client) BatchJobCheck

func (client *Client) BatchJobCheck(request *BatchJobCheckRequest) (response *BatchJobCheckResponse, err error)

BatchJobCheck invokes the cloud_siem.BatchJobCheck API synchronously

func (*Client) BatchJobCheckWithCallback

func (client *Client) BatchJobCheckWithCallback(request *BatchJobCheckRequest, callback func(response *BatchJobCheckResponse, err error)) <-chan int

BatchJobCheckWithCallback invokes the cloud_siem.BatchJobCheck API asynchronously

func (*Client) BatchJobCheckWithChan

func (client *Client) BatchJobCheckWithChan(request *BatchJobCheckRequest) (<-chan *BatchJobCheckResponse, <-chan error)

BatchJobCheckWithChan invokes the cloud_siem.BatchJobCheck API asynchronously

func (*Client) BatchJobSubmit

func (client *Client) BatchJobSubmit(request *BatchJobSubmitRequest) (response *BatchJobSubmitResponse, err error)

BatchJobSubmit invokes the cloud_siem.BatchJobSubmit API synchronously

func (*Client) BatchJobSubmitWithCallback

func (client *Client) BatchJobSubmitWithCallback(request *BatchJobSubmitRequest, callback func(response *BatchJobSubmitResponse, err error)) <-chan int

BatchJobSubmitWithCallback invokes the cloud_siem.BatchJobSubmit API asynchronously

func (*Client) BatchJobSubmitWithChan

func (client *Client) BatchJobSubmitWithChan(request *BatchJobSubmitRequest) (<-chan *BatchJobSubmitResponse, <-chan error)

BatchJobSubmitWithChan invokes the cloud_siem.BatchJobSubmit API asynchronously

func (*Client) CloseDelivery added in v1.62.595

func (client *Client) CloseDelivery(request *CloseDeliveryRequest) (response *CloseDeliveryResponse, err error)

CloseDelivery invokes the cloud_siem.CloseDelivery API synchronously

func (*Client) CloseDeliveryWithCallback added in v1.62.595

func (client *Client) CloseDeliveryWithCallback(request *CloseDeliveryRequest, callback func(response *CloseDeliveryResponse, err error)) <-chan int

CloseDeliveryWithCallback invokes the cloud_siem.CloseDelivery API asynchronously

func (*Client) CloseDeliveryWithChan added in v1.62.595

func (client *Client) CloseDeliveryWithChan(request *CloseDeliveryRequest) (<-chan *CloseDeliveryResponse, <-chan error)

CloseDeliveryWithChan invokes the cloud_siem.CloseDelivery API asynchronously

func (*Client) DeleteAutomateResponseConfig added in v1.62.595

func (client *Client) DeleteAutomateResponseConfig(request *DeleteAutomateResponseConfigRequest) (response *DeleteAutomateResponseConfigResponse, err error)

DeleteAutomateResponseConfig invokes the cloud_siem.DeleteAutomateResponseConfig API synchronously

func (*Client) DeleteAutomateResponseConfigWithCallback added in v1.62.595

func (client *Client) DeleteAutomateResponseConfigWithCallback(request *DeleteAutomateResponseConfigRequest, callback func(response *DeleteAutomateResponseConfigResponse, err error)) <-chan int

DeleteAutomateResponseConfigWithCallback invokes the cloud_siem.DeleteAutomateResponseConfig API asynchronously

func (*Client) DeleteAutomateResponseConfigWithChan added in v1.62.595

func (client *Client) DeleteAutomateResponseConfigWithChan(request *DeleteAutomateResponseConfigRequest) (<-chan *DeleteAutomateResponseConfigResponse, <-chan error)

DeleteAutomateResponseConfigWithChan invokes the cloud_siem.DeleteAutomateResponseConfig API asynchronously

func (*Client) DeleteCustomizeRule added in v1.62.595

func (client *Client) DeleteCustomizeRule(request *DeleteCustomizeRuleRequest) (response *DeleteCustomizeRuleResponse, err error)

DeleteCustomizeRule invokes the cloud_siem.DeleteCustomizeRule API synchronously

func (*Client) DeleteCustomizeRuleWithCallback added in v1.62.595

func (client *Client) DeleteCustomizeRuleWithCallback(request *DeleteCustomizeRuleRequest, callback func(response *DeleteCustomizeRuleResponse, err error)) <-chan int

DeleteCustomizeRuleWithCallback invokes the cloud_siem.DeleteCustomizeRule API asynchronously

func (*Client) DeleteCustomizeRuleWithChan added in v1.62.595

func (client *Client) DeleteCustomizeRuleWithChan(request *DeleteCustomizeRuleRequest) (<-chan *DeleteCustomizeRuleResponse, <-chan error)

DeleteCustomizeRuleWithChan invokes the cloud_siem.DeleteCustomizeRule API asynchronously

func (*Client) DeleteQuickQuery added in v1.62.595

func (client *Client) DeleteQuickQuery(request *DeleteQuickQueryRequest) (response *DeleteQuickQueryResponse, err error)

DeleteQuickQuery invokes the cloud_siem.DeleteQuickQuery API synchronously

func (*Client) DeleteQuickQueryWithCallback added in v1.62.595

func (client *Client) DeleteQuickQueryWithCallback(request *DeleteQuickQueryRequest, callback func(response *DeleteQuickQueryResponse, err error)) <-chan int

DeleteQuickQueryWithCallback invokes the cloud_siem.DeleteQuickQuery API asynchronously

func (*Client) DeleteQuickQueryWithChan added in v1.62.595

func (client *Client) DeleteQuickQueryWithChan(request *DeleteQuickQueryRequest) (<-chan *DeleteQuickQueryResponse, <-chan error)

DeleteQuickQueryWithChan invokes the cloud_siem.DeleteQuickQuery API asynchronously

func (*Client) DeleteWhiteRuleList added in v1.62.595

func (client *Client) DeleteWhiteRuleList(request *DeleteWhiteRuleListRequest) (response *DeleteWhiteRuleListResponse, err error)

DeleteWhiteRuleList invokes the cloud_siem.DeleteWhiteRuleList API synchronously

func (*Client) DeleteWhiteRuleListWithCallback added in v1.62.595

func (client *Client) DeleteWhiteRuleListWithCallback(request *DeleteWhiteRuleListRequest, callback func(response *DeleteWhiteRuleListResponse, err error)) <-chan int

DeleteWhiteRuleListWithCallback invokes the cloud_siem.DeleteWhiteRuleList API asynchronously

func (*Client) DeleteWhiteRuleListWithChan added in v1.62.595

func (client *Client) DeleteWhiteRuleListWithChan(request *DeleteWhiteRuleListRequest) (<-chan *DeleteWhiteRuleListResponse, <-chan error)

DeleteWhiteRuleListWithChan invokes the cloud_siem.DeleteWhiteRuleList API asynchronously

func (*Client) DescribeAggregateFunction added in v1.62.595

func (client *Client) DescribeAggregateFunction(request *DescribeAggregateFunctionRequest) (response *DescribeAggregateFunctionResponse, err error)

DescribeAggregateFunction invokes the cloud_siem.DescribeAggregateFunction API synchronously

func (*Client) DescribeAggregateFunctionWithCallback added in v1.62.595

func (client *Client) DescribeAggregateFunctionWithCallback(request *DescribeAggregateFunctionRequest, callback func(response *DescribeAggregateFunctionResponse, err error)) <-chan int

DescribeAggregateFunctionWithCallback invokes the cloud_siem.DescribeAggregateFunction API asynchronously

func (*Client) DescribeAggregateFunctionWithChan added in v1.62.595

func (client *Client) DescribeAggregateFunctionWithChan(request *DescribeAggregateFunctionRequest) (<-chan *DescribeAggregateFunctionResponse, <-chan error)

DescribeAggregateFunctionWithChan invokes the cloud_siem.DescribeAggregateFunction API asynchronously

func (*Client) DescribeAlertSceneByEvent added in v1.62.595

func (client *Client) DescribeAlertSceneByEvent(request *DescribeAlertSceneByEventRequest) (response *DescribeAlertSceneByEventResponse, err error)

DescribeAlertSceneByEvent invokes the cloud_siem.DescribeAlertSceneByEvent API synchronously

func (*Client) DescribeAlertSceneByEventWithCallback added in v1.62.595

func (client *Client) DescribeAlertSceneByEventWithCallback(request *DescribeAlertSceneByEventRequest, callback func(response *DescribeAlertSceneByEventResponse, err error)) <-chan int

DescribeAlertSceneByEventWithCallback invokes the cloud_siem.DescribeAlertSceneByEvent API asynchronously

func (*Client) DescribeAlertSceneByEventWithChan added in v1.62.595

func (client *Client) DescribeAlertSceneByEventWithChan(request *DescribeAlertSceneByEventRequest) (<-chan *DescribeAlertSceneByEventResponse, <-chan error)

DescribeAlertSceneByEventWithChan invokes the cloud_siem.DescribeAlertSceneByEvent API asynchronously

func (*Client) DescribeAlertSource added in v1.62.595

func (client *Client) DescribeAlertSource(request *DescribeAlertSourceRequest) (response *DescribeAlertSourceResponse, err error)

DescribeAlertSource invokes the cloud_siem.DescribeAlertSource API synchronously

func (*Client) DescribeAlertSourceWithCallback added in v1.62.595

func (client *Client) DescribeAlertSourceWithCallback(request *DescribeAlertSourceRequest, callback func(response *DescribeAlertSourceResponse, err error)) <-chan int

DescribeAlertSourceWithCallback invokes the cloud_siem.DescribeAlertSource API asynchronously

func (*Client) DescribeAlertSourceWithChan added in v1.62.595

func (client *Client) DescribeAlertSourceWithChan(request *DescribeAlertSourceRequest) (<-chan *DescribeAlertSourceResponse, <-chan error)

DescribeAlertSourceWithChan invokes the cloud_siem.DescribeAlertSource API asynchronously

func (*Client) DescribeAlertSourceWithEvent added in v1.62.595

func (client *Client) DescribeAlertSourceWithEvent(request *DescribeAlertSourceWithEventRequest) (response *DescribeAlertSourceWithEventResponse, err error)

DescribeAlertSourceWithEvent invokes the cloud_siem.DescribeAlertSourceWithEvent API synchronously

func (*Client) DescribeAlertSourceWithEventWithCallback added in v1.62.595

func (client *Client) DescribeAlertSourceWithEventWithCallback(request *DescribeAlertSourceWithEventRequest, callback func(response *DescribeAlertSourceWithEventResponse, err error)) <-chan int

DescribeAlertSourceWithEventWithCallback invokes the cloud_siem.DescribeAlertSourceWithEvent API asynchronously

func (*Client) DescribeAlertSourceWithEventWithChan added in v1.62.595

func (client *Client) DescribeAlertSourceWithEventWithChan(request *DescribeAlertSourceWithEventRequest) (<-chan *DescribeAlertSourceWithEventResponse, <-chan error)

DescribeAlertSourceWithEventWithChan invokes the cloud_siem.DescribeAlertSourceWithEvent API asynchronously

func (*Client) DescribeAlertType added in v1.62.595

func (client *Client) DescribeAlertType(request *DescribeAlertTypeRequest) (response *DescribeAlertTypeResponse, err error)

DescribeAlertType invokes the cloud_siem.DescribeAlertType API synchronously

func (*Client) DescribeAlertTypeWithCallback added in v1.62.595

func (client *Client) DescribeAlertTypeWithCallback(request *DescribeAlertTypeRequest, callback func(response *DescribeAlertTypeResponse, err error)) <-chan int

DescribeAlertTypeWithCallback invokes the cloud_siem.DescribeAlertType API asynchronously

func (*Client) DescribeAlertTypeWithChan added in v1.62.595

func (client *Client) DescribeAlertTypeWithChan(request *DescribeAlertTypeRequest) (<-chan *DescribeAlertTypeResponse, <-chan error)

DescribeAlertTypeWithChan invokes the cloud_siem.DescribeAlertType API asynchronously

func (*Client) DescribeAlertsCount added in v1.62.595

func (client *Client) DescribeAlertsCount(request *DescribeAlertsCountRequest) (response *DescribeAlertsCountResponse, err error)

DescribeAlertsCount invokes the cloud_siem.DescribeAlertsCount API synchronously

func (*Client) DescribeAlertsCountWithCallback added in v1.62.595

func (client *Client) DescribeAlertsCountWithCallback(request *DescribeAlertsCountRequest, callback func(response *DescribeAlertsCountResponse, err error)) <-chan int

DescribeAlertsCountWithCallback invokes the cloud_siem.DescribeAlertsCount API asynchronously

func (*Client) DescribeAlertsCountWithChan added in v1.62.595

func (client *Client) DescribeAlertsCountWithChan(request *DescribeAlertsCountRequest) (<-chan *DescribeAlertsCountResponse, <-chan error)

DescribeAlertsCountWithChan invokes the cloud_siem.DescribeAlertsCount API asynchronously

func (*Client) DescribeAttackTimeLine added in v1.62.595

func (client *Client) DescribeAttackTimeLine(request *DescribeAttackTimeLineRequest) (response *DescribeAttackTimeLineResponse, err error)

DescribeAttackTimeLine invokes the cloud_siem.DescribeAttackTimeLine API synchronously

func (*Client) DescribeAttackTimeLineWithCallback added in v1.62.595

func (client *Client) DescribeAttackTimeLineWithCallback(request *DescribeAttackTimeLineRequest, callback func(response *DescribeAttackTimeLineResponse, err error)) <-chan int

DescribeAttackTimeLineWithCallback invokes the cloud_siem.DescribeAttackTimeLine API asynchronously

func (*Client) DescribeAttackTimeLineWithChan added in v1.62.595

func (client *Client) DescribeAttackTimeLineWithChan(request *DescribeAttackTimeLineRequest) (<-chan *DescribeAttackTimeLineResponse, <-chan error)

DescribeAttackTimeLineWithChan invokes the cloud_siem.DescribeAttackTimeLine API asynchronously

func (*Client) DescribeAutomateResponseConfigCounter added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigCounter(request *DescribeAutomateResponseConfigCounterRequest) (response *DescribeAutomateResponseConfigCounterResponse, err error)

DescribeAutomateResponseConfigCounter invokes the cloud_siem.DescribeAutomateResponseConfigCounter API synchronously

func (*Client) DescribeAutomateResponseConfigCounterWithCallback added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigCounterWithCallback(request *DescribeAutomateResponseConfigCounterRequest, callback func(response *DescribeAutomateResponseConfigCounterResponse, err error)) <-chan int

DescribeAutomateResponseConfigCounterWithCallback invokes the cloud_siem.DescribeAutomateResponseConfigCounter API asynchronously

func (*Client) DescribeAutomateResponseConfigCounterWithChan added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigCounterWithChan(request *DescribeAutomateResponseConfigCounterRequest) (<-chan *DescribeAutomateResponseConfigCounterResponse, <-chan error)

DescribeAutomateResponseConfigCounterWithChan invokes the cloud_siem.DescribeAutomateResponseConfigCounter API asynchronously

func (*Client) DescribeAutomateResponseConfigFeature added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigFeature(request *DescribeAutomateResponseConfigFeatureRequest) (response *DescribeAutomateResponseConfigFeatureResponse, err error)

DescribeAutomateResponseConfigFeature invokes the cloud_siem.DescribeAutomateResponseConfigFeature API synchronously

func (*Client) DescribeAutomateResponseConfigFeatureWithCallback added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigFeatureWithCallback(request *DescribeAutomateResponseConfigFeatureRequest, callback func(response *DescribeAutomateResponseConfigFeatureResponse, err error)) <-chan int

DescribeAutomateResponseConfigFeatureWithCallback invokes the cloud_siem.DescribeAutomateResponseConfigFeature API asynchronously

func (*Client) DescribeAutomateResponseConfigFeatureWithChan added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigFeatureWithChan(request *DescribeAutomateResponseConfigFeatureRequest) (<-chan *DescribeAutomateResponseConfigFeatureResponse, <-chan error)

DescribeAutomateResponseConfigFeatureWithChan invokes the cloud_siem.DescribeAutomateResponseConfigFeature API asynchronously

func (*Client) DescribeAutomateResponseConfigPlayBooks added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigPlayBooks(request *DescribeAutomateResponseConfigPlayBooksRequest) (response *DescribeAutomateResponseConfigPlayBooksResponse, err error)

DescribeAutomateResponseConfigPlayBooks invokes the cloud_siem.DescribeAutomateResponseConfigPlayBooks API synchronously

func (*Client) DescribeAutomateResponseConfigPlayBooksWithCallback added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigPlayBooksWithCallback(request *DescribeAutomateResponseConfigPlayBooksRequest, callback func(response *DescribeAutomateResponseConfigPlayBooksResponse, err error)) <-chan int

DescribeAutomateResponseConfigPlayBooksWithCallback invokes the cloud_siem.DescribeAutomateResponseConfigPlayBooks API asynchronously

func (*Client) DescribeAutomateResponseConfigPlayBooksWithChan added in v1.62.595

func (client *Client) DescribeAutomateResponseConfigPlayBooksWithChan(request *DescribeAutomateResponseConfigPlayBooksRequest) (<-chan *DescribeAutomateResponseConfigPlayBooksResponse, <-chan error)

DescribeAutomateResponseConfigPlayBooksWithChan invokes the cloud_siem.DescribeAutomateResponseConfigPlayBooks API asynchronously

func (*Client) DescribeCloudSiemAssets added in v1.62.595

func (client *Client) DescribeCloudSiemAssets(request *DescribeCloudSiemAssetsRequest) (response *DescribeCloudSiemAssetsResponse, err error)

DescribeCloudSiemAssets invokes the cloud_siem.DescribeCloudSiemAssets API synchronously

func (*Client) DescribeCloudSiemAssetsCounter added in v1.62.595

func (client *Client) DescribeCloudSiemAssetsCounter(request *DescribeCloudSiemAssetsCounterRequest) (response *DescribeCloudSiemAssetsCounterResponse, err error)

DescribeCloudSiemAssetsCounter invokes the cloud_siem.DescribeCloudSiemAssetsCounter API synchronously

func (*Client) DescribeCloudSiemAssetsCounterWithCallback added in v1.62.595

func (client *Client) DescribeCloudSiemAssetsCounterWithCallback(request *DescribeCloudSiemAssetsCounterRequest, callback func(response *DescribeCloudSiemAssetsCounterResponse, err error)) <-chan int

DescribeCloudSiemAssetsCounterWithCallback invokes the cloud_siem.DescribeCloudSiemAssetsCounter API asynchronously

func (*Client) DescribeCloudSiemAssetsCounterWithChan added in v1.62.595

func (client *Client) DescribeCloudSiemAssetsCounterWithChan(request *DescribeCloudSiemAssetsCounterRequest) (<-chan *DescribeCloudSiemAssetsCounterResponse, <-chan error)

DescribeCloudSiemAssetsCounterWithChan invokes the cloud_siem.DescribeCloudSiemAssetsCounter API asynchronously

func (*Client) DescribeCloudSiemAssetsWithCallback added in v1.62.595

func (client *Client) DescribeCloudSiemAssetsWithCallback(request *DescribeCloudSiemAssetsRequest, callback func(response *DescribeCloudSiemAssetsResponse, err error)) <-chan int

DescribeCloudSiemAssetsWithCallback invokes the cloud_siem.DescribeCloudSiemAssets API asynchronously

func (*Client) DescribeCloudSiemAssetsWithChan added in v1.62.595

func (client *Client) DescribeCloudSiemAssetsWithChan(request *DescribeCloudSiemAssetsRequest) (<-chan *DescribeCloudSiemAssetsResponse, <-chan error)

DescribeCloudSiemAssetsWithChan invokes the cloud_siem.DescribeCloudSiemAssets API asynchronously

func (*Client) DescribeCloudSiemEventDetail added in v1.62.595

func (client *Client) DescribeCloudSiemEventDetail(request *DescribeCloudSiemEventDetailRequest) (response *DescribeCloudSiemEventDetailResponse, err error)

DescribeCloudSiemEventDetail invokes the cloud_siem.DescribeCloudSiemEventDetail API synchronously

func (*Client) DescribeCloudSiemEventDetailWithCallback added in v1.62.595

func (client *Client) DescribeCloudSiemEventDetailWithCallback(request *DescribeCloudSiemEventDetailRequest, callback func(response *DescribeCloudSiemEventDetailResponse, err error)) <-chan int

DescribeCloudSiemEventDetailWithCallback invokes the cloud_siem.DescribeCloudSiemEventDetail API asynchronously

func (*Client) DescribeCloudSiemEventDetailWithChan added in v1.62.595

func (client *Client) DescribeCloudSiemEventDetailWithChan(request *DescribeCloudSiemEventDetailRequest) (<-chan *DescribeCloudSiemEventDetailResponse, <-chan error)

DescribeCloudSiemEventDetailWithChan invokes the cloud_siem.DescribeCloudSiemEventDetail API asynchronously

func (*Client) DescribeCloudSiemEvents added in v1.62.595

func (client *Client) DescribeCloudSiemEvents(request *DescribeCloudSiemEventsRequest) (response *DescribeCloudSiemEventsResponse, err error)

DescribeCloudSiemEvents invokes the cloud_siem.DescribeCloudSiemEvents API synchronously

func (*Client) DescribeCloudSiemEventsWithCallback added in v1.62.595

func (client *Client) DescribeCloudSiemEventsWithCallback(request *DescribeCloudSiemEventsRequest, callback func(response *DescribeCloudSiemEventsResponse, err error)) <-chan int

DescribeCloudSiemEventsWithCallback invokes the cloud_siem.DescribeCloudSiemEvents API asynchronously

func (*Client) DescribeCloudSiemEventsWithChan added in v1.62.595

func (client *Client) DescribeCloudSiemEventsWithChan(request *DescribeCloudSiemEventsRequest) (<-chan *DescribeCloudSiemEventsResponse, <-chan error)

DescribeCloudSiemEventsWithChan invokes the cloud_siem.DescribeCloudSiemEvents API asynchronously

func (*Client) DescribeCustomizeRule added in v1.62.595

func (client *Client) DescribeCustomizeRule(request *DescribeCustomizeRuleRequest) (response *DescribeCustomizeRuleResponse, err error)

DescribeCustomizeRule invokes the cloud_siem.DescribeCustomizeRule API synchronously

func (*Client) DescribeCustomizeRuleCount added in v1.62.595

func (client *Client) DescribeCustomizeRuleCount(request *DescribeCustomizeRuleCountRequest) (response *DescribeCustomizeRuleCountResponse, err error)

DescribeCustomizeRuleCount invokes the cloud_siem.DescribeCustomizeRuleCount API synchronously

func (*Client) DescribeCustomizeRuleCountWithCallback added in v1.62.595

func (client *Client) DescribeCustomizeRuleCountWithCallback(request *DescribeCustomizeRuleCountRequest, callback func(response *DescribeCustomizeRuleCountResponse, err error)) <-chan int

DescribeCustomizeRuleCountWithCallback invokes the cloud_siem.DescribeCustomizeRuleCount API asynchronously

func (*Client) DescribeCustomizeRuleCountWithChan added in v1.62.595

func (client *Client) DescribeCustomizeRuleCountWithChan(request *DescribeCustomizeRuleCountRequest) (<-chan *DescribeCustomizeRuleCountResponse, <-chan error)

DescribeCustomizeRuleCountWithChan invokes the cloud_siem.DescribeCustomizeRuleCount API asynchronously

func (*Client) DescribeCustomizeRuleTest added in v1.62.595

func (client *Client) DescribeCustomizeRuleTest(request *DescribeCustomizeRuleTestRequest) (response *DescribeCustomizeRuleTestResponse, err error)

DescribeCustomizeRuleTest invokes the cloud_siem.DescribeCustomizeRuleTest API synchronously

func (*Client) DescribeCustomizeRuleTestHistogram added in v1.62.595

func (client *Client) DescribeCustomizeRuleTestHistogram(request *DescribeCustomizeRuleTestHistogramRequest) (response *DescribeCustomizeRuleTestHistogramResponse, err error)

DescribeCustomizeRuleTestHistogram invokes the cloud_siem.DescribeCustomizeRuleTestHistogram API synchronously

func (*Client) DescribeCustomizeRuleTestHistogramWithCallback added in v1.62.595

func (client *Client) DescribeCustomizeRuleTestHistogramWithCallback(request *DescribeCustomizeRuleTestHistogramRequest, callback func(response *DescribeCustomizeRuleTestHistogramResponse, err error)) <-chan int

DescribeCustomizeRuleTestHistogramWithCallback invokes the cloud_siem.DescribeCustomizeRuleTestHistogram API asynchronously

func (*Client) DescribeCustomizeRuleTestHistogramWithChan added in v1.62.595

func (client *Client) DescribeCustomizeRuleTestHistogramWithChan(request *DescribeCustomizeRuleTestHistogramRequest) (<-chan *DescribeCustomizeRuleTestHistogramResponse, <-chan error)

DescribeCustomizeRuleTestHistogramWithChan invokes the cloud_siem.DescribeCustomizeRuleTestHistogram API asynchronously

func (*Client) DescribeCustomizeRuleTestWithCallback added in v1.62.595

func (client *Client) DescribeCustomizeRuleTestWithCallback(request *DescribeCustomizeRuleTestRequest, callback func(response *DescribeCustomizeRuleTestResponse, err error)) <-chan int

DescribeCustomizeRuleTestWithCallback invokes the cloud_siem.DescribeCustomizeRuleTest API asynchronously

func (*Client) DescribeCustomizeRuleTestWithChan added in v1.62.595

func (client *Client) DescribeCustomizeRuleTestWithChan(request *DescribeCustomizeRuleTestRequest) (<-chan *DescribeCustomizeRuleTestResponse, <-chan error)

DescribeCustomizeRuleTestWithChan invokes the cloud_siem.DescribeCustomizeRuleTest API asynchronously

func (*Client) DescribeCustomizeRuleWithCallback added in v1.62.595

func (client *Client) DescribeCustomizeRuleWithCallback(request *DescribeCustomizeRuleRequest, callback func(response *DescribeCustomizeRuleResponse, err error)) <-chan int

DescribeCustomizeRuleWithCallback invokes the cloud_siem.DescribeCustomizeRule API asynchronously

func (*Client) DescribeCustomizeRuleWithChan added in v1.62.595

func (client *Client) DescribeCustomizeRuleWithChan(request *DescribeCustomizeRuleRequest) (<-chan *DescribeCustomizeRuleResponse, <-chan error)

DescribeCustomizeRuleWithChan invokes the cloud_siem.DescribeCustomizeRule API asynchronously

func (*Client) DescribeDisposeAndPlaybook added in v1.62.595

func (client *Client) DescribeDisposeAndPlaybook(request *DescribeDisposeAndPlaybookRequest) (response *DescribeDisposeAndPlaybookResponse, err error)

DescribeDisposeAndPlaybook invokes the cloud_siem.DescribeDisposeAndPlaybook API synchronously

func (*Client) DescribeDisposeAndPlaybookWithCallback added in v1.62.595

func (client *Client) DescribeDisposeAndPlaybookWithCallback(request *DescribeDisposeAndPlaybookRequest, callback func(response *DescribeDisposeAndPlaybookResponse, err error)) <-chan int

DescribeDisposeAndPlaybookWithCallback invokes the cloud_siem.DescribeDisposeAndPlaybook API asynchronously

func (*Client) DescribeDisposeAndPlaybookWithChan added in v1.62.595

func (client *Client) DescribeDisposeAndPlaybookWithChan(request *DescribeDisposeAndPlaybookRequest) (<-chan *DescribeDisposeAndPlaybookResponse, <-chan error)

DescribeDisposeAndPlaybookWithChan invokes the cloud_siem.DescribeDisposeAndPlaybook API asynchronously

func (*Client) DescribeDisposeStrategyPlaybook added in v1.62.595

func (client *Client) DescribeDisposeStrategyPlaybook(request *DescribeDisposeStrategyPlaybookRequest) (response *DescribeDisposeStrategyPlaybookResponse, err error)

DescribeDisposeStrategyPlaybook invokes the cloud_siem.DescribeDisposeStrategyPlaybook API synchronously

func (*Client) DescribeDisposeStrategyPlaybookWithCallback added in v1.62.595

func (client *Client) DescribeDisposeStrategyPlaybookWithCallback(request *DescribeDisposeStrategyPlaybookRequest, callback func(response *DescribeDisposeStrategyPlaybookResponse, err error)) <-chan int

DescribeDisposeStrategyPlaybookWithCallback invokes the cloud_siem.DescribeDisposeStrategyPlaybook API asynchronously

func (*Client) DescribeDisposeStrategyPlaybookWithChan added in v1.62.595

func (client *Client) DescribeDisposeStrategyPlaybookWithChan(request *DescribeDisposeStrategyPlaybookRequest) (<-chan *DescribeDisposeStrategyPlaybookResponse, <-chan error)

DescribeDisposeStrategyPlaybookWithChan invokes the cloud_siem.DescribeDisposeStrategyPlaybook API asynchronously

func (*Client) DescribeEntityInfo added in v1.62.595

func (client *Client) DescribeEntityInfo(request *DescribeEntityInfoRequest) (response *DescribeEntityInfoResponse, err error)

DescribeEntityInfo invokes the cloud_siem.DescribeEntityInfo API synchronously

func (*Client) DescribeEntityInfoWithCallback added in v1.62.595

func (client *Client) DescribeEntityInfoWithCallback(request *DescribeEntityInfoRequest, callback func(response *DescribeEntityInfoResponse, err error)) <-chan int

DescribeEntityInfoWithCallback invokes the cloud_siem.DescribeEntityInfo API asynchronously

func (*Client) DescribeEntityInfoWithChan added in v1.62.595

func (client *Client) DescribeEntityInfoWithChan(request *DescribeEntityInfoRequest) (<-chan *DescribeEntityInfoResponse, <-chan error)

DescribeEntityInfoWithChan invokes the cloud_siem.DescribeEntityInfo API asynchronously

func (*Client) DescribeEventCountByThreatLevel added in v1.62.595

func (client *Client) DescribeEventCountByThreatLevel(request *DescribeEventCountByThreatLevelRequest) (response *DescribeEventCountByThreatLevelResponse, err error)

DescribeEventCountByThreatLevel invokes the cloud_siem.DescribeEventCountByThreatLevel API synchronously

func (*Client) DescribeEventCountByThreatLevelWithCallback added in v1.62.595

func (client *Client) DescribeEventCountByThreatLevelWithCallback(request *DescribeEventCountByThreatLevelRequest, callback func(response *DescribeEventCountByThreatLevelResponse, err error)) <-chan int

DescribeEventCountByThreatLevelWithCallback invokes the cloud_siem.DescribeEventCountByThreatLevel API asynchronously

func (*Client) DescribeEventCountByThreatLevelWithChan added in v1.62.595

func (client *Client) DescribeEventCountByThreatLevelWithChan(request *DescribeEventCountByThreatLevelRequest) (<-chan *DescribeEventCountByThreatLevelResponse, <-chan error)

DescribeEventCountByThreatLevelWithChan invokes the cloud_siem.DescribeEventCountByThreatLevel API asynchronously

func (*Client) DescribeEventDispose added in v1.62.595

func (client *Client) DescribeEventDispose(request *DescribeEventDisposeRequest) (response *DescribeEventDisposeResponse, err error)

DescribeEventDispose invokes the cloud_siem.DescribeEventDispose API synchronously

func (*Client) DescribeEventDisposeWithCallback added in v1.62.595

func (client *Client) DescribeEventDisposeWithCallback(request *DescribeEventDisposeRequest, callback func(response *DescribeEventDisposeResponse, err error)) <-chan int

DescribeEventDisposeWithCallback invokes the cloud_siem.DescribeEventDispose API asynchronously

func (*Client) DescribeEventDisposeWithChan added in v1.62.595

func (client *Client) DescribeEventDisposeWithChan(request *DescribeEventDisposeRequest) (<-chan *DescribeEventDisposeResponse, <-chan error)

DescribeEventDisposeWithChan invokes the cloud_siem.DescribeEventDispose API asynchronously

func (*Client) DescribeJobStatus added in v1.62.595

func (client *Client) DescribeJobStatus(request *DescribeJobStatusRequest) (response *DescribeJobStatusResponse, err error)

DescribeJobStatus invokes the cloud_siem.DescribeJobStatus API synchronously

func (*Client) DescribeJobStatusWithCallback added in v1.62.595

func (client *Client) DescribeJobStatusWithCallback(request *DescribeJobStatusRequest, callback func(response *DescribeJobStatusResponse, err error)) <-chan int

DescribeJobStatusWithCallback invokes the cloud_siem.DescribeJobStatus API asynchronously

func (*Client) DescribeJobStatusWithChan added in v1.62.595

func (client *Client) DescribeJobStatusWithChan(request *DescribeJobStatusRequest) (<-chan *DescribeJobStatusResponse, <-chan error)

DescribeJobStatusWithChan invokes the cloud_siem.DescribeJobStatus API asynchronously

func (*Client) DescribeLogFields added in v1.62.595

func (client *Client) DescribeLogFields(request *DescribeLogFieldsRequest) (response *DescribeLogFieldsResponse, err error)

DescribeLogFields invokes the cloud_siem.DescribeLogFields API synchronously

func (*Client) DescribeLogFieldsWithCallback added in v1.62.595

func (client *Client) DescribeLogFieldsWithCallback(request *DescribeLogFieldsRequest, callback func(response *DescribeLogFieldsResponse, err error)) <-chan int

DescribeLogFieldsWithCallback invokes the cloud_siem.DescribeLogFields API asynchronously

func (*Client) DescribeLogFieldsWithChan added in v1.62.595

func (client *Client) DescribeLogFieldsWithChan(request *DescribeLogFieldsRequest) (<-chan *DescribeLogFieldsResponse, <-chan error)

DescribeLogFieldsWithChan invokes the cloud_siem.DescribeLogFields API asynchronously

func (*Client) DescribeLogSource added in v1.62.595

func (client *Client) DescribeLogSource(request *DescribeLogSourceRequest) (response *DescribeLogSourceResponse, err error)

DescribeLogSource invokes the cloud_siem.DescribeLogSource API synchronously

func (*Client) DescribeLogSourceWithCallback added in v1.62.595

func (client *Client) DescribeLogSourceWithCallback(request *DescribeLogSourceRequest, callback func(response *DescribeLogSourceResponse, err error)) <-chan int

DescribeLogSourceWithCallback invokes the cloud_siem.DescribeLogSource API asynchronously

func (*Client) DescribeLogSourceWithChan added in v1.62.595

func (client *Client) DescribeLogSourceWithChan(request *DescribeLogSourceRequest) (<-chan *DescribeLogSourceResponse, <-chan error)

DescribeLogSourceWithChan invokes the cloud_siem.DescribeLogSource API asynchronously

func (*Client) DescribeLogStore added in v1.62.595

func (client *Client) DescribeLogStore(request *DescribeLogStoreRequest) (response *DescribeLogStoreResponse, err error)

DescribeLogStore invokes the cloud_siem.DescribeLogStore API synchronously

func (*Client) DescribeLogStoreWithCallback added in v1.62.595

func (client *Client) DescribeLogStoreWithCallback(request *DescribeLogStoreRequest, callback func(response *DescribeLogStoreResponse, err error)) <-chan int

DescribeLogStoreWithCallback invokes the cloud_siem.DescribeLogStore API asynchronously

func (*Client) DescribeLogStoreWithChan added in v1.62.595

func (client *Client) DescribeLogStoreWithChan(request *DescribeLogStoreRequest) (<-chan *DescribeLogStoreResponse, <-chan error)

DescribeLogStoreWithChan invokes the cloud_siem.DescribeLogStore API asynchronously

func (*Client) DescribeLogType added in v1.62.595

func (client *Client) DescribeLogType(request *DescribeLogTypeRequest) (response *DescribeLogTypeResponse, err error)

DescribeLogType invokes the cloud_siem.DescribeLogType API synchronously

func (*Client) DescribeLogTypeWithCallback added in v1.62.595

func (client *Client) DescribeLogTypeWithCallback(request *DescribeLogTypeRequest, callback func(response *DescribeLogTypeResponse, err error)) <-chan int

DescribeLogTypeWithCallback invokes the cloud_siem.DescribeLogType API asynchronously

func (*Client) DescribeLogTypeWithChan added in v1.62.595

func (client *Client) DescribeLogTypeWithChan(request *DescribeLogTypeRequest) (<-chan *DescribeLogTypeResponse, <-chan error)

DescribeLogTypeWithChan invokes the cloud_siem.DescribeLogType API asynchronously

func (*Client) DescribeOperators added in v1.62.595

func (client *Client) DescribeOperators(request *DescribeOperatorsRequest) (response *DescribeOperatorsResponse, err error)

DescribeOperators invokes the cloud_siem.DescribeOperators API synchronously

func (*Client) DescribeOperatorsWithCallback added in v1.62.595

func (client *Client) DescribeOperatorsWithCallback(request *DescribeOperatorsRequest, callback func(response *DescribeOperatorsResponse, err error)) <-chan int

DescribeOperatorsWithCallback invokes the cloud_siem.DescribeOperators API asynchronously

func (*Client) DescribeOperatorsWithChan added in v1.62.595

func (client *Client) DescribeOperatorsWithChan(request *DescribeOperatorsRequest) (<-chan *DescribeOperatorsResponse, <-chan error)

DescribeOperatorsWithChan invokes the cloud_siem.DescribeOperators API asynchronously

func (*Client) DescribeScopeUsers added in v1.62.595

func (client *Client) DescribeScopeUsers(request *DescribeScopeUsersRequest) (response *DescribeScopeUsersResponse, err error)

DescribeScopeUsers invokes the cloud_siem.DescribeScopeUsers API synchronously

func (*Client) DescribeScopeUsersWithCallback added in v1.62.595

func (client *Client) DescribeScopeUsersWithCallback(request *DescribeScopeUsersRequest, callback func(response *DescribeScopeUsersResponse, err error)) <-chan int

DescribeScopeUsersWithCallback invokes the cloud_siem.DescribeScopeUsers API asynchronously

func (*Client) DescribeScopeUsersWithChan added in v1.62.595

func (client *Client) DescribeScopeUsersWithChan(request *DescribeScopeUsersRequest) (<-chan *DescribeScopeUsersResponse, <-chan error)

DescribeScopeUsersWithChan invokes the cloud_siem.DescribeScopeUsers API asynchronously

func (*Client) DescribeStorage added in v1.62.595

func (client *Client) DescribeStorage(request *DescribeStorageRequest) (response *DescribeStorageResponse, err error)

DescribeStorage invokes the cloud_siem.DescribeStorage API synchronously

func (*Client) DescribeStorageWithCallback added in v1.62.595

func (client *Client) DescribeStorageWithCallback(request *DescribeStorageRequest, callback func(response *DescribeStorageResponse, err error)) <-chan int

DescribeStorageWithCallback invokes the cloud_siem.DescribeStorage API asynchronously

func (*Client) DescribeStorageWithChan added in v1.62.595

func (client *Client) DescribeStorageWithChan(request *DescribeStorageRequest) (<-chan *DescribeStorageResponse, <-chan error)

DescribeStorageWithChan invokes the cloud_siem.DescribeStorage API asynchronously

func (*Client) DescribeWafScope added in v1.62.595

func (client *Client) DescribeWafScope(request *DescribeWafScopeRequest) (response *DescribeWafScopeResponse, err error)

DescribeWafScope invokes the cloud_siem.DescribeWafScope API synchronously

func (*Client) DescribeWafScopeWithCallback added in v1.62.595

func (client *Client) DescribeWafScopeWithCallback(request *DescribeWafScopeRequest, callback func(response *DescribeWafScopeResponse, err error)) <-chan int

DescribeWafScopeWithCallback invokes the cloud_siem.DescribeWafScope API asynchronously

func (*Client) DescribeWafScopeWithChan added in v1.62.595

func (client *Client) DescribeWafScopeWithChan(request *DescribeWafScopeRequest) (<-chan *DescribeWafScopeResponse, <-chan error)

DescribeWafScopeWithChan invokes the cloud_siem.DescribeWafScope API asynchronously

func (*Client) DoQuickField added in v1.62.595

func (client *Client) DoQuickField(request *DoQuickFieldRequest) (response *DoQuickFieldResponse, err error)

DoQuickField invokes the cloud_siem.DoQuickField API synchronously

func (*Client) DoQuickFieldWithCallback added in v1.62.595

func (client *Client) DoQuickFieldWithCallback(request *DoQuickFieldRequest, callback func(response *DoQuickFieldResponse, err error)) <-chan int

DoQuickFieldWithCallback invokes the cloud_siem.DoQuickField API asynchronously

func (*Client) DoQuickFieldWithChan added in v1.62.595

func (client *Client) DoQuickFieldWithChan(request *DoQuickFieldRequest) (<-chan *DoQuickFieldResponse, <-chan error)

DoQuickFieldWithChan invokes the cloud_siem.DoQuickField API asynchronously

func (*Client) DoSelfDelegate added in v1.62.595

func (client *Client) DoSelfDelegate(request *DoSelfDelegateRequest) (response *DoSelfDelegateResponse, err error)

DoSelfDelegate invokes the cloud_siem.DoSelfDelegate API synchronously

func (*Client) DoSelfDelegateWithCallback added in v1.62.595

func (client *Client) DoSelfDelegateWithCallback(request *DoSelfDelegateRequest, callback func(response *DoSelfDelegateResponse, err error)) <-chan int

DoSelfDelegateWithCallback invokes the cloud_siem.DoSelfDelegate API asynchronously

func (*Client) DoSelfDelegateWithChan added in v1.62.595

func (client *Client) DoSelfDelegateWithChan(request *DoSelfDelegateRequest) (<-chan *DoSelfDelegateResponse, <-chan error)

DoSelfDelegateWithChan invokes the cloud_siem.DoSelfDelegate API asynchronously

func (*Client) GetCapacity added in v1.62.595

func (client *Client) GetCapacity(request *GetCapacityRequest) (response *GetCapacityResponse, err error)

GetCapacity invokes the cloud_siem.GetCapacity API synchronously

func (*Client) GetCapacityWithCallback added in v1.62.595

func (client *Client) GetCapacityWithCallback(request *GetCapacityRequest, callback func(response *GetCapacityResponse, err error)) <-chan int

GetCapacityWithCallback invokes the cloud_siem.GetCapacity API asynchronously

func (*Client) GetCapacityWithChan added in v1.62.595

func (client *Client) GetCapacityWithChan(request *GetCapacityRequest) (<-chan *GetCapacityResponse, <-chan error)

GetCapacityWithChan invokes the cloud_siem.GetCapacity API asynchronously

func (*Client) GetHistograms added in v1.62.595

func (client *Client) GetHistograms(request *GetHistogramsRequest) (response *GetHistogramsResponse, err error)

GetHistograms invokes the cloud_siem.GetHistograms API synchronously

func (*Client) GetHistogramsWithCallback added in v1.62.595

func (client *Client) GetHistogramsWithCallback(request *GetHistogramsRequest, callback func(response *GetHistogramsResponse, err error)) <-chan int

GetHistogramsWithCallback invokes the cloud_siem.GetHistograms API asynchronously

func (*Client) GetHistogramsWithChan added in v1.62.595

func (client *Client) GetHistogramsWithChan(request *GetHistogramsRequest) (<-chan *GetHistogramsResponse, <-chan error)

GetHistogramsWithChan invokes the cloud_siem.GetHistograms API asynchronously

func (*Client) GetLogs added in v1.62.595

func (client *Client) GetLogs(request *GetLogsRequest) (response *GetLogsResponse, err error)

GetLogs invokes the cloud_siem.GetLogs API synchronously

func (*Client) GetLogsWithCallback added in v1.62.595

func (client *Client) GetLogsWithCallback(request *GetLogsRequest, callback func(response *GetLogsResponse, err error)) <-chan int

GetLogsWithCallback invokes the cloud_siem.GetLogs API asynchronously

func (*Client) GetLogsWithChan added in v1.62.595

func (client *Client) GetLogsWithChan(request *GetLogsRequest) (<-chan *GetLogsResponse, <-chan error)

GetLogsWithChan invokes the cloud_siem.GetLogs API asynchronously

func (*Client) GetQuickQuery added in v1.62.595

func (client *Client) GetQuickQuery(request *GetQuickQueryRequest) (response *GetQuickQueryResponse, err error)

GetQuickQuery invokes the cloud_siem.GetQuickQuery API synchronously

func (*Client) GetQuickQueryWithCallback added in v1.62.595

func (client *Client) GetQuickQueryWithCallback(request *GetQuickQueryRequest, callback func(response *GetQuickQueryResponse, err error)) <-chan int

GetQuickQueryWithCallback invokes the cloud_siem.GetQuickQuery API asynchronously

func (*Client) GetQuickQueryWithChan added in v1.62.595

func (client *Client) GetQuickQueryWithChan(request *GetQuickQueryRequest) (<-chan *GetQuickQueryResponse, <-chan error)

GetQuickQueryWithChan invokes the cloud_siem.GetQuickQuery API asynchronously

func (*Client) GetStorage added in v1.62.595

func (client *Client) GetStorage(request *GetStorageRequest) (response *GetStorageResponse, err error)

GetStorage invokes the cloud_siem.GetStorage API synchronously

func (*Client) GetStorageWithCallback added in v1.62.595

func (client *Client) GetStorageWithCallback(request *GetStorageRequest, callback func(response *GetStorageResponse, err error)) <-chan int

GetStorageWithCallback invokes the cloud_siem.GetStorage API asynchronously

func (*Client) GetStorageWithChan added in v1.62.595

func (client *Client) GetStorageWithChan(request *GetStorageRequest) (<-chan *GetStorageResponse, <-chan error)

GetStorageWithChan invokes the cloud_siem.GetStorage API asynchronously

func (*Client) ListAutomateResponseConfigs added in v1.62.595

func (client *Client) ListAutomateResponseConfigs(request *ListAutomateResponseConfigsRequest) (response *ListAutomateResponseConfigsResponse, err error)

ListAutomateResponseConfigs invokes the cloud_siem.ListAutomateResponseConfigs API synchronously

func (*Client) ListAutomateResponseConfigsWithCallback added in v1.62.595

func (client *Client) ListAutomateResponseConfigsWithCallback(request *ListAutomateResponseConfigsRequest, callback func(response *ListAutomateResponseConfigsResponse, err error)) <-chan int

ListAutomateResponseConfigsWithCallback invokes the cloud_siem.ListAutomateResponseConfigs API asynchronously

func (*Client) ListAutomateResponseConfigsWithChan added in v1.62.595

func (client *Client) ListAutomateResponseConfigsWithChan(request *ListAutomateResponseConfigsRequest) (<-chan *ListAutomateResponseConfigsResponse, <-chan error)

ListAutomateResponseConfigsWithChan invokes the cloud_siem.ListAutomateResponseConfigs API asynchronously

func (*Client) ListCloudSiemCustomizeRules added in v1.62.595

func (client *Client) ListCloudSiemCustomizeRules(request *ListCloudSiemCustomizeRulesRequest) (response *ListCloudSiemCustomizeRulesResponse, err error)

ListCloudSiemCustomizeRules invokes the cloud_siem.ListCloudSiemCustomizeRules API synchronously

func (*Client) ListCloudSiemCustomizeRulesWithCallback added in v1.62.595

func (client *Client) ListCloudSiemCustomizeRulesWithCallback(request *ListCloudSiemCustomizeRulesRequest, callback func(response *ListCloudSiemCustomizeRulesResponse, err error)) <-chan int

ListCloudSiemCustomizeRulesWithCallback invokes the cloud_siem.ListCloudSiemCustomizeRules API asynchronously

func (*Client) ListCloudSiemCustomizeRulesWithChan added in v1.62.595

func (client *Client) ListCloudSiemCustomizeRulesWithChan(request *ListCloudSiemCustomizeRulesRequest) (<-chan *ListCloudSiemCustomizeRulesResponse, <-chan error)

ListCloudSiemCustomizeRulesWithChan invokes the cloud_siem.ListCloudSiemCustomizeRules API asynchronously

func (*Client) ListCloudSiemPredefinedRules added in v1.62.595

func (client *Client) ListCloudSiemPredefinedRules(request *ListCloudSiemPredefinedRulesRequest) (response *ListCloudSiemPredefinedRulesResponse, err error)

ListCloudSiemPredefinedRules invokes the cloud_siem.ListCloudSiemPredefinedRules API synchronously

func (*Client) ListCloudSiemPredefinedRulesWithCallback added in v1.62.595

func (client *Client) ListCloudSiemPredefinedRulesWithCallback(request *ListCloudSiemPredefinedRulesRequest, callback func(response *ListCloudSiemPredefinedRulesResponse, err error)) <-chan int

ListCloudSiemPredefinedRulesWithCallback invokes the cloud_siem.ListCloudSiemPredefinedRules API asynchronously

func (*Client) ListCloudSiemPredefinedRulesWithChan added in v1.62.595

func (client *Client) ListCloudSiemPredefinedRulesWithChan(request *ListCloudSiemPredefinedRulesRequest) (<-chan *ListCloudSiemPredefinedRulesResponse, <-chan error)

ListCloudSiemPredefinedRulesWithChan invokes the cloud_siem.ListCloudSiemPredefinedRules API asynchronously

func (*Client) ListCustomizeRuleTestResult added in v1.62.595

func (client *Client) ListCustomizeRuleTestResult(request *ListCustomizeRuleTestResultRequest) (response *ListCustomizeRuleTestResultResponse, err error)

ListCustomizeRuleTestResult invokes the cloud_siem.ListCustomizeRuleTestResult API synchronously

func (*Client) ListCustomizeRuleTestResultWithCallback added in v1.62.595

func (client *Client) ListCustomizeRuleTestResultWithCallback(request *ListCustomizeRuleTestResultRequest, callback func(response *ListCustomizeRuleTestResultResponse, err error)) <-chan int

ListCustomizeRuleTestResultWithCallback invokes the cloud_siem.ListCustomizeRuleTestResult API asynchronously

func (*Client) ListCustomizeRuleTestResultWithChan added in v1.62.595

func (client *Client) ListCustomizeRuleTestResultWithChan(request *ListCustomizeRuleTestResultRequest) (<-chan *ListCustomizeRuleTestResultResponse, <-chan error)

ListCustomizeRuleTestResultWithChan invokes the cloud_siem.ListCustomizeRuleTestResult API asynchronously

func (*Client) ListDelivery added in v1.62.595

func (client *Client) ListDelivery(request *ListDeliveryRequest) (response *ListDeliveryResponse, err error)

ListDelivery invokes the cloud_siem.ListDelivery API synchronously

func (*Client) ListDeliveryWithCallback added in v1.62.595

func (client *Client) ListDeliveryWithCallback(request *ListDeliveryRequest, callback func(response *ListDeliveryResponse, err error)) <-chan int

ListDeliveryWithCallback invokes the cloud_siem.ListDelivery API asynchronously

func (*Client) ListDeliveryWithChan added in v1.62.595

func (client *Client) ListDeliveryWithChan(request *ListDeliveryRequest) (<-chan *ListDeliveryResponse, <-chan error)

ListDeliveryWithChan invokes the cloud_siem.ListDelivery API asynchronously

func (*Client) ListDisposeStrategy added in v1.62.595

func (client *Client) ListDisposeStrategy(request *ListDisposeStrategyRequest) (response *ListDisposeStrategyResponse, err error)

ListDisposeStrategy invokes the cloud_siem.ListDisposeStrategy API synchronously

func (*Client) ListDisposeStrategyWithCallback added in v1.62.595

func (client *Client) ListDisposeStrategyWithCallback(request *ListDisposeStrategyRequest, callback func(response *ListDisposeStrategyResponse, err error)) <-chan int

ListDisposeStrategyWithCallback invokes the cloud_siem.ListDisposeStrategy API asynchronously

func (*Client) ListDisposeStrategyWithChan added in v1.62.595

func (client *Client) ListDisposeStrategyWithChan(request *ListDisposeStrategyRequest) (<-chan *ListDisposeStrategyResponse, <-chan error)

ListDisposeStrategyWithChan invokes the cloud_siem.ListDisposeStrategy API asynchronously

func (*Client) ListOperation added in v1.62.595

func (client *Client) ListOperation(request *ListOperationRequest) (response *ListOperationResponse, err error)

ListOperation invokes the cloud_siem.ListOperation API synchronously

func (*Client) ListOperationWithCallback added in v1.62.595

func (client *Client) ListOperationWithCallback(request *ListOperationRequest, callback func(response *ListOperationResponse, err error)) <-chan int

ListOperationWithCallback invokes the cloud_siem.ListOperation API asynchronously

func (*Client) ListOperationWithChan added in v1.62.595

func (client *Client) ListOperationWithChan(request *ListOperationRequest) (<-chan *ListOperationResponse, <-chan error)

ListOperationWithChan invokes the cloud_siem.ListOperation API asynchronously

func (*Client) ListQuickQuery added in v1.62.595

func (client *Client) ListQuickQuery(request *ListQuickQueryRequest) (response *ListQuickQueryResponse, err error)

ListQuickQuery invokes the cloud_siem.ListQuickQuery API synchronously

func (*Client) ListQuickQueryWithCallback added in v1.62.595

func (client *Client) ListQuickQueryWithCallback(request *ListQuickQueryRequest, callback func(response *ListQuickQueryResponse, err error)) <-chan int

ListQuickQueryWithCallback invokes the cloud_siem.ListQuickQuery API asynchronously

func (*Client) ListQuickQueryWithChan added in v1.62.595

func (client *Client) ListQuickQueryWithChan(request *ListQuickQueryRequest) (<-chan *ListQuickQueryResponse, <-chan error)

ListQuickQueryWithChan invokes the cloud_siem.ListQuickQuery API asynchronously

func (*Client) OpenDelivery added in v1.62.595

func (client *Client) OpenDelivery(request *OpenDeliveryRequest) (response *OpenDeliveryResponse, err error)

OpenDelivery invokes the cloud_siem.OpenDelivery API synchronously

func (*Client) OpenDeliveryWithCallback added in v1.62.595

func (client *Client) OpenDeliveryWithCallback(request *OpenDeliveryRequest, callback func(response *OpenDeliveryResponse, err error)) <-chan int

OpenDeliveryWithCallback invokes the cloud_siem.OpenDelivery API asynchronously

func (*Client) OpenDeliveryWithChan added in v1.62.595

func (client *Client) OpenDeliveryWithChan(request *OpenDeliveryRequest) (<-chan *OpenDeliveryResponse, <-chan error)

OpenDeliveryWithChan invokes the cloud_siem.OpenDelivery API asynchronously

func (*Client) PostAutomateResponseConfig added in v1.62.595

func (client *Client) PostAutomateResponseConfig(request *PostAutomateResponseConfigRequest) (response *PostAutomateResponseConfigResponse, err error)

PostAutomateResponseConfig invokes the cloud_siem.PostAutomateResponseConfig API synchronously

func (*Client) PostAutomateResponseConfigWithCallback added in v1.62.595

func (client *Client) PostAutomateResponseConfigWithCallback(request *PostAutomateResponseConfigRequest, callback func(response *PostAutomateResponseConfigResponse, err error)) <-chan int

PostAutomateResponseConfigWithCallback invokes the cloud_siem.PostAutomateResponseConfig API asynchronously

func (*Client) PostAutomateResponseConfigWithChan added in v1.62.595

func (client *Client) PostAutomateResponseConfigWithChan(request *PostAutomateResponseConfigRequest) (<-chan *PostAutomateResponseConfigResponse, <-chan error)

PostAutomateResponseConfigWithChan invokes the cloud_siem.PostAutomateResponseConfig API asynchronously

func (*Client) PostCustomizeRule added in v1.62.595

func (client *Client) PostCustomizeRule(request *PostCustomizeRuleRequest) (response *PostCustomizeRuleResponse, err error)

PostCustomizeRule invokes the cloud_siem.PostCustomizeRule API synchronously

func (*Client) PostCustomizeRuleTest added in v1.62.595

func (client *Client) PostCustomizeRuleTest(request *PostCustomizeRuleTestRequest) (response *PostCustomizeRuleTestResponse, err error)

PostCustomizeRuleTest invokes the cloud_siem.PostCustomizeRuleTest API synchronously

func (*Client) PostCustomizeRuleTestWithCallback added in v1.62.595

func (client *Client) PostCustomizeRuleTestWithCallback(request *PostCustomizeRuleTestRequest, callback func(response *PostCustomizeRuleTestResponse, err error)) <-chan int

PostCustomizeRuleTestWithCallback invokes the cloud_siem.PostCustomizeRuleTest API asynchronously

func (*Client) PostCustomizeRuleTestWithChan added in v1.62.595

func (client *Client) PostCustomizeRuleTestWithChan(request *PostCustomizeRuleTestRequest) (<-chan *PostCustomizeRuleTestResponse, <-chan error)

PostCustomizeRuleTestWithChan invokes the cloud_siem.PostCustomizeRuleTest API asynchronously

func (*Client) PostCustomizeRuleWithCallback added in v1.62.595

func (client *Client) PostCustomizeRuleWithCallback(request *PostCustomizeRuleRequest, callback func(response *PostCustomizeRuleResponse, err error)) <-chan int

PostCustomizeRuleWithCallback invokes the cloud_siem.PostCustomizeRule API asynchronously

func (*Client) PostCustomizeRuleWithChan added in v1.62.595

func (client *Client) PostCustomizeRuleWithChan(request *PostCustomizeRuleRequest) (<-chan *PostCustomizeRuleResponse, <-chan error)

PostCustomizeRuleWithChan invokes the cloud_siem.PostCustomizeRule API asynchronously

func (*Client) PostEventDisposeAndWhiteruleList added in v1.62.595

func (client *Client) PostEventDisposeAndWhiteruleList(request *PostEventDisposeAndWhiteruleListRequest) (response *PostEventDisposeAndWhiteruleListResponse, err error)

PostEventDisposeAndWhiteruleList invokes the cloud_siem.PostEventDisposeAndWhiteruleList API synchronously

func (*Client) PostEventDisposeAndWhiteruleListWithCallback added in v1.62.595

func (client *Client) PostEventDisposeAndWhiteruleListWithCallback(request *PostEventDisposeAndWhiteruleListRequest, callback func(response *PostEventDisposeAndWhiteruleListResponse, err error)) <-chan int

PostEventDisposeAndWhiteruleListWithCallback invokes the cloud_siem.PostEventDisposeAndWhiteruleList API asynchronously

func (*Client) PostEventDisposeAndWhiteruleListWithChan added in v1.62.595

func (client *Client) PostEventDisposeAndWhiteruleListWithChan(request *PostEventDisposeAndWhiteruleListRequest) (<-chan *PostEventDisposeAndWhiteruleListResponse, <-chan error)

PostEventDisposeAndWhiteruleListWithChan invokes the cloud_siem.PostEventDisposeAndWhiteruleList API asynchronously

func (*Client) PostEventWhiteruleList added in v1.62.595

func (client *Client) PostEventWhiteruleList(request *PostEventWhiteruleListRequest) (response *PostEventWhiteruleListResponse, err error)

PostEventWhiteruleList invokes the cloud_siem.PostEventWhiteruleList API synchronously

func (*Client) PostEventWhiteruleListWithCallback added in v1.62.595

func (client *Client) PostEventWhiteruleListWithCallback(request *PostEventWhiteruleListRequest, callback func(response *PostEventWhiteruleListResponse, err error)) <-chan int

PostEventWhiteruleListWithCallback invokes the cloud_siem.PostEventWhiteruleList API asynchronously

func (*Client) PostEventWhiteruleListWithChan added in v1.62.595

func (client *Client) PostEventWhiteruleListWithChan(request *PostEventWhiteruleListRequest) (<-chan *PostEventWhiteruleListResponse, <-chan error)

PostEventWhiteruleListWithChan invokes the cloud_siem.PostEventWhiteruleList API asynchronously

func (*Client) PostFinishCustomizeRuleTest added in v1.62.595

func (client *Client) PostFinishCustomizeRuleTest(request *PostFinishCustomizeRuleTestRequest) (response *PostFinishCustomizeRuleTestResponse, err error)

PostFinishCustomizeRuleTest invokes the cloud_siem.PostFinishCustomizeRuleTest API synchronously

func (*Client) PostFinishCustomizeRuleTestWithCallback added in v1.62.595

func (client *Client) PostFinishCustomizeRuleTestWithCallback(request *PostFinishCustomizeRuleTestRequest, callback func(response *PostFinishCustomizeRuleTestResponse, err error)) <-chan int

PostFinishCustomizeRuleTestWithCallback invokes the cloud_siem.PostFinishCustomizeRuleTest API asynchronously

func (*Client) PostFinishCustomizeRuleTestWithChan added in v1.62.595

func (client *Client) PostFinishCustomizeRuleTestWithChan(request *PostFinishCustomizeRuleTestRequest) (<-chan *PostFinishCustomizeRuleTestResponse, <-chan error)

PostFinishCustomizeRuleTestWithChan invokes the cloud_siem.PostFinishCustomizeRuleTest API asynchronously

func (*Client) PostRuleStatusChange added in v1.62.595

func (client *Client) PostRuleStatusChange(request *PostRuleStatusChangeRequest) (response *PostRuleStatusChangeResponse, err error)

PostRuleStatusChange invokes the cloud_siem.PostRuleStatusChange API synchronously

func (*Client) PostRuleStatusChangeWithCallback added in v1.62.595

func (client *Client) PostRuleStatusChangeWithCallback(request *PostRuleStatusChangeRequest, callback func(response *PostRuleStatusChangeResponse, err error)) <-chan int

PostRuleStatusChangeWithCallback invokes the cloud_siem.PostRuleStatusChange API asynchronously

func (*Client) PostRuleStatusChangeWithChan added in v1.62.595

func (client *Client) PostRuleStatusChangeWithChan(request *PostRuleStatusChangeRequest) (<-chan *PostRuleStatusChangeResponse, <-chan error)

PostRuleStatusChangeWithChan invokes the cloud_siem.PostRuleStatusChange API asynchronously

func (*Client) RestoreCapacity added in v1.62.595

func (client *Client) RestoreCapacity(request *RestoreCapacityRequest) (response *RestoreCapacityResponse, err error)

RestoreCapacity invokes the cloud_siem.RestoreCapacity API synchronously

func (*Client) RestoreCapacityWithCallback added in v1.62.595

func (client *Client) RestoreCapacityWithCallback(request *RestoreCapacityRequest, callback func(response *RestoreCapacityResponse, err error)) <-chan int

RestoreCapacityWithCallback invokes the cloud_siem.RestoreCapacity API asynchronously

func (*Client) RestoreCapacityWithChan added in v1.62.595

func (client *Client) RestoreCapacityWithChan(request *RestoreCapacityRequest) (<-chan *RestoreCapacityResponse, <-chan error)

RestoreCapacityWithChan invokes the cloud_siem.RestoreCapacity API asynchronously

func (*Client) SaveQuickQuery added in v1.62.595

func (client *Client) SaveQuickQuery(request *SaveQuickQueryRequest) (response *SaveQuickQueryResponse, err error)

SaveQuickQuery invokes the cloud_siem.SaveQuickQuery API synchronously

func (*Client) SaveQuickQueryWithCallback added in v1.62.595

func (client *Client) SaveQuickQueryWithCallback(request *SaveQuickQueryRequest, callback func(response *SaveQuickQueryResponse, err error)) <-chan int

SaveQuickQueryWithCallback invokes the cloud_siem.SaveQuickQuery API asynchronously

func (*Client) SaveQuickQueryWithChan added in v1.62.595

func (client *Client) SaveQuickQueryWithChan(request *SaveQuickQueryRequest) (<-chan *SaveQuickQueryResponse, <-chan error)

SaveQuickQueryWithChan invokes the cloud_siem.SaveQuickQuery API asynchronously

func (*Client) SetStorage added in v1.62.595

func (client *Client) SetStorage(request *SetStorageRequest) (response *SetStorageResponse, err error)

SetStorage invokes the cloud_siem.SetStorage API synchronously

func (*Client) SetStorageWithCallback added in v1.62.595

func (client *Client) SetStorageWithCallback(request *SetStorageRequest, callback func(response *SetStorageResponse, err error)) <-chan int

SetStorageWithCallback invokes the cloud_siem.SetStorage API asynchronously

func (*Client) SetStorageWithChan added in v1.62.595

func (client *Client) SetStorageWithChan(request *SetStorageRequest) (<-chan *SetStorageResponse, <-chan error)

SetStorageWithChan invokes the cloud_siem.SetStorage API asynchronously

func (*Client) ShowQuickAnalysis added in v1.62.595

func (client *Client) ShowQuickAnalysis(request *ShowQuickAnalysisRequest) (response *ShowQuickAnalysisResponse, err error)

ShowQuickAnalysis invokes the cloud_siem.ShowQuickAnalysis API synchronously

func (*Client) ShowQuickAnalysisWithCallback added in v1.62.595

func (client *Client) ShowQuickAnalysisWithCallback(request *ShowQuickAnalysisRequest, callback func(response *ShowQuickAnalysisResponse, err error)) <-chan int

ShowQuickAnalysisWithCallback invokes the cloud_siem.ShowQuickAnalysis API asynchronously

func (*Client) ShowQuickAnalysisWithChan added in v1.62.595

func (client *Client) ShowQuickAnalysisWithChan(request *ShowQuickAnalysisRequest) (<-chan *ShowQuickAnalysisResponse, <-chan error)

ShowQuickAnalysisWithChan invokes the cloud_siem.ShowQuickAnalysis API asynchronously

func (*Client) UpdateAutomateResponseConfigStatus added in v1.62.595

func (client *Client) UpdateAutomateResponseConfigStatus(request *UpdateAutomateResponseConfigStatusRequest) (response *UpdateAutomateResponseConfigStatusResponse, err error)

UpdateAutomateResponseConfigStatus invokes the cloud_siem.UpdateAutomateResponseConfigStatus API synchronously

func (*Client) UpdateAutomateResponseConfigStatusWithCallback added in v1.62.595

func (client *Client) UpdateAutomateResponseConfigStatusWithCallback(request *UpdateAutomateResponseConfigStatusRequest, callback func(response *UpdateAutomateResponseConfigStatusResponse, err error)) <-chan int

UpdateAutomateResponseConfigStatusWithCallback invokes the cloud_siem.UpdateAutomateResponseConfigStatus API asynchronously

func (*Client) UpdateAutomateResponseConfigStatusWithChan added in v1.62.595

func (client *Client) UpdateAutomateResponseConfigStatusWithChan(request *UpdateAutomateResponseConfigStatusRequest) (<-chan *UpdateAutomateResponseConfigStatusResponse, <-chan error)

UpdateAutomateResponseConfigStatusWithChan invokes the cloud_siem.UpdateAutomateResponseConfigStatus API asynchronously

func (*Client) UpdateWhiteRuleList added in v1.62.595

func (client *Client) UpdateWhiteRuleList(request *UpdateWhiteRuleListRequest) (response *UpdateWhiteRuleListResponse, err error)

UpdateWhiteRuleList invokes the cloud_siem.UpdateWhiteRuleList API synchronously

func (*Client) UpdateWhiteRuleListWithCallback added in v1.62.595

func (client *Client) UpdateWhiteRuleListWithCallback(request *UpdateWhiteRuleListRequest, callback func(response *UpdateWhiteRuleListResponse, err error)) <-chan int

UpdateWhiteRuleListWithCallback invokes the cloud_siem.UpdateWhiteRuleList API asynchronously

func (*Client) UpdateWhiteRuleListWithChan added in v1.62.595

func (client *Client) UpdateWhiteRuleListWithChan(request *UpdateWhiteRuleListRequest) (<-chan *UpdateWhiteRuleListResponse, <-chan error)

UpdateWhiteRuleListWithChan invokes the cloud_siem.UpdateWhiteRuleList API asynchronously

type CloseDeliveryRequest added in v1.62.595

type CloseDeliveryRequest struct {
	*requests.RpcRequest
	ProductCode string `position:"Body" name:"ProductCode"`
	LogCode     string `position:"Body" name:"LogCode"`
}

CloseDeliveryRequest is the request struct for api CloseDelivery

func CreateCloseDeliveryRequest added in v1.62.595

func CreateCloseDeliveryRequest() (request *CloseDeliveryRequest)

CreateCloseDeliveryRequest creates a request to invoke CloseDelivery API

type CloseDeliveryResponse added in v1.62.595

type CloseDeliveryResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

CloseDeliveryResponse is the response struct for api CloseDelivery

func CreateCloseDeliveryResponse added in v1.62.595

func CreateCloseDeliveryResponse() (response *CloseDeliveryResponse)

CreateCloseDeliveryResponse creates a response to parse from CloseDelivery response

type ConfigList

type ConfigList struct {
	ConfigListItem []ConfigListItem `json:"ConfigList" xml:"ConfigList"`
}

ConfigList is a nested struct in cloud_siem response

type ConfigListItem

type ConfigListItem struct {
	UserId      int64             `json:"UserId" xml:"UserId"`
	ProductList []ProductListItem `json:"ProductList" xml:"ProductList"`
}

ConfigListItem is a nested struct in cloud_siem response

type Data

type Data struct {
	LogTypeMds          string                 `json:"LogTypeMds" xml:"LogTypeMds"`
	SimulateData        string                 `json:"SimulateData" xml:"SimulateData"`
	CompleteOrNot       bool                   `json:"CompleteOrNot" xml:"CompleteOrNot"`
	TaskStatus          string                 `json:"TaskStatus" xml:"TaskStatus"`
	EnableTracking      bool                   `json:"EnableTracking" xml:"EnableTracking"`
	MediumLevelEventNum int64                  `json:"MediumLevelEventNum" xml:"MediumLevelEventNum"`
	ConfigId            string                 `json:"ConfigId" xml:"ConfigId"`
	TotalCount          int64                  `json:"TotalCount" xml:"TotalCount"`
	Aliuid              int64                  `json:"Aliuid" xml:"Aliuid"`
	Id                  int64                  `json:"Id" xml:"Id"`
	EventTransferType   string                 `json:"EventTransferType" xml:"EventTransferType"`
	AdminOrNot          bool                   `json:"AdminOrNot" xml:"AdminOrNot"`
	IncidentName        string                 `json:"IncidentName" xml:"IncidentName"`
	Online              int64                  `json:"Online" xml:"Online"`
	Low                 int64                  `json:"Low" xml:"Low"`
	RuleGroup           string                 `json:"RuleGroup" xml:"RuleGroup"`
	PreservedCapacity   int64                  `json:"PreservedCapacity" xml:"PreservedCapacity"`
	Server              string                 `json:"Server" xml:"Server"`
	TaskCount           int                    `json:"TaskCount" xml:"TaskCount"`
	Medium              int64                  `json:"Medium" xml:"Medium"`
	RuleThreshold       string                 `json:"RuleThreshold" xml:"RuleThreshold"`
	GmtCreate           string                 `json:"GmtCreate" xml:"GmtCreate"`
	ExtContent          string                 `json:"ExtContent" xml:"ExtContent"`
	QueryMode           int                    `json:"QueryMode" xml:"QueryMode"`
	AlertType           string                 `json:"AlertType" xml:"AlertType"`
	LogType             string                 `json:"LogType" xml:"LogType"`
	Count               int                    `json:"Count" xml:"Count"`
	All                 int64                  `json:"All" xml:"All"`
	AppendMeta          bool                   `json:"AppendMeta" xml:"AppendMeta"`
	EventNum            int64                  `json:"EventNum" xml:"EventNum"`
	EventTransferExt    string                 `json:"EventTransferExt" xml:"EventTransferExt"`
	IncidentNameEn      string                 `json:"IncidentNameEn" xml:"IncidentNameEn"`
	UsedCapacity        string                 `json:"UsedCapacity" xml:"UsedCapacity"`
	EntityId            int64                  `json:"EntityId" xml:"EntityId"`
	QueryCycle          string                 `json:"QueryCycle" xml:"QueryCycle"`
	ShardCount          int                    `json:"ShardCount" xml:"ShardCount"`
	HasSQL              bool                   `json:"HasSQL" xml:"HasSQL"`
	DisplayRegion       bool                   `json:"DisplayRegion" xml:"DisplayRegion"`
	FinishCount         int                    `json:"FinishCount" xml:"FinishCount"`
	High                int64                  `json:"High" xml:"High"`
	LogSource           string                 `json:"LogSource" xml:"LogSource"`
	HighLevelEventNum   int64                  `json:"HighLevelEventNum" xml:"HighLevelEventNum"`
	FailedCount         int                    `json:"FailedCount" xml:"FailedCount"`
	Ttl                 int                    `json:"Ttl" xml:"Ttl"`
	Limited             int64                  `json:"Limited" xml:"Limited"`
	AlertNum            int                    `json:"AlertNum" xml:"AlertNum"`
	UndealEventNum      int64                  `json:"UndealEventNum" xml:"UndealEventNum"`
	RuleType            string                 `json:"RuleType" xml:"RuleType"`
	Remark              string                 `json:"Remark" xml:"Remark"`
	HighRuleNum         int                    `json:"HighRuleNum" xml:"HighRuleNum"`
	ExistLogStore       bool                   `json:"ExistLogStore" xml:"ExistLogStore"`
	MaxSplitShard       int                    `json:"MaxSplitShard" xml:"MaxSplitShard"`
	AutoSplit           bool                   `json:"AutoSplit" xml:"AutoSplit"`
	ProcessedRows       int64                  `json:"ProcessedRows" xml:"ProcessedRows"`
	DescriptionEn       string                 `json:"DescriptionEn" xml:"DescriptionEn"`
	Total               int                    `json:"Total" xml:"Total"`
	AlertTypeMds        string                 `json:"AlertTypeMds" xml:"AlertTypeMds"`
	ProductNum          int                    `json:"ProductNum" xml:"ProductNum"`
	LogSourceMds        string                 `json:"LogSourceMds" xml:"LogSourceMds"`
	Region              string                 `json:"Region" xml:"Region"`
	RuleName            string                 `json:"RuleName" xml:"RuleName"`
	InUseRuleNum        int                    `json:"InUseRuleNum" xml:"InUseRuleNum"`
	RuleDesc            string                 `json:"RuleDesc" xml:"RuleDesc"`
	CanOperate          bool                   `json:"CanOperate" xml:"CanOperate"`
	FolderId            string                 `json:"FolderId" xml:"FolderId"`
	IncidentUuid        string                 `json:"IncidentUuid" xml:"IncidentUuid"`
	RuleCondition       string                 `json:"RuleCondition" xml:"RuleCondition"`
	LowRuleNum          int                    `json:"LowRuleNum" xml:"LowRuleNum"`
	LowLevelEventNum    int64                  `json:"LowLevelEventNum" xml:"LowLevelEventNum"`
	AssetNum            int                    `json:"AssetNum" xml:"AssetNum"`
	Description         string                 `json:"Description" xml:"Description"`
	ThreatLevel         string                 `json:"ThreatLevel" xml:"ThreatLevel"`
	ThreatScore         float64                `json:"ThreatScore" xml:"ThreatScore"`
	EntityInfo          map[string]interface{} `json:"EntityInfo" xml:"EntityInfo"`
	LogStoreName        string                 `json:"LogStoreName" xml:"LogStoreName"`
	Status              int                    `json:"Status" xml:"Status"`
	WhereQuery          string                 `json:"WhereQuery" xml:"WhereQuery"`
	SubmitId            string                 `json:"SubmitId" xml:"SubmitId"`
	GmtModified         string                 `json:"GmtModified" xml:"GmtModified"`
	MediumRuleNum       int                    `json:"MediumRuleNum" xml:"MediumRuleNum"`
	EntityType          string                 `json:"EntityType" xml:"EntityType"`
	AggQueryd           string                 `json:"AggQueryd" xml:"AggQueryd"`
	PQuery              string                 `json:"PQuery" xml:"PQuery"`
	TipInfo             map[string]interface{} `json:"TipInfo" xml:"TipInfo"`
	EventTransferSwitch int                    `json:"EventTransferSwitch" xml:"EventTransferSwitch"`
	DataSources         []string               `json:"DataSources" xml:"DataSources"`
	EventDispose        []string               `json:"EventDispose" xml:"EventDispose"`
	IndexList           []string               `json:"IndexList" xml:"IndexList"`
	Keys                []string               `json:"Keys" xml:"Keys"`
	AttCkLabels         []string               `json:"AttCkLabels" xml:"AttCkLabels"`
	Logs                []string               `json:"Logs" xml:"Logs"`
	OperationList       []string               `json:"OperationList" xml:"OperationList"`
	PageInfo            PageInfo               `json:"PageInfo" xml:"PageInfo"`
	ReceiverInfo        ReceiverInfo           `json:"ReceiverInfo" xml:"ReceiverInfo"`
	ResponseData        []ResponseDataItem     `json:"ResponseData" xml:"ResponseData"`
	ErrTaskList         []ErrTaskListItem      `json:"ErrTaskList" xml:"ErrTaskList"`
	QuickQueryList      []QuickQueryListItem   `json:"QuickQueryList" xml:"QuickQueryList"`
	Histograms          []Histogram            `json:"Histograms" xml:"Histograms"`
	ConfigList          []ConfigListItem       `json:"ConfigList" xml:"ConfigList"`
}

Data is a nested struct in cloud_siem response

type DataInDescribeAggregateFunction added in v1.62.595

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

DataInDescribeAggregateFunction is a nested struct in cloud_siem response

type DataInDescribeAlertSceneByEvent added in v1.62.595

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

DataInDescribeAlertSceneByEvent is a nested struct in cloud_siem response

type DataInDescribeAlertSource added in v1.62.595

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

DataInDescribeAlertSource is a nested struct in cloud_siem response

type DataInDescribeAlertSourceWithEvent added in v1.62.595

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

DataInDescribeAlertSourceWithEvent is a nested struct in cloud_siem response

type DataInDescribeAlertType added in v1.62.595

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

DataInDescribeAlertType is a nested struct in cloud_siem response

type DataInDescribeAttackTimeLine added in v1.62.595

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

DataInDescribeAttackTimeLine is a nested struct in cloud_siem response

type DataInDescribeAutomateResponseConfigFeature added in v1.62.595

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

DataInDescribeAutomateResponseConfigFeature is a nested struct in cloud_siem response

type DataInDescribeAutomateResponseConfigPlayBooks added in v1.62.595

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

DataInDescribeAutomateResponseConfigPlayBooks is a nested struct in cloud_siem response

type DataInDescribeCloudSiemAssetsCounter added in v1.62.595

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

DataInDescribeCloudSiemAssetsCounter is a nested struct in cloud_siem response

type DataInDescribeCustomizeRuleTestHistogram added in v1.62.595

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

DataInDescribeCustomizeRuleTestHistogram is a nested struct in cloud_siem response

type DataInDescribeDisposeStrategyPlaybook added in v1.62.595

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

DataInDescribeDisposeStrategyPlaybook is a nested struct in cloud_siem response

type DataInDescribeLogFields added in v1.62.595

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

DataInDescribeLogFields is a nested struct in cloud_siem response

type DataInDescribeLogSource added in v1.62.595

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

DataInDescribeLogSource is a nested struct in cloud_siem response

type DataInDescribeLogType added in v1.62.595

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

DataInDescribeLogType is a nested struct in cloud_siem response

type DataInDescribeOperators added in v1.62.595

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

DataInDescribeOperators is a nested struct in cloud_siem response

type DataInDescribeScopeUsers added in v1.62.595

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

DataInDescribeScopeUsers is a nested struct in cloud_siem response

type DataInDescribeWafScope added in v1.62.595

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

DataInDescribeWafScope is a nested struct in cloud_siem response

type DataInGetLogs added in v1.62.595

type DataInGetLogs struct {
	PageInfo     PageInfo     `json:"PageInfo" xml:"PageInfo"`
	ResponseData ResponseData `json:"ResponseData" xml:"ResponseData"`
}

DataInGetLogs is a nested struct in cloud_siem response

type DataItem added in v1.62.595

type DataItem struct {
	PlaybookUuid       string            `json:"PlaybookUuid" xml:"PlaybookUuid"`
	AlertTypeId        string            `json:"AlertTypeId" xml:"AlertTypeId"`
	AlertTile          string            `json:"AlertTile" xml:"AlertTile"`
	AlertTime          int64             `json:"AlertTime" xml:"AlertTime"`
	LogTime            string            `json:"LogTime" xml:"LogTime"`
	Operator           string            `json:"Operator" xml:"Operator"`
	Source             string            `json:"Source" xml:"Source"`
	AlertTitleEn       string            `json:"AlertTitleEn" xml:"AlertTitleEn"`
	DataType           string            `json:"DataType" xml:"DataType"`
	AlertTitle         string            `json:"AlertTitle" xml:"AlertTitle"`
	LogSource          string            `json:"LogSource" xml:"LogSource"`
	AlertTypeEn        string            `json:"AlertTypeEn" xml:"AlertTypeEn"`
	AlertNameId        string            `json:"AlertNameId" xml:"AlertNameId"`
	SourceName         string            `json:"SourceName" xml:"SourceName"`
	Aliuid             int64             `json:"Aliuid" xml:"Aliuid"`
	AlertNameEn        string            `json:"AlertNameEn" xml:"AlertNameEn"`
	AssetId            string            `json:"AssetId" xml:"AssetId"`
	PlaybookName       string            `json:"PlaybookName" xml:"PlaybookName"`
	ParamType          string            `json:"ParamType" xml:"ParamType"`
	Function           string            `json:"Function" xml:"Function"`
	Count              int64             `json:"Count" xml:"Count"`
	AlertTypeMds       string            `json:"AlertTypeMds" xml:"AlertTypeMds"`
	Name               string            `json:"Name" xml:"Name"`
	AssetList          string            `json:"AssetList" xml:"AssetList"`
	LogCode            string            `json:"LogCode" xml:"LogCode"`
	OperatorName       string            `json:"OperatorName" xml:"OperatorName"`
	CloudCode          string            `json:"CloudCode" xml:"CloudCode"`
	From               int64             `json:"From" xml:"From"`
	To                 int64             `json:"To" xml:"To"`
	AlertNameCode      string            `json:"AlertNameCode" xml:"AlertNameCode"`
	IncidentUuid       string            `json:"IncidentUuid" xml:"IncidentUuid"`
	AlertUuid          string            `json:"AlertUuid" xml:"AlertUuid"`
	ActivityName       string            `json:"ActivityName" xml:"ActivityName"`
	LogSourceName      string            `json:"LogSourceName" xml:"LogSourceName"`
	Index              int               `json:"Index" xml:"Index"`
	Uuid               string            `json:"Uuid" xml:"Uuid"`
	FieldDesc          string            `json:"FieldDesc" xml:"FieldDesc"`
	InstanceId         string            `json:"InstanceId" xml:"InstanceId"`
	AliUid             int64             `json:"AliUid" xml:"AliUid"`
	AssetType          string            `json:"AssetType" xml:"AssetType"`
	FieldName          string            `json:"FieldName" xml:"FieldName"`
	AttCk              string            `json:"AttCk" xml:"AttCk"`
	AlertType          string            `json:"AlertType" xml:"AlertType"`
	Description        string            `json:"Description" xml:"Description"`
	AssetNum           int               `json:"AssetNum" xml:"AssetNum"`
	LogType            string            `json:"LogType" xml:"LogType"`
	FunctionName       string            `json:"FunctionName" xml:"FunctionName"`
	AlertName          string            `json:"AlertName" xml:"AlertName"`
	AssetName          string            `json:"AssetName" xml:"AssetName"`
	FieldType          string            `json:"FieldType" xml:"FieldType"`
	AlertTileId        string            `json:"AlertTileId" xml:"AlertTileId"`
	AlertLevel         string            `json:"AlertLevel" xml:"AlertLevel"`
	LogTypeName        string            `json:"LogTypeName" xml:"LogTypeName"`
	AlertSrcProdModule string            `json:"AlertSrcProdModule" xml:"AlertSrcProdModule"`
	Feature            string            `json:"Feature" xml:"Feature"`
	DisplayName        string            `json:"DisplayName" xml:"DisplayName"`
	SupportDataType    string            `json:"SupportDataType" xml:"SupportDataType"`
	AlertTypeCode      string            `json:"AlertTypeCode" xml:"AlertTypeCode"`
	OperatorDescEn     string            `json:"OperatorDescEn" xml:"OperatorDescEn"`
	UserName           string            `json:"UserName" xml:"UserName"`
	OperatorDescCn     string            `json:"OperatorDescCn" xml:"OperatorDescCn"`
	AlertSrcProd       string            `json:"AlertSrcProd" xml:"AlertSrcProd"`
	SupportTag         []string          `json:"SupportTag" xml:"SupportTag"`
	Domains            []string          `json:"Domains" xml:"Domains"`
	RightValueEnums    []RightValueEnum  `json:"RightValueEnums" xml:"RightValueEnums"`
	Targets            []Target          `json:"Targets" xml:"Targets"`
	SupportOperators   []SupportOperator `json:"SupportOperators" xml:"SupportOperators"`
}

DataItem is a nested struct in cloud_siem response

type DataSourcesInDescribeCloudSiemEventDetail added in v1.62.595

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

DataSourcesInDescribeCloudSiemEventDetail is a nested struct in cloud_siem response

type DataSourcesInDescribeCloudSiemEvents added in v1.62.595

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

DataSourcesInDescribeCloudSiemEvents is a nested struct in cloud_siem response

type DeleteAutomateResponseConfigRequest added in v1.62.595

type DeleteAutomateResponseConfigRequest struct {
	*requests.RpcRequest
	Id requests.Integer `position:"Body" name:"Id"`
}

DeleteAutomateResponseConfigRequest is the request struct for api DeleteAutomateResponseConfig

func CreateDeleteAutomateResponseConfigRequest added in v1.62.595

func CreateDeleteAutomateResponseConfigRequest() (request *DeleteAutomateResponseConfigRequest)

CreateDeleteAutomateResponseConfigRequest creates a request to invoke DeleteAutomateResponseConfig API

type DeleteAutomateResponseConfigResponse added in v1.62.595

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

DeleteAutomateResponseConfigResponse is the response struct for api DeleteAutomateResponseConfig

func CreateDeleteAutomateResponseConfigResponse added in v1.62.595

func CreateDeleteAutomateResponseConfigResponse() (response *DeleteAutomateResponseConfigResponse)

CreateDeleteAutomateResponseConfigResponse creates a response to parse from DeleteAutomateResponseConfig response

type DeleteCustomizeRuleRequest added in v1.62.595

type DeleteCustomizeRuleRequest struct {
	*requests.RpcRequest
	RuleId requests.Integer `position:"Body" name:"RuleId"`
}

DeleteCustomizeRuleRequest is the request struct for api DeleteCustomizeRule

func CreateDeleteCustomizeRuleRequest added in v1.62.595

func CreateDeleteCustomizeRuleRequest() (request *DeleteCustomizeRuleRequest)

CreateDeleteCustomizeRuleRequest creates a request to invoke DeleteCustomizeRule API

type DeleteCustomizeRuleResponse added in v1.62.595

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

DeleteCustomizeRuleResponse is the response struct for api DeleteCustomizeRule

func CreateDeleteCustomizeRuleResponse added in v1.62.595

func CreateDeleteCustomizeRuleResponse() (response *DeleteCustomizeRuleResponse)

CreateDeleteCustomizeRuleResponse creates a response to parse from DeleteCustomizeRule response

type DeleteQuickQueryRequest added in v1.62.595

type DeleteQuickQueryRequest struct {
	*requests.RpcRequest
	SearchName string `position:"Body" name:"SearchName"`
}

DeleteQuickQueryRequest is the request struct for api DeleteQuickQuery

func CreateDeleteQuickQueryRequest added in v1.62.595

func CreateDeleteQuickQueryRequest() (request *DeleteQuickQueryRequest)

CreateDeleteQuickQueryRequest creates a request to invoke DeleteQuickQuery API

type DeleteQuickQueryResponse added in v1.62.595

type DeleteQuickQueryResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

DeleteQuickQueryResponse is the response struct for api DeleteQuickQuery

func CreateDeleteQuickQueryResponse added in v1.62.595

func CreateDeleteQuickQueryResponse() (response *DeleteQuickQueryResponse)

CreateDeleteQuickQueryResponse creates a response to parse from DeleteQuickQuery response

type DeleteWhiteRuleListRequest added in v1.62.595

type DeleteWhiteRuleListRequest struct {
	*requests.RpcRequest
	Id requests.Integer `position:"Body" name:"Id"`
}

DeleteWhiteRuleListRequest is the request struct for api DeleteWhiteRuleList

func CreateDeleteWhiteRuleListRequest added in v1.62.595

func CreateDeleteWhiteRuleListRequest() (request *DeleteWhiteRuleListRequest)

CreateDeleteWhiteRuleListRequest creates a request to invoke DeleteWhiteRuleList API

type DeleteWhiteRuleListResponse added in v1.62.595

type DeleteWhiteRuleListResponse struct {
	*responses.BaseResponse
}

DeleteWhiteRuleListResponse is the response struct for api DeleteWhiteRuleList

func CreateDeleteWhiteRuleListResponse added in v1.62.595

func CreateDeleteWhiteRuleListResponse() (response *DeleteWhiteRuleListResponse)

CreateDeleteWhiteRuleListResponse creates a response to parse from DeleteWhiteRuleList response

type DescribeAggregateFunctionRequest added in v1.62.595

type DescribeAggregateFunctionRequest struct {
	*requests.RpcRequest
}

DescribeAggregateFunctionRequest is the request struct for api DescribeAggregateFunction

func CreateDescribeAggregateFunctionRequest added in v1.62.595

func CreateDescribeAggregateFunctionRequest() (request *DescribeAggregateFunctionRequest)

CreateDescribeAggregateFunctionRequest creates a request to invoke DescribeAggregateFunction API

type DescribeAggregateFunctionResponse added in v1.62.595

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

DescribeAggregateFunctionResponse is the response struct for api DescribeAggregateFunction

func CreateDescribeAggregateFunctionResponse added in v1.62.595

func CreateDescribeAggregateFunctionResponse() (response *DescribeAggregateFunctionResponse)

CreateDescribeAggregateFunctionResponse creates a response to parse from DescribeAggregateFunction response

type DescribeAlertSceneByEventRequest added in v1.62.595

type DescribeAlertSceneByEventRequest struct {
	*requests.RpcRequest
	IncidentUuid string `position:"Body" name:"IncidentUuid"`
}

DescribeAlertSceneByEventRequest is the request struct for api DescribeAlertSceneByEvent

func CreateDescribeAlertSceneByEventRequest added in v1.62.595

func CreateDescribeAlertSceneByEventRequest() (request *DescribeAlertSceneByEventRequest)

CreateDescribeAlertSceneByEventRequest creates a request to invoke DescribeAlertSceneByEvent API

type DescribeAlertSceneByEventResponse added in v1.62.595

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

DescribeAlertSceneByEventResponse is the response struct for api DescribeAlertSceneByEvent

func CreateDescribeAlertSceneByEventResponse added in v1.62.595

func CreateDescribeAlertSceneByEventResponse() (response *DescribeAlertSceneByEventResponse)

CreateDescribeAlertSceneByEventResponse creates a response to parse from DescribeAlertSceneByEvent response

type DescribeAlertSourceRequest added in v1.62.595

type DescribeAlertSourceRequest struct {
	*requests.RpcRequest
	StartTime requests.Integer `position:"Body" name:"StartTime"`
	Level     *[]string        `position:"Body" name:"Level"  type:"Repeated"`
	EndTime   requests.Integer `position:"Body" name:"EndTime"`
}

DescribeAlertSourceRequest is the request struct for api DescribeAlertSource

func CreateDescribeAlertSourceRequest added in v1.62.595

func CreateDescribeAlertSourceRequest() (request *DescribeAlertSourceRequest)

CreateDescribeAlertSourceRequest creates a request to invoke DescribeAlertSource API

type DescribeAlertSourceResponse added in v1.62.595

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

DescribeAlertSourceResponse is the response struct for api DescribeAlertSource

func CreateDescribeAlertSourceResponse added in v1.62.595

func CreateDescribeAlertSourceResponse() (response *DescribeAlertSourceResponse)

CreateDescribeAlertSourceResponse creates a response to parse from DescribeAlertSource response

type DescribeAlertSourceWithEventRequest added in v1.62.595

type DescribeAlertSourceWithEventRequest struct {
	*requests.RpcRequest
	IncidentUuid string `position:"Body" name:"IncidentUuid"`
}

DescribeAlertSourceWithEventRequest is the request struct for api DescribeAlertSourceWithEvent

func CreateDescribeAlertSourceWithEventRequest added in v1.62.595

func CreateDescribeAlertSourceWithEventRequest() (request *DescribeAlertSourceWithEventRequest)

CreateDescribeAlertSourceWithEventRequest creates a request to invoke DescribeAlertSourceWithEvent API

type DescribeAlertSourceWithEventResponse added in v1.62.595

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

DescribeAlertSourceWithEventResponse is the response struct for api DescribeAlertSourceWithEvent

func CreateDescribeAlertSourceWithEventResponse added in v1.62.595

func CreateDescribeAlertSourceWithEventResponse() (response *DescribeAlertSourceWithEventResponse)

CreateDescribeAlertSourceWithEventResponse creates a response to parse from DescribeAlertSourceWithEvent response

type DescribeAlertTypeRequest added in v1.62.595

type DescribeAlertTypeRequest struct {
	*requests.RpcRequest
}

DescribeAlertTypeRequest is the request struct for api DescribeAlertType

func CreateDescribeAlertTypeRequest added in v1.62.595

func CreateDescribeAlertTypeRequest() (request *DescribeAlertTypeRequest)

CreateDescribeAlertTypeRequest creates a request to invoke DescribeAlertType API

type DescribeAlertTypeResponse added in v1.62.595

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

DescribeAlertTypeResponse is the response struct for api DescribeAlertType

func CreateDescribeAlertTypeResponse added in v1.62.595

func CreateDescribeAlertTypeResponse() (response *DescribeAlertTypeResponse)

CreateDescribeAlertTypeResponse creates a response to parse from DescribeAlertType response

type DescribeAlertsCountRequest added in v1.62.595

type DescribeAlertsCountRequest struct {
	*requests.RpcRequest
	StartTime requests.Integer `position:"Body" name:"StartTime"`
	EndTime   requests.Integer `position:"Body" name:"EndTime"`
}

DescribeAlertsCountRequest is the request struct for api DescribeAlertsCount

func CreateDescribeAlertsCountRequest added in v1.62.595

func CreateDescribeAlertsCountRequest() (request *DescribeAlertsCountRequest)

CreateDescribeAlertsCountRequest creates a request to invoke DescribeAlertsCount API

type DescribeAlertsCountResponse added in v1.62.595

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

DescribeAlertsCountResponse is the response struct for api DescribeAlertsCount

func CreateDescribeAlertsCountResponse added in v1.62.595

func CreateDescribeAlertsCountResponse() (response *DescribeAlertsCountResponse)

CreateDescribeAlertsCountResponse creates a response to parse from DescribeAlertsCount response

type DescribeAttackTimeLineRequest added in v1.62.595

type DescribeAttackTimeLineRequest struct {
	*requests.RpcRequest
	AssetName    string           `position:"Body" name:"AssetName"`
	StartTime    requests.Integer `position:"Body" name:"StartTime"`
	EndTime      requests.Integer `position:"Body" name:"EndTime"`
	IncidentUuid string           `position:"Body" name:"IncidentUuid"`
}

DescribeAttackTimeLineRequest is the request struct for api DescribeAttackTimeLine

func CreateDescribeAttackTimeLineRequest added in v1.62.595

func CreateDescribeAttackTimeLineRequest() (request *DescribeAttackTimeLineRequest)

CreateDescribeAttackTimeLineRequest creates a request to invoke DescribeAttackTimeLine API

type DescribeAttackTimeLineResponse added in v1.62.595

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

DescribeAttackTimeLineResponse is the response struct for api DescribeAttackTimeLine

func CreateDescribeAttackTimeLineResponse added in v1.62.595

func CreateDescribeAttackTimeLineResponse() (response *DescribeAttackTimeLineResponse)

CreateDescribeAttackTimeLineResponse creates a response to parse from DescribeAttackTimeLine response

type DescribeAutomateResponseConfigCounterRequest added in v1.62.595

type DescribeAutomateResponseConfigCounterRequest struct {
	*requests.RpcRequest
}

DescribeAutomateResponseConfigCounterRequest is the request struct for api DescribeAutomateResponseConfigCounter

func CreateDescribeAutomateResponseConfigCounterRequest added in v1.62.595

func CreateDescribeAutomateResponseConfigCounterRequest() (request *DescribeAutomateResponseConfigCounterRequest)

CreateDescribeAutomateResponseConfigCounterRequest creates a request to invoke DescribeAutomateResponseConfigCounter API

type DescribeAutomateResponseConfigCounterResponse added in v1.62.595

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

DescribeAutomateResponseConfigCounterResponse is the response struct for api DescribeAutomateResponseConfigCounter

func CreateDescribeAutomateResponseConfigCounterResponse added in v1.62.595

func CreateDescribeAutomateResponseConfigCounterResponse() (response *DescribeAutomateResponseConfigCounterResponse)

CreateDescribeAutomateResponseConfigCounterResponse creates a response to parse from DescribeAutomateResponseConfigCounter response

type DescribeAutomateResponseConfigFeatureRequest added in v1.62.595

type DescribeAutomateResponseConfigFeatureRequest struct {
	*requests.RpcRequest
	AutoResponseType string `position:"Body" name:"AutoResponseType"`
}

DescribeAutomateResponseConfigFeatureRequest is the request struct for api DescribeAutomateResponseConfigFeature

func CreateDescribeAutomateResponseConfigFeatureRequest added in v1.62.595

func CreateDescribeAutomateResponseConfigFeatureRequest() (request *DescribeAutomateResponseConfigFeatureRequest)

CreateDescribeAutomateResponseConfigFeatureRequest creates a request to invoke DescribeAutomateResponseConfigFeature API

type DescribeAutomateResponseConfigFeatureResponse added in v1.62.595

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

DescribeAutomateResponseConfigFeatureResponse is the response struct for api DescribeAutomateResponseConfigFeature

func CreateDescribeAutomateResponseConfigFeatureResponse added in v1.62.595

func CreateDescribeAutomateResponseConfigFeatureResponse() (response *DescribeAutomateResponseConfigFeatureResponse)

CreateDescribeAutomateResponseConfigFeatureResponse creates a response to parse from DescribeAutomateResponseConfigFeature response

type DescribeAutomateResponseConfigPlayBooksRequest added in v1.62.595

type DescribeAutomateResponseConfigPlayBooksRequest struct {
	*requests.RpcRequest
	AutoResponseType string `position:"Body" name:"AutoResponseType"`
	EntityType       string `position:"Body" name:"EntityType"`
}

DescribeAutomateResponseConfigPlayBooksRequest is the request struct for api DescribeAutomateResponseConfigPlayBooks

func CreateDescribeAutomateResponseConfigPlayBooksRequest added in v1.62.595

func CreateDescribeAutomateResponseConfigPlayBooksRequest() (request *DescribeAutomateResponseConfigPlayBooksRequest)

CreateDescribeAutomateResponseConfigPlayBooksRequest creates a request to invoke DescribeAutomateResponseConfigPlayBooks API

type DescribeAutomateResponseConfigPlayBooksResponse added in v1.62.595

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

DescribeAutomateResponseConfigPlayBooksResponse is the response struct for api DescribeAutomateResponseConfigPlayBooks

func CreateDescribeAutomateResponseConfigPlayBooksResponse added in v1.62.595

func CreateDescribeAutomateResponseConfigPlayBooksResponse() (response *DescribeAutomateResponseConfigPlayBooksResponse)

CreateDescribeAutomateResponseConfigPlayBooksResponse creates a response to parse from DescribeAutomateResponseConfigPlayBooks response

type DescribeCloudSiemAssetsCounterRequest added in v1.62.595

type DescribeCloudSiemAssetsCounterRequest struct {
	*requests.RpcRequest
	IncidentUuid string `position:"Body" name:"IncidentUuid"`
}

DescribeCloudSiemAssetsCounterRequest is the request struct for api DescribeCloudSiemAssetsCounter

func CreateDescribeCloudSiemAssetsCounterRequest added in v1.62.595

func CreateDescribeCloudSiemAssetsCounterRequest() (request *DescribeCloudSiemAssetsCounterRequest)

CreateDescribeCloudSiemAssetsCounterRequest creates a request to invoke DescribeCloudSiemAssetsCounter API

type DescribeCloudSiemAssetsCounterResponse added in v1.62.595

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

DescribeCloudSiemAssetsCounterResponse is the response struct for api DescribeCloudSiemAssetsCounter

func CreateDescribeCloudSiemAssetsCounterResponse added in v1.62.595

func CreateDescribeCloudSiemAssetsCounterResponse() (response *DescribeCloudSiemAssetsCounterResponse)

CreateDescribeCloudSiemAssetsCounterResponse creates a response to parse from DescribeCloudSiemAssetsCounter response

type DescribeCloudSiemAssetsRequest added in v1.62.595

type DescribeCloudSiemAssetsRequest struct {
	*requests.RpcRequest
	PageSize     requests.Integer `position:"Body" name:"PageSize"`
	AssetType    string           `position:"Body" name:"AssetType"`
	CurrentPage  requests.Integer `position:"Body" name:"CurrentPage"`
	IncidentUuid string           `position:"Body" name:"IncidentUuid"`
}

DescribeCloudSiemAssetsRequest is the request struct for api DescribeCloudSiemAssets

func CreateDescribeCloudSiemAssetsRequest added in v1.62.595

func CreateDescribeCloudSiemAssetsRequest() (request *DescribeCloudSiemAssetsRequest)

CreateDescribeCloudSiemAssetsRequest creates a request to invoke DescribeCloudSiemAssets API

type DescribeCloudSiemAssetsResponse added in v1.62.595

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

DescribeCloudSiemAssetsResponse is the response struct for api DescribeCloudSiemAssets

func CreateDescribeCloudSiemAssetsResponse added in v1.62.595

func CreateDescribeCloudSiemAssetsResponse() (response *DescribeCloudSiemAssetsResponse)

CreateDescribeCloudSiemAssetsResponse creates a response to parse from DescribeCloudSiemAssets response

type DescribeCloudSiemEventDetailRequest added in v1.62.595

type DescribeCloudSiemEventDetailRequest struct {
	*requests.RpcRequest
	IncidentUuid string `position:"Body" name:"IncidentUuid"`
}

DescribeCloudSiemEventDetailRequest is the request struct for api DescribeCloudSiemEventDetail

func CreateDescribeCloudSiemEventDetailRequest added in v1.62.595

func CreateDescribeCloudSiemEventDetailRequest() (request *DescribeCloudSiemEventDetailRequest)

CreateDescribeCloudSiemEventDetailRequest creates a request to invoke DescribeCloudSiemEventDetail API

type DescribeCloudSiemEventDetailResponse added in v1.62.595

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

DescribeCloudSiemEventDetailResponse is the response struct for api DescribeCloudSiemEventDetail

func CreateDescribeCloudSiemEventDetailResponse added in v1.62.595

func CreateDescribeCloudSiemEventDetailResponse() (response *DescribeCloudSiemEventDetailResponse)

CreateDescribeCloudSiemEventDetailResponse creates a response to parse from DescribeCloudSiemEventDetail response

type DescribeCloudSiemEventsRequest added in v1.62.595

type DescribeCloudSiemEventsRequest struct {
	*requests.RpcRequest
	StartTime    requests.Integer `position:"Body" name:"StartTime"`
	EventName    string           `position:"Body" name:"EventName"`
	PageSize     requests.Integer `position:"Body" name:"PageSize"`
	OrderField   string           `position:"Body" name:"OrderField"`
	Order        string           `position:"Body" name:"Order"`
	EndTime      requests.Integer `position:"Body" name:"EndTime"`
	CurrentPage  requests.Integer `position:"Body" name:"CurrentPage"`
	ThreadLevel  *[]string        `position:"Body" name:"ThreadLevel"  type:"Repeated"`
	AssetId      string           `position:"Body" name:"AssetId"`
	IncidentUuid string           `position:"Body" name:"IncidentUuid"`
	Status       requests.Integer `position:"Body" name:"Status"`
}

DescribeCloudSiemEventsRequest is the request struct for api DescribeCloudSiemEvents

func CreateDescribeCloudSiemEventsRequest added in v1.62.595

func CreateDescribeCloudSiemEventsRequest() (request *DescribeCloudSiemEventsRequest)

CreateDescribeCloudSiemEventsRequest creates a request to invoke DescribeCloudSiemEvents API

type DescribeCloudSiemEventsResponse added in v1.62.595

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

DescribeCloudSiemEventsResponse is the response struct for api DescribeCloudSiemEvents

func CreateDescribeCloudSiemEventsResponse added in v1.62.595

func CreateDescribeCloudSiemEventsResponse() (response *DescribeCloudSiemEventsResponse)

CreateDescribeCloudSiemEventsResponse creates a response to parse from DescribeCloudSiemEvents response

type DescribeCustomizeRuleCountRequest added in v1.62.595

type DescribeCustomizeRuleCountRequest struct {
	*requests.RpcRequest
}

DescribeCustomizeRuleCountRequest is the request struct for api DescribeCustomizeRuleCount

func CreateDescribeCustomizeRuleCountRequest added in v1.62.595

func CreateDescribeCustomizeRuleCountRequest() (request *DescribeCustomizeRuleCountRequest)

CreateDescribeCustomizeRuleCountRequest creates a request to invoke DescribeCustomizeRuleCount API

type DescribeCustomizeRuleCountResponse added in v1.62.595

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

DescribeCustomizeRuleCountResponse is the response struct for api DescribeCustomizeRuleCount

func CreateDescribeCustomizeRuleCountResponse added in v1.62.595

func CreateDescribeCustomizeRuleCountResponse() (response *DescribeCustomizeRuleCountResponse)

CreateDescribeCustomizeRuleCountResponse creates a response to parse from DescribeCustomizeRuleCount response

type DescribeCustomizeRuleRequest added in v1.62.595

type DescribeCustomizeRuleRequest struct {
	*requests.RpcRequest
	RuleId requests.Integer `position:"Body" name:"RuleId"`
}

DescribeCustomizeRuleRequest is the request struct for api DescribeCustomizeRule

func CreateDescribeCustomizeRuleRequest added in v1.62.595

func CreateDescribeCustomizeRuleRequest() (request *DescribeCustomizeRuleRequest)

CreateDescribeCustomizeRuleRequest creates a request to invoke DescribeCustomizeRule API

type DescribeCustomizeRuleResponse added in v1.62.595

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

DescribeCustomizeRuleResponse is the response struct for api DescribeCustomizeRule

func CreateDescribeCustomizeRuleResponse added in v1.62.595

func CreateDescribeCustomizeRuleResponse() (response *DescribeCustomizeRuleResponse)

CreateDescribeCustomizeRuleResponse creates a response to parse from DescribeCustomizeRule response

type DescribeCustomizeRuleTestHistogramRequest added in v1.62.595

type DescribeCustomizeRuleTestHistogramRequest struct {
	*requests.RpcRequest
	Id requests.Integer `position:"Body" name:"Id"`
}

DescribeCustomizeRuleTestHistogramRequest is the request struct for api DescribeCustomizeRuleTestHistogram

func CreateDescribeCustomizeRuleTestHistogramRequest added in v1.62.595

func CreateDescribeCustomizeRuleTestHistogramRequest() (request *DescribeCustomizeRuleTestHistogramRequest)

CreateDescribeCustomizeRuleTestHistogramRequest creates a request to invoke DescribeCustomizeRuleTestHistogram API

type DescribeCustomizeRuleTestHistogramResponse added in v1.62.595

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

DescribeCustomizeRuleTestHistogramResponse is the response struct for api DescribeCustomizeRuleTestHistogram

func CreateDescribeCustomizeRuleTestHistogramResponse added in v1.62.595

func CreateDescribeCustomizeRuleTestHistogramResponse() (response *DescribeCustomizeRuleTestHistogramResponse)

CreateDescribeCustomizeRuleTestHistogramResponse creates a response to parse from DescribeCustomizeRuleTestHistogram response

type DescribeCustomizeRuleTestRequest added in v1.62.595

type DescribeCustomizeRuleTestRequest struct {
	*requests.RpcRequest
	Id requests.Integer `position:"Body" name:"Id"`
}

DescribeCustomizeRuleTestRequest is the request struct for api DescribeCustomizeRuleTest

func CreateDescribeCustomizeRuleTestRequest added in v1.62.595

func CreateDescribeCustomizeRuleTestRequest() (request *DescribeCustomizeRuleTestRequest)

CreateDescribeCustomizeRuleTestRequest creates a request to invoke DescribeCustomizeRuleTest API

type DescribeCustomizeRuleTestResponse added in v1.62.595

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

DescribeCustomizeRuleTestResponse is the response struct for api DescribeCustomizeRuleTest

func CreateDescribeCustomizeRuleTestResponse added in v1.62.595

func CreateDescribeCustomizeRuleTestResponse() (response *DescribeCustomizeRuleTestResponse)

CreateDescribeCustomizeRuleTestResponse creates a response to parse from DescribeCustomizeRuleTest response

type DescribeDisposeAndPlaybookRequest added in v1.62.595

type DescribeDisposeAndPlaybookRequest struct {
	*requests.RpcRequest
	PageSize     requests.Integer `position:"Body" name:"PageSize"`
	CurrentPage  requests.Integer `position:"Body" name:"CurrentPage"`
	EntityType   string           `position:"Body" name:"EntityType"`
	IncidentUuid string           `position:"Body" name:"IncidentUuid"`
}

DescribeDisposeAndPlaybookRequest is the request struct for api DescribeDisposeAndPlaybook

func CreateDescribeDisposeAndPlaybookRequest added in v1.62.595

func CreateDescribeDisposeAndPlaybookRequest() (request *DescribeDisposeAndPlaybookRequest)

CreateDescribeDisposeAndPlaybookRequest creates a request to invoke DescribeDisposeAndPlaybook API

type DescribeDisposeAndPlaybookResponse added in v1.62.595

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

DescribeDisposeAndPlaybookResponse is the response struct for api DescribeDisposeAndPlaybook

func CreateDescribeDisposeAndPlaybookResponse added in v1.62.595

func CreateDescribeDisposeAndPlaybookResponse() (response *DescribeDisposeAndPlaybookResponse)

CreateDescribeDisposeAndPlaybookResponse creates a response to parse from DescribeDisposeAndPlaybook response

type DescribeDisposeStrategyPlaybookRequest added in v1.62.595

type DescribeDisposeStrategyPlaybookRequest struct {
	*requests.RpcRequest
	StartTime requests.Integer `position:"Body" name:"StartTime"`
	EndTime   requests.Integer `position:"Body" name:"EndTime"`
}

DescribeDisposeStrategyPlaybookRequest is the request struct for api DescribeDisposeStrategyPlaybook

func CreateDescribeDisposeStrategyPlaybookRequest added in v1.62.595

func CreateDescribeDisposeStrategyPlaybookRequest() (request *DescribeDisposeStrategyPlaybookRequest)

CreateDescribeDisposeStrategyPlaybookRequest creates a request to invoke DescribeDisposeStrategyPlaybook API

type DescribeDisposeStrategyPlaybookResponse added in v1.62.595

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

DescribeDisposeStrategyPlaybookResponse is the response struct for api DescribeDisposeStrategyPlaybook

func CreateDescribeDisposeStrategyPlaybookResponse added in v1.62.595

func CreateDescribeDisposeStrategyPlaybookResponse() (response *DescribeDisposeStrategyPlaybookResponse)

CreateDescribeDisposeStrategyPlaybookResponse creates a response to parse from DescribeDisposeStrategyPlaybook response

type DescribeEntityInfoRequest added in v1.62.595

type DescribeEntityInfoRequest struct {
	*requests.RpcRequest
	EntityIdentity string           `position:"Body" name:"EntityIdentity"`
	EntityId       requests.Integer `position:"Body" name:"EntityId"`
	SophonTaskId   string           `position:"Body" name:"SophonTaskId"`
	IncidentUuid   string           `position:"Body" name:"IncidentUuid"`
}

DescribeEntityInfoRequest is the request struct for api DescribeEntityInfo

func CreateDescribeEntityInfoRequest added in v1.62.595

func CreateDescribeEntityInfoRequest() (request *DescribeEntityInfoRequest)

CreateDescribeEntityInfoRequest creates a request to invoke DescribeEntityInfo API

type DescribeEntityInfoResponse added in v1.62.595

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

DescribeEntityInfoResponse is the response struct for api DescribeEntityInfo

func CreateDescribeEntityInfoResponse added in v1.62.595

func CreateDescribeEntityInfoResponse() (response *DescribeEntityInfoResponse)

CreateDescribeEntityInfoResponse creates a response to parse from DescribeEntityInfo response

type DescribeEventCountByThreatLevelRequest added in v1.62.595

type DescribeEventCountByThreatLevelRequest struct {
	*requests.RpcRequest
}

DescribeEventCountByThreatLevelRequest is the request struct for api DescribeEventCountByThreatLevel

func CreateDescribeEventCountByThreatLevelRequest added in v1.62.595

func CreateDescribeEventCountByThreatLevelRequest() (request *DescribeEventCountByThreatLevelRequest)

CreateDescribeEventCountByThreatLevelRequest creates a request to invoke DescribeEventCountByThreatLevel API

type DescribeEventCountByThreatLevelResponse added in v1.62.595

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

DescribeEventCountByThreatLevelResponse is the response struct for api DescribeEventCountByThreatLevel

func CreateDescribeEventCountByThreatLevelResponse added in v1.62.595

func CreateDescribeEventCountByThreatLevelResponse() (response *DescribeEventCountByThreatLevelResponse)

CreateDescribeEventCountByThreatLevelResponse creates a response to parse from DescribeEventCountByThreatLevel response

type DescribeEventDisposeRequest added in v1.62.595

type DescribeEventDisposeRequest struct {
	*requests.RpcRequest
	PageSize     requests.Integer `position:"Body" name:"PageSize"`
	CurrentPage  requests.Integer `position:"Body" name:"CurrentPage"`
	IncidentUuid string           `position:"Body" name:"IncidentUuid"`
}

DescribeEventDisposeRequest is the request struct for api DescribeEventDispose

func CreateDescribeEventDisposeRequest added in v1.62.595

func CreateDescribeEventDisposeRequest() (request *DescribeEventDisposeRequest)

CreateDescribeEventDisposeRequest creates a request to invoke DescribeEventDispose API

type DescribeEventDisposeResponse added in v1.62.595

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

DescribeEventDisposeResponse is the response struct for api DescribeEventDispose

func CreateDescribeEventDisposeResponse added in v1.62.595

func CreateDescribeEventDisposeResponse() (response *DescribeEventDisposeResponse)

CreateDescribeEventDisposeResponse creates a response to parse from DescribeEventDispose response

type DescribeJobStatusRequest added in v1.62.595

type DescribeJobStatusRequest struct {
	*requests.RpcRequest
	SubmitId string `position:"Body" name:"SubmitId"`
}

DescribeJobStatusRequest is the request struct for api DescribeJobStatus

func CreateDescribeJobStatusRequest added in v1.62.595

func CreateDescribeJobStatusRequest() (request *DescribeJobStatusRequest)

CreateDescribeJobStatusRequest creates a request to invoke DescribeJobStatus API

type DescribeJobStatusResponse added in v1.62.595

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

DescribeJobStatusResponse is the response struct for api DescribeJobStatus

func CreateDescribeJobStatusResponse added in v1.62.595

func CreateDescribeJobStatusResponse() (response *DescribeJobStatusResponse)

CreateDescribeJobStatusResponse creates a response to parse from DescribeJobStatus response

type DescribeLogFieldsRequest added in v1.62.595

type DescribeLogFieldsRequest struct {
	*requests.RpcRequest
	LogType   string `position:"Body" name:"LogType"`
	LogSource string `position:"Body" name:"LogSource"`
}

DescribeLogFieldsRequest is the request struct for api DescribeLogFields

func CreateDescribeLogFieldsRequest added in v1.62.595

func CreateDescribeLogFieldsRequest() (request *DescribeLogFieldsRequest)

CreateDescribeLogFieldsRequest creates a request to invoke DescribeLogFields API

type DescribeLogFieldsResponse added in v1.62.595

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

DescribeLogFieldsResponse is the response struct for api DescribeLogFields

func CreateDescribeLogFieldsResponse added in v1.62.595

func CreateDescribeLogFieldsResponse() (response *DescribeLogFieldsResponse)

CreateDescribeLogFieldsResponse creates a response to parse from DescribeLogFields response

type DescribeLogSourceRequest added in v1.62.595

type DescribeLogSourceRequest struct {
	*requests.RpcRequest
	LogType string `position:"Body" name:"LogType"`
}

DescribeLogSourceRequest is the request struct for api DescribeLogSource

func CreateDescribeLogSourceRequest added in v1.62.595

func CreateDescribeLogSourceRequest() (request *DescribeLogSourceRequest)

CreateDescribeLogSourceRequest creates a request to invoke DescribeLogSource API

type DescribeLogSourceResponse added in v1.62.595

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

DescribeLogSourceResponse is the response struct for api DescribeLogSource

func CreateDescribeLogSourceResponse added in v1.62.595

func CreateDescribeLogSourceResponse() (response *DescribeLogSourceResponse)

CreateDescribeLogSourceResponse creates a response to parse from DescribeLogSource response

type DescribeLogStoreRequest added in v1.62.595

type DescribeLogStoreRequest struct {
	*requests.RpcRequest
}

DescribeLogStoreRequest is the request struct for api DescribeLogStore

func CreateDescribeLogStoreRequest added in v1.62.595

func CreateDescribeLogStoreRequest() (request *DescribeLogStoreRequest)

CreateDescribeLogStoreRequest creates a request to invoke DescribeLogStore API

type DescribeLogStoreResponse added in v1.62.595

type DescribeLogStoreResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

DescribeLogStoreResponse is the response struct for api DescribeLogStore

func CreateDescribeLogStoreResponse added in v1.62.595

func CreateDescribeLogStoreResponse() (response *DescribeLogStoreResponse)

CreateDescribeLogStoreResponse creates a response to parse from DescribeLogStore response

type DescribeLogTypeRequest added in v1.62.595

type DescribeLogTypeRequest struct {
	*requests.RpcRequest
}

DescribeLogTypeRequest is the request struct for api DescribeLogType

func CreateDescribeLogTypeRequest added in v1.62.595

func CreateDescribeLogTypeRequest() (request *DescribeLogTypeRequest)

CreateDescribeLogTypeRequest creates a request to invoke DescribeLogType API

type DescribeLogTypeResponse added in v1.62.595

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

DescribeLogTypeResponse is the response struct for api DescribeLogType

func CreateDescribeLogTypeResponse added in v1.62.595

func CreateDescribeLogTypeResponse() (response *DescribeLogTypeResponse)

CreateDescribeLogTypeResponse creates a response to parse from DescribeLogType response

type DescribeOperatorsRequest added in v1.62.595

type DescribeOperatorsRequest struct {
	*requests.RpcRequest
	SceneType string `position:"Body" name:"SceneType"`
}

DescribeOperatorsRequest is the request struct for api DescribeOperators

func CreateDescribeOperatorsRequest added in v1.62.595

func CreateDescribeOperatorsRequest() (request *DescribeOperatorsRequest)

CreateDescribeOperatorsRequest creates a request to invoke DescribeOperators API

type DescribeOperatorsResponse added in v1.62.595

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

DescribeOperatorsResponse is the response struct for api DescribeOperators

func CreateDescribeOperatorsResponse added in v1.62.595

func CreateDescribeOperatorsResponse() (response *DescribeOperatorsResponse)

CreateDescribeOperatorsResponse creates a response to parse from DescribeOperators response

type DescribeScopeUsersRequest added in v1.62.595

type DescribeScopeUsersRequest struct {
	*requests.RpcRequest
}

DescribeScopeUsersRequest is the request struct for api DescribeScopeUsers

func CreateDescribeScopeUsersRequest added in v1.62.595

func CreateDescribeScopeUsersRequest() (request *DescribeScopeUsersRequest)

CreateDescribeScopeUsersRequest creates a request to invoke DescribeScopeUsers API

type DescribeScopeUsersResponse added in v1.62.595

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

DescribeScopeUsersResponse is the response struct for api DescribeScopeUsers

func CreateDescribeScopeUsersResponse added in v1.62.595

func CreateDescribeScopeUsersResponse() (response *DescribeScopeUsersResponse)

CreateDescribeScopeUsersResponse creates a response to parse from DescribeScopeUsers response

type DescribeStorageRequest added in v1.62.595

type DescribeStorageRequest struct {
	*requests.RpcRequest
}

DescribeStorageRequest is the request struct for api DescribeStorage

func CreateDescribeStorageRequest added in v1.62.595

func CreateDescribeStorageRequest() (request *DescribeStorageRequest)

CreateDescribeStorageRequest creates a request to invoke DescribeStorage API

type DescribeStorageResponse added in v1.62.595

type DescribeStorageResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

DescribeStorageResponse is the response struct for api DescribeStorage

func CreateDescribeStorageResponse added in v1.62.595

func CreateDescribeStorageResponse() (response *DescribeStorageResponse)

CreateDescribeStorageResponse creates a response to parse from DescribeStorage response

type DescribeWafScopeRequest added in v1.62.595

type DescribeWafScopeRequest struct {
	*requests.RpcRequest
	EntityId requests.Integer `position:"Body" name:"EntityId"`
}

DescribeWafScopeRequest is the request struct for api DescribeWafScope

func CreateDescribeWafScopeRequest added in v1.62.595

func CreateDescribeWafScopeRequest() (request *DescribeWafScopeRequest)

CreateDescribeWafScopeRequest creates a request to invoke DescribeWafScope API

type DescribeWafScopeResponse added in v1.62.595

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

DescribeWafScopeResponse is the response struct for api DescribeWafScope

func CreateDescribeWafScopeResponse added in v1.62.595

func CreateDescribeWafScopeResponse() (response *DescribeWafScopeResponse)

CreateDescribeWafScopeResponse creates a response to parse from DescribeWafScope response

type DoQuickFieldRequest added in v1.62.595

type DoQuickFieldRequest struct {
	*requests.RpcRequest
	From    requests.Integer `position:"Body" name:"From"`
	Index   string           `position:"Body" name:"Index"`
	Reverse requests.Boolean `position:"Body" name:"Reverse"`
	Size    requests.Integer `position:"Body" name:"Size"`
	To      requests.Integer `position:"Body" name:"To"`
	Page    requests.Integer `position:"Body" name:"Page"`
}

DoQuickFieldRequest is the request struct for api DoQuickField

func CreateDoQuickFieldRequest added in v1.62.595

func CreateDoQuickFieldRequest() (request *DoQuickFieldRequest)

CreateDoQuickFieldRequest creates a request to invoke DoQuickField API

type DoQuickFieldResponse added in v1.62.595

type DoQuickFieldResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

DoQuickFieldResponse is the response struct for api DoQuickField

func CreateDoQuickFieldResponse added in v1.62.595

func CreateDoQuickFieldResponse() (response *DoQuickFieldResponse)

CreateDoQuickFieldResponse creates a response to parse from DoQuickField response

type DoSelfDelegateRequest added in v1.62.595

type DoSelfDelegateRequest struct {
	*requests.RpcRequest
	AliUid        requests.Integer `position:"Body" name:"AliUid"`
	DelegateOrNot requests.Integer `position:"Body" name:"DelegateOrNot"`
}

DoSelfDelegateRequest is the request struct for api DoSelfDelegate

func CreateDoSelfDelegateRequest added in v1.62.595

func CreateDoSelfDelegateRequest() (request *DoSelfDelegateRequest)

CreateDoSelfDelegateRequest creates a request to invoke DoSelfDelegate API

type DoSelfDelegateResponse added in v1.62.595

type DoSelfDelegateResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

DoSelfDelegateResponse is the response struct for api DoSelfDelegate

func CreateDoSelfDelegateResponse added in v1.62.595

func CreateDoSelfDelegateResponse() (response *DoSelfDelegateResponse)

CreateDoSelfDelegateResponse creates a response to parse from DoSelfDelegate response

type DomainsInDescribeScopeUsers added in v1.62.595

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

DomainsInDescribeScopeUsers is a nested struct in cloud_siem response

type DomainsInDescribeWafScope added in v1.62.595

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

DomainsInDescribeWafScope is a nested struct in cloud_siem response

type Entity added in v1.62.595

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

Entity is a nested struct in cloud_siem response

type ErrTaskListInBatchJobCheck added in v1.62.595

type ErrTaskListInBatchJobCheck struct {
	ErrTaskListItem []ErrTaskListItem `json:"ErrTaskList" xml:"ErrTaskList"`
}

ErrTaskListInBatchJobCheck is a nested struct in cloud_siem response

type ErrTaskListInDescribeJobStatus added in v1.62.595

type ErrTaskListInDescribeJobStatus struct {
	ErrTaskListItem []ErrTaskListItem `json:"ErrTaskList" xml:"ErrTaskList"`
}

ErrTaskListInDescribeJobStatus is a nested struct in cloud_siem response

type ErrTaskListItem

type ErrTaskListItem struct {
	UserId      int64             `json:"UserId" xml:"UserId"`
	ProductList []ProductListItem `json:"ProductList" xml:"ProductList"`
}

ErrTaskListItem is a nested struct in cloud_siem response

type EventDispose added in v1.62.595

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

EventDispose is a nested struct in cloud_siem response

type GetCapacityRequest added in v1.62.595

type GetCapacityRequest struct {
	*requests.RpcRequest
}

GetCapacityRequest is the request struct for api GetCapacity

func CreateGetCapacityRequest added in v1.62.595

func CreateGetCapacityRequest() (request *GetCapacityRequest)

CreateGetCapacityRequest creates a request to invoke GetCapacity API

type GetCapacityResponse added in v1.62.595

type GetCapacityResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

GetCapacityResponse is the response struct for api GetCapacity

func CreateGetCapacityResponse added in v1.62.595

func CreateGetCapacityResponse() (response *GetCapacityResponse)

CreateGetCapacityResponse creates a response to parse from GetCapacity response

type GetHistogramsRequest added in v1.62.595

type GetHistogramsRequest struct {
	*requests.RpcRequest
	From  requests.Integer `position:"Body" name:"From"`
	Query string           `position:"Body" name:"Query"`
	To    requests.Integer `position:"Body" name:"To"`
}

GetHistogramsRequest is the request struct for api GetHistograms

func CreateGetHistogramsRequest added in v1.62.595

func CreateGetHistogramsRequest() (request *GetHistogramsRequest)

CreateGetHistogramsRequest creates a request to invoke GetHistograms API

type GetHistogramsResponse added in v1.62.595

type GetHistogramsResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

GetHistogramsResponse is the response struct for api GetHistograms

func CreateGetHistogramsResponse added in v1.62.595

func CreateGetHistogramsResponse() (response *GetHistogramsResponse)

CreateGetHistogramsResponse creates a response to parse from GetHistograms response

type GetLogsRequest added in v1.62.595

type GetLogsRequest struct {
	*requests.RpcRequest
	Total        requests.Integer `position:"Body" name:"Total"`
	PageSize     requests.Integer `position:"Body" name:"PageSize"`
	From         requests.Integer `position:"Body" name:"From"`
	PageIndex    requests.Integer `position:"Body" name:"PageIndex"`
	ReverseOrNot requests.Boolean `position:"Body" name:"ReverseOrNot"`
	Query        string           `position:"Body" name:"Query"`
	To           requests.Integer `position:"Body" name:"To"`
}

GetLogsRequest is the request struct for api GetLogs

func CreateGetLogsRequest added in v1.62.595

func CreateGetLogsRequest() (request *GetLogsRequest)

CreateGetLogsRequest creates a request to invoke GetLogs API

type GetLogsResponse added in v1.62.595

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

GetLogsResponse is the response struct for api GetLogs

func CreateGetLogsResponse added in v1.62.595

func CreateGetLogsResponse() (response *GetLogsResponse)

CreateGetLogsResponse creates a response to parse from GetLogs response

type GetQuickQueryRequest added in v1.62.595

type GetQuickQueryRequest struct {
	*requests.RpcRequest
	SearchName string `position:"Body" name:"SearchName"`
}

GetQuickQueryRequest is the request struct for api GetQuickQuery

func CreateGetQuickQueryRequest added in v1.62.595

func CreateGetQuickQueryRequest() (request *GetQuickQueryRequest)

CreateGetQuickQueryRequest creates a request to invoke GetQuickQuery API

type GetQuickQueryResponse added in v1.62.595

type GetQuickQueryResponse struct {
	*responses.BaseResponse
	Data      string `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

GetQuickQueryResponse is the response struct for api GetQuickQuery

func CreateGetQuickQueryResponse added in v1.62.595

func CreateGetQuickQueryResponse() (response *GetQuickQueryResponse)

CreateGetQuickQueryResponse creates a response to parse from GetQuickQuery response

type GetStorageRequest added in v1.62.595

type GetStorageRequest struct {
	*requests.RpcRequest
}

GetStorageRequest is the request struct for api GetStorage

func CreateGetStorageRequest added in v1.62.595

func CreateGetStorageRequest() (request *GetStorageRequest)

CreateGetStorageRequest creates a request to invoke GetStorage API

type GetStorageResponse added in v1.62.595

type GetStorageResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

GetStorageResponse is the response struct for api GetStorage

func CreateGetStorageResponse added in v1.62.595

func CreateGetStorageResponse() (response *GetStorageResponse)

CreateGetStorageResponse creates a response to parse from GetStorage response

type Histogram added in v1.62.595

type Histogram struct {
	From           int   `json:"From" xml:"From"`
	To             int   `json:"To" xml:"To"`
	Count          int64 `json:"Count" xml:"Count"`
	CompletedOrNot bool  `json:"CompletedOrNot" xml:"CompletedOrNot"`
}

Histogram is a nested struct in cloud_siem response

type Histograms added in v1.62.595

type Histograms struct {
	Histogram []Histogram `json:"Histogram" xml:"Histogram"`
}

Histograms is a nested struct in cloud_siem response

type IndexList added in v1.62.595

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

IndexList is a nested struct in cloud_siem response

type KeysInDoQuickField added in v1.62.595

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

KeysInDoQuickField is a nested struct in cloud_siem response

type KeysInGetLogs added in v1.62.595

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

KeysInGetLogs is a nested struct in cloud_siem response

type Lines added in v1.62.595

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

Lines is a nested struct in cloud_siem response

type ListAutomateResponseConfigsRequest added in v1.62.595

type ListAutomateResponseConfigsRequest struct {
	*requests.RpcRequest
	ActionType       string           `position:"Body" name:"ActionType"`
	RuleName         string           `position:"Body" name:"RuleName"`
	SubUserId        requests.Integer `position:"Body" name:"SubUserId"`
	PageSize         requests.Integer `position:"Body" name:"PageSize"`
	AutoResponseType string           `position:"Body" name:"AutoResponseType"`
	Id               requests.Integer `position:"Body" name:"Id"`
	CurrentPage      requests.Integer `position:"Body" name:"CurrentPage"`
	PlaybookUuid     string           `position:"Body" name:"PlaybookUuid"`
	Status           requests.Integer `position:"Body" name:"Status"`
}

ListAutomateResponseConfigsRequest is the request struct for api ListAutomateResponseConfigs

func CreateListAutomateResponseConfigsRequest added in v1.62.595

func CreateListAutomateResponseConfigsRequest() (request *ListAutomateResponseConfigsRequest)

CreateListAutomateResponseConfigsRequest creates a request to invoke ListAutomateResponseConfigs API

type ListAutomateResponseConfigsResponse added in v1.62.595

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

ListAutomateResponseConfigsResponse is the response struct for api ListAutomateResponseConfigs

func CreateListAutomateResponseConfigsResponse added in v1.62.595

func CreateListAutomateResponseConfigsResponse() (response *ListAutomateResponseConfigsResponse)

CreateListAutomateResponseConfigsResponse creates a response to parse from ListAutomateResponseConfigs response

type ListCloudSiemCustomizeRulesRequest added in v1.62.595

type ListCloudSiemCustomizeRulesRequest struct {
	*requests.RpcRequest
	RuleName    string           `position:"Body" name:"RuleName"`
	StartTime   requests.Integer `position:"Body" name:"StartTime"`
	PageSize    requests.Integer `position:"Body" name:"PageSize"`
	Id          string           `position:"Body" name:"Id"`
	RuleType    string           `position:"Body" name:"RuleType"`
	EndTime     requests.Integer `position:"Body" name:"EndTime"`
	CurrentPage requests.Integer `position:"Body" name:"CurrentPage"`
	AlertType   string           `position:"Body" name:"AlertType"`
	ThreatLevel *[]string        `position:"Body" name:"ThreatLevel"  type:"Repeated"`
	Status      requests.Integer `position:"Body" name:"Status"`
}

ListCloudSiemCustomizeRulesRequest is the request struct for api ListCloudSiemCustomizeRules

func CreateListCloudSiemCustomizeRulesRequest added in v1.62.595

func CreateListCloudSiemCustomizeRulesRequest() (request *ListCloudSiemCustomizeRulesRequest)

CreateListCloudSiemCustomizeRulesRequest creates a request to invoke ListCloudSiemCustomizeRules API

type ListCloudSiemCustomizeRulesResponse added in v1.62.595

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

ListCloudSiemCustomizeRulesResponse is the response struct for api ListCloudSiemCustomizeRules

func CreateListCloudSiemCustomizeRulesResponse added in v1.62.595

func CreateListCloudSiemCustomizeRulesResponse() (response *ListCloudSiemCustomizeRulesResponse)

CreateListCloudSiemCustomizeRulesResponse creates a response to parse from ListCloudSiemCustomizeRules response

type ListCloudSiemPredefinedRulesRequest added in v1.62.595

type ListCloudSiemPredefinedRulesRequest struct {
	*requests.RpcRequest
	RuleName    string           `position:"Body" name:"RuleName"`
	StartTime   requests.Integer `position:"Body" name:"StartTime"`
	PageSize    requests.Integer `position:"Body" name:"PageSize"`
	Id          string           `position:"Body" name:"Id"`
	RuleType    string           `position:"Body" name:"RuleType"`
	EndTime     requests.Integer `position:"Body" name:"EndTime"`
	CurrentPage requests.Integer `position:"Body" name:"CurrentPage"`
	AlertType   string           `position:"Body" name:"AlertType"`
	ThreatLevel *[]string        `position:"Body" name:"ThreatLevel"  type:"Repeated"`
	Status      requests.Integer `position:"Body" name:"Status"`
}

ListCloudSiemPredefinedRulesRequest is the request struct for api ListCloudSiemPredefinedRules

func CreateListCloudSiemPredefinedRulesRequest added in v1.62.595

func CreateListCloudSiemPredefinedRulesRequest() (request *ListCloudSiemPredefinedRulesRequest)

CreateListCloudSiemPredefinedRulesRequest creates a request to invoke ListCloudSiemPredefinedRules API

type ListCloudSiemPredefinedRulesResponse added in v1.62.595

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

ListCloudSiemPredefinedRulesResponse is the response struct for api ListCloudSiemPredefinedRules

func CreateListCloudSiemPredefinedRulesResponse added in v1.62.595

func CreateListCloudSiemPredefinedRulesResponse() (response *ListCloudSiemPredefinedRulesResponse)

CreateListCloudSiemPredefinedRulesResponse creates a response to parse from ListCloudSiemPredefinedRules response

type ListCustomizeRuleTestResultRequest added in v1.62.595

type ListCustomizeRuleTestResultRequest struct {
	*requests.RpcRequest
	PageSize    requests.Integer `position:"Body" name:"PageSize"`
	Id          requests.Integer `position:"Body" name:"Id"`
	CurrentPage requests.Integer `position:"Body" name:"CurrentPage"`
}

ListCustomizeRuleTestResultRequest is the request struct for api ListCustomizeRuleTestResult

func CreateListCustomizeRuleTestResultRequest added in v1.62.595

func CreateListCustomizeRuleTestResultRequest() (request *ListCustomizeRuleTestResultRequest)

CreateListCustomizeRuleTestResultRequest creates a request to invoke ListCustomizeRuleTestResult API

type ListCustomizeRuleTestResultResponse added in v1.62.595

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

ListCustomizeRuleTestResultResponse is the response struct for api ListCustomizeRuleTestResult

func CreateListCustomizeRuleTestResultResponse added in v1.62.595

func CreateListCustomizeRuleTestResultResponse() (response *ListCustomizeRuleTestResultResponse)

CreateListCustomizeRuleTestResultResponse creates a response to parse from ListCustomizeRuleTestResult response

type ListDeliveryRequest added in v1.62.595

type ListDeliveryRequest struct {
	*requests.RpcRequest
}

ListDeliveryRequest is the request struct for api ListDelivery

func CreateListDeliveryRequest added in v1.62.595

func CreateListDeliveryRequest() (request *ListDeliveryRequest)

CreateListDeliveryRequest creates a request to invoke ListDelivery API

type ListDeliveryResponse added in v1.62.595

type ListDeliveryResponse struct {
	*responses.BaseResponse
}

ListDeliveryResponse is the response struct for api ListDelivery

func CreateListDeliveryResponse added in v1.62.595

func CreateListDeliveryResponse() (response *ListDeliveryResponse)

CreateListDeliveryResponse creates a response to parse from ListDelivery response

type ListDisposeStrategyRequest added in v1.62.595

type ListDisposeStrategyRequest struct {
	*requests.RpcRequest
	EntityIdentity  string           `position:"Body" name:"EntityIdentity"`
	PlaybookName    string           `position:"Body" name:"PlaybookName"`
	PlaybookTypes   string           `position:"Body" name:"PlaybookTypes"`
	StartTime       requests.Integer `position:"Body" name:"StartTime"`
	PageSize        requests.Integer `position:"Body" name:"PageSize"`
	OrderField      string           `position:"Body" name:"OrderField"`
	Order           string           `position:"Body" name:"Order"`
	SophonTaskId    string           `position:"Body" name:"SophonTaskId"`
	EffectiveStatus requests.Integer `position:"Body" name:"EffectiveStatus"`
	EndTime         requests.Integer `position:"Body" name:"EndTime"`
	CurrentPage     requests.Integer `position:"Body" name:"CurrentPage"`
	PlaybookUuid    string           `position:"Body" name:"PlaybookUuid"`
	EntityType      string           `position:"Body" name:"EntityType"`
}

ListDisposeStrategyRequest is the request struct for api ListDisposeStrategy

func CreateListDisposeStrategyRequest added in v1.62.595

func CreateListDisposeStrategyRequest() (request *ListDisposeStrategyRequest)

CreateListDisposeStrategyRequest creates a request to invoke ListDisposeStrategy API

type ListDisposeStrategyResponse added in v1.62.595

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

ListDisposeStrategyResponse is the response struct for api ListDisposeStrategy

func CreateListDisposeStrategyResponse added in v1.62.595

func CreateListDisposeStrategyResponse() (response *ListDisposeStrategyResponse)

CreateListDisposeStrategyResponse creates a response to parse from ListDisposeStrategy response

type ListOperationRequest added in v1.62.595

type ListOperationRequest struct {
	*requests.RpcRequest
}

ListOperationRequest is the request struct for api ListOperation

func CreateListOperationRequest added in v1.62.595

func CreateListOperationRequest() (request *ListOperationRequest)

CreateListOperationRequest creates a request to invoke ListOperation API

type ListOperationResponse added in v1.62.595

type ListOperationResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListOperationResponse is the response struct for api ListOperation

func CreateListOperationResponse added in v1.62.595

func CreateListOperationResponse() (response *ListOperationResponse)

CreateListOperationResponse creates a response to parse from ListOperation response

type ListQuickQueryRequest added in v1.62.595

type ListQuickQueryRequest struct {
	*requests.RpcRequest
	PageSize requests.Integer `position:"Body" name:"PageSize"`
	Offset   requests.Integer `position:"Body" name:"Offset"`
}

ListQuickQueryRequest is the request struct for api ListQuickQuery

func CreateListQuickQueryRequest added in v1.62.595

func CreateListQuickQueryRequest() (request *ListQuickQueryRequest)

CreateListQuickQueryRequest creates a request to invoke ListQuickQuery API

type ListQuickQueryResponse added in v1.62.595

type ListQuickQueryResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

ListQuickQueryResponse is the response struct for api ListQuickQuery

func CreateListQuickQueryResponse added in v1.62.595

func CreateListQuickQueryResponse() (response *ListQuickQueryResponse)

CreateListQuickQueryResponse creates a response to parse from ListQuickQuery response

type LogListInBatchJobCheck

type LogListInBatchJobCheck struct {
	LogListItem []LogListItem `json:"LogList" xml:"LogList"`
}

LogListInBatchJobCheck is a nested struct in cloud_siem response

type LogListInBatchJobSubmit

type LogListInBatchJobSubmit struct {
	LogListItem []LogListItem `json:"LogList" xml:"LogList"`
}

LogListInBatchJobSubmit is a nested struct in cloud_siem response

type LogListInDescribeJobStatus added in v1.62.595

type LogListInDescribeJobStatus struct {
	LogListItem []LogListItem `json:"LogList" xml:"LogList"`
}

LogListInDescribeJobStatus is a nested struct in cloud_siem response

type LogListItem

type LogListItem struct {
	LogCode             string `json:"LogCode" xml:"LogCode"`
	LogStoreNamePattern string `json:"LogStoreNamePattern" xml:"LogStoreNamePattern"`
	RegionCode          string `json:"RegionCode" xml:"RegionCode"`
	ProjectNamePattern  string `json:"ProjectNamePattern" xml:"ProjectNamePattern"`
	ProductCode         string `json:"ProductCode" xml:"ProductCode"`
	ErrorCode           string `json:"ErrorCode" xml:"ErrorCode"`
}

LogListItem is a nested struct in cloud_siem response

type Logs added in v1.62.595

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

Logs is a nested struct in cloud_siem response

type OpcodeSet added in v1.62.595

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

OpcodeSet is a nested struct in cloud_siem response

type OpenDeliveryRequest added in v1.62.595

type OpenDeliveryRequest struct {
	*requests.RpcRequest
	ProductCode string `position:"Body" name:"ProductCode"`
	LogCode     string `position:"Body" name:"LogCode"`
}

OpenDeliveryRequest is the request struct for api OpenDelivery

func CreateOpenDeliveryRequest added in v1.62.595

func CreateOpenDeliveryRequest() (request *OpenDeliveryRequest)

CreateOpenDeliveryRequest creates a request to invoke OpenDelivery API

type OpenDeliveryResponse added in v1.62.595

type OpenDeliveryResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

OpenDeliveryResponse is the response struct for api OpenDelivery

func CreateOpenDeliveryResponse added in v1.62.595

func CreateOpenDeliveryResponse() (response *OpenDeliveryResponse)

CreateOpenDeliveryResponse creates a response to parse from OpenDelivery response

type OperationList added in v1.62.595

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

OperationList is a nested struct in cloud_siem response

type PageInfo added in v1.62.595

type PageInfo struct {
	CurrentPage int   `json:"CurrentPage" xml:"CurrentPage"`
	TotalCount  int64 `json:"TotalCount" xml:"TotalCount"`
	PageSize    int   `json:"PageSize" xml:"PageSize"`
}

PageInfo is a nested struct in cloud_siem response

type PlaybookList added in v1.62.595

type PlaybookList struct {
	PlaybookListItem []PlaybookListItem `json:"PlaybookList" xml:"PlaybookList"`
}

PlaybookList is a nested struct in cloud_siem response

type PlaybookListItem added in v1.62.595

type PlaybookListItem struct {
	OpCode      string `json:"OpCode" xml:"OpCode"`
	OpLevel     string `json:"OpLevel" xml:"OpLevel"`
	Description string `json:"Description" xml:"Description"`
	DisplayName string `json:"DisplayName" xml:"DisplayName"`
	TaskConfig  string `json:"TaskConfig" xml:"TaskConfig"`
	Name        string `json:"Name" xml:"Name"`
	WafPlaybook bool   `json:"WafPlaybook" xml:"WafPlaybook"`
}

PlaybookListItem is a nested struct in cloud_siem response

type PostAutomateResponseConfigRequest added in v1.62.595

type PostAutomateResponseConfigRequest struct {
	*requests.RpcRequest
	ActionType         string           `position:"Body" name:"ActionType"`
	RuleName           string           `position:"Body" name:"RuleName"`
	ExecutionCondition string           `position:"Body" name:"ExecutionCondition"`
	ActionConfig       string           `position:"Body" name:"ActionConfig"`
	SubUserId          requests.Integer `position:"Body" name:"SubUserId"`
	AutoResponseType   string           `position:"Body" name:"AutoResponseType"`
	Id                 requests.Integer `position:"Body" name:"Id"`
}

PostAutomateResponseConfigRequest is the request struct for api PostAutomateResponseConfig

func CreatePostAutomateResponseConfigRequest added in v1.62.595

func CreatePostAutomateResponseConfigRequest() (request *PostAutomateResponseConfigRequest)

CreatePostAutomateResponseConfigRequest creates a request to invoke PostAutomateResponseConfig API

type PostAutomateResponseConfigResponse added in v1.62.595

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

PostAutomateResponseConfigResponse is the response struct for api PostAutomateResponseConfig

func CreatePostAutomateResponseConfigResponse added in v1.62.595

func CreatePostAutomateResponseConfigResponse() (response *PostAutomateResponseConfigResponse)

CreatePostAutomateResponseConfigResponse creates a response to parse from PostAutomateResponseConfig response

type PostCustomizeRuleRequest added in v1.62.595

type PostCustomizeRuleRequest struct {
	*requests.RpcRequest
	RuleDesc            string           `position:"Body" name:"RuleDesc"`
	RuleName            string           `position:"Body" name:"RuleName"`
	AlertTypeMds        string           `position:"Body" name:"AlertTypeMds"`
	RuleThreshold       string           `position:"Body" name:"RuleThreshold"`
	LogSourceMds        string           `position:"Body" name:"LogSourceMds"`
	LogType             string           `position:"Body" name:"LogType"`
	LogTypeMds          string           `position:"Body" name:"LogTypeMds"`
	Id                  requests.Integer `position:"Body" name:"Id"`
	EventTransferSwitch requests.Integer `position:"Body" name:"EventTransferSwitch"`
	QueryCycle          string           `position:"Body" name:"QueryCycle"`
	LogSource           string           `position:"Body" name:"LogSource"`
	AlertType           string           `position:"Body" name:"AlertType"`
	EventTransferType   string           `position:"Body" name:"EventTransferType"`
	RuleCondition       string           `position:"Body" name:"RuleCondition"`
	EventTransferExt    string           `position:"Body" name:"EventTransferExt"`
	ThreatLevel         string           `position:"Body" name:"ThreatLevel"`
	RuleGroup           string           `position:"Body" name:"RuleGroup"`
}

PostCustomizeRuleRequest is the request struct for api PostCustomizeRule

func CreatePostCustomizeRuleRequest added in v1.62.595

func CreatePostCustomizeRuleRequest() (request *PostCustomizeRuleRequest)

CreatePostCustomizeRuleRequest creates a request to invoke PostCustomizeRule API

type PostCustomizeRuleResponse added in v1.62.595

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

PostCustomizeRuleResponse is the response struct for api PostCustomizeRule

func CreatePostCustomizeRuleResponse added in v1.62.595

func CreatePostCustomizeRuleResponse() (response *PostCustomizeRuleResponse)

CreatePostCustomizeRuleResponse creates a response to parse from PostCustomizeRule response

type PostCustomizeRuleTestRequest added in v1.62.595

type PostCustomizeRuleTestRequest struct {
	*requests.RpcRequest
	Id            requests.Integer `position:"Body" name:"Id"`
	SimulatedData string           `position:"Body" name:"SimulatedData"`
	TestType      string           `position:"Body" name:"TestType"`
}

PostCustomizeRuleTestRequest is the request struct for api PostCustomizeRuleTest

func CreatePostCustomizeRuleTestRequest added in v1.62.595

func CreatePostCustomizeRuleTestRequest() (request *PostCustomizeRuleTestRequest)

CreatePostCustomizeRuleTestRequest creates a request to invoke PostCustomizeRuleTest API

type PostCustomizeRuleTestResponse added in v1.62.595

type PostCustomizeRuleTestResponse struct {
	*responses.BaseResponse
}

PostCustomizeRuleTestResponse is the response struct for api PostCustomizeRuleTest

func CreatePostCustomizeRuleTestResponse added in v1.62.595

func CreatePostCustomizeRuleTestResponse() (response *PostCustomizeRuleTestResponse)

CreatePostCustomizeRuleTestResponse creates a response to parse from PostCustomizeRuleTest response

type PostEventDisposeAndWhiteruleListRequest added in v1.62.595

type PostEventDisposeAndWhiteruleListRequest struct {
	*requests.RpcRequest
	Remark       string           `position:"Body" name:"Remark"`
	EventDispose string           `position:"Body" name:"EventDispose"`
	ReceiverInfo string           `position:"Body" name:"ReceiverInfo"`
	IncidentUuid string           `position:"Body" name:"IncidentUuid"`
	Status       requests.Integer `position:"Body" name:"Status"`
}

PostEventDisposeAndWhiteruleListRequest is the request struct for api PostEventDisposeAndWhiteruleList

func CreatePostEventDisposeAndWhiteruleListRequest added in v1.62.595

func CreatePostEventDisposeAndWhiteruleListRequest() (request *PostEventDisposeAndWhiteruleListRequest)

CreatePostEventDisposeAndWhiteruleListRequest creates a request to invoke PostEventDisposeAndWhiteruleList API

type PostEventDisposeAndWhiteruleListResponse added in v1.62.595

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

PostEventDisposeAndWhiteruleListResponse is the response struct for api PostEventDisposeAndWhiteruleList

func CreatePostEventDisposeAndWhiteruleListResponse added in v1.62.595

func CreatePostEventDisposeAndWhiteruleListResponse() (response *PostEventDisposeAndWhiteruleListResponse)

CreatePostEventDisposeAndWhiteruleListResponse creates a response to parse from PostEventDisposeAndWhiteruleList response

type PostEventWhiteruleListRequest added in v1.62.595

type PostEventWhiteruleListRequest struct {
	*requests.RpcRequest
	WhiteruleList string `position:"Body" name:"WhiteruleList"`
	IncidentUuid  string `position:"Body" name:"IncidentUuid"`
}

PostEventWhiteruleListRequest is the request struct for api PostEventWhiteruleList

func CreatePostEventWhiteruleListRequest added in v1.62.595

func CreatePostEventWhiteruleListRequest() (request *PostEventWhiteruleListRequest)

CreatePostEventWhiteruleListRequest creates a request to invoke PostEventWhiteruleList API

type PostEventWhiteruleListResponse added in v1.62.595

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

PostEventWhiteruleListResponse is the response struct for api PostEventWhiteruleList

func CreatePostEventWhiteruleListResponse added in v1.62.595

func CreatePostEventWhiteruleListResponse() (response *PostEventWhiteruleListResponse)

CreatePostEventWhiteruleListResponse creates a response to parse from PostEventWhiteruleList response

type PostFinishCustomizeRuleTestRequest added in v1.62.595

type PostFinishCustomizeRuleTestRequest struct {
	*requests.RpcRequest
	Id requests.Integer `position:"Body" name:"Id"`
}

PostFinishCustomizeRuleTestRequest is the request struct for api PostFinishCustomizeRuleTest

func CreatePostFinishCustomizeRuleTestRequest added in v1.62.595

func CreatePostFinishCustomizeRuleTestRequest() (request *PostFinishCustomizeRuleTestRequest)

CreatePostFinishCustomizeRuleTestRequest creates a request to invoke PostFinishCustomizeRuleTest API

type PostFinishCustomizeRuleTestResponse added in v1.62.595

type PostFinishCustomizeRuleTestResponse struct {
	*responses.BaseResponse
}

PostFinishCustomizeRuleTestResponse is the response struct for api PostFinishCustomizeRuleTest

func CreatePostFinishCustomizeRuleTestResponse added in v1.62.595

func CreatePostFinishCustomizeRuleTestResponse() (response *PostFinishCustomizeRuleTestResponse)

CreatePostFinishCustomizeRuleTestResponse creates a response to parse from PostFinishCustomizeRuleTest response

type PostRuleStatusChangeRequest added in v1.62.595

type PostRuleStatusChangeRequest struct {
	*requests.RpcRequest
	RuleType string           `position:"Body" name:"RuleType"`
	Ids      string           `position:"Body" name:"Ids"`
	InUse    requests.Boolean `position:"Body" name:"InUse"`
}

PostRuleStatusChangeRequest is the request struct for api PostRuleStatusChange

func CreatePostRuleStatusChangeRequest added in v1.62.595

func CreatePostRuleStatusChangeRequest() (request *PostRuleStatusChangeRequest)

CreatePostRuleStatusChangeRequest creates a request to invoke PostRuleStatusChange API

type PostRuleStatusChangeResponse added in v1.62.595

type PostRuleStatusChangeResponse struct {
	*responses.BaseResponse
}

PostRuleStatusChangeResponse is the response struct for api PostRuleStatusChange

func CreatePostRuleStatusChangeResponse added in v1.62.595

func CreatePostRuleStatusChangeResponse() (response *PostRuleStatusChangeResponse)

CreatePostRuleStatusChangeResponse creates a response to parse from PostRuleStatusChange response

type ProductListInBatchJobCheck

type ProductListInBatchJobCheck struct {
	ProductListItem []ProductListItem `json:"ProductList" xml:"ProductList"`
}

ProductListInBatchJobCheck is a nested struct in cloud_siem response

type ProductListInBatchJobSubmit

type ProductListInBatchJobSubmit struct {
	ProductListItem []ProductListItem `json:"ProductList" xml:"ProductList"`
}

ProductListInBatchJobSubmit is a nested struct in cloud_siem response

type ProductListInDescribeJobStatus added in v1.62.595

type ProductListInDescribeJobStatus struct {
	ProductListItem []ProductListItem `json:"ProductList" xml:"ProductList"`
}

ProductListInDescribeJobStatus is a nested struct in cloud_siem response

type ProductListItem

type ProductListItem struct {
	ProductCode string        `json:"ProductCode" xml:"ProductCode"`
	LogList     []LogListItem `json:"LogList" xml:"LogList"`
}

ProductListItem is a nested struct in cloud_siem response

type QuickQueryList added in v1.62.595

type QuickQueryList struct {
	QuickQueryListItem []QuickQueryListItem `json:"QuickQueryList" xml:"QuickQueryList"`
}

QuickQueryList is a nested struct in cloud_siem response

type QuickQueryListItem added in v1.62.595

type QuickQueryListItem struct {
	Query       string `json:"Query" xml:"Query"`
	SearchName  string `json:"SearchName" xml:"SearchName"`
	DisplayName string `json:"DisplayName" xml:"DisplayName"`
}

QuickQueryListItem is a nested struct in cloud_siem response

type ReceiverInfo added in v1.62.595

type ReceiverInfo struct {
	Id           int64  `json:"Id" xml:"Id"`
	GmtCreate    string `json:"GmtCreate" xml:"GmtCreate"`
	GmtModified  string `json:"GmtModified" xml:"GmtModified"`
	IncidentUuid string `json:"IncidentUuid" xml:"IncidentUuid"`
	MessageTitle string `json:"MessageTitle" xml:"MessageTitle"`
	Receiver     string `json:"Receiver" xml:"Receiver"`
	Channel      string `json:"Channel" xml:"Channel"`
	Status       int    `json:"Status" xml:"Status"`
}

ReceiverInfo is a nested struct in cloud_siem response

type ResponseData added in v1.62.595

type ResponseData struct {
	Count         int      `json:"Count" xml:"Count"`
	HasSql        bool     `json:"HasSql" xml:"HasSql"`
	CompleteOrNot bool     `json:"CompleteOrNot" xml:"CompleteOrNot"`
	Cost          int64    `json:"Cost" xml:"Cost"`
	Lines         []string `json:"Lines" xml:"Lines"`
	Keys          []string `json:"Keys" xml:"Keys"`
}

ResponseData is a nested struct in cloud_siem response

type ResponseDataInDescribeCloudSiemAssets added in v1.62.595

type ResponseDataInDescribeCloudSiemAssets struct {
	ResponseDataItem []ResponseDataItem `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInDescribeCloudSiemAssets is a nested struct in cloud_siem response

type ResponseDataInDescribeCloudSiemEvents added in v1.62.595

type ResponseDataInDescribeCloudSiemEvents struct {
	ResponseDataItem []ResponseDataItem `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInDescribeCloudSiemEvents is a nested struct in cloud_siem response

type ResponseDataInDescribeDisposeAndPlaybook added in v1.62.595

type ResponseDataInDescribeDisposeAndPlaybook struct {
	ResponseDataItem []ResponseDataItem `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInDescribeDisposeAndPlaybook is a nested struct in cloud_siem response

type ResponseDataInListAutomateResponseConfigs added in v1.62.595

type ResponseDataInListAutomateResponseConfigs struct {
	ResponseDataItem []ResponseDataItem `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInListAutomateResponseConfigs is a nested struct in cloud_siem response

type ResponseDataInListCloudSiemCustomizeRules added in v1.62.595

type ResponseDataInListCloudSiemCustomizeRules struct {
	ResponseDataItem []ResponseDataItem `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInListCloudSiemCustomizeRules is a nested struct in cloud_siem response

type ResponseDataInListCloudSiemPredefinedRules added in v1.62.595

type ResponseDataInListCloudSiemPredefinedRules struct {
	ResponseDataItem []ResponseDataItem `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInListCloudSiemPredefinedRules is a nested struct in cloud_siem response

type ResponseDataInListCustomizeRuleTestResult added in v1.62.595

type ResponseDataInListCustomizeRuleTestResult struct {
	ResponseDataItem []ResponseDataItemInListCustomizeRuleTestResult `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInListCustomizeRuleTestResult is a nested struct in cloud_siem response

type ResponseDataInListDisposeStrategy added in v1.62.595

type ResponseDataInListDisposeStrategy struct {
	ResponseDataItem []ResponseDataItem `json:"ResponseData" xml:"ResponseData"`
}

ResponseDataInListDisposeStrategy is a nested struct in cloud_siem response

type ResponseDataItem added in v1.62.595

type ResponseDataItem struct {
	PlaybookUuid        string                 `json:"PlaybookUuid" xml:"PlaybookUuid"`
	LogTypeMds          string                 `json:"LogTypeMds" xml:"LogTypeMds"`
	RuleDescMds         string                 `json:"RuleDescMds" xml:"RuleDescMds"`
	Source              string                 `json:"Source" xml:"Source"`
	LogSource           string                 `json:"LogSource" xml:"LogSource"`
	AlertNum            int                    `json:"AlertNum" xml:"AlertNum"`
	RuleType            string                 `json:"RuleType" xml:"RuleType"`
	Remark              string                 `json:"Remark" xml:"Remark"`
	Aliuid              int64                  `json:"Aliuid" xml:"Aliuid"`
	Id                  int64                  `json:"Id" xml:"Id"`
	AssetId             string                 `json:"AssetId" xml:"AssetId"`
	FinishTime          string                 `json:"FinishTime" xml:"FinishTime"`
	ActionType          string                 `json:"ActionType" xml:"ActionType"`
	PlaybookName        string                 `json:"PlaybookName" xml:"PlaybookName"`
	DescriptionEn       string                 `json:"DescriptionEn" xml:"DescriptionEn"`
	Dispose             string                 `json:"Dispose" xml:"Dispose"`
	ExecutionCondition  string                 `json:"ExecutionCondition" xml:"ExecutionCondition"`
	EventTransferType   string                 `json:"EventTransferType" xml:"EventTransferType"`
	AlertTypeMds        string                 `json:"AlertTypeMds" xml:"AlertTypeMds"`
	LogSourceMds        string                 `json:"LogSourceMds" xml:"LogSourceMds"`
	IncidentName        string                 `json:"IncidentName" xml:"IncidentName"`
	AutoResponseType    string                 `json:"AutoResponseType" xml:"AutoResponseType"`
	RuleName            string                 `json:"RuleName" xml:"RuleName"`
	RuleGroup           string                 `json:"RuleGroup" xml:"RuleGroup"`
	ErrorMessage        string                 `json:"ErrorMessage" xml:"ErrorMessage"`
	SubUserId           int64                  `json:"SubUserId" xml:"SubUserId"`
	RuleDesc            string                 `json:"RuleDesc" xml:"RuleDesc"`
	CloudCode           string                 `json:"CloudCode" xml:"CloudCode"`
	EffectiveStatus     int                    `json:"EffectiveStatus" xml:"EffectiveStatus"`
	IncidentUuid        string                 `json:"IncidentUuid" xml:"IncidentUuid"`
	AlertUuid           string                 `json:"AlertUuid" xml:"AlertUuid"`
	TaskParam           string                 `json:"TaskParam" xml:"TaskParam"`
	RuleThreshold       string                 `json:"RuleThreshold" xml:"RuleThreshold"`
	GmtCreate           string                 `json:"GmtCreate" xml:"GmtCreate"`
	OpcodeMap           map[string]interface{} `json:"OpcodeMap" xml:"OpcodeMap"`
	ActionConfig        string                 `json:"ActionConfig" xml:"ActionConfig"`
	SubAliuid           int64                  `json:"SubAliuid" xml:"SubAliuid"`
	RuleCondition       string                 `json:"RuleCondition" xml:"RuleCondition"`
	ExtContent          string                 `json:"ExtContent" xml:"ExtContent"`
	AssetType           string                 `json:"AssetType" xml:"AssetType"`
	AlertType           string                 `json:"AlertType" xml:"AlertType"`
	AssetNum            int                    `json:"AssetNum" xml:"AssetNum"`
	Description         string                 `json:"Description" xml:"Description"`
	ThreatLevel         string                 `json:"ThreatLevel" xml:"ThreatLevel"`
	ThreatScore         float64                `json:"ThreatScore" xml:"ThreatScore"`
	EntityInfo          map[string]interface{} `json:"EntityInfo" xml:"EntityInfo"`
	LogType             string                 `json:"LogType" xml:"LogType"`
	AssetName           string                 `json:"AssetName" xml:"AssetName"`
	Status              int                    `json:"Status" xml:"Status"`
	GmtModified         string                 `json:"GmtModified" xml:"GmtModified"`
	EventTransferExt    string                 `json:"EventTransferExt" xml:"EventTransferExt"`
	IncidentNameEn      string                 `json:"IncidentNameEn" xml:"IncidentNameEn"`
	PlaybookType        string                 `json:"PlaybookType" xml:"PlaybookType"`
	EntityId            int64                  `json:"EntityId" xml:"EntityId"`
	QueryCycle          string                 `json:"QueryCycle" xml:"QueryCycle"`
	EntityType          string                 `json:"EntityType" xml:"EntityType"`
	SophonTaskId        string                 `json:"SophonTaskId" xml:"SophonTaskId"`
	EventTransferSwitch int                    `json:"EventTransferSwitch" xml:"EventTransferSwitch"`
	RuleNameMds         string                 `json:"RuleNameMds" xml:"RuleNameMds"`
	DataSources         []string               `json:"DataSources" xml:"DataSources"`
	Scope               []string               `json:"Scope" xml:"Scope"`
	OpcodeSet           []string               `json:"OpcodeSet" xml:"OpcodeSet"`
	Entity              []string               `json:"Entity" xml:"Entity"`
	AttCkLabels         []string               `json:"AttCkLabels" xml:"AttCkLabels"`
	PlaybookList        []PlaybookListItem     `json:"PlaybookList" xml:"PlaybookList"`
	AssetInfo           []AssetInfoItem        `json:"AssetInfo" xml:"AssetInfo"`
}

ResponseDataItem is a nested struct in cloud_siem response

type ResponseDataItemInListCustomizeRuleTestResult added in v1.62.595

type ResponseDataItemInListCustomizeRuleTestResult struct {
	Uuid               string `json:"Uuid" xml:"Uuid"`
	MainUserId         string `json:"MainUserId" xml:"MainUserId"`
	SubUserId          string `json:"SubUserId" xml:"SubUserId"`
	LogType            string `json:"LogType" xml:"LogType"`
	LogSource          string `json:"LogSource" xml:"LogSource"`
	AlertSrcProd       string `json:"AlertSrcProd" xml:"AlertSrcProd"`
	AlertSrcProdModule string `json:"AlertSrcProdModule" xml:"AlertSrcProdModule"`
	AttCk              string `json:"AttCk" xml:"AttCk"`
	AlertDesc          string `json:"AlertDesc" xml:"AlertDesc"`
	OnlineStatus       string `json:"OnlineStatus" xml:"OnlineStatus"`
	EventName          string `json:"EventName" xml:"EventName"`
	Level              string `json:"Level" xml:"Level"`
	EventType          string `json:"EventType" xml:"EventType"`
	AlertDetail        string `json:"AlertDetail" xml:"AlertDetail"`
	LogTime            string `json:"LogTime" xml:"LogTime"`
}

ResponseDataItemInListCustomizeRuleTestResult is a nested struct in cloud_siem response

type RestoreCapacityRequest added in v1.62.595

type RestoreCapacityRequest struct {
	*requests.RpcRequest
}

RestoreCapacityRequest is the request struct for api RestoreCapacity

func CreateRestoreCapacityRequest added in v1.62.595

func CreateRestoreCapacityRequest() (request *RestoreCapacityRequest)

CreateRestoreCapacityRequest creates a request to invoke RestoreCapacity API

type RestoreCapacityResponse added in v1.62.595

type RestoreCapacityResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

RestoreCapacityResponse is the response struct for api RestoreCapacity

func CreateRestoreCapacityResponse added in v1.62.595

func CreateRestoreCapacityResponse() (response *RestoreCapacityResponse)

CreateRestoreCapacityResponse creates a response to parse from RestoreCapacity response

type RightValueEnum added in v1.62.595

type RightValueEnum struct {
	Value    string `json:"Value" xml:"Value"`
	ValueMds string `json:"ValueMds" xml:"ValueMds"`
}

RightValueEnum is a nested struct in cloud_siem response

type RightValueEnums added in v1.62.595

type RightValueEnums struct {
	RightValueEnum []RightValueEnum `json:"RightValueEnum" xml:"RightValueEnum"`
}

RightValueEnums is a nested struct in cloud_siem response

type SaveQuickQueryRequest added in v1.62.595

type SaveQuickQueryRequest struct {
	*requests.RpcRequest
	Query       string `position:"Body" name:"Query"`
	DisplayName string `position:"Body" name:"DisplayName"`
}

SaveQuickQueryRequest is the request struct for api SaveQuickQuery

func CreateSaveQuickQueryRequest added in v1.62.595

func CreateSaveQuickQueryRequest() (request *SaveQuickQueryRequest)

CreateSaveQuickQueryRequest creates a request to invoke SaveQuickQuery API

type SaveQuickQueryResponse added in v1.62.595

type SaveQuickQueryResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

SaveQuickQueryResponse is the response struct for api SaveQuickQuery

func CreateSaveQuickQueryResponse added in v1.62.595

func CreateSaveQuickQueryResponse() (response *SaveQuickQueryResponse)

CreateSaveQuickQueryResponse creates a response to parse from SaveQuickQuery response

type ScopeInDescribeDisposeAndPlaybook added in v1.62.595

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

ScopeInDescribeDisposeAndPlaybook is a nested struct in cloud_siem response

type ScopeInListDisposeStrategy added in v1.62.595

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

ScopeInListDisposeStrategy is a nested struct in cloud_siem response

type SetStorageRequest added in v1.62.595

type SetStorageRequest struct {
	*requests.RpcRequest
	Ttl    requests.Integer `position:"Body" name:"Ttl"`
	Region string           `position:"Body" name:"Region"`
}

SetStorageRequest is the request struct for api SetStorage

func CreateSetStorageRequest added in v1.62.595

func CreateSetStorageRequest() (request *SetStorageRequest)

CreateSetStorageRequest creates a request to invoke SetStorage API

type SetStorageResponse added in v1.62.595

type SetStorageResponse struct {
	*responses.BaseResponse
	Data      bool   `json:"Data" xml:"Data"`
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
}

SetStorageResponse is the response struct for api SetStorage

func CreateSetStorageResponse added in v1.62.595

func CreateSetStorageResponse() (response *SetStorageResponse)

CreateSetStorageResponse creates a response to parse from SetStorage response

type ShowQuickAnalysisRequest added in v1.62.595

type ShowQuickAnalysisRequest struct {
	*requests.RpcRequest
}

ShowQuickAnalysisRequest is the request struct for api ShowQuickAnalysis

func CreateShowQuickAnalysisRequest added in v1.62.595

func CreateShowQuickAnalysisRequest() (request *ShowQuickAnalysisRequest)

CreateShowQuickAnalysisRequest creates a request to invoke ShowQuickAnalysis API

type ShowQuickAnalysisResponse added in v1.62.595

type ShowQuickAnalysisResponse struct {
	*responses.BaseResponse
	Success   bool   `json:"Success" xml:"Success"`
	Code      int    `json:"Code" xml:"Code"`
	Message   string `json:"Message" xml:"Message"`
	ErrCode   string `json:"ErrCode" xml:"ErrCode"`
	RequestId string `json:"RequestId" xml:"RequestId"`
	DyCode    string `json:"DyCode" xml:"DyCode"`
	DyMessage string `json:"DyMessage" xml:"DyMessage"`
	Data      Data   `json:"Data" xml:"Data"`
}

ShowQuickAnalysisResponse is the response struct for api ShowQuickAnalysis

func CreateShowQuickAnalysisResponse added in v1.62.595

func CreateShowQuickAnalysisResponse() (response *ShowQuickAnalysisResponse)

CreateShowQuickAnalysisResponse creates a response to parse from ShowQuickAnalysis response

type SupportOperator added in v1.62.595

type SupportOperator struct {
	HasRightValue   bool     `json:"HasRightValue" xml:"HasRightValue"`
	Operator        string   `json:"Operator" xml:"Operator"`
	OperatorName    string   `json:"OperatorName" xml:"OperatorName"`
	OperatorDescCn  string   `json:"OperatorDescCn" xml:"OperatorDescCn"`
	OperatorDescEn  string   `json:"OperatorDescEn" xml:"OperatorDescEn"`
	SupportDataType string   `json:"SupportDataType" xml:"SupportDataType"`
	Index           int      `json:"Index" xml:"Index"`
	SupportTag      []string `json:"SupportTag" xml:"SupportTag"`
}

SupportOperator is a nested struct in cloud_siem response

type SupportOperators added in v1.62.595

type SupportOperators struct {
	SupportOperator []SupportOperator `json:"SupportOperator" xml:"SupportOperator"`
}

SupportOperators is a nested struct in cloud_siem response

type SupportTagInDescribeAutomateResponseConfigFeature added in v1.62.595

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

SupportTagInDescribeAutomateResponseConfigFeature is a nested struct in cloud_siem response

type SupportTagInDescribeOperators added in v1.62.595

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

SupportTagInDescribeOperators is a nested struct in cloud_siem response

type Target added in v1.62.595

type Target struct {
	Type   string   `json:"Type" xml:"Type"`
	Name   string   `json:"Name" xml:"Name"`
	Value  string   `json:"Value" xml:"Value"`
	Values []string `json:"Values" xml:"Values"`
}

Target is a nested struct in cloud_siem response

type Targets added in v1.62.595

type Targets struct {
	Target []Target `json:"Target" xml:"Target"`
}

Targets is a nested struct in cloud_siem response

type UpdateAutomateResponseConfigStatusRequest added in v1.62.595

type UpdateAutomateResponseConfigStatusRequest struct {
	*requests.RpcRequest
	Ids   string           `position:"Body" name:"Ids"`
	InUse requests.Boolean `position:"Body" name:"InUse"`
}

UpdateAutomateResponseConfigStatusRequest is the request struct for api UpdateAutomateResponseConfigStatus

func CreateUpdateAutomateResponseConfigStatusRequest added in v1.62.595

func CreateUpdateAutomateResponseConfigStatusRequest() (request *UpdateAutomateResponseConfigStatusRequest)

CreateUpdateAutomateResponseConfigStatusRequest creates a request to invoke UpdateAutomateResponseConfigStatus API

type UpdateAutomateResponseConfigStatusResponse added in v1.62.595

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

UpdateAutomateResponseConfigStatusResponse is the response struct for api UpdateAutomateResponseConfigStatus

func CreateUpdateAutomateResponseConfigStatusResponse added in v1.62.595

func CreateUpdateAutomateResponseConfigStatusResponse() (response *UpdateAutomateResponseConfigStatusResponse)

CreateUpdateAutomateResponseConfigStatusResponse creates a response to parse from UpdateAutomateResponseConfigStatus response

type UpdateWhiteRuleListRequest added in v1.62.595

type UpdateWhiteRuleListRequest struct {
	*requests.RpcRequest
	WhiteRuleId  requests.Integer `position:"Body" name:"WhiteRuleId"`
	Expression   string           `position:"Body" name:"Expression"`
	IncidentUuid string           `position:"Body" name:"IncidentUuid"`
}

UpdateWhiteRuleListRequest is the request struct for api UpdateWhiteRuleList

func CreateUpdateWhiteRuleListRequest added in v1.62.595

func CreateUpdateWhiteRuleListRequest() (request *UpdateWhiteRuleListRequest)

CreateUpdateWhiteRuleListRequest creates a request to invoke UpdateWhiteRuleList API

type UpdateWhiteRuleListResponse added in v1.62.595

type UpdateWhiteRuleListResponse struct {
	*responses.BaseResponse
}

UpdateWhiteRuleListResponse is the response struct for api UpdateWhiteRuleList

func CreateUpdateWhiteRuleListResponse added in v1.62.595

func CreateUpdateWhiteRuleListResponse() (response *UpdateWhiteRuleListResponse)

CreateUpdateWhiteRuleListResponse creates a response to parse from UpdateWhiteRuleList response

type Values added in v1.62.595

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

Values is a nested struct in cloud_siem response

Source Files

Jump to

Keyboard shortcuts

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