dms_enterprise

package
v1.61.1038 Latest Latest
Warning

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

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

Documentation ¶

Index ¶

Constants ¶

This section is empty.

Variables ¶

View Source
var EndpointMap map[string]string

EndpointMap Endpoint Data

View Source
var EndpointType = "central"

EndpointType regional or central

Functions ¶

func GetEndpointMap ¶ added in v1.61.13

func GetEndpointMap() map[string]string

GetEndpointMap Get Endpoint Data Map

func GetEndpointType ¶ added in v1.61.13

func GetEndpointType() string

GetEndpointType Get Endpoint Type Value

func SetClientProperty ¶ added in v1.61.13

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

SetClientProperty Set Property by Reflect

func SetEndpointDataToClient ¶ added in v1.61.13

func SetEndpointDataToClient(client *Client)

SetEndpointDataToClient Set EndpointMap and ENdpointType

Types ¶

type ApprovalDetail ¶ added in v1.61.13

type ApprovalDetail struct {
	OrderType       string                           `json:"OrderType" xml:"OrderType"`
	Description     string                           `json:"Description" xml:"Description"`
	WorkflowInsCode string                           `json:"WorkflowInsCode" xml:"WorkflowInsCode"`
	AuditId         int64                            `json:"AuditId" xml:"AuditId"`
	Title           string                           `json:"Title" xml:"Title"`
	OrderId         int64                            `json:"OrderId" xml:"OrderId"`
	ReasonList      ReasonList                       `json:"ReasonList" xml:"ReasonList"`
	CurrentHandlers CurrentHandlers                  `json:"CurrentHandlers" xml:"CurrentHandlers"`
	WorkflowNodes   WorkflowNodesInGetApprovalDetail `json:"WorkflowNodes" xml:"WorkflowNodes"`
}

ApprovalDetail is a nested struct in dms_enterprise response

type ApproveOrderRequest ¶ added in v1.61.13

type ApproveOrderRequest struct {
	*requests.RpcRequest
	Tid                requests.Integer `position:"Query" name:"Tid"`
	WorkflowInstanceId requests.Integer `position:"Query" name:"WorkflowInstanceId"`
	ApprovalType       string           `position:"Query" name:"ApprovalType"`
	Comment            string           `position:"Query" name:"Comment"`
}

ApproveOrderRequest is the request struct for api ApproveOrder

func CreateApproveOrderRequest ¶ added in v1.61.13

func CreateApproveOrderRequest() (request *ApproveOrderRequest)

CreateApproveOrderRequest creates a request to invoke ApproveOrder API

type ApproveOrderResponse ¶ added in v1.61.13

type ApproveOrderResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

ApproveOrderResponse is the response struct for api ApproveOrder

func CreateApproveOrderResponse ¶ added in v1.61.13

func CreateApproveOrderResponse() (response *ApproveOrderResponse)

CreateApproveOrderResponse creates a response to parse from ApproveOrder response

type AuditUser ¶ added in v1.61.13

type AuditUser struct {
	UserId   int64  `json:"UserId" xml:"UserId"`
	RealName string `json:"RealName" xml:"RealName"`
	NickName string `json:"NickName" xml:"NickName"`
}

AuditUser is a nested struct in dms_enterprise response

type AuditUserIdList ¶ added in v1.61.13

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

AuditUserIdList is a nested struct in dms_enterprise response

type AuditUsers ¶ added in v1.61.13

type AuditUsers struct {
	AuditUser []AuditUser `json:"AuditUser" xml:"AuditUser"`
}

AuditUsers is a nested struct in dms_enterprise response

type Client ¶

type Client struct {
	sdk.Client
}

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

func NewClient ¶

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

NewClient creates a sdk client with environment variables

func NewClientWithAccessKey ¶

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

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

func NewClientWithEcsRamRole ¶

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

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

func NewClientWithOptions ¶

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

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

func NewClientWithProvider ¶ added in v1.61.13

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

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

func NewClientWithRamRoleArn ¶

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

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

func NewClientWithRamRoleArnAndPolicy ¶ added in v1.61.13

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) ApproveOrder ¶ added in v1.61.13

func (client *Client) ApproveOrder(request *ApproveOrderRequest) (response *ApproveOrderResponse, err error)

ApproveOrder invokes the dms_enterprise.ApproveOrder API synchronously

func (*Client) ApproveOrderWithCallback ¶ added in v1.61.13

func (client *Client) ApproveOrderWithCallback(request *ApproveOrderRequest, callback func(response *ApproveOrderResponse, err error)) <-chan int

ApproveOrderWithCallback invokes the dms_enterprise.ApproveOrder API asynchronously

func (*Client) ApproveOrderWithChan ¶ added in v1.61.13

func (client *Client) ApproveOrderWithChan(request *ApproveOrderRequest) (<-chan *ApproveOrderResponse, <-chan error)

ApproveOrderWithChan invokes the dms_enterprise.ApproveOrder API asynchronously

func (*Client) CloseOrder ¶ added in v1.61.13

func (client *Client) CloseOrder(request *CloseOrderRequest) (response *CloseOrderResponse, err error)

CloseOrder invokes the dms_enterprise.CloseOrder API synchronously

func (*Client) CloseOrderWithCallback ¶ added in v1.61.13

func (client *Client) CloseOrderWithCallback(request *CloseOrderRequest, callback func(response *CloseOrderResponse, err error)) <-chan int

CloseOrderWithCallback invokes the dms_enterprise.CloseOrder API asynchronously

func (*Client) CloseOrderWithChan ¶ added in v1.61.13

func (client *Client) CloseOrderWithChan(request *CloseOrderRequest) (<-chan *CloseOrderResponse, <-chan error)

CloseOrderWithChan invokes the dms_enterprise.CloseOrder API asynchronously

func (*Client) CreateDataCorrectOrder ¶ added in v1.61.1009

func (client *Client) CreateDataCorrectOrder(request *CreateDataCorrectOrderRequest) (response *CreateDataCorrectOrderResponse, err error)

CreateDataCorrectOrder invokes the dms_enterprise.CreateDataCorrectOrder API synchronously

func (*Client) CreateDataCorrectOrderWithCallback ¶ added in v1.61.1009

func (client *Client) CreateDataCorrectOrderWithCallback(request *CreateDataCorrectOrderRequest, callback func(response *CreateDataCorrectOrderResponse, err error)) <-chan int

CreateDataCorrectOrderWithCallback invokes the dms_enterprise.CreateDataCorrectOrder API asynchronously

func (*Client) CreateDataCorrectOrderWithChan ¶ added in v1.61.1009

func (client *Client) CreateDataCorrectOrderWithChan(request *CreateDataCorrectOrderRequest) (<-chan *CreateDataCorrectOrderResponse, <-chan error)

CreateDataCorrectOrderWithChan invokes the dms_enterprise.CreateDataCorrectOrder API asynchronously

func (*Client) CreateDataCronClearOrder ¶ added in v1.61.1009

func (client *Client) CreateDataCronClearOrder(request *CreateDataCronClearOrderRequest) (response *CreateDataCronClearOrderResponse, err error)

CreateDataCronClearOrder invokes the dms_enterprise.CreateDataCronClearOrder API synchronously

func (*Client) CreateDataCronClearOrderWithCallback ¶ added in v1.61.1009

func (client *Client) CreateDataCronClearOrderWithCallback(request *CreateDataCronClearOrderRequest, callback func(response *CreateDataCronClearOrderResponse, err error)) <-chan int

CreateDataCronClearOrderWithCallback invokes the dms_enterprise.CreateDataCronClearOrder API asynchronously

func (*Client) CreateDataCronClearOrderWithChan ¶ added in v1.61.1009

func (client *Client) CreateDataCronClearOrderWithChan(request *CreateDataCronClearOrderRequest) (<-chan *CreateDataCronClearOrderResponse, <-chan error)

CreateDataCronClearOrderWithChan invokes the dms_enterprise.CreateDataCronClearOrder API asynchronously

func (*Client) CreateDataImportOrder ¶ added in v1.61.1009

func (client *Client) CreateDataImportOrder(request *CreateDataImportOrderRequest) (response *CreateDataImportOrderResponse, err error)

CreateDataImportOrder invokes the dms_enterprise.CreateDataImportOrder API synchronously

func (*Client) CreateDataImportOrderWithCallback ¶ added in v1.61.1009

func (client *Client) CreateDataImportOrderWithCallback(request *CreateDataImportOrderRequest, callback func(response *CreateDataImportOrderResponse, err error)) <-chan int

CreateDataImportOrderWithCallback invokes the dms_enterprise.CreateDataImportOrder API asynchronously

func (*Client) CreateDataImportOrderWithChan ¶ added in v1.61.1009

func (client *Client) CreateDataImportOrderWithChan(request *CreateDataImportOrderRequest) (<-chan *CreateDataImportOrderResponse, <-chan error)

CreateDataImportOrderWithChan invokes the dms_enterprise.CreateDataImportOrder API asynchronously

func (*Client) CreateFreeLockCorrectOrder ¶ added in v1.61.1009

func (client *Client) CreateFreeLockCorrectOrder(request *CreateFreeLockCorrectOrderRequest) (response *CreateFreeLockCorrectOrderResponse, err error)

CreateFreeLockCorrectOrder invokes the dms_enterprise.CreateFreeLockCorrectOrder API synchronously

func (*Client) CreateFreeLockCorrectOrderWithCallback ¶ added in v1.61.1009

func (client *Client) CreateFreeLockCorrectOrderWithCallback(request *CreateFreeLockCorrectOrderRequest, callback func(response *CreateFreeLockCorrectOrderResponse, err error)) <-chan int

CreateFreeLockCorrectOrderWithCallback invokes the dms_enterprise.CreateFreeLockCorrectOrder API asynchronously

func (*Client) CreateFreeLockCorrectOrderWithChan ¶ added in v1.61.1009

func (client *Client) CreateFreeLockCorrectOrderWithChan(request *CreateFreeLockCorrectOrderRequest) (<-chan *CreateFreeLockCorrectOrderResponse, <-chan error)

CreateFreeLockCorrectOrderWithChan invokes the dms_enterprise.CreateFreeLockCorrectOrder API asynchronously

func (*Client) CreateOrder ¶ added in v1.61.13

func (client *Client) CreateOrder(request *CreateOrderRequest) (response *CreateOrderResponse, err error)

CreateOrder invokes the dms_enterprise.CreateOrder API synchronously

func (*Client) CreateOrderWithCallback ¶ added in v1.61.13

func (client *Client) CreateOrderWithCallback(request *CreateOrderRequest, callback func(response *CreateOrderResponse, err error)) <-chan int

CreateOrderWithCallback invokes the dms_enterprise.CreateOrder API asynchronously

func (*Client) CreateOrderWithChan ¶ added in v1.61.13

func (client *Client) CreateOrderWithChan(request *CreateOrderRequest) (<-chan *CreateOrderResponse, <-chan error)

CreateOrderWithChan invokes the dms_enterprise.CreateOrder API asynchronously

func (*Client) CreatePublishGroupTask ¶ added in v1.61.13

func (client *Client) CreatePublishGroupTask(request *CreatePublishGroupTaskRequest) (response *CreatePublishGroupTaskResponse, err error)

CreatePublishGroupTask invokes the dms_enterprise.CreatePublishGroupTask API synchronously

func (*Client) CreatePublishGroupTaskWithCallback ¶ added in v1.61.13

func (client *Client) CreatePublishGroupTaskWithCallback(request *CreatePublishGroupTaskRequest, callback func(response *CreatePublishGroupTaskResponse, err error)) <-chan int

CreatePublishGroupTaskWithCallback invokes the dms_enterprise.CreatePublishGroupTask API asynchronously

func (*Client) CreatePublishGroupTaskWithChan ¶ added in v1.61.13

func (client *Client) CreatePublishGroupTaskWithChan(request *CreatePublishGroupTaskRequest) (<-chan *CreatePublishGroupTaskResponse, <-chan error)

CreatePublishGroupTaskWithChan invokes the dms_enterprise.CreatePublishGroupTask API asynchronously

func (*Client) CreateStructSyncOrder ¶ added in v1.61.968

func (client *Client) CreateStructSyncOrder(request *CreateStructSyncOrderRequest) (response *CreateStructSyncOrderResponse, err error)

CreateStructSyncOrder invokes the dms_enterprise.CreateStructSyncOrder API synchronously

func (*Client) CreateStructSyncOrderWithCallback ¶ added in v1.61.968

func (client *Client) CreateStructSyncOrderWithCallback(request *CreateStructSyncOrderRequest, callback func(response *CreateStructSyncOrderResponse, err error)) <-chan int

CreateStructSyncOrderWithCallback invokes the dms_enterprise.CreateStructSyncOrder API asynchronously

func (*Client) CreateStructSyncOrderWithChan ¶ added in v1.61.968

func (client *Client) CreateStructSyncOrderWithChan(request *CreateStructSyncOrderRequest) (<-chan *CreateStructSyncOrderResponse, <-chan error)

CreateStructSyncOrderWithChan invokes the dms_enterprise.CreateStructSyncOrder API asynchronously

func (*Client) CreateUploadFileJob ¶ added in v1.61.968

func (client *Client) CreateUploadFileJob(request *CreateUploadFileJobRequest) (response *CreateUploadFileJobResponse, err error)

CreateUploadFileJob invokes the dms_enterprise.CreateUploadFileJob API synchronously

func (*Client) CreateUploadFileJobWithCallback ¶ added in v1.61.968

func (client *Client) CreateUploadFileJobWithCallback(request *CreateUploadFileJobRequest, callback func(response *CreateUploadFileJobResponse, err error)) <-chan int

CreateUploadFileJobWithCallback invokes the dms_enterprise.CreateUploadFileJob API asynchronously

func (*Client) CreateUploadFileJobWithChan ¶ added in v1.61.968

func (client *Client) CreateUploadFileJobWithChan(request *CreateUploadFileJobRequest) (<-chan *CreateUploadFileJobResponse, <-chan error)

CreateUploadFileJobWithChan invokes the dms_enterprise.CreateUploadFileJob API asynchronously

func (*Client) CreateUploadOSSFileJob ¶ added in v1.61.968

func (client *Client) CreateUploadOSSFileJob(request *CreateUploadOSSFileJobRequest) (response *CreateUploadOSSFileJobResponse, err error)

CreateUploadOSSFileJob invokes the dms_enterprise.CreateUploadOSSFileJob API synchronously

func (*Client) CreateUploadOSSFileJobWithCallback ¶ added in v1.61.968

func (client *Client) CreateUploadOSSFileJobWithCallback(request *CreateUploadOSSFileJobRequest, callback func(response *CreateUploadOSSFileJobResponse, err error)) <-chan int

CreateUploadOSSFileJobWithCallback invokes the dms_enterprise.CreateUploadOSSFileJob API asynchronously

func (*Client) CreateUploadOSSFileJobWithChan ¶ added in v1.61.968

func (client *Client) CreateUploadOSSFileJobWithChan(request *CreateUploadOSSFileJobRequest) (<-chan *CreateUploadOSSFileJobResponse, <-chan error)

CreateUploadOSSFileJobWithChan invokes the dms_enterprise.CreateUploadOSSFileJob API asynchronously

func (*Client) DeleteInstance ¶ added in v1.61.13

func (client *Client) DeleteInstance(request *DeleteInstanceRequest) (response *DeleteInstanceResponse, err error)

DeleteInstance invokes the dms_enterprise.DeleteInstance API synchronously

func (*Client) DeleteInstanceWithCallback ¶ added in v1.61.13

func (client *Client) DeleteInstanceWithCallback(request *DeleteInstanceRequest, callback func(response *DeleteInstanceResponse, err error)) <-chan int

DeleteInstanceWithCallback invokes the dms_enterprise.DeleteInstance API asynchronously

func (*Client) DeleteInstanceWithChan ¶ added in v1.61.13

func (client *Client) DeleteInstanceWithChan(request *DeleteInstanceRequest) (<-chan *DeleteInstanceResponse, <-chan error)

DeleteInstanceWithChan invokes the dms_enterprise.DeleteInstance API asynchronously

func (*Client) DeleteUser ¶

func (client *Client) DeleteUser(request *DeleteUserRequest) (response *DeleteUserResponse, err error)

DeleteUser invokes the dms_enterprise.DeleteUser API synchronously

func (*Client) DeleteUserWithCallback ¶

func (client *Client) DeleteUserWithCallback(request *DeleteUserRequest, callback func(response *DeleteUserResponse, err error)) <-chan int

DeleteUserWithCallback invokes the dms_enterprise.DeleteUser API asynchronously

func (*Client) DeleteUserWithChan ¶

func (client *Client) DeleteUserWithChan(request *DeleteUserRequest) (<-chan *DeleteUserResponse, <-chan error)

DeleteUserWithChan invokes the dms_enterprise.DeleteUser API asynchronously

func (*Client) DisableUser ¶

func (client *Client) DisableUser(request *DisableUserRequest) (response *DisableUserResponse, err error)

DisableUser invokes the dms_enterprise.DisableUser API synchronously

func (*Client) DisableUserWithCallback ¶

func (client *Client) DisableUserWithCallback(request *DisableUserRequest, callback func(response *DisableUserResponse, err error)) <-chan int

DisableUserWithCallback invokes the dms_enterprise.DisableUser API asynchronously

func (*Client) DisableUserWithChan ¶

func (client *Client) DisableUserWithChan(request *DisableUserRequest) (<-chan *DisableUserResponse, <-chan error)

DisableUserWithChan invokes the dms_enterprise.DisableUser API asynchronously

func (*Client) EnableUser ¶

func (client *Client) EnableUser(request *EnableUserRequest) (response *EnableUserResponse, err error)

EnableUser invokes the dms_enterprise.EnableUser API synchronously

func (*Client) EnableUserWithCallback ¶

func (client *Client) EnableUserWithCallback(request *EnableUserRequest, callback func(response *EnableUserResponse, err error)) <-chan int

EnableUserWithCallback invokes the dms_enterprise.EnableUser API asynchronously

func (*Client) EnableUserWithChan ¶

func (client *Client) EnableUserWithChan(request *EnableUserRequest) (<-chan *EnableUserResponse, <-chan error)

EnableUserWithChan invokes the dms_enterprise.EnableUser API asynchronously

func (*Client) ExecuteDataCorrect ¶ added in v1.61.13

func (client *Client) ExecuteDataCorrect(request *ExecuteDataCorrectRequest) (response *ExecuteDataCorrectResponse, err error)

ExecuteDataCorrect invokes the dms_enterprise.ExecuteDataCorrect API synchronously

func (*Client) ExecuteDataCorrectWithCallback ¶ added in v1.61.13

func (client *Client) ExecuteDataCorrectWithCallback(request *ExecuteDataCorrectRequest, callback func(response *ExecuteDataCorrectResponse, err error)) <-chan int

ExecuteDataCorrectWithCallback invokes the dms_enterprise.ExecuteDataCorrect API asynchronously

func (*Client) ExecuteDataCorrectWithChan ¶ added in v1.61.13

func (client *Client) ExecuteDataCorrectWithChan(request *ExecuteDataCorrectRequest) (<-chan *ExecuteDataCorrectResponse, <-chan error)

ExecuteDataCorrectWithChan invokes the dms_enterprise.ExecuteDataCorrect API asynchronously

func (*Client) ExecuteDataExport ¶ added in v1.61.13

func (client *Client) ExecuteDataExport(request *ExecuteDataExportRequest) (response *ExecuteDataExportResponse, err error)

ExecuteDataExport invokes the dms_enterprise.ExecuteDataExport API synchronously

func (*Client) ExecuteDataExportWithCallback ¶ added in v1.61.13

func (client *Client) ExecuteDataExportWithCallback(request *ExecuteDataExportRequest, callback func(response *ExecuteDataExportResponse, err error)) <-chan int

ExecuteDataExportWithCallback invokes the dms_enterprise.ExecuteDataExport API asynchronously

func (*Client) ExecuteDataExportWithChan ¶ added in v1.61.13

func (client *Client) ExecuteDataExportWithChan(request *ExecuteDataExportRequest) (<-chan *ExecuteDataExportResponse, <-chan error)

ExecuteDataExportWithChan invokes the dms_enterprise.ExecuteDataExport API asynchronously

func (*Client) ExecuteScript ¶ added in v1.61.487

func (client *Client) ExecuteScript(request *ExecuteScriptRequest) (response *ExecuteScriptResponse, err error)

ExecuteScript invokes the dms_enterprise.ExecuteScript API synchronously

func (*Client) ExecuteScriptWithCallback ¶ added in v1.61.487

func (client *Client) ExecuteScriptWithCallback(request *ExecuteScriptRequest, callback func(response *ExecuteScriptResponse, err error)) <-chan int

ExecuteScriptWithCallback invokes the dms_enterprise.ExecuteScript API asynchronously

func (*Client) ExecuteScriptWithChan ¶ added in v1.61.487

func (client *Client) ExecuteScriptWithChan(request *ExecuteScriptRequest) (<-chan *ExecuteScriptResponse, <-chan error)

ExecuteScriptWithChan invokes the dms_enterprise.ExecuteScript API asynchronously

func (*Client) ExecuteStructSync ¶ added in v1.61.968

func (client *Client) ExecuteStructSync(request *ExecuteStructSyncRequest) (response *ExecuteStructSyncResponse, err error)

ExecuteStructSync invokes the dms_enterprise.ExecuteStructSync API synchronously

func (*Client) ExecuteStructSyncWithCallback ¶ added in v1.61.968

func (client *Client) ExecuteStructSyncWithCallback(request *ExecuteStructSyncRequest, callback func(response *ExecuteStructSyncResponse, err error)) <-chan int

ExecuteStructSyncWithCallback invokes the dms_enterprise.ExecuteStructSync API asynchronously

func (*Client) ExecuteStructSyncWithChan ¶ added in v1.61.968

func (client *Client) ExecuteStructSyncWithChan(request *ExecuteStructSyncRequest) (<-chan *ExecuteStructSyncResponse, <-chan error)

ExecuteStructSyncWithChan invokes the dms_enterprise.ExecuteStructSync API asynchronously

func (*Client) GetApprovalDetail ¶ added in v1.61.13

func (client *Client) GetApprovalDetail(request *GetApprovalDetailRequest) (response *GetApprovalDetailResponse, err error)

GetApprovalDetail invokes the dms_enterprise.GetApprovalDetail API synchronously

func (*Client) GetApprovalDetailWithCallback ¶ added in v1.61.13

func (client *Client) GetApprovalDetailWithCallback(request *GetApprovalDetailRequest, callback func(response *GetApprovalDetailResponse, err error)) <-chan int

GetApprovalDetailWithCallback invokes the dms_enterprise.GetApprovalDetail API asynchronously

func (*Client) GetApprovalDetailWithChan ¶ added in v1.61.13

func (client *Client) GetApprovalDetailWithChan(request *GetApprovalDetailRequest) (<-chan *GetApprovalDetailResponse, <-chan error)

GetApprovalDetailWithChan invokes the dms_enterprise.GetApprovalDetail API asynchronously

func (*Client) GetDBTopology ¶ added in v1.61.1023

func (client *Client) GetDBTopology(request *GetDBTopologyRequest) (response *GetDBTopologyResponse, err error)

GetDBTopology invokes the dms_enterprise.GetDBTopology API synchronously

func (*Client) GetDBTopologyWithCallback ¶ added in v1.61.1023

func (client *Client) GetDBTopologyWithCallback(request *GetDBTopologyRequest, callback func(response *GetDBTopologyResponse, err error)) <-chan int

GetDBTopologyWithCallback invokes the dms_enterprise.GetDBTopology API asynchronously

func (*Client) GetDBTopologyWithChan ¶ added in v1.61.1023

func (client *Client) GetDBTopologyWithChan(request *GetDBTopologyRequest) (<-chan *GetDBTopologyResponse, <-chan error)

GetDBTopologyWithChan invokes the dms_enterprise.GetDBTopology API asynchronously

func (*Client) GetDataCorrectBackupFiles ¶ added in v1.61.13

func (client *Client) GetDataCorrectBackupFiles(request *GetDataCorrectBackupFilesRequest) (response *GetDataCorrectBackupFilesResponse, err error)

GetDataCorrectBackupFiles invokes the dms_enterprise.GetDataCorrectBackupFiles API synchronously

func (*Client) GetDataCorrectBackupFilesWithCallback ¶ added in v1.61.13

func (client *Client) GetDataCorrectBackupFilesWithCallback(request *GetDataCorrectBackupFilesRequest, callback func(response *GetDataCorrectBackupFilesResponse, err error)) <-chan int

GetDataCorrectBackupFilesWithCallback invokes the dms_enterprise.GetDataCorrectBackupFiles API asynchronously

func (*Client) GetDataCorrectBackupFilesWithChan ¶ added in v1.61.13

func (client *Client) GetDataCorrectBackupFilesWithChan(request *GetDataCorrectBackupFilesRequest) (<-chan *GetDataCorrectBackupFilesResponse, <-chan error)

GetDataCorrectBackupFilesWithChan invokes the dms_enterprise.GetDataCorrectBackupFiles API asynchronously

func (*Client) GetDataCorrectOrderDetail ¶ added in v1.61.13

func (client *Client) GetDataCorrectOrderDetail(request *GetDataCorrectOrderDetailRequest) (response *GetDataCorrectOrderDetailResponse, err error)

GetDataCorrectOrderDetail invokes the dms_enterprise.GetDataCorrectOrderDetail API synchronously

func (*Client) GetDataCorrectOrderDetailWithCallback ¶ added in v1.61.13

func (client *Client) GetDataCorrectOrderDetailWithCallback(request *GetDataCorrectOrderDetailRequest, callback func(response *GetDataCorrectOrderDetailResponse, err error)) <-chan int

GetDataCorrectOrderDetailWithCallback invokes the dms_enterprise.GetDataCorrectOrderDetail API asynchronously

func (*Client) GetDataCorrectOrderDetailWithChan ¶ added in v1.61.13

func (client *Client) GetDataCorrectOrderDetailWithChan(request *GetDataCorrectOrderDetailRequest) (<-chan *GetDataCorrectOrderDetailResponse, <-chan error)

GetDataCorrectOrderDetailWithChan invokes the dms_enterprise.GetDataCorrectOrderDetail API asynchronously

func (*Client) GetDataCorrectSQLFile ¶ added in v1.61.968

func (client *Client) GetDataCorrectSQLFile(request *GetDataCorrectSQLFileRequest) (response *GetDataCorrectSQLFileResponse, err error)

GetDataCorrectSQLFile invokes the dms_enterprise.GetDataCorrectSQLFile API synchronously

func (*Client) GetDataCorrectSQLFileWithCallback ¶ added in v1.61.968

func (client *Client) GetDataCorrectSQLFileWithCallback(request *GetDataCorrectSQLFileRequest, callback func(response *GetDataCorrectSQLFileResponse, err error)) <-chan int

GetDataCorrectSQLFileWithCallback invokes the dms_enterprise.GetDataCorrectSQLFile API asynchronously

func (*Client) GetDataCorrectSQLFileWithChan ¶ added in v1.61.968

func (client *Client) GetDataCorrectSQLFileWithChan(request *GetDataCorrectSQLFileRequest) (<-chan *GetDataCorrectSQLFileResponse, <-chan error)

GetDataCorrectSQLFileWithChan invokes the dms_enterprise.GetDataCorrectSQLFile API asynchronously

func (*Client) GetDataCorrectTaskDetail ¶ added in v1.61.1009

func (client *Client) GetDataCorrectTaskDetail(request *GetDataCorrectTaskDetailRequest) (response *GetDataCorrectTaskDetailResponse, err error)

GetDataCorrectTaskDetail invokes the dms_enterprise.GetDataCorrectTaskDetail API synchronously

func (*Client) GetDataCorrectTaskDetailWithCallback ¶ added in v1.61.1009

func (client *Client) GetDataCorrectTaskDetailWithCallback(request *GetDataCorrectTaskDetailRequest, callback func(response *GetDataCorrectTaskDetailResponse, err error)) <-chan int

GetDataCorrectTaskDetailWithCallback invokes the dms_enterprise.GetDataCorrectTaskDetail API asynchronously

func (*Client) GetDataCorrectTaskDetailWithChan ¶ added in v1.61.1009

func (client *Client) GetDataCorrectTaskDetailWithChan(request *GetDataCorrectTaskDetailRequest) (<-chan *GetDataCorrectTaskDetailResponse, <-chan error)

GetDataCorrectTaskDetailWithChan invokes the dms_enterprise.GetDataCorrectTaskDetail API asynchronously

func (*Client) GetDataCronClearTaskDetailList ¶ added in v1.61.1009

func (client *Client) GetDataCronClearTaskDetailList(request *GetDataCronClearTaskDetailListRequest) (response *GetDataCronClearTaskDetailListResponse, err error)

GetDataCronClearTaskDetailList invokes the dms_enterprise.GetDataCronClearTaskDetailList API synchronously

func (*Client) GetDataCronClearTaskDetailListWithCallback ¶ added in v1.61.1009

func (client *Client) GetDataCronClearTaskDetailListWithCallback(request *GetDataCronClearTaskDetailListRequest, callback func(response *GetDataCronClearTaskDetailListResponse, err error)) <-chan int

GetDataCronClearTaskDetailListWithCallback invokes the dms_enterprise.GetDataCronClearTaskDetailList API asynchronously

func (*Client) GetDataCronClearTaskDetailListWithChan ¶ added in v1.61.1009

func (client *Client) GetDataCronClearTaskDetailListWithChan(request *GetDataCronClearTaskDetailListRequest) (<-chan *GetDataCronClearTaskDetailListResponse, <-chan error)

GetDataCronClearTaskDetailListWithChan invokes the dms_enterprise.GetDataCronClearTaskDetailList API asynchronously

func (*Client) GetDataExportDownloadURL ¶ added in v1.61.13

func (client *Client) GetDataExportDownloadURL(request *GetDataExportDownloadURLRequest) (response *GetDataExportDownloadURLResponse, err error)

GetDataExportDownloadURL invokes the dms_enterprise.GetDataExportDownloadURL API synchronously

func (*Client) GetDataExportDownloadURLWithCallback ¶ added in v1.61.13

func (client *Client) GetDataExportDownloadURLWithCallback(request *GetDataExportDownloadURLRequest, callback func(response *GetDataExportDownloadURLResponse, err error)) <-chan int

GetDataExportDownloadURLWithCallback invokes the dms_enterprise.GetDataExportDownloadURL API asynchronously

func (*Client) GetDataExportDownloadURLWithChan ¶ added in v1.61.13

func (client *Client) GetDataExportDownloadURLWithChan(request *GetDataExportDownloadURLRequest) (<-chan *GetDataExportDownloadURLResponse, <-chan error)

GetDataExportDownloadURLWithChan invokes the dms_enterprise.GetDataExportDownloadURL API asynchronously

func (*Client) GetDataExportOrderDetail ¶ added in v1.61.13

func (client *Client) GetDataExportOrderDetail(request *GetDataExportOrderDetailRequest) (response *GetDataExportOrderDetailResponse, err error)

GetDataExportOrderDetail invokes the dms_enterprise.GetDataExportOrderDetail API synchronously

func (*Client) GetDataExportOrderDetailWithCallback ¶ added in v1.61.13

func (client *Client) GetDataExportOrderDetailWithCallback(request *GetDataExportOrderDetailRequest, callback func(response *GetDataExportOrderDetailResponse, err error)) <-chan int

GetDataExportOrderDetailWithCallback invokes the dms_enterprise.GetDataExportOrderDetail API asynchronously

func (*Client) GetDataExportOrderDetailWithChan ¶ added in v1.61.13

func (client *Client) GetDataExportOrderDetailWithChan(request *GetDataExportOrderDetailRequest) (<-chan *GetDataExportOrderDetailResponse, <-chan error)

GetDataExportOrderDetailWithChan invokes the dms_enterprise.GetDataExportOrderDetail API asynchronously

func (*Client) GetDatabase ¶ added in v1.61.13

func (client *Client) GetDatabase(request *GetDatabaseRequest) (response *GetDatabaseResponse, err error)

GetDatabase invokes the dms_enterprise.GetDatabase API synchronously

func (*Client) GetDatabaseWithCallback ¶ added in v1.61.13

func (client *Client) GetDatabaseWithCallback(request *GetDatabaseRequest, callback func(response *GetDatabaseResponse, err error)) <-chan int

GetDatabaseWithCallback invokes the dms_enterprise.GetDatabase API asynchronously

func (*Client) GetDatabaseWithChan ¶ added in v1.61.13

func (client *Client) GetDatabaseWithChan(request *GetDatabaseRequest) (<-chan *GetDatabaseResponse, <-chan error)

GetDatabaseWithChan invokes the dms_enterprise.GetDatabase API asynchronously

func (*Client) GetInstance ¶ added in v1.61.13

func (client *Client) GetInstance(request *GetInstanceRequest) (response *GetInstanceResponse, err error)

GetInstance invokes the dms_enterprise.GetInstance API synchronously

func (*Client) GetInstanceWithCallback ¶ added in v1.61.13

func (client *Client) GetInstanceWithCallback(request *GetInstanceRequest, callback func(response *GetInstanceResponse, err error)) <-chan int

GetInstanceWithCallback invokes the dms_enterprise.GetInstance API asynchronously

func (*Client) GetInstanceWithChan ¶ added in v1.61.13

func (client *Client) GetInstanceWithChan(request *GetInstanceRequest) (<-chan *GetInstanceResponse, <-chan error)

GetInstanceWithChan invokes the dms_enterprise.GetInstance API asynchronously

func (*Client) GetLogicDatabase ¶ added in v1.61.13

func (client *Client) GetLogicDatabase(request *GetLogicDatabaseRequest) (response *GetLogicDatabaseResponse, err error)

GetLogicDatabase invokes the dms_enterprise.GetLogicDatabase API synchronously

func (*Client) GetLogicDatabaseWithCallback ¶ added in v1.61.13

func (client *Client) GetLogicDatabaseWithCallback(request *GetLogicDatabaseRequest, callback func(response *GetLogicDatabaseResponse, err error)) <-chan int

GetLogicDatabaseWithCallback invokes the dms_enterprise.GetLogicDatabase API asynchronously

func (*Client) GetLogicDatabaseWithChan ¶ added in v1.61.13

func (client *Client) GetLogicDatabaseWithChan(request *GetLogicDatabaseRequest) (<-chan *GetLogicDatabaseResponse, <-chan error)

GetLogicDatabaseWithChan invokes the dms_enterprise.GetLogicDatabase API asynchronously

func (*Client) GetMetaTableColumn ¶ added in v1.61.504

func (client *Client) GetMetaTableColumn(request *GetMetaTableColumnRequest) (response *GetMetaTableColumnResponse, err error)

GetMetaTableColumn invokes the dms_enterprise.GetMetaTableColumn API synchronously

func (*Client) GetMetaTableColumnWithCallback ¶ added in v1.61.504

func (client *Client) GetMetaTableColumnWithCallback(request *GetMetaTableColumnRequest, callback func(response *GetMetaTableColumnResponse, err error)) <-chan int

GetMetaTableColumnWithCallback invokes the dms_enterprise.GetMetaTableColumn API asynchronously

func (*Client) GetMetaTableColumnWithChan ¶ added in v1.61.504

func (client *Client) GetMetaTableColumnWithChan(request *GetMetaTableColumnRequest) (<-chan *GetMetaTableColumnResponse, <-chan error)

GetMetaTableColumnWithChan invokes the dms_enterprise.GetMetaTableColumn API asynchronously

func (*Client) GetMetaTableDetailInfo ¶ added in v1.61.504

func (client *Client) GetMetaTableDetailInfo(request *GetMetaTableDetailInfoRequest) (response *GetMetaTableDetailInfoResponse, err error)

GetMetaTableDetailInfo invokes the dms_enterprise.GetMetaTableDetailInfo API synchronously

func (*Client) GetMetaTableDetailInfoWithCallback ¶ added in v1.61.504

func (client *Client) GetMetaTableDetailInfoWithCallback(request *GetMetaTableDetailInfoRequest, callback func(response *GetMetaTableDetailInfoResponse, err error)) <-chan int

GetMetaTableDetailInfoWithCallback invokes the dms_enterprise.GetMetaTableDetailInfo API asynchronously

func (*Client) GetMetaTableDetailInfoWithChan ¶ added in v1.61.504

func (client *Client) GetMetaTableDetailInfoWithChan(request *GetMetaTableDetailInfoRequest) (<-chan *GetMetaTableDetailInfoResponse, <-chan error)

GetMetaTableDetailInfoWithChan invokes the dms_enterprise.GetMetaTableDetailInfo API asynchronously

func (*Client) GetOpLog ¶

func (client *Client) GetOpLog(request *GetOpLogRequest) (response *GetOpLogResponse, err error)

GetOpLog invokes the dms_enterprise.GetOpLog API synchronously

func (*Client) GetOpLogWithCallback ¶

func (client *Client) GetOpLogWithCallback(request *GetOpLogRequest, callback func(response *GetOpLogResponse, err error)) <-chan int

GetOpLogWithCallback invokes the dms_enterprise.GetOpLog API asynchronously

func (*Client) GetOpLogWithChan ¶

func (client *Client) GetOpLogWithChan(request *GetOpLogRequest) (<-chan *GetOpLogResponse, <-chan error)

GetOpLogWithChan invokes the dms_enterprise.GetOpLog API asynchronously

func (*Client) GetOrderBaseInfo ¶ added in v1.61.13

func (client *Client) GetOrderBaseInfo(request *GetOrderBaseInfoRequest) (response *GetOrderBaseInfoResponse, err error)

GetOrderBaseInfo invokes the dms_enterprise.GetOrderBaseInfo API synchronously

func (*Client) GetOrderBaseInfoWithCallback ¶ added in v1.61.13

func (client *Client) GetOrderBaseInfoWithCallback(request *GetOrderBaseInfoRequest, callback func(response *GetOrderBaseInfoResponse, err error)) <-chan int

GetOrderBaseInfoWithCallback invokes the dms_enterprise.GetOrderBaseInfo API asynchronously

func (*Client) GetOrderBaseInfoWithChan ¶ added in v1.61.13

func (client *Client) GetOrderBaseInfoWithChan(request *GetOrderBaseInfoRequest) (<-chan *GetOrderBaseInfoResponse, <-chan error)

GetOrderBaseInfoWithChan invokes the dms_enterprise.GetOrderBaseInfo API asynchronously

func (*Client) GetOwnerApplyOrderDetail ¶ added in v1.61.968

func (client *Client) GetOwnerApplyOrderDetail(request *GetOwnerApplyOrderDetailRequest) (response *GetOwnerApplyOrderDetailResponse, err error)

GetOwnerApplyOrderDetail invokes the dms_enterprise.GetOwnerApplyOrderDetail API synchronously

func (*Client) GetOwnerApplyOrderDetailWithCallback ¶ added in v1.61.968

func (client *Client) GetOwnerApplyOrderDetailWithCallback(request *GetOwnerApplyOrderDetailRequest, callback func(response *GetOwnerApplyOrderDetailResponse, err error)) <-chan int

GetOwnerApplyOrderDetailWithCallback invokes the dms_enterprise.GetOwnerApplyOrderDetail API asynchronously

func (*Client) GetOwnerApplyOrderDetailWithChan ¶ added in v1.61.968

func (client *Client) GetOwnerApplyOrderDetailWithChan(request *GetOwnerApplyOrderDetailRequest) (<-chan *GetOwnerApplyOrderDetailResponse, <-chan error)

GetOwnerApplyOrderDetailWithChan invokes the dms_enterprise.GetOwnerApplyOrderDetail API asynchronously

func (*Client) GetPermApplyOrderDetail ¶ added in v1.61.968

func (client *Client) GetPermApplyOrderDetail(request *GetPermApplyOrderDetailRequest) (response *GetPermApplyOrderDetailResponse, err error)

GetPermApplyOrderDetail invokes the dms_enterprise.GetPermApplyOrderDetail API synchronously

func (*Client) GetPermApplyOrderDetailWithCallback ¶ added in v1.61.968

func (client *Client) GetPermApplyOrderDetailWithCallback(request *GetPermApplyOrderDetailRequest, callback func(response *GetPermApplyOrderDetailResponse, err error)) <-chan int

GetPermApplyOrderDetailWithCallback invokes the dms_enterprise.GetPermApplyOrderDetail API asynchronously

func (*Client) GetPermApplyOrderDetailWithChan ¶ added in v1.61.968

func (client *Client) GetPermApplyOrderDetailWithChan(request *GetPermApplyOrderDetailRequest) (<-chan *GetPermApplyOrderDetailResponse, <-chan error)

GetPermApplyOrderDetailWithChan invokes the dms_enterprise.GetPermApplyOrderDetail API asynchronously

func (*Client) GetStructSyncExecSqlDetail ¶ added in v1.61.968

func (client *Client) GetStructSyncExecSqlDetail(request *GetStructSyncExecSqlDetailRequest) (response *GetStructSyncExecSqlDetailResponse, err error)

GetStructSyncExecSqlDetail invokes the dms_enterprise.GetStructSyncExecSqlDetail API synchronously

func (*Client) GetStructSyncExecSqlDetailWithCallback ¶ added in v1.61.968

func (client *Client) GetStructSyncExecSqlDetailWithCallback(request *GetStructSyncExecSqlDetailRequest, callback func(response *GetStructSyncExecSqlDetailResponse, err error)) <-chan int

GetStructSyncExecSqlDetailWithCallback invokes the dms_enterprise.GetStructSyncExecSqlDetail API asynchronously

func (*Client) GetStructSyncExecSqlDetailWithChan ¶ added in v1.61.968

func (client *Client) GetStructSyncExecSqlDetailWithChan(request *GetStructSyncExecSqlDetailRequest) (<-chan *GetStructSyncExecSqlDetailResponse, <-chan error)

GetStructSyncExecSqlDetailWithChan invokes the dms_enterprise.GetStructSyncExecSqlDetail API asynchronously

func (*Client) GetStructSyncJobAnalyzeResult ¶ added in v1.61.968

func (client *Client) GetStructSyncJobAnalyzeResult(request *GetStructSyncJobAnalyzeResultRequest) (response *GetStructSyncJobAnalyzeResultResponse, err error)

GetStructSyncJobAnalyzeResult invokes the dms_enterprise.GetStructSyncJobAnalyzeResult API synchronously

func (*Client) GetStructSyncJobAnalyzeResultWithCallback ¶ added in v1.61.968

func (client *Client) GetStructSyncJobAnalyzeResultWithCallback(request *GetStructSyncJobAnalyzeResultRequest, callback func(response *GetStructSyncJobAnalyzeResultResponse, err error)) <-chan int

GetStructSyncJobAnalyzeResultWithCallback invokes the dms_enterprise.GetStructSyncJobAnalyzeResult API asynchronously

func (*Client) GetStructSyncJobAnalyzeResultWithChan ¶ added in v1.61.968

func (client *Client) GetStructSyncJobAnalyzeResultWithChan(request *GetStructSyncJobAnalyzeResultRequest) (<-chan *GetStructSyncJobAnalyzeResultResponse, <-chan error)

GetStructSyncJobAnalyzeResultWithChan invokes the dms_enterprise.GetStructSyncJobAnalyzeResult API asynchronously

func (*Client) GetStructSyncJobDetail ¶ added in v1.61.968

func (client *Client) GetStructSyncJobDetail(request *GetStructSyncJobDetailRequest) (response *GetStructSyncJobDetailResponse, err error)

GetStructSyncJobDetail invokes the dms_enterprise.GetStructSyncJobDetail API synchronously

func (*Client) GetStructSyncJobDetailWithCallback ¶ added in v1.61.968

func (client *Client) GetStructSyncJobDetailWithCallback(request *GetStructSyncJobDetailRequest, callback func(response *GetStructSyncJobDetailResponse, err error)) <-chan int

GetStructSyncJobDetailWithCallback invokes the dms_enterprise.GetStructSyncJobDetail API asynchronously

func (*Client) GetStructSyncJobDetailWithChan ¶ added in v1.61.968

func (client *Client) GetStructSyncJobDetailWithChan(request *GetStructSyncJobDetailRequest) (<-chan *GetStructSyncJobDetailResponse, <-chan error)

GetStructSyncJobDetailWithChan invokes the dms_enterprise.GetStructSyncJobDetail API asynchronously

func (*Client) GetStructSyncOrderDetail ¶ added in v1.61.968

func (client *Client) GetStructSyncOrderDetail(request *GetStructSyncOrderDetailRequest) (response *GetStructSyncOrderDetailResponse, err error)

GetStructSyncOrderDetail invokes the dms_enterprise.GetStructSyncOrderDetail API synchronously

func (*Client) GetStructSyncOrderDetailWithCallback ¶ added in v1.61.968

func (client *Client) GetStructSyncOrderDetailWithCallback(request *GetStructSyncOrderDetailRequest, callback func(response *GetStructSyncOrderDetailResponse, err error)) <-chan int

GetStructSyncOrderDetailWithCallback invokes the dms_enterprise.GetStructSyncOrderDetail API asynchronously

func (*Client) GetStructSyncOrderDetailWithChan ¶ added in v1.61.968

func (client *Client) GetStructSyncOrderDetailWithChan(request *GetStructSyncOrderDetailRequest) (<-chan *GetStructSyncOrderDetailResponse, <-chan error)

GetStructSyncOrderDetailWithChan invokes the dms_enterprise.GetStructSyncOrderDetail API asynchronously

func (*Client) GetTableDBTopology ¶ added in v1.61.504

func (client *Client) GetTableDBTopology(request *GetTableDBTopologyRequest) (response *GetTableDBTopologyResponse, err error)

GetTableDBTopology invokes the dms_enterprise.GetTableDBTopology API synchronously

func (*Client) GetTableDBTopologyWithCallback ¶ added in v1.61.504

func (client *Client) GetTableDBTopologyWithCallback(request *GetTableDBTopologyRequest, callback func(response *GetTableDBTopologyResponse, err error)) <-chan int

GetTableDBTopologyWithCallback invokes the dms_enterprise.GetTableDBTopology API asynchronously

func (*Client) GetTableDBTopologyWithChan ¶ added in v1.61.504

func (client *Client) GetTableDBTopologyWithChan(request *GetTableDBTopologyRequest) (<-chan *GetTableDBTopologyResponse, <-chan error)

GetTableDBTopologyWithChan invokes the dms_enterprise.GetTableDBTopology API asynchronously

func (*Client) GetTableTopology ¶ added in v1.61.968

func (client *Client) GetTableTopology(request *GetTableTopologyRequest) (response *GetTableTopologyResponse, err error)

GetTableTopology invokes the dms_enterprise.GetTableTopology API synchronously

func (*Client) GetTableTopologyWithCallback ¶ added in v1.61.968

func (client *Client) GetTableTopologyWithCallback(request *GetTableTopologyRequest, callback func(response *GetTableTopologyResponse, err error)) <-chan int

GetTableTopologyWithCallback invokes the dms_enterprise.GetTableTopology API asynchronously

func (*Client) GetTableTopologyWithChan ¶ added in v1.61.968

func (client *Client) GetTableTopologyWithChan(request *GetTableTopologyRequest) (<-chan *GetTableTopologyResponse, <-chan error)

GetTableTopologyWithChan invokes the dms_enterprise.GetTableTopology API asynchronously

func (*Client) GetUser ¶ added in v1.61.13

func (client *Client) GetUser(request *GetUserRequest) (response *GetUserResponse, err error)

GetUser invokes the dms_enterprise.GetUser API synchronously

func (*Client) GetUserActiveTenant ¶ added in v1.61.504

func (client *Client) GetUserActiveTenant(request *GetUserActiveTenantRequest) (response *GetUserActiveTenantResponse, err error)

GetUserActiveTenant invokes the dms_enterprise.GetUserActiveTenant API synchronously

func (*Client) GetUserActiveTenantWithCallback ¶ added in v1.61.504

func (client *Client) GetUserActiveTenantWithCallback(request *GetUserActiveTenantRequest, callback func(response *GetUserActiveTenantResponse, err error)) <-chan int

GetUserActiveTenantWithCallback invokes the dms_enterprise.GetUserActiveTenant API asynchronously

func (*Client) GetUserActiveTenantWithChan ¶ added in v1.61.504

func (client *Client) GetUserActiveTenantWithChan(request *GetUserActiveTenantRequest) (<-chan *GetUserActiveTenantResponse, <-chan error)

GetUserActiveTenantWithChan invokes the dms_enterprise.GetUserActiveTenant API asynchronously

func (*Client) GetUserUploadFileJob ¶ added in v1.61.968

func (client *Client) GetUserUploadFileJob(request *GetUserUploadFileJobRequest) (response *GetUserUploadFileJobResponse, err error)

GetUserUploadFileJob invokes the dms_enterprise.GetUserUploadFileJob API synchronously

func (*Client) GetUserUploadFileJobWithCallback ¶ added in v1.61.968

func (client *Client) GetUserUploadFileJobWithCallback(request *GetUserUploadFileJobRequest, callback func(response *GetUserUploadFileJobResponse, err error)) <-chan int

GetUserUploadFileJobWithCallback invokes the dms_enterprise.GetUserUploadFileJob API asynchronously

func (*Client) GetUserUploadFileJobWithChan ¶ added in v1.61.968

func (client *Client) GetUserUploadFileJobWithChan(request *GetUserUploadFileJobRequest) (<-chan *GetUserUploadFileJobResponse, <-chan error)

GetUserUploadFileJobWithChan invokes the dms_enterprise.GetUserUploadFileJob API asynchronously

func (*Client) GetUserWithCallback ¶ added in v1.61.13

func (client *Client) GetUserWithCallback(request *GetUserRequest, callback func(response *GetUserResponse, err error)) <-chan int

GetUserWithCallback invokes the dms_enterprise.GetUser API asynchronously

func (*Client) GetUserWithChan ¶ added in v1.61.13

func (client *Client) GetUserWithChan(request *GetUserRequest) (<-chan *GetUserResponse, <-chan error)

GetUserWithChan invokes the dms_enterprise.GetUser API asynchronously

func (*Client) GrantUserPermission ¶ added in v1.61.13

func (client *Client) GrantUserPermission(request *GrantUserPermissionRequest) (response *GrantUserPermissionResponse, err error)

GrantUserPermission invokes the dms_enterprise.GrantUserPermission API synchronously

func (*Client) GrantUserPermissionWithCallback ¶ added in v1.61.13

func (client *Client) GrantUserPermissionWithCallback(request *GrantUserPermissionRequest, callback func(response *GrantUserPermissionResponse, err error)) <-chan int

GrantUserPermissionWithCallback invokes the dms_enterprise.GrantUserPermission API asynchronously

func (*Client) GrantUserPermissionWithChan ¶ added in v1.61.13

func (client *Client) GrantUserPermissionWithChan(request *GrantUserPermissionRequest) (<-chan *GrantUserPermissionResponse, <-chan error)

GrantUserPermissionWithChan invokes the dms_enterprise.GrantUserPermission API asynchronously

func (*Client) ListColumns ¶ added in v1.61.13

func (client *Client) ListColumns(request *ListColumnsRequest) (response *ListColumnsResponse, err error)

ListColumns invokes the dms_enterprise.ListColumns API synchronously

func (*Client) ListColumnsWithCallback ¶ added in v1.61.13

func (client *Client) ListColumnsWithCallback(request *ListColumnsRequest, callback func(response *ListColumnsResponse, err error)) <-chan int

ListColumnsWithCallback invokes the dms_enterprise.ListColumns API asynchronously

func (*Client) ListColumnsWithChan ¶ added in v1.61.13

func (client *Client) ListColumnsWithChan(request *ListColumnsRequest) (<-chan *ListColumnsResponse, <-chan error)

ListColumnsWithChan invokes the dms_enterprise.ListColumns API asynchronously

func (*Client) ListDBTaskSQLJob ¶ added in v1.61.968

func (client *Client) ListDBTaskSQLJob(request *ListDBTaskSQLJobRequest) (response *ListDBTaskSQLJobResponse, err error)

ListDBTaskSQLJob invokes the dms_enterprise.ListDBTaskSQLJob API synchronously

func (*Client) ListDBTaskSQLJobDetail ¶ added in v1.61.968

func (client *Client) ListDBTaskSQLJobDetail(request *ListDBTaskSQLJobDetailRequest) (response *ListDBTaskSQLJobDetailResponse, err error)

ListDBTaskSQLJobDetail invokes the dms_enterprise.ListDBTaskSQLJobDetail API synchronously

func (*Client) ListDBTaskSQLJobDetailWithCallback ¶ added in v1.61.968

func (client *Client) ListDBTaskSQLJobDetailWithCallback(request *ListDBTaskSQLJobDetailRequest, callback func(response *ListDBTaskSQLJobDetailResponse, err error)) <-chan int

ListDBTaskSQLJobDetailWithCallback invokes the dms_enterprise.ListDBTaskSQLJobDetail API asynchronously

func (*Client) ListDBTaskSQLJobDetailWithChan ¶ added in v1.61.968

func (client *Client) ListDBTaskSQLJobDetailWithChan(request *ListDBTaskSQLJobDetailRequest) (<-chan *ListDBTaskSQLJobDetailResponse, <-chan error)

ListDBTaskSQLJobDetailWithChan invokes the dms_enterprise.ListDBTaskSQLJobDetail API asynchronously

func (*Client) ListDBTaskSQLJobWithCallback ¶ added in v1.61.968

func (client *Client) ListDBTaskSQLJobWithCallback(request *ListDBTaskSQLJobRequest, callback func(response *ListDBTaskSQLJobResponse, err error)) <-chan int

ListDBTaskSQLJobWithCallback invokes the dms_enterprise.ListDBTaskSQLJob API asynchronously

func (*Client) ListDBTaskSQLJobWithChan ¶ added in v1.61.968

func (client *Client) ListDBTaskSQLJobWithChan(request *ListDBTaskSQLJobRequest) (<-chan *ListDBTaskSQLJobResponse, <-chan error)

ListDBTaskSQLJobWithChan invokes the dms_enterprise.ListDBTaskSQLJob API asynchronously

func (*Client) ListDDLPublishRecords ¶ added in v1.61.1009

func (client *Client) ListDDLPublishRecords(request *ListDDLPublishRecordsRequest) (response *ListDDLPublishRecordsResponse, err error)

ListDDLPublishRecords invokes the dms_enterprise.ListDDLPublishRecords API synchronously

func (*Client) ListDDLPublishRecordsWithCallback ¶ added in v1.61.1009

func (client *Client) ListDDLPublishRecordsWithCallback(request *ListDDLPublishRecordsRequest, callback func(response *ListDDLPublishRecordsResponse, err error)) <-chan int

ListDDLPublishRecordsWithCallback invokes the dms_enterprise.ListDDLPublishRecords API asynchronously

func (*Client) ListDDLPublishRecordsWithChan ¶ added in v1.61.1009

func (client *Client) ListDDLPublishRecordsWithChan(request *ListDDLPublishRecordsRequest) (<-chan *ListDDLPublishRecordsResponse, <-chan error)

ListDDLPublishRecordsWithChan invokes the dms_enterprise.ListDDLPublishRecords API asynchronously

func (*Client) ListDatabaseUserPermssions ¶ added in v1.61.13

func (client *Client) ListDatabaseUserPermssions(request *ListDatabaseUserPermssionsRequest) (response *ListDatabaseUserPermssionsResponse, err error)

ListDatabaseUserPermssions invokes the dms_enterprise.ListDatabaseUserPermssions API synchronously

func (*Client) ListDatabaseUserPermssionsWithCallback ¶ added in v1.61.13

func (client *Client) ListDatabaseUserPermssionsWithCallback(request *ListDatabaseUserPermssionsRequest, callback func(response *ListDatabaseUserPermssionsResponse, err error)) <-chan int

ListDatabaseUserPermssionsWithCallback invokes the dms_enterprise.ListDatabaseUserPermssions API asynchronously

func (*Client) ListDatabaseUserPermssionsWithChan ¶ added in v1.61.13

func (client *Client) ListDatabaseUserPermssionsWithChan(request *ListDatabaseUserPermssionsRequest) (<-chan *ListDatabaseUserPermssionsResponse, <-chan error)

ListDatabaseUserPermssionsWithChan invokes the dms_enterprise.ListDatabaseUserPermssions API asynchronously

func (*Client) ListDatabases ¶ added in v1.61.13

func (client *Client) ListDatabases(request *ListDatabasesRequest) (response *ListDatabasesResponse, err error)

ListDatabases invokes the dms_enterprise.ListDatabases API synchronously

func (*Client) ListDatabasesWithCallback ¶ added in v1.61.13

func (client *Client) ListDatabasesWithCallback(request *ListDatabasesRequest, callback func(response *ListDatabasesResponse, err error)) <-chan int

ListDatabasesWithCallback invokes the dms_enterprise.ListDatabases API asynchronously

func (*Client) ListDatabasesWithChan ¶ added in v1.61.13

func (client *Client) ListDatabasesWithChan(request *ListDatabasesRequest) (<-chan *ListDatabasesResponse, <-chan error)

ListDatabasesWithChan invokes the dms_enterprise.ListDatabases API asynchronously

func (*Client) ListIndexes ¶ added in v1.61.13

func (client *Client) ListIndexes(request *ListIndexesRequest) (response *ListIndexesResponse, err error)

ListIndexes invokes the dms_enterprise.ListIndexes API synchronously

func (*Client) ListIndexesWithCallback ¶ added in v1.61.13

func (client *Client) ListIndexesWithCallback(request *ListIndexesRequest, callback func(response *ListIndexesResponse, err error)) <-chan int

ListIndexesWithCallback invokes the dms_enterprise.ListIndexes API asynchronously

func (*Client) ListIndexesWithChan ¶ added in v1.61.13

func (client *Client) ListIndexesWithChan(request *ListIndexesRequest) (<-chan *ListIndexesResponse, <-chan error)

ListIndexesWithChan invokes the dms_enterprise.ListIndexes API asynchronously

func (*Client) ListInstances ¶ added in v1.61.13

func (client *Client) ListInstances(request *ListInstancesRequest) (response *ListInstancesResponse, err error)

ListInstances invokes the dms_enterprise.ListInstances API synchronously

func (*Client) ListInstancesWithCallback ¶ added in v1.61.13

func (client *Client) ListInstancesWithCallback(request *ListInstancesRequest, callback func(response *ListInstancesResponse, err error)) <-chan int

ListInstancesWithCallback invokes the dms_enterprise.ListInstances API asynchronously

func (*Client) ListInstancesWithChan ¶ added in v1.61.13

func (client *Client) ListInstancesWithChan(request *ListInstancesRequest) (<-chan *ListInstancesResponse, <-chan error)

ListInstancesWithChan invokes the dms_enterprise.ListInstances API asynchronously

func (*Client) ListLogicDatabases ¶ added in v1.61.13

func (client *Client) ListLogicDatabases(request *ListLogicDatabasesRequest) (response *ListLogicDatabasesResponse, err error)

ListLogicDatabases invokes the dms_enterprise.ListLogicDatabases API synchronously

func (*Client) ListLogicDatabasesWithCallback ¶ added in v1.61.13

func (client *Client) ListLogicDatabasesWithCallback(request *ListLogicDatabasesRequest, callback func(response *ListLogicDatabasesResponse, err error)) <-chan int

ListLogicDatabasesWithCallback invokes the dms_enterprise.ListLogicDatabases API asynchronously

func (*Client) ListLogicDatabasesWithChan ¶ added in v1.61.13

func (client *Client) ListLogicDatabasesWithChan(request *ListLogicDatabasesRequest) (<-chan *ListLogicDatabasesResponse, <-chan error)

ListLogicDatabasesWithChan invokes the dms_enterprise.ListLogicDatabases API asynchronously

func (*Client) ListLogicTables ¶ added in v1.61.13

func (client *Client) ListLogicTables(request *ListLogicTablesRequest) (response *ListLogicTablesResponse, err error)

ListLogicTables invokes the dms_enterprise.ListLogicTables API synchronously

func (*Client) ListLogicTablesWithCallback ¶ added in v1.61.13

func (client *Client) ListLogicTablesWithCallback(request *ListLogicTablesRequest, callback func(response *ListLogicTablesResponse, err error)) <-chan int

ListLogicTablesWithCallback invokes the dms_enterprise.ListLogicTables API asynchronously

func (*Client) ListLogicTablesWithChan ¶ added in v1.61.13

func (client *Client) ListLogicTablesWithChan(request *ListLogicTablesRequest) (<-chan *ListLogicTablesResponse, <-chan error)

ListLogicTablesWithChan invokes the dms_enterprise.ListLogicTables API asynchronously

func (*Client) ListOrders ¶ added in v1.61.13

func (client *Client) ListOrders(request *ListOrdersRequest) (response *ListOrdersResponse, err error)

ListOrders invokes the dms_enterprise.ListOrders API synchronously

func (*Client) ListOrdersWithCallback ¶ added in v1.61.13

func (client *Client) ListOrdersWithCallback(request *ListOrdersRequest, callback func(response *ListOrdersResponse, err error)) <-chan int

ListOrdersWithCallback invokes the dms_enterprise.ListOrders API asynchronously

func (*Client) ListOrdersWithChan ¶ added in v1.61.13

func (client *Client) ListOrdersWithChan(request *ListOrdersRequest) (<-chan *ListOrdersResponse, <-chan error)

ListOrdersWithChan invokes the dms_enterprise.ListOrders API asynchronously

func (*Client) ListSensitiveColumns ¶ added in v1.61.134

func (client *Client) ListSensitiveColumns(request *ListSensitiveColumnsRequest) (response *ListSensitiveColumnsResponse, err error)

ListSensitiveColumns invokes the dms_enterprise.ListSensitiveColumns API synchronously

func (*Client) ListSensitiveColumnsDetail ¶ added in v1.61.134

func (client *Client) ListSensitiveColumnsDetail(request *ListSensitiveColumnsDetailRequest) (response *ListSensitiveColumnsDetailResponse, err error)

ListSensitiveColumnsDetail invokes the dms_enterprise.ListSensitiveColumnsDetail API synchronously

func (*Client) ListSensitiveColumnsDetailWithCallback ¶ added in v1.61.134

func (client *Client) ListSensitiveColumnsDetailWithCallback(request *ListSensitiveColumnsDetailRequest, callback func(response *ListSensitiveColumnsDetailResponse, err error)) <-chan int

ListSensitiveColumnsDetailWithCallback invokes the dms_enterprise.ListSensitiveColumnsDetail API asynchronously

func (*Client) ListSensitiveColumnsDetailWithChan ¶ added in v1.61.134

func (client *Client) ListSensitiveColumnsDetailWithChan(request *ListSensitiveColumnsDetailRequest) (<-chan *ListSensitiveColumnsDetailResponse, <-chan error)

ListSensitiveColumnsDetailWithChan invokes the dms_enterprise.ListSensitiveColumnsDetail API asynchronously

func (*Client) ListSensitiveColumnsWithCallback ¶ added in v1.61.134

func (client *Client) ListSensitiveColumnsWithCallback(request *ListSensitiveColumnsRequest, callback func(response *ListSensitiveColumnsResponse, err error)) <-chan int

ListSensitiveColumnsWithCallback invokes the dms_enterprise.ListSensitiveColumns API asynchronously

func (*Client) ListSensitiveColumnsWithChan ¶ added in v1.61.134

func (client *Client) ListSensitiveColumnsWithChan(request *ListSensitiveColumnsRequest) (<-chan *ListSensitiveColumnsResponse, <-chan error)

ListSensitiveColumnsWithChan invokes the dms_enterprise.ListSensitiveColumns API asynchronously

func (*Client) ListTables ¶ added in v1.61.13

func (client *Client) ListTables(request *ListTablesRequest) (response *ListTablesResponse, err error)

ListTables invokes the dms_enterprise.ListTables API synchronously

func (*Client) ListTablesWithCallback ¶ added in v1.61.13

func (client *Client) ListTablesWithCallback(request *ListTablesRequest, callback func(response *ListTablesResponse, err error)) <-chan int

ListTablesWithCallback invokes the dms_enterprise.ListTables API asynchronously

func (*Client) ListTablesWithChan ¶ added in v1.61.13

func (client *Client) ListTablesWithChan(request *ListTablesRequest) (<-chan *ListTablesResponse, <-chan error)

ListTablesWithChan invokes the dms_enterprise.ListTables API asynchronously

func (*Client) ListUserPermissions ¶ added in v1.61.13

func (client *Client) ListUserPermissions(request *ListUserPermissionsRequest) (response *ListUserPermissionsResponse, err error)

ListUserPermissions invokes the dms_enterprise.ListUserPermissions API synchronously

func (*Client) ListUserPermissionsWithCallback ¶ added in v1.61.13

func (client *Client) ListUserPermissionsWithCallback(request *ListUserPermissionsRequest, callback func(response *ListUserPermissionsResponse, err error)) <-chan int

ListUserPermissionsWithCallback invokes the dms_enterprise.ListUserPermissions API asynchronously

func (*Client) ListUserPermissionsWithChan ¶ added in v1.61.13

func (client *Client) ListUserPermissionsWithChan(request *ListUserPermissionsRequest) (<-chan *ListUserPermissionsResponse, <-chan error)

ListUserPermissionsWithChan invokes the dms_enterprise.ListUserPermissions API asynchronously

func (*Client) ListUserTenants ¶ added in v1.61.504

func (client *Client) ListUserTenants(request *ListUserTenantsRequest) (response *ListUserTenantsResponse, err error)

ListUserTenants invokes the dms_enterprise.ListUserTenants API synchronously

func (*Client) ListUserTenantsWithCallback ¶ added in v1.61.504

func (client *Client) ListUserTenantsWithCallback(request *ListUserTenantsRequest, callback func(response *ListUserTenantsResponse, err error)) <-chan int

ListUserTenantsWithCallback invokes the dms_enterprise.ListUserTenants API asynchronously

func (*Client) ListUserTenantsWithChan ¶ added in v1.61.504

func (client *Client) ListUserTenantsWithChan(request *ListUserTenantsRequest) (<-chan *ListUserTenantsResponse, <-chan error)

ListUserTenantsWithChan invokes the dms_enterprise.ListUserTenants API asynchronously

func (*Client) ListUsers ¶ added in v1.61.13

func (client *Client) ListUsers(request *ListUsersRequest) (response *ListUsersResponse, err error)

ListUsers invokes the dms_enterprise.ListUsers API synchronously

func (*Client) ListUsersWithCallback ¶ added in v1.61.13

func (client *Client) ListUsersWithCallback(request *ListUsersRequest, callback func(response *ListUsersResponse, err error)) <-chan int

ListUsersWithCallback invokes the dms_enterprise.ListUsers API asynchronously

func (*Client) ListUsersWithChan ¶ added in v1.61.13

func (client *Client) ListUsersWithChan(request *ListUsersRequest) (<-chan *ListUsersResponse, <-chan error)

ListUsersWithChan invokes the dms_enterprise.ListUsers API asynchronously

func (*Client) ListWorkFlowNodes ¶ added in v1.61.13

func (client *Client) ListWorkFlowNodes(request *ListWorkFlowNodesRequest) (response *ListWorkFlowNodesResponse, err error)

ListWorkFlowNodes invokes the dms_enterprise.ListWorkFlowNodes API synchronously

func (*Client) ListWorkFlowNodesWithCallback ¶ added in v1.61.13

func (client *Client) ListWorkFlowNodesWithCallback(request *ListWorkFlowNodesRequest, callback func(response *ListWorkFlowNodesResponse, err error)) <-chan int

ListWorkFlowNodesWithCallback invokes the dms_enterprise.ListWorkFlowNodes API asynchronously

func (*Client) ListWorkFlowNodesWithChan ¶ added in v1.61.13

func (client *Client) ListWorkFlowNodesWithChan(request *ListWorkFlowNodesRequest) (<-chan *ListWorkFlowNodesResponse, <-chan error)

ListWorkFlowNodesWithChan invokes the dms_enterprise.ListWorkFlowNodes API asynchronously

func (*Client) ListWorkFlowTemplates ¶ added in v1.61.13

func (client *Client) ListWorkFlowTemplates(request *ListWorkFlowTemplatesRequest) (response *ListWorkFlowTemplatesResponse, err error)

ListWorkFlowTemplates invokes the dms_enterprise.ListWorkFlowTemplates API synchronously

func (*Client) ListWorkFlowTemplatesWithCallback ¶ added in v1.61.13

func (client *Client) ListWorkFlowTemplatesWithCallback(request *ListWorkFlowTemplatesRequest, callback func(response *ListWorkFlowTemplatesResponse, err error)) <-chan int

ListWorkFlowTemplatesWithCallback invokes the dms_enterprise.ListWorkFlowTemplates API asynchronously

func (*Client) ListWorkFlowTemplatesWithChan ¶ added in v1.61.13

func (client *Client) ListWorkFlowTemplatesWithChan(request *ListWorkFlowTemplatesRequest) (<-chan *ListWorkFlowTemplatesResponse, <-chan error)

ListWorkFlowTemplatesWithChan invokes the dms_enterprise.ListWorkFlowTemplates API asynchronously

func (*Client) RegisterInstance ¶

func (client *Client) RegisterInstance(request *RegisterInstanceRequest) (response *RegisterInstanceResponse, err error)

RegisterInstance invokes the dms_enterprise.RegisterInstance API synchronously

func (*Client) RegisterInstanceWithCallback ¶

func (client *Client) RegisterInstanceWithCallback(request *RegisterInstanceRequest, callback func(response *RegisterInstanceResponse, err error)) <-chan int

RegisterInstanceWithCallback invokes the dms_enterprise.RegisterInstance API asynchronously

func (*Client) RegisterInstanceWithChan ¶

func (client *Client) RegisterInstanceWithChan(request *RegisterInstanceRequest) (<-chan *RegisterInstanceResponse, <-chan error)

RegisterInstanceWithChan invokes the dms_enterprise.RegisterInstance API asynchronously

func (*Client) RegisterUser ¶

func (client *Client) RegisterUser(request *RegisterUserRequest) (response *RegisterUserResponse, err error)

RegisterUser invokes the dms_enterprise.RegisterUser API synchronously

func (*Client) RegisterUserWithCallback ¶

func (client *Client) RegisterUserWithCallback(request *RegisterUserRequest, callback func(response *RegisterUserResponse, err error)) <-chan int

RegisterUserWithCallback invokes the dms_enterprise.RegisterUser API asynchronously

func (*Client) RegisterUserWithChan ¶

func (client *Client) RegisterUserWithChan(request *RegisterUserRequest) (<-chan *RegisterUserResponse, <-chan error)

RegisterUserWithChan invokes the dms_enterprise.RegisterUser API asynchronously

func (*Client) RevokeUserPermission ¶ added in v1.61.13

func (client *Client) RevokeUserPermission(request *RevokeUserPermissionRequest) (response *RevokeUserPermissionResponse, err error)

RevokeUserPermission invokes the dms_enterprise.RevokeUserPermission API synchronously

func (*Client) RevokeUserPermissionWithCallback ¶ added in v1.61.13

func (client *Client) RevokeUserPermissionWithCallback(request *RevokeUserPermissionRequest, callback func(response *RevokeUserPermissionResponse, err error)) <-chan int

RevokeUserPermissionWithCallback invokes the dms_enterprise.RevokeUserPermission API asynchronously

func (*Client) RevokeUserPermissionWithChan ¶ added in v1.61.13

func (client *Client) RevokeUserPermissionWithChan(request *RevokeUserPermissionRequest) (<-chan *RevokeUserPermissionResponse, <-chan error)

RevokeUserPermissionWithChan invokes the dms_enterprise.RevokeUserPermission API asynchronously

func (*Client) SearchDatabase ¶ added in v1.61.13

func (client *Client) SearchDatabase(request *SearchDatabaseRequest) (response *SearchDatabaseResponse, err error)

SearchDatabase invokes the dms_enterprise.SearchDatabase API synchronously

func (*Client) SearchDatabaseWithCallback ¶ added in v1.61.13

func (client *Client) SearchDatabaseWithCallback(request *SearchDatabaseRequest, callback func(response *SearchDatabaseResponse, err error)) <-chan int

SearchDatabaseWithCallback invokes the dms_enterprise.SearchDatabase API asynchronously

func (*Client) SearchDatabaseWithChan ¶ added in v1.61.13

func (client *Client) SearchDatabaseWithChan(request *SearchDatabaseRequest) (<-chan *SearchDatabaseResponse, <-chan error)

SearchDatabaseWithChan invokes the dms_enterprise.SearchDatabase API asynchronously

func (*Client) SearchTable ¶ added in v1.61.13

func (client *Client) SearchTable(request *SearchTableRequest) (response *SearchTableResponse, err error)

SearchTable invokes the dms_enterprise.SearchTable API synchronously

func (*Client) SearchTableWithCallback ¶ added in v1.61.13

func (client *Client) SearchTableWithCallback(request *SearchTableRequest, callback func(response *SearchTableResponse, err error)) <-chan int

SearchTableWithCallback invokes the dms_enterprise.SearchTable API asynchronously

func (*Client) SearchTableWithChan ¶ added in v1.61.13

func (client *Client) SearchTableWithChan(request *SearchTableRequest) (<-chan *SearchTableResponse, <-chan error)

SearchTableWithChan invokes the dms_enterprise.SearchTable API asynchronously

func (*Client) SetOwners ¶ added in v1.61.13

func (client *Client) SetOwners(request *SetOwnersRequest) (response *SetOwnersResponse, err error)

SetOwners invokes the dms_enterprise.SetOwners API synchronously

func (*Client) SetOwnersWithCallback ¶ added in v1.61.13

func (client *Client) SetOwnersWithCallback(request *SetOwnersRequest, callback func(response *SetOwnersResponse, err error)) <-chan int

SetOwnersWithCallback invokes the dms_enterprise.SetOwners API asynchronously

func (*Client) SetOwnersWithChan ¶ added in v1.61.13

func (client *Client) SetOwnersWithChan(request *SetOwnersRequest) (<-chan *SetOwnersResponse, <-chan error)

SetOwnersWithChan invokes the dms_enterprise.SetOwners API asynchronously

func (*Client) SubmitOrderApproval ¶ added in v1.61.13

func (client *Client) SubmitOrderApproval(request *SubmitOrderApprovalRequest) (response *SubmitOrderApprovalResponse, err error)

SubmitOrderApproval invokes the dms_enterprise.SubmitOrderApproval API synchronously

func (*Client) SubmitOrderApprovalWithCallback ¶ added in v1.61.13

func (client *Client) SubmitOrderApprovalWithCallback(request *SubmitOrderApprovalRequest, callback func(response *SubmitOrderApprovalResponse, err error)) <-chan int

SubmitOrderApprovalWithCallback invokes the dms_enterprise.SubmitOrderApproval API asynchronously

func (*Client) SubmitOrderApprovalWithChan ¶ added in v1.61.13

func (client *Client) SubmitOrderApprovalWithChan(request *SubmitOrderApprovalRequest) (<-chan *SubmitOrderApprovalResponse, <-chan error)

SubmitOrderApprovalWithChan invokes the dms_enterprise.SubmitOrderApproval API asynchronously

func (*Client) SubmitStructSyncOrderApproval ¶ added in v1.61.968

func (client *Client) SubmitStructSyncOrderApproval(request *SubmitStructSyncOrderApprovalRequest) (response *SubmitStructSyncOrderApprovalResponse, err error)

SubmitStructSyncOrderApproval invokes the dms_enterprise.SubmitStructSyncOrderApproval API synchronously

func (*Client) SubmitStructSyncOrderApprovalWithCallback ¶ added in v1.61.968

func (client *Client) SubmitStructSyncOrderApprovalWithCallback(request *SubmitStructSyncOrderApprovalRequest, callback func(response *SubmitStructSyncOrderApprovalResponse, err error)) <-chan int

SubmitStructSyncOrderApprovalWithCallback invokes the dms_enterprise.SubmitStructSyncOrderApproval API asynchronously

func (*Client) SubmitStructSyncOrderApprovalWithChan ¶ added in v1.61.968

func (client *Client) SubmitStructSyncOrderApprovalWithChan(request *SubmitStructSyncOrderApprovalRequest) (<-chan *SubmitStructSyncOrderApprovalResponse, <-chan error)

SubmitStructSyncOrderApprovalWithChan invokes the dms_enterprise.SubmitStructSyncOrderApproval API asynchronously

func (*Client) SyncDatabaseMeta ¶ added in v1.61.13

func (client *Client) SyncDatabaseMeta(request *SyncDatabaseMetaRequest) (response *SyncDatabaseMetaResponse, err error)

SyncDatabaseMeta invokes the dms_enterprise.SyncDatabaseMeta API synchronously

func (*Client) SyncDatabaseMetaWithCallback ¶ added in v1.61.13

func (client *Client) SyncDatabaseMetaWithCallback(request *SyncDatabaseMetaRequest, callback func(response *SyncDatabaseMetaResponse, err error)) <-chan int

SyncDatabaseMetaWithCallback invokes the dms_enterprise.SyncDatabaseMeta API asynchronously

func (*Client) SyncDatabaseMetaWithChan ¶ added in v1.61.13

func (client *Client) SyncDatabaseMetaWithChan(request *SyncDatabaseMetaRequest) (<-chan *SyncDatabaseMetaResponse, <-chan error)

SyncDatabaseMetaWithChan invokes the dms_enterprise.SyncDatabaseMeta API asynchronously

func (*Client) SyncInstanceMeta ¶ added in v1.61.13

func (client *Client) SyncInstanceMeta(request *SyncInstanceMetaRequest) (response *SyncInstanceMetaResponse, err error)

SyncInstanceMeta invokes the dms_enterprise.SyncInstanceMeta API synchronously

func (*Client) SyncInstanceMetaWithCallback ¶ added in v1.61.13

func (client *Client) SyncInstanceMetaWithCallback(request *SyncInstanceMetaRequest, callback func(response *SyncInstanceMetaResponse, err error)) <-chan int

SyncInstanceMetaWithCallback invokes the dms_enterprise.SyncInstanceMeta API asynchronously

func (*Client) SyncInstanceMetaWithChan ¶ added in v1.61.13

func (client *Client) SyncInstanceMetaWithChan(request *SyncInstanceMetaRequest) (<-chan *SyncInstanceMetaResponse, <-chan error)

SyncInstanceMetaWithChan invokes the dms_enterprise.SyncInstanceMeta API asynchronously

func (*Client) UpdateInstance ¶ added in v1.61.13

func (client *Client) UpdateInstance(request *UpdateInstanceRequest) (response *UpdateInstanceResponse, err error)

UpdateInstance invokes the dms_enterprise.UpdateInstance API synchronously

func (*Client) UpdateInstanceWithCallback ¶ added in v1.61.13

func (client *Client) UpdateInstanceWithCallback(request *UpdateInstanceRequest, callback func(response *UpdateInstanceResponse, err error)) <-chan int

UpdateInstanceWithCallback invokes the dms_enterprise.UpdateInstance API asynchronously

func (*Client) UpdateInstanceWithChan ¶ added in v1.61.13

func (client *Client) UpdateInstanceWithChan(request *UpdateInstanceRequest) (<-chan *UpdateInstanceResponse, <-chan error)

UpdateInstanceWithChan invokes the dms_enterprise.UpdateInstance API asynchronously

func (*Client) UpdateUser ¶ added in v1.61.13

func (client *Client) UpdateUser(request *UpdateUserRequest) (response *UpdateUserResponse, err error)

UpdateUser invokes the dms_enterprise.UpdateUser API synchronously

func (*Client) UpdateUserWithCallback ¶ added in v1.61.13

func (client *Client) UpdateUserWithCallback(request *UpdateUserRequest, callback func(response *UpdateUserResponse, err error)) <-chan int

UpdateUserWithCallback invokes the dms_enterprise.UpdateUser API asynchronously

func (*Client) UpdateUserWithChan ¶ added in v1.61.13

func (client *Client) UpdateUserWithChan(request *UpdateUserRequest) (<-chan *UpdateUserResponse, <-chan error)

UpdateUserWithChan invokes the dms_enterprise.UpdateUser API asynchronously

type CloseOrderRequest ¶ added in v1.61.13

type CloseOrderRequest struct {
	*requests.RpcRequest
	OrderId     requests.Integer `position:"Query" name:"OrderId"`
	CloseReason string           `position:"Query" name:"CloseReason"`
	Tid         requests.Integer `position:"Query" name:"Tid"`
}

CloseOrderRequest is the request struct for api CloseOrder

func CreateCloseOrderRequest ¶ added in v1.61.13

func CreateCloseOrderRequest() (request *CloseOrderRequest)

CreateCloseOrderRequest creates a request to invoke CloseOrder API

type CloseOrderResponse ¶ added in v1.61.13

type CloseOrderResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

CloseOrderResponse is the response struct for api CloseOrder

func CreateCloseOrderResponse ¶ added in v1.61.13

func CreateCloseOrderResponse() (response *CloseOrderResponse)

CreateCloseOrderResponse creates a response to parse from CloseOrder response

type Column ¶ added in v1.61.13

type Column struct {
	ColumnId      string `json:"ColumnId" xml:"ColumnId"`
	AutoIncrement bool   `json:"AutoIncrement" xml:"AutoIncrement"`
	PrimaryKey    string `json:"PrimaryKey" xml:"PrimaryKey"`
	DefaultValue  string `json:"DefaultValue" xml:"DefaultValue"`
	Sensitive     bool   `json:"Sensitive" xml:"Sensitive"`
	Nullable      bool   `json:"Nullable" xml:"Nullable"`
	ColumnName    string `json:"ColumnName" xml:"ColumnName"`
	SecurityLevel string `json:"SecurityLevel" xml:"SecurityLevel"`
	ColumnType    string `json:"ColumnType" xml:"ColumnType"`
	Position      int    `json:"Position" xml:"Position"`
	DataLength    int64  `json:"DataLength" xml:"DataLength"`
	FunctionType  string `json:"FunctionType" xml:"FunctionType"`
	Description   string `json:"Description" xml:"Description"`
	DataScale     int    `json:"DataScale" xml:"DataScale"`
	DataPrecision int    `json:"DataPrecision" xml:"DataPrecision"`
}

Column is a nested struct in dms_enterprise response

type ColumnInGetMetaTableDetailInfo ¶ added in v1.61.504

type ColumnInGetMetaTableDetailInfo struct {
	ColumnId      string `json:"ColumnId" xml:"ColumnId"`
	ColumnName    string `json:"ColumnName" xml:"ColumnName"`
	ColumnType    string `json:"ColumnType" xml:"ColumnType"`
	Description   string `json:"Description" xml:"Description"`
	Position      string `json:"Position" xml:"Position"`
	AutoIncrement bool   `json:"AutoIncrement" xml:"AutoIncrement"`
	DataLength    int64  `json:"DataLength" xml:"DataLength"`
	DataScale     int    `json:"DataScale" xml:"DataScale"`
	DataPrecision int    `json:"DataPrecision" xml:"DataPrecision"`
	Nullable      bool   `json:"Nullable" xml:"Nullable"`
}

ColumnInGetMetaTableDetailInfo is a nested struct in dms_enterprise response

type ColumnInfo ¶ added in v1.61.968

type ColumnInfo struct {
	ColumnName string `json:"ColumnName" xml:"ColumnName"`
	TableName  string `json:"TableName" xml:"TableName"`
}

ColumnInfo is a nested struct in dms_enterprise response

type ColumnListInGetMetaTableColumn ¶ added in v1.61.504

type ColumnListInGetMetaTableColumn struct {
	Column []Column `json:"Column" xml:"Column"`
}

ColumnListInGetMetaTableColumn is a nested struct in dms_enterprise response

type ColumnListInGetMetaTableDetailInfo ¶ added in v1.61.504

type ColumnListInGetMetaTableDetailInfo struct {
	Column []ColumnInGetMetaTableDetailInfo `json:"Column" xml:"Column"`
}

ColumnListInGetMetaTableDetailInfo is a nested struct in dms_enterprise response

type ColumnListInListColumns ¶ added in v1.61.504

type ColumnListInListColumns struct {
	Column []Column `json:"Column" xml:"Column"`
}

ColumnListInListColumns is a nested struct in dms_enterprise response

type ColumnNames ¶ added in v1.61.487

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

ColumnNames is a nested struct in dms_enterprise response

type CreateDataCorrectOrderRequest ¶ added in v1.61.1009

type CreateDataCorrectOrderRequest struct {
	*requests.RpcRequest
	Tid             requests.Integer `position:"Query" name:"Tid"`
	AttachmentKey   string           `position:"Query" name:"AttachmentKey"`
	Param           string           `position:"Query" name:"Param"`
	Comment         string           `position:"Query" name:"Comment"`
	RelatedUserList string           `position:"Query" name:"RelatedUserList"`
}

CreateDataCorrectOrderRequest is the request struct for api CreateDataCorrectOrder

func CreateCreateDataCorrectOrderRequest ¶ added in v1.61.1009

func CreateCreateDataCorrectOrderRequest() (request *CreateDataCorrectOrderRequest)

CreateCreateDataCorrectOrderRequest creates a request to invoke CreateDataCorrectOrder API

type CreateDataCorrectOrderResponse ¶ added in v1.61.1009

type CreateDataCorrectOrderResponse struct {
	*responses.BaseResponse
	RequestId         string  `json:"RequestId" xml:"RequestId"`
	ErrorCode         string  `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string  `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool    `json:"Success" xml:"Success"`
	CreateOrderResult []int64 `json:"CreateOrderResult" xml:"CreateOrderResult"`
}

CreateDataCorrectOrderResponse is the response struct for api CreateDataCorrectOrder

func CreateCreateDataCorrectOrderResponse ¶ added in v1.61.1009

func CreateCreateDataCorrectOrderResponse() (response *CreateDataCorrectOrderResponse)

CreateCreateDataCorrectOrderResponse creates a response to parse from CreateDataCorrectOrder response

type CreateDataCronClearOrderRequest ¶ added in v1.61.1009

type CreateDataCronClearOrderRequest struct {
	*requests.RpcRequest
	Tid             requests.Integer `position:"Query" name:"Tid"`
	AttachmentKey   string           `position:"Query" name:"AttachmentKey"`
	Param           string           `position:"Query" name:"Param"`
	Comment         string           `position:"Query" name:"Comment"`
	RelatedUserList string           `position:"Query" name:"RelatedUserList"`
}

CreateDataCronClearOrderRequest is the request struct for api CreateDataCronClearOrder

func CreateCreateDataCronClearOrderRequest ¶ added in v1.61.1009

func CreateCreateDataCronClearOrderRequest() (request *CreateDataCronClearOrderRequest)

CreateCreateDataCronClearOrderRequest creates a request to invoke CreateDataCronClearOrder API

type CreateDataCronClearOrderResponse ¶ added in v1.61.1009

type CreateDataCronClearOrderResponse struct {
	*responses.BaseResponse
	RequestId         string  `json:"RequestId" xml:"RequestId"`
	ErrorCode         string  `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string  `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool    `json:"Success" xml:"Success"`
	CreateOrderResult []int64 `json:"CreateOrderResult" xml:"CreateOrderResult"`
}

CreateDataCronClearOrderResponse is the response struct for api CreateDataCronClearOrder

func CreateCreateDataCronClearOrderResponse ¶ added in v1.61.1009

func CreateCreateDataCronClearOrderResponse() (response *CreateDataCronClearOrderResponse)

CreateCreateDataCronClearOrderResponse creates a response to parse from CreateDataCronClearOrder response

type CreateDataImportOrderRequest ¶ added in v1.61.1009

type CreateDataImportOrderRequest struct {
	*requests.RpcRequest
	Tid             requests.Integer `position:"Query" name:"Tid"`
	AttachmentKey   string           `position:"Query" name:"AttachmentKey"`
	Param           string           `position:"Query" name:"Param"`
	Comment         string           `position:"Query" name:"Comment"`
	RelatedUserList string           `position:"Query" name:"RelatedUserList"`
}

CreateDataImportOrderRequest is the request struct for api CreateDataImportOrder

func CreateCreateDataImportOrderRequest ¶ added in v1.61.1009

func CreateCreateDataImportOrderRequest() (request *CreateDataImportOrderRequest)

CreateCreateDataImportOrderRequest creates a request to invoke CreateDataImportOrder API

type CreateDataImportOrderResponse ¶ added in v1.61.1009

type CreateDataImportOrderResponse struct {
	*responses.BaseResponse
	RequestId         string  `json:"RequestId" xml:"RequestId"`
	ErrorCode         string  `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string  `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool    `json:"Success" xml:"Success"`
	CreateOrderResult []int64 `json:"CreateOrderResult" xml:"CreateOrderResult"`
}

CreateDataImportOrderResponse is the response struct for api CreateDataImportOrder

func CreateCreateDataImportOrderResponse ¶ added in v1.61.1009

func CreateCreateDataImportOrderResponse() (response *CreateDataImportOrderResponse)

CreateCreateDataImportOrderResponse creates a response to parse from CreateDataImportOrder response

type CreateFreeLockCorrectOrderRequest ¶ added in v1.61.1009

type CreateFreeLockCorrectOrderRequest struct {
	*requests.RpcRequest
	Tid             requests.Integer `position:"Query" name:"Tid"`
	AttachmentKey   string           `position:"Query" name:"AttachmentKey"`
	Param           string           `position:"Query" name:"Param"`
	Comment         string           `position:"Query" name:"Comment"`
	RelatedUserList string           `position:"Query" name:"RelatedUserList"`
}

CreateFreeLockCorrectOrderRequest is the request struct for api CreateFreeLockCorrectOrder

func CreateCreateFreeLockCorrectOrderRequest ¶ added in v1.61.1009

func CreateCreateFreeLockCorrectOrderRequest() (request *CreateFreeLockCorrectOrderRequest)

CreateCreateFreeLockCorrectOrderRequest creates a request to invoke CreateFreeLockCorrectOrder API

type CreateFreeLockCorrectOrderResponse ¶ added in v1.61.1009

type CreateFreeLockCorrectOrderResponse struct {
	*responses.BaseResponse
	RequestId         string  `json:"RequestId" xml:"RequestId"`
	ErrorCode         string  `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string  `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool    `json:"Success" xml:"Success"`
	CreateOrderResult []int64 `json:"CreateOrderResult" xml:"CreateOrderResult"`
}

CreateFreeLockCorrectOrderResponse is the response struct for api CreateFreeLockCorrectOrder

func CreateCreateFreeLockCorrectOrderResponse ¶ added in v1.61.1009

func CreateCreateFreeLockCorrectOrderResponse() (response *CreateFreeLockCorrectOrderResponse)

CreateCreateFreeLockCorrectOrderResponse creates a response to parse from CreateFreeLockCorrectOrder response

type CreateOrderRequest ¶ added in v1.61.13

type CreateOrderRequest struct {
	*requests.RpcRequest
	Tid             requests.Integer       `position:"Query" name:"Tid"`
	PluginType      string                 `position:"Query" name:"PluginType"`
	AttachmentKey   string                 `position:"Query" name:"AttachmentKey"`
	Comment         string                 `position:"Query" name:"Comment"`
	PluginParam     map[string]interface{} `position:"Body" name:"PluginParam"`
	RelatedUserList string                 `position:"Query" name:"RelatedUserList"`
}

CreateOrderRequest is the request struct for api CreateOrder

func CreateCreateOrderRequest ¶ added in v1.61.13

func CreateCreateOrderRequest() (request *CreateOrderRequest)

CreateCreateOrderRequest creates a request to invoke CreateOrder API

type CreateOrderResponse ¶ added in v1.61.13

type CreateOrderResponse struct {
	*responses.BaseResponse
	RequestId         string                         `json:"RequestId" xml:"RequestId"`
	ErrorCode         string                         `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string                         `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool                           `json:"Success" xml:"Success"`
	CreateOrderResult CreateOrderResultInCreateOrder `json:"CreateOrderResult" xml:"CreateOrderResult"`
}

CreateOrderResponse is the response struct for api CreateOrder

func CreateCreateOrderResponse ¶ added in v1.61.13

func CreateCreateOrderResponse() (response *CreateOrderResponse)

CreateCreateOrderResponse creates a response to parse from CreateOrder response

type CreateOrderResultInCreateDataCorrectOrder ¶ added in v1.61.1009

type CreateOrderResultInCreateDataCorrectOrder struct {
	OrderIds []int64 `json:"OrderIds" xml:"OrderIds"`
}

CreateOrderResultInCreateDataCorrectOrder is a nested struct in dms_enterprise response

type CreateOrderResultInCreateDataCronClearOrder ¶ added in v1.61.1009

type CreateOrderResultInCreateDataCronClearOrder struct {
	OrderIds []int64 `json:"OrderIds" xml:"OrderIds"`
}

CreateOrderResultInCreateDataCronClearOrder is a nested struct in dms_enterprise response

type CreateOrderResultInCreateDataImportOrder ¶ added in v1.61.1009

type CreateOrderResultInCreateDataImportOrder struct {
	OrderIds []int64 `json:"OrderIds" xml:"OrderIds"`
}

CreateOrderResultInCreateDataImportOrder is a nested struct in dms_enterprise response

type CreateOrderResultInCreateFreeLockCorrectOrder ¶ added in v1.61.1009

type CreateOrderResultInCreateFreeLockCorrectOrder struct {
	OrderIds []int64 `json:"OrderIds" xml:"OrderIds"`
}

CreateOrderResultInCreateFreeLockCorrectOrder is a nested struct in dms_enterprise response

type CreateOrderResultInCreateOrder ¶ added in v1.61.968

type CreateOrderResultInCreateOrder struct {
	OrderIds []int64 `json:"OrderIds" xml:"OrderIds"`
}

CreateOrderResultInCreateOrder is a nested struct in dms_enterprise response

type CreateOrderResultInCreateStructSyncOrder ¶ added in v1.61.968

type CreateOrderResultInCreateStructSyncOrder struct {
	OrderIds []int64 `json:"OrderIds" xml:"OrderIds"`
}

CreateOrderResultInCreateStructSyncOrder is a nested struct in dms_enterprise response

type CreatePublishGroupTaskRequest ¶ added in v1.61.13

type CreatePublishGroupTaskRequest struct {
	*requests.RpcRequest
	OrderId         requests.Integer `position:"Query" name:"OrderId"`
	Tid             requests.Integer `position:"Query" name:"Tid"`
	DbId            requests.Integer `position:"Query" name:"DbId"`
	PlanTime        string           `position:"Query" name:"PlanTime"`
	Logic           requests.Boolean `position:"Query" name:"Logic"`
	PublishStrategy string           `position:"Query" name:"PublishStrategy"`
}

CreatePublishGroupTaskRequest is the request struct for api CreatePublishGroupTask

func CreateCreatePublishGroupTaskRequest ¶ added in v1.61.13

func CreateCreatePublishGroupTaskRequest() (request *CreatePublishGroupTaskRequest)

CreateCreatePublishGroupTaskRequest creates a request to invoke CreatePublishGroupTask API

type CreatePublishGroupTaskResponse ¶ added in v1.61.13

type CreatePublishGroupTaskResponse struct {
	*responses.BaseResponse
	TaskId       int64  `json:"TaskId" xml:"TaskId"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

CreatePublishGroupTaskResponse is the response struct for api CreatePublishGroupTask

func CreateCreatePublishGroupTaskResponse ¶ added in v1.61.13

func CreateCreatePublishGroupTaskResponse() (response *CreatePublishGroupTaskResponse)

CreateCreatePublishGroupTaskResponse creates a response to parse from CreatePublishGroupTask response

type CreateStructSyncOrderRequest ¶ added in v1.61.968

type CreateStructSyncOrderRequest struct {
	*requests.RpcRequest
	Tid             requests.Integer `position:"Query" name:"Tid"`
	AttachmentKey   string           `position:"Query" name:"AttachmentKey"`
	Param           string           `position:"Query" name:"Param"`
	Comment         string           `position:"Query" name:"Comment"`
	RelatedUserList string           `position:"Query" name:"RelatedUserList"`
}

CreateStructSyncOrderRequest is the request struct for api CreateStructSyncOrder

func CreateCreateStructSyncOrderRequest ¶ added in v1.61.968

func CreateCreateStructSyncOrderRequest() (request *CreateStructSyncOrderRequest)

CreateCreateStructSyncOrderRequest creates a request to invoke CreateStructSyncOrder API

type CreateStructSyncOrderResponse ¶ added in v1.61.968

type CreateStructSyncOrderResponse struct {
	*responses.BaseResponse
	RequestId         string  `json:"RequestId" xml:"RequestId"`
	ErrorCode         string  `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string  `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool    `json:"Success" xml:"Success"`
	CreateOrderResult []int64 `json:"CreateOrderResult" xml:"CreateOrderResult"`
}

CreateStructSyncOrderResponse is the response struct for api CreateStructSyncOrder

func CreateCreateStructSyncOrderResponse ¶ added in v1.61.968

func CreateCreateStructSyncOrderResponse() (response *CreateStructSyncOrderResponse)

CreateCreateStructSyncOrderResponse creates a response to parse from CreateStructSyncOrder response

type CreateUploadFileJobRequest ¶ added in v1.61.968

type CreateUploadFileJobRequest struct {
	*requests.RpcRequest
	UploadType string           `position:"Query" name:"UploadType"`
	FileSource string           `position:"Query" name:"FileSource"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	FileName   string           `position:"Query" name:"FileName"`
	UploadURL  string           `position:"Query" name:"UploadURL"`
}

CreateUploadFileJobRequest is the request struct for api CreateUploadFileJob

func CreateCreateUploadFileJobRequest ¶ added in v1.61.968

func CreateCreateUploadFileJobRequest() (request *CreateUploadFileJobRequest)

CreateCreateUploadFileJobRequest creates a request to invoke CreateUploadFileJob API

type CreateUploadFileJobResponse ¶ added in v1.61.968

type CreateUploadFileJobResponse struct {
	*responses.BaseResponse
	JobKey       string `json:"JobKey" xml:"JobKey"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

CreateUploadFileJobResponse is the response struct for api CreateUploadFileJob

func CreateCreateUploadFileJobResponse ¶ added in v1.61.968

func CreateCreateUploadFileJobResponse() (response *CreateUploadFileJobResponse)

CreateCreateUploadFileJobResponse creates a response to parse from CreateUploadFileJob response

type CreateUploadOSSFileJobRequest ¶ added in v1.61.968

type CreateUploadOSSFileJobRequest struct {
	*requests.RpcRequest
	UploadType   string           `position:"Query" name:"UploadType"`
	FileSource   string           `position:"Query" name:"FileSource"`
	Tid          requests.Integer `position:"Query" name:"Tid"`
	FileName     string           `position:"Query" name:"FileName"`
	UploadTarget string           `position:"Query" name:"UploadTarget"`
}

CreateUploadOSSFileJobRequest is the request struct for api CreateUploadOSSFileJob

func CreateCreateUploadOSSFileJobRequest ¶ added in v1.61.968

func CreateCreateUploadOSSFileJobRequest() (request *CreateUploadOSSFileJobRequest)

CreateCreateUploadOSSFileJobRequest creates a request to invoke CreateUploadOSSFileJob API

type CreateUploadOSSFileJobResponse ¶ added in v1.61.968

type CreateUploadOSSFileJobResponse struct {
	*responses.BaseResponse
	JobKey       string `json:"JobKey" xml:"JobKey"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

CreateUploadOSSFileJobResponse is the response struct for api CreateUploadOSSFileJob

func CreateCreateUploadOSSFileJobResponse ¶ added in v1.61.968

func CreateCreateUploadOSSFileJobResponse() (response *CreateUploadOSSFileJobResponse)

CreateCreateUploadOSSFileJobResponse creates a response to parse from CreateUploadOSSFileJob response

type CurrentHandler ¶ added in v1.61.13

type CurrentHandler struct {
	Id       int64  `json:"Id" xml:"Id"`
	NickName string `json:"NickName" xml:"NickName"`
}

CurrentHandler is a nested struct in dms_enterprise response

type CurrentHandlers ¶ added in v1.61.13

type CurrentHandlers struct {
	CurrentHandler []CurrentHandler `json:"CurrentHandler" xml:"CurrentHandler"`
}

CurrentHandlers is a nested struct in dms_enterprise response

type DBTaskSQLJob ¶ added in v1.61.968

type DBTaskSQLJob struct {
	Status        string `json:"Status" xml:"Status"`
	Comment       string `json:"Comment" xml:"Comment"`
	LastExecTime  string `json:"LastExecTime" xml:"LastExecTime"`
	DbSearchName  string `json:"DbSearchName" xml:"DbSearchName"`
	JobType       string `json:"JobType" xml:"JobType"`
	CreateTime    string `json:"CreateTime" xml:"CreateTime"`
	DbTaskGroupId int64  `json:"DbTaskGroupId" xml:"DbTaskGroupId"`
	DbId          int64  `json:"DbId" xml:"DbId"`
	Logic         bool   `json:"Logic" xml:"Logic"`
	JobId         int64  `json:"JobId" xml:"JobId"`
	Transactional bool   `json:"Transactional" xml:"Transactional"`
}

DBTaskSQLJob is a nested struct in dms_enterprise response

type DBTaskSQLJobDetail ¶ added in v1.61.968

type DBTaskSQLJobDetail struct {
	Status       string `json:"Status" xml:"Status"`
	Skip         bool   `json:"Skip" xml:"Skip"`
	DbId         int64  `json:"DbId" xml:"DbId"`
	SqlType      string `json:"SqlType" xml:"SqlType"`
	ExecuteCount int64  `json:"ExecuteCount" xml:"ExecuteCount"`
	Logic        bool   `json:"Logic" xml:"Logic"`
	CurrentSql   string `json:"CurrentSql" xml:"CurrentSql"`
	JobDetailId  int64  `json:"JobDetailId" xml:"JobDetailId"`
	JobId        int64  `json:"JobId" xml:"JobId"`
}

DBTaskSQLJobDetail is a nested struct in dms_enterprise response

type DBTaskSQLJobDetailList ¶ added in v1.61.968

type DBTaskSQLJobDetailList struct {
	DBTaskSQLJobDetail []DBTaskSQLJobDetail `json:"DBTaskSQLJobDetail" xml:"DBTaskSQLJobDetail"`
}

DBTaskSQLJobDetailList is a nested struct in dms_enterprise response

type DBTaskSQLJobList ¶ added in v1.61.968

type DBTaskSQLJobList struct {
	DBTaskSQLJob []DBTaskSQLJob `json:"DBTaskSQLJob" xml:"DBTaskSQLJob"`
}

DBTaskSQLJobList is a nested struct in dms_enterprise response

type DBTopology ¶ added in v1.61.504

type DBTopology struct {
	SearchName         string           `json:"SearchName" xml:"SearchName"`
	EnvType            string           `json:"EnvType" xml:"EnvType"`
	LogicDbId          int64            `json:"LogicDbId" xml:"LogicDbId"`
	Alias              string           `json:"Alias" xml:"Alias"`
	TableName          string           `json:"TableName" xml:"TableName"`
	TableGuid          string           `json:"TableGuid" xml:"TableGuid"`
	LogicDbName        string           `json:"LogicDbName" xml:"LogicDbName"`
	DbType             string           `json:"DbType" xml:"DbType"`
	DBTopologyInfoList []DBTopologyInfo `json:"DBTopologyInfoList" xml:"DBTopologyInfoList"`
	DataSourceList     []DataSource     `json:"DataSourceList" xml:"DataSourceList"`
}

DBTopology is a nested struct in dms_enterprise response

type DBTopologyInfo ¶ added in v1.61.1023

type DBTopologyInfo struct {
	InstanceSource     string `json:"InstanceSource" xml:"InstanceSource"`
	InstanceResourceId string `json:"InstanceResourceId" xml:"InstanceResourceId"`
	InstanceId         int64  `json:"InstanceId" xml:"InstanceId"`
	SearchName         string `json:"SearchName" xml:"SearchName"`
	DbId               int64  `json:"DbId" xml:"DbId"`
	CatalogName        string `json:"CatalogName" xml:"CatalogName"`
	RegionId           string `json:"RegionId" xml:"RegionId"`
	EnvType            string `json:"EnvType" xml:"EnvType"`
	DbType             string `json:"DbType" xml:"DbType"`
	SchemaName         string `json:"SchemaName" xml:"SchemaName"`
}

DBTopologyInfo is a nested struct in dms_enterprise response

type DBTopologyInfoList ¶ added in v1.61.1023

type DBTopologyInfoList struct {
	DBTopologyInfo []DBTopologyInfo `json:"DBTopologyInfo" xml:"DBTopologyInfo"`
}

DBTopologyInfoList is a nested struct in dms_enterprise response

type DDLPublishRecord ¶ added in v1.61.1009

type DDLPublishRecord struct {
	StatusDesc          string            `json:"StatusDesc" xml:"StatusDesc"`
	AuditStatus         string            `json:"AuditStatus" xml:"AuditStatus"`
	CreatorId           int64             `json:"CreatorId" xml:"CreatorId"`
	Finality            bool              `json:"Finality" xml:"Finality"`
	AuditExpireTime     string            `json:"AuditExpireTime" xml:"AuditExpireTime"`
	WorkflowInstanceId  int64             `json:"WorkflowInstanceId" xml:"WorkflowInstanceId"`
	RiskLevel           string            `json:"RiskLevel" xml:"RiskLevel"`
	FinalityReason      string            `json:"FinalityReason" xml:"FinalityReason"`
	PublishStatus       string            `json:"PublishStatus" xml:"PublishStatus"`
	PublishTaskInfoList []PublishTaskInfo `json:"PublishTaskInfoList" xml:"PublishTaskInfoList"`
}

DDLPublishRecord is a nested struct in dms_enterprise response

type DDLPublishRecordList ¶ added in v1.61.1009

type DDLPublishRecordList struct {
	DDLPublishRecord []DDLPublishRecord `json:"DDLPublishRecord" xml:"DDLPublishRecord"`
}

DDLPublishRecordList is a nested struct in dms_enterprise response

type DataCorrectBackupFiles ¶ added in v1.61.13

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

DataCorrectBackupFiles is a nested struct in dms_enterprise response

type DataCorrectOrderDetail ¶ added in v1.61.13

type DataCorrectOrderDetail struct {
	Status         string                                  `json:"Status" xml:"Status"`
	OrderDetail    OrderDetail                             `json:"OrderDetail" xml:"OrderDetail"`
	DatabaseList   DatabaseListInGetDataCorrectOrderDetail `json:"DatabaseList" xml:"DatabaseList"`
	PreCheckDetail PreCheckDetail                          `json:"PreCheckDetail" xml:"PreCheckDetail"`
}

DataCorrectOrderDetail is a nested struct in dms_enterprise response

type DataCorrectTaskDetail ¶ added in v1.61.1009

type DataCorrectTaskDetail struct {
	JobStatus        string `json:"jobStatus" xml:"jobStatus"`
	CreateTime       string `json:"CreateTime" xml:"CreateTime"`
	ActualAffectRows int64  `json:"ActualAffectRows" xml:"ActualAffectRows"`
	DBTaskGroupId    int64  `json:"DBTaskGroupId" xml:"DBTaskGroupId"`
}

DataCorrectTaskDetail is a nested struct in dms_enterprise response

type DataCronClearTaskDetail ¶ added in v1.61.1009

type DataCronClearTaskDetail struct {
	JobStatus        string `json:"jobStatus" xml:"jobStatus"`
	CreateTime       string `json:"CreateTime" xml:"CreateTime"`
	ActualAffectRows int64  `json:"ActualAffectRows" xml:"ActualAffectRows"`
	DBTaskGroupId    int64  `json:"DBTaskGroupId" xml:"DBTaskGroupId"`
}

DataCronClearTaskDetail is a nested struct in dms_enterprise response

type DataCronClearTaskDetailList ¶ added in v1.61.1009

type DataCronClearTaskDetailList struct {
	DataCronClearTaskDetail []DataCronClearTaskDetail `json:"DataCronClearTaskDetail" xml:"DataCronClearTaskDetail"`
}

DataCronClearTaskDetailList is a nested struct in dms_enterprise response

type DataExportOrderDetail ¶ added in v1.61.13

type DataExportOrderDetail struct {
	OrderDetail OrderDetail `json:"OrderDetail" xml:"OrderDetail"`
	KeyInfo     KeyInfo     `json:"KeyInfo" xml:"KeyInfo"`
}

DataExportOrderDetail is a nested struct in dms_enterprise response

type DataSource ¶ added in v1.61.504

type DataSource struct {
	Port         int                            `json:"Port" xml:"Port"`
	Host         string                         `json:"Host" xml:"Host"`
	DbType       string                         `json:"DbType" xml:"DbType"`
	Sid          string                         `json:"Sid" xml:"Sid"`
	DatabaseList []DatabaseInGetTableDBTopology `json:"DatabaseList" xml:"DatabaseList"`
}

DataSource is a nested struct in dms_enterprise response

type DataSourceList ¶ added in v1.61.504

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

DataSourceList is a nested struct in dms_enterprise response

type Database ¶ added in v1.61.13

type Database struct {
	Port          int                        `json:"Port" xml:"Port"`
	DbaName       string                     `json:"DbaName" xml:"DbaName"`
	Logic         bool                       `json:"Logic" xml:"Logic"`
	Sid           string                     `json:"Sid" xml:"Sid"`
	SchemaName    string                     `json:"SchemaName" xml:"SchemaName"`
	DbType        string                     `json:"DbType" xml:"DbType"`
	DbaId         string                     `json:"DbaId" xml:"DbaId"`
	Host          string                     `json:"Host" xml:"Host"`
	DatabaseId    string                     `json:"DatabaseId" xml:"DatabaseId"`
	State         string                     `json:"State" xml:"State"`
	CatalogName   string                     `json:"CatalogName" xml:"CatalogName"`
	SearchName    string                     `json:"SearchName" xml:"SearchName"`
	Encoding      string                     `json:"Encoding" xml:"Encoding"`
	EnvType       string                     `json:"EnvType" xml:"EnvType"`
	InstanceId    string                     `json:"InstanceId" xml:"InstanceId"`
	DbId          int                        `json:"DbId" xml:"DbId"`
	OwnerNameList OwnerNameListInGetDatabase `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList   OwnerIdListInGetDatabase   `json:"OwnerIdList" xml:"OwnerIdList"`
}

Database is a nested struct in dms_enterprise response

type DatabaseInGetTableDBTopology ¶ added in v1.61.504

type DatabaseInGetTableDBTopology struct {
	DbId      string  `json:"DbId" xml:"DbId"`
	DbName    string  `json:"DbName" xml:"DbName"`
	EnvType   string  `json:"EnvType" xml:"EnvType"`
	DbType    string  `json:"DbType" xml:"DbType"`
	TableList []Table `json:"TableList" xml:"TableList"`
}

DatabaseInGetTableDBTopology is a nested struct in dms_enterprise response

type DatabaseInListDatabases ¶ added in v1.61.13

type DatabaseInListDatabases struct {
	SearchName    string                       `json:"SearchName" xml:"SearchName"`
	InstanceId    string                       `json:"InstanceId" xml:"InstanceId"`
	Port          int                          `json:"Port" xml:"Port"`
	Encoding      string                       `json:"Encoding" xml:"Encoding"`
	Host          string                       `json:"Host" xml:"Host"`
	DatabaseId    string                       `json:"DatabaseId" xml:"DatabaseId"`
	DbType        string                       `json:"DbType" xml:"DbType"`
	EnvType       string                       `json:"EnvType" xml:"EnvType"`
	Sid           string                       `json:"Sid" xml:"Sid"`
	DbaName       string                       `json:"DbaName" xml:"DbaName"`
	DbaId         string                       `json:"DbaId" xml:"DbaId"`
	State         string                       `json:"State" xml:"State"`
	CatalogName   string                       `json:"CatalogName" xml:"CatalogName"`
	SchemaName    string                       `json:"SchemaName" xml:"SchemaName"`
	OwnerNameList OwnerNameListInListDatabases `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList   OwnerIdListInListDatabases   `json:"OwnerIdList" xml:"OwnerIdList"`
}

DatabaseInListDatabases is a nested struct in dms_enterprise response

type DatabaseInfo ¶ added in v1.61.968

type DatabaseInfo struct {
	SearchName     string   `json:"SearchName" xml:"SearchName"`
	DbId           int64    `json:"DbId" xml:"DbId"`
	Logic          bool     `json:"Logic" xml:"Logic"`
	EnvType        string   `json:"EnvType" xml:"EnvType"`
	DbType         string   `json:"DbType" xml:"DbType"`
	OwnerNickNames []string `json:"OwnerNickNames" xml:"OwnerNickNames"`
	OwnerIds       []int64  `json:"OwnerIds" xml:"OwnerIds"`
}

DatabaseInfo is a nested struct in dms_enterprise response

type DatabaseListInGetDataCorrectOrderDetail ¶ added in v1.61.13

type DatabaseListInGetDataCorrectOrderDetail struct {
	Database []Database `json:"Database" xml:"Database"`
}

DatabaseListInGetDataCorrectOrderDetail is a nested struct in dms_enterprise response

type DatabaseListInGetTableDBTopology ¶ added in v1.61.504

type DatabaseListInGetTableDBTopology struct {
	Database []DatabaseInGetTableDBTopology `json:"Database" xml:"Database"`
}

DatabaseListInGetTableDBTopology is a nested struct in dms_enterprise response

type DatabaseListInListDatabases ¶ added in v1.61.13

type DatabaseListInListDatabases struct {
	Database []DatabaseInListDatabases `json:"Database" xml:"Database"`
}

DatabaseListInListDatabases is a nested struct in dms_enterprise response

type DeleteInstanceRequest ¶ added in v1.61.13

type DeleteInstanceRequest struct {
	*requests.RpcRequest
	Tid  requests.Integer `position:"Query" name:"Tid"`
	Sid  string           `position:"Query" name:"Sid"`
	Port requests.Integer `position:"Query" name:"Port"`
	Host string           `position:"Query" name:"Host"`
}

DeleteInstanceRequest is the request struct for api DeleteInstance

func CreateDeleteInstanceRequest ¶ added in v1.61.13

func CreateDeleteInstanceRequest() (request *DeleteInstanceRequest)

CreateDeleteInstanceRequest creates a request to invoke DeleteInstance API

type DeleteInstanceResponse ¶ added in v1.61.13

type DeleteInstanceResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

DeleteInstanceResponse is the response struct for api DeleteInstance

func CreateDeleteInstanceResponse ¶ added in v1.61.13

func CreateDeleteInstanceResponse() (response *DeleteInstanceResponse)

CreateDeleteInstanceResponse creates a response to parse from DeleteInstance response

type DeleteUserRequest ¶

type DeleteUserRequest struct {
	*requests.RpcRequest
	Uid string           `position:"Query" name:"Uid"`
	Tid requests.Integer `position:"Query" name:"Tid"`
}

DeleteUserRequest is the request struct for api DeleteUser

func CreateDeleteUserRequest ¶

func CreateDeleteUserRequest() (request *DeleteUserRequest)

CreateDeleteUserRequest creates a request to invoke DeleteUser API

type DeleteUserResponse ¶

type DeleteUserResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

DeleteUserResponse is the response struct for api DeleteUser

func CreateDeleteUserResponse ¶

func CreateDeleteUserResponse() (response *DeleteUserResponse)

CreateDeleteUserResponse creates a response to parse from DeleteUser response

type DetailInfo ¶ added in v1.61.504

type DetailInfo struct {
	ColumnList []ColumnInGetMetaTableDetailInfo `json:"ColumnList" xml:"ColumnList"`
	IndexList  []Index                          `json:"IndexList" xml:"IndexList"`
}

DetailInfo is a nested struct in dms_enterprise response

type DisableUserRequest ¶

type DisableUserRequest struct {
	*requests.RpcRequest
	Uid string           `position:"Query" name:"Uid"`
	Tid requests.Integer `position:"Query" name:"Tid"`
}

DisableUserRequest is the request struct for api DisableUser

func CreateDisableUserRequest ¶

func CreateDisableUserRequest() (request *DisableUserRequest)

CreateDisableUserRequest creates a request to invoke DisableUser API

type DisableUserResponse ¶

type DisableUserResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

DisableUserResponse is the response struct for api DisableUser

func CreateDisableUserResponse ¶

func CreateDisableUserResponse() (response *DisableUserResponse)

CreateDisableUserResponse creates a response to parse from DisableUser response

type DownloadURLResult ¶ added in v1.61.13

type DownloadURLResult struct {
	HasResult  bool   `json:"HasResult" xml:"HasResult"`
	TipMessage string `json:"TipMessage" xml:"TipMessage"`
	URL        string `json:"URL" xml:"URL"`
}

DownloadURLResult is a nested struct in dms_enterprise response

type EnableUserRequest ¶

type EnableUserRequest struct {
	*requests.RpcRequest
	Uid string           `position:"Query" name:"Uid"`
	Tid requests.Integer `position:"Query" name:"Tid"`
}

EnableUserRequest is the request struct for api EnableUser

func CreateEnableUserRequest ¶

func CreateEnableUserRequest() (request *EnableUserRequest)

CreateEnableUserRequest creates a request to invoke EnableUser API

type EnableUserResponse ¶

type EnableUserResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

EnableUserResponse is the response struct for api EnableUser

func CreateEnableUserResponse ¶

func CreateEnableUserResponse() (response *EnableUserResponse)

CreateEnableUserResponse creates a response to parse from EnableUser response

type ExecuteDataCorrectRequest ¶ added in v1.61.13

type ExecuteDataCorrectRequest struct {
	*requests.RpcRequest
	OrderId      requests.Integer       `position:"Query" name:"OrderId"`
	ActionName   string                 `position:"Query" name:"ActionName"`
	Tid          string                 `position:"Query" name:"Tid"`
	ActionDetail map[string]interface{} `position:"Query" name:"ActionDetail"`
}

ExecuteDataCorrectRequest is the request struct for api ExecuteDataCorrect

func CreateExecuteDataCorrectRequest ¶ added in v1.61.13

func CreateExecuteDataCorrectRequest() (request *ExecuteDataCorrectRequest)

CreateExecuteDataCorrectRequest creates a request to invoke ExecuteDataCorrect API

type ExecuteDataCorrectResponse ¶ added in v1.61.13

type ExecuteDataCorrectResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

ExecuteDataCorrectResponse is the response struct for api ExecuteDataCorrect

func CreateExecuteDataCorrectResponse ¶ added in v1.61.13

func CreateExecuteDataCorrectResponse() (response *ExecuteDataCorrectResponse)

CreateExecuteDataCorrectResponse creates a response to parse from ExecuteDataCorrect response

type ExecuteDataExportRequest ¶ added in v1.61.13

type ExecuteDataExportRequest struct {
	*requests.RpcRequest
	OrderId      requests.Integer       `position:"Query" name:"OrderId"`
	ActionName   string                 `position:"Query" name:"ActionName"`
	Tid          requests.Integer       `position:"Query" name:"Tid"`
	ActionDetail map[string]interface{} `position:"Query" name:"ActionDetail"`
}

ExecuteDataExportRequest is the request struct for api ExecuteDataExport

func CreateExecuteDataExportRequest ¶ added in v1.61.13

func CreateExecuteDataExportRequest() (request *ExecuteDataExportRequest)

CreateExecuteDataExportRequest creates a request to invoke ExecuteDataExport API

type ExecuteDataExportResponse ¶ added in v1.61.13

type ExecuteDataExportResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

ExecuteDataExportResponse is the response struct for api ExecuteDataExport

func CreateExecuteDataExportResponse ¶ added in v1.61.13

func CreateExecuteDataExportResponse() (response *ExecuteDataExportResponse)

CreateExecuteDataExportResponse creates a response to parse from ExecuteDataExport response

type ExecuteScriptRequest ¶ added in v1.61.487

type ExecuteScriptRequest struct {
	*requests.RpcRequest
	Script string           `position:"Query" name:"Script"`
	Tid    requests.Integer `position:"Query" name:"Tid"`
	DbId   requests.Integer `position:"Query" name:"DbId"`
	Logic  requests.Boolean `position:"Query" name:"Logic"`
}

ExecuteScriptRequest is the request struct for api ExecuteScript

func CreateExecuteScriptRequest ¶ added in v1.61.487

func CreateExecuteScriptRequest() (request *ExecuteScriptRequest)

CreateExecuteScriptRequest creates a request to invoke ExecuteScript API

type ExecuteScriptResponse ¶ added in v1.61.487

type ExecuteScriptResponse struct {
	*responses.BaseResponse
	RequestId    string   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool     `json:"Success" xml:"Success"`
	Results      []Result `json:"Results" xml:"Results"`
}

ExecuteScriptResponse is the response struct for api ExecuteScript

func CreateExecuteScriptResponse ¶ added in v1.61.487

func CreateExecuteScriptResponse() (response *ExecuteScriptResponse)

CreateExecuteScriptResponse creates a response to parse from ExecuteScript response

type ExecuteStructSyncRequest ¶ added in v1.61.968

type ExecuteStructSyncRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

ExecuteStructSyncRequest is the request struct for api ExecuteStructSync

func CreateExecuteStructSyncRequest ¶ added in v1.61.968

func CreateExecuteStructSyncRequest() (request *ExecuteStructSyncRequest)

CreateExecuteStructSyncRequest creates a request to invoke ExecuteStructSync API

type ExecuteStructSyncResponse ¶ added in v1.61.968

type ExecuteStructSyncResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

ExecuteStructSyncResponse is the response struct for api ExecuteStructSync

func CreateExecuteStructSyncResponse ¶ added in v1.61.968

func CreateExecuteStructSyncResponse() (response *ExecuteStructSyncResponse)

CreateExecuteStructSyncResponse creates a response to parse from ExecuteStructSync response

type GetApprovalDetailRequest ¶ added in v1.61.13

type GetApprovalDetailRequest struct {
	*requests.RpcRequest
	Tid                requests.Integer `position:"Query" name:"Tid"`
	WorkflowInstanceId requests.Integer `position:"Query" name:"WorkflowInstanceId"`
}

GetApprovalDetailRequest is the request struct for api GetApprovalDetail

func CreateGetApprovalDetailRequest ¶ added in v1.61.13

func CreateGetApprovalDetailRequest() (request *GetApprovalDetailRequest)

CreateGetApprovalDetailRequest creates a request to invoke GetApprovalDetail API

type GetApprovalDetailResponse ¶ added in v1.61.13

type GetApprovalDetailResponse struct {
	*responses.BaseResponse
	RequestId      string         `json:"RequestId" xml:"RequestId"`
	ErrorCode      string         `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage   string         `json:"ErrorMessage" xml:"ErrorMessage"`
	Success        bool           `json:"Success" xml:"Success"`
	ApprovalDetail ApprovalDetail `json:"ApprovalDetail" xml:"ApprovalDetail"`
}

GetApprovalDetailResponse is the response struct for api GetApprovalDetail

func CreateGetApprovalDetailResponse ¶ added in v1.61.13

func CreateGetApprovalDetailResponse() (response *GetApprovalDetailResponse)

CreateGetApprovalDetailResponse creates a response to parse from GetApprovalDetail response

type GetDBTopologyRequest ¶ added in v1.61.1023

type GetDBTopologyRequest struct {
	*requests.RpcRequest
	LogicDbId requests.Integer `position:"Query" name:"LogicDbId"`
	Tid       requests.Integer `position:"Query" name:"Tid"`
}

GetDBTopologyRequest is the request struct for api GetDBTopology

func CreateGetDBTopologyRequest ¶ added in v1.61.1023

func CreateGetDBTopologyRequest() (request *GetDBTopologyRequest)

CreateGetDBTopologyRequest creates a request to invoke GetDBTopology API

type GetDBTopologyResponse ¶ added in v1.61.1023

type GetDBTopologyResponse struct {
	*responses.BaseResponse
	RequestId    string     `json:"RequestId" xml:"RequestId"`
	ErrorCode    string     `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string     `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool       `json:"Success" xml:"Success"`
	DBTopology   DBTopology `json:"DBTopology" xml:"DBTopology"`
}

GetDBTopologyResponse is the response struct for api GetDBTopology

func CreateGetDBTopologyResponse ¶ added in v1.61.1023

func CreateGetDBTopologyResponse() (response *GetDBTopologyResponse)

CreateGetDBTopologyResponse creates a response to parse from GetDBTopology response

type GetDataCorrectBackupFilesRequest ¶ added in v1.61.13

type GetDataCorrectBackupFilesRequest struct {
	*requests.RpcRequest
	OrderId      requests.Integer       `position:"Query" name:"OrderId"`
	ActionName   string                 `position:"Query" name:"ActionName"`
	Tid          requests.Integer       `position:"Query" name:"Tid"`
	ActionDetail map[string]interface{} `position:"Query" name:"ActionDetail"`
}

GetDataCorrectBackupFilesRequest is the request struct for api GetDataCorrectBackupFiles

func CreateGetDataCorrectBackupFilesRequest ¶ added in v1.61.13

func CreateGetDataCorrectBackupFilesRequest() (request *GetDataCorrectBackupFilesRequest)

CreateGetDataCorrectBackupFilesRequest creates a request to invoke GetDataCorrectBackupFiles API

type GetDataCorrectBackupFilesResponse ¶ added in v1.61.13

type GetDataCorrectBackupFilesResponse struct {
	*responses.BaseResponse
	RequestId              string                 `json:"RequestId" xml:"RequestId"`
	ErrorCode              string                 `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage           string                 `json:"ErrorMessage" xml:"ErrorMessage"`
	Success                bool                   `json:"Success" xml:"Success"`
	DataCorrectBackupFiles DataCorrectBackupFiles `json:"DataCorrectBackupFiles" xml:"DataCorrectBackupFiles"`
}

GetDataCorrectBackupFilesResponse is the response struct for api GetDataCorrectBackupFiles

func CreateGetDataCorrectBackupFilesResponse ¶ added in v1.61.13

func CreateGetDataCorrectBackupFilesResponse() (response *GetDataCorrectBackupFilesResponse)

CreateGetDataCorrectBackupFilesResponse creates a response to parse from GetDataCorrectBackupFiles response

type GetDataCorrectOrderDetailRequest ¶ added in v1.61.13

type GetDataCorrectOrderDetailRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetDataCorrectOrderDetailRequest is the request struct for api GetDataCorrectOrderDetail

func CreateGetDataCorrectOrderDetailRequest ¶ added in v1.61.13

func CreateGetDataCorrectOrderDetailRequest() (request *GetDataCorrectOrderDetailRequest)

CreateGetDataCorrectOrderDetailRequest creates a request to invoke GetDataCorrectOrderDetail API

type GetDataCorrectOrderDetailResponse ¶ added in v1.61.13

type GetDataCorrectOrderDetailResponse struct {
	*responses.BaseResponse
	RequestId              string                 `json:"RequestId" xml:"RequestId"`
	ErrorCode              string                 `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage           string                 `json:"ErrorMessage" xml:"ErrorMessage"`
	Success                bool                   `json:"Success" xml:"Success"`
	DataCorrectOrderDetail DataCorrectOrderDetail `json:"DataCorrectOrderDetail" xml:"DataCorrectOrderDetail"`
}

GetDataCorrectOrderDetailResponse is the response struct for api GetDataCorrectOrderDetail

func CreateGetDataCorrectOrderDetailResponse ¶ added in v1.61.13

func CreateGetDataCorrectOrderDetailResponse() (response *GetDataCorrectOrderDetailResponse)

CreateGetDataCorrectOrderDetailResponse creates a response to parse from GetDataCorrectOrderDetail response

type GetDataCorrectSQLFileRequest ¶ added in v1.61.968

type GetDataCorrectSQLFileRequest struct {
	*requests.RpcRequest
	OrderId         requests.Integer `position:"Query" name:"OrderId"`
	Tid             requests.Integer `position:"Query" name:"Tid"`
	OrderActionName string           `position:"Query" name:"OrderActionName"`
}

GetDataCorrectSQLFileRequest is the request struct for api GetDataCorrectSQLFile

func CreateGetDataCorrectSQLFileRequest ¶ added in v1.61.968

func CreateGetDataCorrectSQLFileRequest() (request *GetDataCorrectSQLFileRequest)

CreateGetDataCorrectSQLFileRequest creates a request to invoke GetDataCorrectSQLFile API

type GetDataCorrectSQLFileResponse ¶ added in v1.61.968

type GetDataCorrectSQLFileResponse struct {
	*responses.BaseResponse
	FileUrl      string `json:"FileUrl" xml:"FileUrl"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

GetDataCorrectSQLFileResponse is the response struct for api GetDataCorrectSQLFile

func CreateGetDataCorrectSQLFileResponse ¶ added in v1.61.968

func CreateGetDataCorrectSQLFileResponse() (response *GetDataCorrectSQLFileResponse)

CreateGetDataCorrectSQLFileResponse creates a response to parse from GetDataCorrectSQLFile response

type GetDataCorrectTaskDetailRequest ¶ added in v1.61.1009

type GetDataCorrectTaskDetailRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetDataCorrectTaskDetailRequest is the request struct for api GetDataCorrectTaskDetail

func CreateGetDataCorrectTaskDetailRequest ¶ added in v1.61.1009

func CreateGetDataCorrectTaskDetailRequest() (request *GetDataCorrectTaskDetailRequest)

CreateGetDataCorrectTaskDetailRequest creates a request to invoke GetDataCorrectTaskDetail API

type GetDataCorrectTaskDetailResponse ¶ added in v1.61.1009

type GetDataCorrectTaskDetailResponse struct {
	*responses.BaseResponse
	RequestId             string                `json:"RequestId" xml:"RequestId"`
	ErrorCode             string                `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage          string                `json:"ErrorMessage" xml:"ErrorMessage"`
	Success               bool                  `json:"Success" xml:"Success"`
	DataCorrectTaskDetail DataCorrectTaskDetail `json:"DataCorrectTaskDetail" xml:"DataCorrectTaskDetail"`
}

GetDataCorrectTaskDetailResponse is the response struct for api GetDataCorrectTaskDetail

func CreateGetDataCorrectTaskDetailResponse ¶ added in v1.61.1009

func CreateGetDataCorrectTaskDetailResponse() (response *GetDataCorrectTaskDetailResponse)

CreateGetDataCorrectTaskDetailResponse creates a response to parse from GetDataCorrectTaskDetail response

type GetDataCronClearTaskDetailListRequest ¶ added in v1.61.1009

type GetDataCronClearTaskDetailListRequest struct {
	*requests.RpcRequest
	OrderId    requests.Integer `position:"Query" name:"OrderId"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
}

GetDataCronClearTaskDetailListRequest is the request struct for api GetDataCronClearTaskDetailList

func CreateGetDataCronClearTaskDetailListRequest ¶ added in v1.61.1009

func CreateGetDataCronClearTaskDetailListRequest() (request *GetDataCronClearTaskDetailListRequest)

CreateGetDataCronClearTaskDetailListRequest creates a request to invoke GetDataCronClearTaskDetailList API

type GetDataCronClearTaskDetailListResponse ¶ added in v1.61.1009

type GetDataCronClearTaskDetailListResponse struct {
	*responses.BaseResponse
	TotalCount                  int64                     `json:"TotalCount" xml:"TotalCount"`
	RequestId                   string                    `json:"RequestId" xml:"RequestId"`
	ErrorCode                   string                    `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage                string                    `json:"ErrorMessage" xml:"ErrorMessage"`
	Success                     bool                      `json:"Success" xml:"Success"`
	DataCronClearTaskDetailList []DataCronClearTaskDetail `json:"DataCronClearTaskDetailList" xml:"DataCronClearTaskDetailList"`
}

GetDataCronClearTaskDetailListResponse is the response struct for api GetDataCronClearTaskDetailList

func CreateGetDataCronClearTaskDetailListResponse ¶ added in v1.61.1009

func CreateGetDataCronClearTaskDetailListResponse() (response *GetDataCronClearTaskDetailListResponse)

CreateGetDataCronClearTaskDetailListResponse creates a response to parse from GetDataCronClearTaskDetailList response

type GetDataExportDownloadURLRequest ¶ added in v1.61.13

type GetDataExportDownloadURLRequest struct {
	*requests.RpcRequest
	OrderId    requests.Integer `position:"Query" name:"OrderId"`
	ActionName string           `position:"Query" name:"ActionName"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
}

GetDataExportDownloadURLRequest is the request struct for api GetDataExportDownloadURL

func CreateGetDataExportDownloadURLRequest ¶ added in v1.61.13

func CreateGetDataExportDownloadURLRequest() (request *GetDataExportDownloadURLRequest)

CreateGetDataExportDownloadURLRequest creates a request to invoke GetDataExportDownloadURL API

type GetDataExportDownloadURLResponse ¶ added in v1.61.13

type GetDataExportDownloadURLResponse struct {
	*responses.BaseResponse
	RequestId         string            `json:"RequestId" xml:"RequestId"`
	ErrorCode         string            `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string            `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool              `json:"Success" xml:"Success"`
	DownloadURLResult DownloadURLResult `json:"DownloadURLResult" xml:"DownloadURLResult"`
}

GetDataExportDownloadURLResponse is the response struct for api GetDataExportDownloadURL

func CreateGetDataExportDownloadURLResponse ¶ added in v1.61.13

func CreateGetDataExportDownloadURLResponse() (response *GetDataExportDownloadURLResponse)

CreateGetDataExportDownloadURLResponse creates a response to parse from GetDataExportDownloadURL response

type GetDataExportOrderDetailRequest ¶ added in v1.61.13

type GetDataExportOrderDetailRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Body" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetDataExportOrderDetailRequest is the request struct for api GetDataExportOrderDetail

func CreateGetDataExportOrderDetailRequest ¶ added in v1.61.13

func CreateGetDataExportOrderDetailRequest() (request *GetDataExportOrderDetailRequest)

CreateGetDataExportOrderDetailRequest creates a request to invoke GetDataExportOrderDetail API

type GetDataExportOrderDetailResponse ¶ added in v1.61.13

type GetDataExportOrderDetailResponse struct {
	*responses.BaseResponse
	RequestId             string                `json:"RequestId" xml:"RequestId"`
	ErrorCode             string                `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage          string                `json:"ErrorMessage" xml:"ErrorMessage"`
	Success               bool                  `json:"Success" xml:"Success"`
	DataExportOrderDetail DataExportOrderDetail `json:"DataExportOrderDetail" xml:"DataExportOrderDetail"`
}

GetDataExportOrderDetailResponse is the response struct for api GetDataExportOrderDetail

func CreateGetDataExportOrderDetailResponse ¶ added in v1.61.13

func CreateGetDataExportOrderDetailResponse() (response *GetDataExportOrderDetailResponse)

CreateGetDataExportOrderDetailResponse creates a response to parse from GetDataExportOrderDetail response

type GetDatabaseRequest ¶ added in v1.61.13

type GetDatabaseRequest struct {
	*requests.RpcRequest
	SchemaName string           `position:"Query" name:"SchemaName"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	Sid        string           `position:"Query" name:"Sid"`
	Port       requests.Integer `position:"Query" name:"Port"`
	Host       string           `position:"Query" name:"Host"`
}

GetDatabaseRequest is the request struct for api GetDatabase

func CreateGetDatabaseRequest ¶ added in v1.61.13

func CreateGetDatabaseRequest() (request *GetDatabaseRequest)

CreateGetDatabaseRequest creates a request to invoke GetDatabase API

type GetDatabaseResponse ¶ added in v1.61.13

type GetDatabaseResponse struct {
	*responses.BaseResponse
	RequestId    string   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool     `json:"Success" xml:"Success"`
	Database     Database `json:"Database" xml:"Database"`
}

GetDatabaseResponse is the response struct for api GetDatabase

func CreateGetDatabaseResponse ¶ added in v1.61.13

func CreateGetDatabaseResponse() (response *GetDatabaseResponse)

CreateGetDatabaseResponse creates a response to parse from GetDatabase response

type GetInstanceRequest ¶ added in v1.61.13

type GetInstanceRequest struct {
	*requests.RpcRequest
	Tid  requests.Integer `position:"Query" name:"Tid"`
	Sid  string           `position:"Query" name:"Sid"`
	Port requests.Integer `position:"Query" name:"Port"`
	Host string           `position:"Query" name:"Host"`
}

GetInstanceRequest is the request struct for api GetInstance

func CreateGetInstanceRequest ¶ added in v1.61.13

func CreateGetInstanceRequest() (request *GetInstanceRequest)

CreateGetInstanceRequest creates a request to invoke GetInstance API

type GetInstanceResponse ¶ added in v1.61.13

type GetInstanceResponse struct {
	*responses.BaseResponse
	RequestId    string   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool     `json:"Success" xml:"Success"`
	Instance     Instance `json:"Instance" xml:"Instance"`
}

GetInstanceResponse is the response struct for api GetInstance

func CreateGetInstanceResponse ¶ added in v1.61.13

func CreateGetInstanceResponse() (response *GetInstanceResponse)

CreateGetInstanceResponse creates a response to parse from GetInstance response

type GetLogicDatabaseRequest ¶ added in v1.61.13

type GetLogicDatabaseRequest struct {
	*requests.RpcRequest
	DbId string           `position:"Query" name:"DbId"`
	Tid  requests.Integer `position:"Query" name:"Tid"`
}

GetLogicDatabaseRequest is the request struct for api GetLogicDatabase

func CreateGetLogicDatabaseRequest ¶ added in v1.61.13

func CreateGetLogicDatabaseRequest() (request *GetLogicDatabaseRequest)

CreateGetLogicDatabaseRequest creates a request to invoke GetLogicDatabase API

type GetLogicDatabaseResponse ¶ added in v1.61.13

type GetLogicDatabaseResponse struct {
	*responses.BaseResponse
	RequestId     string        `json:"RequestId" xml:"RequestId"`
	ErrorCode     string        `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage  string        `json:"ErrorMessage" xml:"ErrorMessage"`
	Success       bool          `json:"Success" xml:"Success"`
	LogicDatabase LogicDatabase `json:"LogicDatabase" xml:"LogicDatabase"`
}

GetLogicDatabaseResponse is the response struct for api GetLogicDatabase

func CreateGetLogicDatabaseResponse ¶ added in v1.61.13

func CreateGetLogicDatabaseResponse() (response *GetLogicDatabaseResponse)

CreateGetLogicDatabaseResponse creates a response to parse from GetLogicDatabase response

type GetMetaTableColumnRequest ¶ added in v1.61.504

type GetMetaTableColumnRequest struct {
	*requests.RpcRequest
	TableGuid string           `position:"Query" name:"TableGuid"`
	Tid       requests.Integer `position:"Query" name:"Tid"`
}

GetMetaTableColumnRequest is the request struct for api GetMetaTableColumn

func CreateGetMetaTableColumnRequest ¶ added in v1.61.504

func CreateGetMetaTableColumnRequest() (request *GetMetaTableColumnRequest)

CreateGetMetaTableColumnRequest creates a request to invoke GetMetaTableColumn API

type GetMetaTableColumnResponse ¶ added in v1.61.504

type GetMetaTableColumnResponse struct {
	*responses.BaseResponse
	RequestId    string   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool     `json:"Success" xml:"Success"`
	ColumnList   []Column `json:"ColumnList" xml:"ColumnList"`
}

GetMetaTableColumnResponse is the response struct for api GetMetaTableColumn

func CreateGetMetaTableColumnResponse ¶ added in v1.61.504

func CreateGetMetaTableColumnResponse() (response *GetMetaTableColumnResponse)

CreateGetMetaTableColumnResponse creates a response to parse from GetMetaTableColumn response

type GetMetaTableDetailInfoRequest ¶ added in v1.61.504

type GetMetaTableDetailInfoRequest struct {
	*requests.RpcRequest
	TableGuid string           `position:"Query" name:"TableGuid"`
	Tid       requests.Integer `position:"Query" name:"Tid"`
}

GetMetaTableDetailInfoRequest is the request struct for api GetMetaTableDetailInfo

func CreateGetMetaTableDetailInfoRequest ¶ added in v1.61.504

func CreateGetMetaTableDetailInfoRequest() (request *GetMetaTableDetailInfoRequest)

CreateGetMetaTableDetailInfoRequest creates a request to invoke GetMetaTableDetailInfo API

type GetMetaTableDetailInfoResponse ¶ added in v1.61.504

type GetMetaTableDetailInfoResponse struct {
	*responses.BaseResponse
	RequestId    string     `json:"RequestId" xml:"RequestId"`
	ErrorCode    string     `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string     `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool       `json:"Success" xml:"Success"`
	DetailInfo   DetailInfo `json:"DetailInfo" xml:"DetailInfo"`
}

GetMetaTableDetailInfoResponse is the response struct for api GetMetaTableDetailInfo

func CreateGetMetaTableDetailInfoResponse ¶ added in v1.61.504

func CreateGetMetaTableDetailInfoResponse() (response *GetMetaTableDetailInfoResponse)

CreateGetMetaTableDetailInfoResponse creates a response to parse from GetMetaTableDetailInfo response

type GetOpLogRequest ¶

type GetOpLogRequest struct {
	*requests.RpcRequest
	Module     string           `position:"Query" name:"Module"`
	EndTime    string           `position:"Query" name:"EndTime"`
	StartTime  string           `position:"Query" name:"StartTime"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
}

GetOpLogRequest is the request struct for api GetOpLog

func CreateGetOpLogRequest ¶

func CreateGetOpLogRequest() (request *GetOpLogRequest)

CreateGetOpLogRequest creates a request to invoke GetOpLog API

type GetOpLogResponse ¶

type GetOpLogResponse struct {
	*responses.BaseResponse
	TotalCount   int64        `json:"TotalCount" xml:"TotalCount"`
	RequestId    string       `json:"RequestId" xml:"RequestId"`
	ErrorCode    string       `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string       `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool         `json:"Success" xml:"Success"`
	OpLogDetails OpLogDetails `json:"OpLogDetails" xml:"OpLogDetails"`
}

GetOpLogResponse is the response struct for api GetOpLog

func CreateGetOpLogResponse ¶

func CreateGetOpLogResponse() (response *GetOpLogResponse)

CreateGetOpLogResponse creates a response to parse from GetOpLog response

type GetOrderBaseInfoRequest ¶ added in v1.61.13

type GetOrderBaseInfoRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetOrderBaseInfoRequest is the request struct for api GetOrderBaseInfo

func CreateGetOrderBaseInfoRequest ¶ added in v1.61.13

func CreateGetOrderBaseInfoRequest() (request *GetOrderBaseInfoRequest)

CreateGetOrderBaseInfoRequest creates a request to invoke GetOrderBaseInfo API

type GetOrderBaseInfoResponse ¶ added in v1.61.13

type GetOrderBaseInfoResponse struct {
	*responses.BaseResponse
	RequestId     string        `json:"RequestId" xml:"RequestId"`
	ErrorCode     string        `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage  string        `json:"ErrorMessage" xml:"ErrorMessage"`
	Success       bool          `json:"Success" xml:"Success"`
	OrderBaseInfo OrderBaseInfo `json:"OrderBaseInfo" xml:"OrderBaseInfo"`
}

GetOrderBaseInfoResponse is the response struct for api GetOrderBaseInfo

func CreateGetOrderBaseInfoResponse ¶ added in v1.61.13

func CreateGetOrderBaseInfoResponse() (response *GetOrderBaseInfoResponse)

CreateGetOrderBaseInfoResponse creates a response to parse from GetOrderBaseInfo response

type GetOwnerApplyOrderDetailRequest ¶ added in v1.61.968

type GetOwnerApplyOrderDetailRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetOwnerApplyOrderDetailRequest is the request struct for api GetOwnerApplyOrderDetail

func CreateGetOwnerApplyOrderDetailRequest ¶ added in v1.61.968

func CreateGetOwnerApplyOrderDetailRequest() (request *GetOwnerApplyOrderDetailRequest)

CreateGetOwnerApplyOrderDetailRequest creates a request to invoke GetOwnerApplyOrderDetail API

type GetOwnerApplyOrderDetailResponse ¶ added in v1.61.968

type GetOwnerApplyOrderDetailResponse struct {
	*responses.BaseResponse
	RequestId             string                `json:"RequestId" xml:"RequestId"`
	ErrorCode             string                `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage          string                `json:"ErrorMessage" xml:"ErrorMessage"`
	Success               bool                  `json:"Success" xml:"Success"`
	OwnerApplyOrderDetail OwnerApplyOrderDetail `json:"OwnerApplyOrderDetail" xml:"OwnerApplyOrderDetail"`
}

GetOwnerApplyOrderDetailResponse is the response struct for api GetOwnerApplyOrderDetail

func CreateGetOwnerApplyOrderDetailResponse ¶ added in v1.61.968

func CreateGetOwnerApplyOrderDetailResponse() (response *GetOwnerApplyOrderDetailResponse)

CreateGetOwnerApplyOrderDetailResponse creates a response to parse from GetOwnerApplyOrderDetail response

type GetPermApplyOrderDetailRequest ¶ added in v1.61.968

type GetPermApplyOrderDetailRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetPermApplyOrderDetailRequest is the request struct for api GetPermApplyOrderDetail

func CreateGetPermApplyOrderDetailRequest ¶ added in v1.61.968

func CreateGetPermApplyOrderDetailRequest() (request *GetPermApplyOrderDetailRequest)

CreateGetPermApplyOrderDetailRequest creates a request to invoke GetPermApplyOrderDetail API

type GetPermApplyOrderDetailResponse ¶ added in v1.61.968

type GetPermApplyOrderDetailResponse struct {
	*responses.BaseResponse
	RequestId            string               `json:"RequestId" xml:"RequestId"`
	ErrorCode            string               `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage         string               `json:"ErrorMessage" xml:"ErrorMessage"`
	Success              bool                 `json:"Success" xml:"Success"`
	PermApplyOrderDetail PermApplyOrderDetail `json:"PermApplyOrderDetail" xml:"PermApplyOrderDetail"`
}

GetPermApplyOrderDetailResponse is the response struct for api GetPermApplyOrderDetail

func CreateGetPermApplyOrderDetailResponse ¶ added in v1.61.968

func CreateGetPermApplyOrderDetailResponse() (response *GetPermApplyOrderDetailResponse)

CreateGetPermApplyOrderDetailResponse creates a response to parse from GetPermApplyOrderDetail response

type GetStructSyncExecSqlDetailRequest ¶ added in v1.61.968

type GetStructSyncExecSqlDetailRequest struct {
	*requests.RpcRequest
	OrderId    requests.Integer `position:"Query" name:"OrderId"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
}

GetStructSyncExecSqlDetailRequest is the request struct for api GetStructSyncExecSqlDetail

func CreateGetStructSyncExecSqlDetailRequest ¶ added in v1.61.968

func CreateGetStructSyncExecSqlDetailRequest() (request *GetStructSyncExecSqlDetailRequest)

CreateGetStructSyncExecSqlDetailRequest creates a request to invoke GetStructSyncExecSqlDetail API

type GetStructSyncExecSqlDetailResponse ¶ added in v1.61.968

type GetStructSyncExecSqlDetailResponse struct {
	*responses.BaseResponse
	RequestId               string                  `json:"RequestId" xml:"RequestId"`
	ErrorCode               string                  `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage            string                  `json:"ErrorMessage" xml:"ErrorMessage"`
	Success                 bool                    `json:"Success" xml:"Success"`
	StructSyncExecSqlDetail StructSyncExecSqlDetail `json:"StructSyncExecSqlDetail" xml:"StructSyncExecSqlDetail"`
}

GetStructSyncExecSqlDetailResponse is the response struct for api GetStructSyncExecSqlDetail

func CreateGetStructSyncExecSqlDetailResponse ¶ added in v1.61.968

func CreateGetStructSyncExecSqlDetailResponse() (response *GetStructSyncExecSqlDetailResponse)

CreateGetStructSyncExecSqlDetailResponse creates a response to parse from GetStructSyncExecSqlDetail response

type GetStructSyncJobAnalyzeResultRequest ¶ added in v1.61.968

type GetStructSyncJobAnalyzeResultRequest struct {
	*requests.RpcRequest
	OrderId     requests.Integer `position:"Query" name:"OrderId"`
	CompareType string           `position:"Query" name:"CompareType"`
	PageNumber  requests.Integer `position:"Query" name:"PageNumber"`
	Tid         requests.Integer `position:"Query" name:"Tid"`
	PageSize    requests.Integer `position:"Query" name:"PageSize"`
}

GetStructSyncJobAnalyzeResultRequest is the request struct for api GetStructSyncJobAnalyzeResult

func CreateGetStructSyncJobAnalyzeResultRequest ¶ added in v1.61.968

func CreateGetStructSyncJobAnalyzeResultRequest() (request *GetStructSyncJobAnalyzeResultRequest)

CreateGetStructSyncJobAnalyzeResultRequest creates a request to invoke GetStructSyncJobAnalyzeResult API

type GetStructSyncJobAnalyzeResultResponse ¶ added in v1.61.968

type GetStructSyncJobAnalyzeResultResponse struct {
	*responses.BaseResponse
	RequestId                  string                     `json:"RequestId" xml:"RequestId"`
	ErrorCode                  string                     `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage               string                     `json:"ErrorMessage" xml:"ErrorMessage"`
	Success                    bool                       `json:"Success" xml:"Success"`
	StructSyncJobAnalyzeResult StructSyncJobAnalyzeResult `json:"StructSyncJobAnalyzeResult" xml:"StructSyncJobAnalyzeResult"`
}

GetStructSyncJobAnalyzeResultResponse is the response struct for api GetStructSyncJobAnalyzeResult

func CreateGetStructSyncJobAnalyzeResultResponse ¶ added in v1.61.968

func CreateGetStructSyncJobAnalyzeResultResponse() (response *GetStructSyncJobAnalyzeResultResponse)

CreateGetStructSyncJobAnalyzeResultResponse creates a response to parse from GetStructSyncJobAnalyzeResult response

type GetStructSyncJobDetailRequest ¶ added in v1.61.968

type GetStructSyncJobDetailRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetStructSyncJobDetailRequest is the request struct for api GetStructSyncJobDetail

func CreateGetStructSyncJobDetailRequest ¶ added in v1.61.968

func CreateGetStructSyncJobDetailRequest() (request *GetStructSyncJobDetailRequest)

CreateGetStructSyncJobDetailRequest creates a request to invoke GetStructSyncJobDetail API

type GetStructSyncJobDetailResponse ¶ added in v1.61.968

type GetStructSyncJobDetailResponse struct {
	*responses.BaseResponse
	RequestId           string              `json:"RequestId" xml:"RequestId"`
	ErrorCode           string              `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage        string              `json:"ErrorMessage" xml:"ErrorMessage"`
	Success             bool                `json:"Success" xml:"Success"`
	StructSyncJobDetail StructSyncJobDetail `json:"StructSyncJobDetail" xml:"StructSyncJobDetail"`
}

GetStructSyncJobDetailResponse is the response struct for api GetStructSyncJobDetail

func CreateGetStructSyncJobDetailResponse ¶ added in v1.61.968

func CreateGetStructSyncJobDetailResponse() (response *GetStructSyncJobDetailResponse)

CreateGetStructSyncJobDetailResponse creates a response to parse from GetStructSyncJobDetail response

type GetStructSyncOrderDetailRequest ¶ added in v1.61.968

type GetStructSyncOrderDetailRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

GetStructSyncOrderDetailRequest is the request struct for api GetStructSyncOrderDetail

func CreateGetStructSyncOrderDetailRequest ¶ added in v1.61.968

func CreateGetStructSyncOrderDetailRequest() (request *GetStructSyncOrderDetailRequest)

CreateGetStructSyncOrderDetailRequest creates a request to invoke GetStructSyncOrderDetail API

type GetStructSyncOrderDetailResponse ¶ added in v1.61.968

type GetStructSyncOrderDetailResponse struct {
	*responses.BaseResponse
	RequestId             string                `json:"RequestId" xml:"RequestId"`
	ErrorCode             string                `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage          string                `json:"ErrorMessage" xml:"ErrorMessage"`
	Success               bool                  `json:"Success" xml:"Success"`
	StructSyncOrderDetail StructSyncOrderDetail `json:"StructSyncOrderDetail" xml:"StructSyncOrderDetail"`
}

GetStructSyncOrderDetailResponse is the response struct for api GetStructSyncOrderDetail

func CreateGetStructSyncOrderDetailResponse ¶ added in v1.61.968

func CreateGetStructSyncOrderDetailResponse() (response *GetStructSyncOrderDetailResponse)

CreateGetStructSyncOrderDetailResponse creates a response to parse from GetStructSyncOrderDetail response

type GetTableDBTopologyRequest ¶ added in v1.61.504

type GetTableDBTopologyRequest struct {
	*requests.RpcRequest
	TableGuid string           `position:"Query" name:"TableGuid"`
	Tid       requests.Integer `position:"Query" name:"Tid"`
}

GetTableDBTopologyRequest is the request struct for api GetTableDBTopology

func CreateGetTableDBTopologyRequest ¶ added in v1.61.504

func CreateGetTableDBTopologyRequest() (request *GetTableDBTopologyRequest)

CreateGetTableDBTopologyRequest creates a request to invoke GetTableDBTopology API

type GetTableDBTopologyResponse ¶ added in v1.61.504

type GetTableDBTopologyResponse struct {
	*responses.BaseResponse
	RequestId    string     `json:"RequestId" xml:"RequestId"`
	ErrorCode    string     `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string     `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool       `json:"Success" xml:"Success"`
	DBTopology   DBTopology `json:"DBTopology" xml:"DBTopology"`
}

GetTableDBTopologyResponse is the response struct for api GetTableDBTopology

func CreateGetTableDBTopologyResponse ¶ added in v1.61.504

func CreateGetTableDBTopologyResponse() (response *GetTableDBTopologyResponse)

CreateGetTableDBTopologyResponse creates a response to parse from GetTableDBTopology response

type GetTableTopologyRequest ¶ added in v1.61.968

type GetTableTopologyRequest struct {
	*requests.RpcRequest
	TableGuid string           `position:"Query" name:"TableGuid"`
	Tid       requests.Integer `position:"Query" name:"Tid"`
}

GetTableTopologyRequest is the request struct for api GetTableTopology

func CreateGetTableTopologyRequest ¶ added in v1.61.968

func CreateGetTableTopologyRequest() (request *GetTableTopologyRequest)

CreateGetTableTopologyRequest creates a request to invoke GetTableTopology API

type GetTableTopologyResponse ¶ added in v1.61.968

type GetTableTopologyResponse struct {
	*responses.BaseResponse
	RequestId     string        `json:"RequestId" xml:"RequestId"`
	ErrorCode     string        `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage  string        `json:"ErrorMessage" xml:"ErrorMessage"`
	Success       bool          `json:"Success" xml:"Success"`
	TableTopology TableTopology `json:"TableTopology" xml:"TableTopology"`
}

GetTableTopologyResponse is the response struct for api GetTableTopology

func CreateGetTableTopologyResponse ¶ added in v1.61.968

func CreateGetTableTopologyResponse() (response *GetTableTopologyResponse)

CreateGetTableTopologyResponse creates a response to parse from GetTableTopology response

type GetUserActiveTenantRequest ¶ added in v1.61.504

type GetUserActiveTenantRequest struct {
	*requests.RpcRequest
	Tid requests.Integer `position:"Query" name:"Tid"`
}

GetUserActiveTenantRequest is the request struct for api GetUserActiveTenant

func CreateGetUserActiveTenantRequest ¶ added in v1.61.504

func CreateGetUserActiveTenantRequest() (request *GetUserActiveTenantRequest)

CreateGetUserActiveTenantRequest creates a request to invoke GetUserActiveTenant API

type GetUserActiveTenantResponse ¶ added in v1.61.504

type GetUserActiveTenantResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Tenant       Tenant `json:"Tenant" xml:"Tenant"`
}

GetUserActiveTenantResponse is the response struct for api GetUserActiveTenant

func CreateGetUserActiveTenantResponse ¶ added in v1.61.504

func CreateGetUserActiveTenantResponse() (response *GetUserActiveTenantResponse)

CreateGetUserActiveTenantResponse creates a response to parse from GetUserActiveTenant response

type GetUserRequest ¶ added in v1.61.13

type GetUserRequest struct {
	*requests.RpcRequest
	UserId string           `position:"Query" name:"UserId"`
	Tid    requests.Integer `position:"Query" name:"Tid"`
	Uid    string           `position:"Query" name:"Uid"`
}

GetUserRequest is the request struct for api GetUser

func CreateGetUserRequest ¶ added in v1.61.13

func CreateGetUserRequest() (request *GetUserRequest)

CreateGetUserRequest creates a request to invoke GetUser API

type GetUserResponse ¶ added in v1.61.13

type GetUserResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	User         User   `json:"User" xml:"User"`
}

GetUserResponse is the response struct for api GetUser

func CreateGetUserResponse ¶ added in v1.61.13

func CreateGetUserResponse() (response *GetUserResponse)

CreateGetUserResponse creates a response to parse from GetUser response

type GetUserUploadFileJobRequest ¶ added in v1.61.968

type GetUserUploadFileJobRequest struct {
	*requests.RpcRequest
	JobKey string           `position:"Query" name:"JobKey"`
	Tid    requests.Integer `position:"Query" name:"Tid"`
}

GetUserUploadFileJobRequest is the request struct for api GetUserUploadFileJob

func CreateGetUserUploadFileJobRequest ¶ added in v1.61.968

func CreateGetUserUploadFileJobRequest() (request *GetUserUploadFileJobRequest)

CreateGetUserUploadFileJobRequest creates a request to invoke GetUserUploadFileJob API

type GetUserUploadFileJobResponse ¶ added in v1.61.968

type GetUserUploadFileJobResponse struct {
	*responses.BaseResponse
	RequestId           string              `json:"RequestId" xml:"RequestId"`
	ErrorCode           string              `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage        string              `json:"ErrorMessage" xml:"ErrorMessage"`
	Success             bool                `json:"Success" xml:"Success"`
	UploadFileJobDetail UploadFileJobDetail `json:"UploadFileJobDetail" xml:"UploadFileJobDetail"`
}

GetUserUploadFileJobResponse is the response struct for api GetUserUploadFileJob

func CreateGetUserUploadFileJobResponse ¶ added in v1.61.968

func CreateGetUserUploadFileJobResponse() (response *GetUserUploadFileJobResponse)

CreateGetUserUploadFileJobResponse creates a response to parse from GetUserUploadFileJob response

type GrantUserPermissionRequest ¶ added in v1.61.13

type GrantUserPermissionRequest struct {
	*requests.RpcRequest
	PermTypes  string           `position:"Query" name:"PermTypes"`
	DsType     string           `position:"Query" name:"DsType"`
	ExpireDate string           `position:"Query" name:"ExpireDate"`
	UserId     string           `position:"Query" name:"UserId"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	DbId       string           `position:"Query" name:"DbId"`
	TableId    string           `position:"Query" name:"TableId"`
	Logic      requests.Boolean `position:"Query" name:"Logic"`
	TableName  string           `position:"Query" name:"TableName"`
}

GrantUserPermissionRequest is the request struct for api GrantUserPermission

func CreateGrantUserPermissionRequest ¶ added in v1.61.13

func CreateGrantUserPermissionRequest() (request *GrantUserPermissionRequest)

CreateGrantUserPermissionRequest creates a request to invoke GrantUserPermission API

type GrantUserPermissionResponse ¶ added in v1.61.13

type GrantUserPermissionResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

GrantUserPermissionResponse is the response struct for api GrantUserPermission

func CreateGrantUserPermissionResponse ¶ added in v1.61.13

func CreateGrantUserPermissionResponse() (response *GrantUserPermissionResponse)

CreateGrantUserPermissionResponse creates a response to parse from GrantUserPermission response

type Index ¶ added in v1.61.13

type Index struct {
	IndexName    string   `json:"IndexName" xml:"IndexName"`
	IndexType    string   `json:"IndexType" xml:"IndexType"`
	Unique       bool     `json:"Unique" xml:"Unique"`
	TableId      string   `json:"TableId" xml:"TableId"`
	IndexId      string   `json:"IndexId" xml:"IndexId"`
	IndexComment string   `json:"IndexComment" xml:"IndexComment"`
	IndexColumns []string `json:"IndexColumns" xml:"IndexColumns"`
}

Index is a nested struct in dms_enterprise response

type IndexColumns ¶ added in v1.61.504

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

IndexColumns is a nested struct in dms_enterprise response

type IndexListInGetMetaTableDetailInfo ¶ added in v1.61.504

type IndexListInGetMetaTableDetailInfo struct {
	Index []Index `json:"Index" xml:"Index"`
}

IndexListInGetMetaTableDetailInfo is a nested struct in dms_enterprise response

type IndexListInListIndexes ¶ added in v1.61.504

type IndexListInListIndexes struct {
	Index []Index `json:"Index" xml:"Index"`
}

IndexListInListIndexes is a nested struct in dms_enterprise response

type Instance ¶ added in v1.61.13

type Instance struct {
	DataLinkName     string                     `json:"DataLinkName" xml:"DataLinkName"`
	Port             int                        `json:"Port" xml:"Port"`
	DatabasePassword string                     `json:"DatabasePassword" xml:"DatabasePassword"`
	DdlOnline        int                        `json:"DdlOnline" xml:"DdlOnline"`
	DbaNickName      string                     `json:"DbaNickName" xml:"DbaNickName"`
	Sid              string                     `json:"Sid" xml:"Sid"`
	InstanceType     string                     `json:"InstanceType" xml:"InstanceType"`
	QueryTimeout     int                        `json:"QueryTimeout" xml:"QueryTimeout"`
	InstanceSource   string                     `json:"InstanceSource" xml:"InstanceSource"`
	EcsInstanceId    string                     `json:"EcsInstanceId" xml:"EcsInstanceId"`
	DbaId            string                     `json:"DbaId" xml:"DbaId"`
	Host             string                     `json:"Host" xml:"Host"`
	SafeRuleId       string                     `json:"SafeRuleId" xml:"SafeRuleId"`
	State            string                     `json:"State" xml:"State"`
	EnvType          string                     `json:"EnvType" xml:"EnvType"`
	InstanceId       string                     `json:"InstanceId" xml:"InstanceId"`
	UseDsql          int                        `json:"UseDsql" xml:"UseDsql"`
	ExportTimeout    int                        `json:"ExportTimeout" xml:"ExportTimeout"`
	VpcId            string                     `json:"VpcId" xml:"VpcId"`
	InstanceAlias    string                     `json:"InstanceAlias" xml:"InstanceAlias"`
	DatabaseUser     string                     `json:"DatabaseUser" xml:"DatabaseUser"`
	EcsRegion        string                     `json:"EcsRegion" xml:"EcsRegion"`
	OwnerIdList      OwnerIdListInGetInstance   `json:"OwnerIdList" xml:"OwnerIdList"`
	OwnerNameList    OwnerNameListInGetInstance `json:"OwnerNameList" xml:"OwnerNameList"`
}

Instance is a nested struct in dms_enterprise response

type InstanceInfo ¶ added in v1.61.968

type InstanceInfo struct {
	DbaId         int64    `json:"DbaId" xml:"DbaId"`
	SearchName    string   `json:"SearchName" xml:"SearchName"`
	InstanceId    string   `json:"InstanceId" xml:"InstanceId"`
	Port          int64    `json:"Port" xml:"Port"`
	Host          string   `json:"Host" xml:"Host"`
	DbaNickName   string   `json:"DbaNickName" xml:"DbaNickName"`
	EnvType       string   `json:"EnvType" xml:"EnvType"`
	DbType        string   `json:"DbType" xml:"DbType"`
	OwnerNickName []string `json:"OwnerNickName" xml:"OwnerNickName"`
	OwnerIds      []int64  `json:"OwnerIds" xml:"OwnerIds"`
}

InstanceInfo is a nested struct in dms_enterprise response

type InstanceList ¶ added in v1.61.13

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

InstanceList is a nested struct in dms_enterprise response

type KeyInfo ¶ added in v1.61.13

type KeyInfo struct {
	JobStatus  string `json:"JobStatus" xml:"JobStatus"`
	PreCheckId int64  `json:"PreCheckId" xml:"PreCheckId"`
}

KeyInfo is a nested struct in dms_enterprise response

type ListColumnsRequest ¶ added in v1.61.13

type ListColumnsRequest struct {
	*requests.RpcRequest
	Tid     requests.Integer `position:"Query" name:"Tid"`
	TableId string           `position:"Query" name:"TableId"`
	Logic   requests.Boolean `position:"Query" name:"Logic"`
}

ListColumnsRequest is the request struct for api ListColumns

func CreateListColumnsRequest ¶ added in v1.61.13

func CreateListColumnsRequest() (request *ListColumnsRequest)

CreateListColumnsRequest creates a request to invoke ListColumns API

type ListColumnsResponse ¶ added in v1.61.13

type ListColumnsResponse struct {
	*responses.BaseResponse
	RequestId    string                  `json:"RequestId" xml:"RequestId"`
	ErrorCode    string                  `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                  `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool                    `json:"Success" xml:"Success"`
	ColumnList   ColumnListInListColumns `json:"ColumnList" xml:"ColumnList"`
}

ListColumnsResponse is the response struct for api ListColumns

func CreateListColumnsResponse ¶ added in v1.61.13

func CreateListColumnsResponse() (response *ListColumnsResponse)

CreateListColumnsResponse creates a response to parse from ListColumns response

type ListDBTaskSQLJobDetailRequest ¶ added in v1.61.968

type ListDBTaskSQLJobDetailRequest struct {
	*requests.RpcRequest
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	JobId      requests.Integer `position:"Query" name:"JobId"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
}

ListDBTaskSQLJobDetailRequest is the request struct for api ListDBTaskSQLJobDetail

func CreateListDBTaskSQLJobDetailRequest ¶ added in v1.61.968

func CreateListDBTaskSQLJobDetailRequest() (request *ListDBTaskSQLJobDetailRequest)

CreateListDBTaskSQLJobDetailRequest creates a request to invoke ListDBTaskSQLJobDetail API

type ListDBTaskSQLJobDetailResponse ¶ added in v1.61.968

type ListDBTaskSQLJobDetailResponse struct {
	*responses.BaseResponse
	TotalCount             int64                `json:"TotalCount" xml:"TotalCount"`
	RequestId              string               `json:"RequestId" xml:"RequestId"`
	ErrorCode              string               `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage           string               `json:"ErrorMessage" xml:"ErrorMessage"`
	Success                bool                 `json:"Success" xml:"Success"`
	DBTaskSQLJobDetailList []DBTaskSQLJobDetail `json:"DBTaskSQLJobDetailList" xml:"DBTaskSQLJobDetailList"`
}

ListDBTaskSQLJobDetailResponse is the response struct for api ListDBTaskSQLJobDetail

func CreateListDBTaskSQLJobDetailResponse ¶ added in v1.61.968

func CreateListDBTaskSQLJobDetailResponse() (response *ListDBTaskSQLJobDetailResponse)

CreateListDBTaskSQLJobDetailResponse creates a response to parse from ListDBTaskSQLJobDetail response

type ListDBTaskSQLJobRequest ¶ added in v1.61.968

type ListDBTaskSQLJobRequest struct {
	*requests.RpcRequest
	DBTaskGroupId requests.Integer `position:"Query" name:"DBTaskGroupId"`
	PageNumber    requests.Integer `position:"Query" name:"PageNumber"`
	Tid           requests.Integer `position:"Query" name:"Tid"`
	PageSize      requests.Integer `position:"Query" name:"PageSize"`
}

ListDBTaskSQLJobRequest is the request struct for api ListDBTaskSQLJob

func CreateListDBTaskSQLJobRequest ¶ added in v1.61.968

func CreateListDBTaskSQLJobRequest() (request *ListDBTaskSQLJobRequest)

CreateListDBTaskSQLJobRequest creates a request to invoke ListDBTaskSQLJob API

type ListDBTaskSQLJobResponse ¶ added in v1.61.968

type ListDBTaskSQLJobResponse struct {
	*responses.BaseResponse
	TotalCount       int64          `json:"TotalCount" xml:"TotalCount"`
	RequestId        string         `json:"RequestId" xml:"RequestId"`
	ErrorCode        string         `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage     string         `json:"ErrorMessage" xml:"ErrorMessage"`
	Success          bool           `json:"Success" xml:"Success"`
	DBTaskSQLJobList []DBTaskSQLJob `json:"DBTaskSQLJobList" xml:"DBTaskSQLJobList"`
}

ListDBTaskSQLJobResponse is the response struct for api ListDBTaskSQLJob

func CreateListDBTaskSQLJobResponse ¶ added in v1.61.968

func CreateListDBTaskSQLJobResponse() (response *ListDBTaskSQLJobResponse)

CreateListDBTaskSQLJobResponse creates a response to parse from ListDBTaskSQLJob response

type ListDDLPublishRecordsRequest ¶ added in v1.61.1009

type ListDDLPublishRecordsRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

ListDDLPublishRecordsRequest is the request struct for api ListDDLPublishRecords

func CreateListDDLPublishRecordsRequest ¶ added in v1.61.1009

func CreateListDDLPublishRecordsRequest() (request *ListDDLPublishRecordsRequest)

CreateListDDLPublishRecordsRequest creates a request to invoke ListDDLPublishRecords API

type ListDDLPublishRecordsResponse ¶ added in v1.61.1009

type ListDDLPublishRecordsResponse struct {
	*responses.BaseResponse
	RequestId            string             `json:"RequestId" xml:"RequestId"`
	ErrorCode            string             `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage         string             `json:"ErrorMessage" xml:"ErrorMessage"`
	Success              bool               `json:"Success" xml:"Success"`
	DDLPublishRecordList []DDLPublishRecord `json:"DDLPublishRecordList" xml:"DDLPublishRecordList"`
}

ListDDLPublishRecordsResponse is the response struct for api ListDDLPublishRecords

func CreateListDDLPublishRecordsResponse ¶ added in v1.61.1009

func CreateListDDLPublishRecordsResponse() (response *ListDDLPublishRecordsResponse)

CreateListDDLPublishRecordsResponse creates a response to parse from ListDDLPublishRecords response

type ListDatabaseUserPermssionsRequest ¶ added in v1.61.13

type ListDatabaseUserPermssionsRequest struct {
	*requests.RpcRequest
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	PermType   string           `position:"Query" name:"PermType"`
	DbId       string           `position:"Query" name:"DbId"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
	Logic      requests.Boolean `position:"Query" name:"Logic"`
	UserName   string           `position:"Query" name:"UserName"`
}

ListDatabaseUserPermssionsRequest is the request struct for api ListDatabaseUserPermssions

func CreateListDatabaseUserPermssionsRequest ¶ added in v1.61.13

func CreateListDatabaseUserPermssionsRequest() (request *ListDatabaseUserPermssionsRequest)

CreateListDatabaseUserPermssionsRequest creates a request to invoke ListDatabaseUserPermssions API

type ListDatabaseUserPermssionsResponse ¶ added in v1.61.13

type ListDatabaseUserPermssionsResponse struct {
	*responses.BaseResponse
	TotalCount      int64                                       `json:"TotalCount" xml:"TotalCount"`
	RequestId       string                                      `json:"RequestId" xml:"RequestId"`
	ErrorCode       string                                      `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage    string                                      `json:"ErrorMessage" xml:"ErrorMessage"`
	Success         bool                                        `json:"Success" xml:"Success"`
	UserPermissions UserPermissionsInListDatabaseUserPermssions `json:"UserPermissions" xml:"UserPermissions"`
}

ListDatabaseUserPermssionsResponse is the response struct for api ListDatabaseUserPermssions

func CreateListDatabaseUserPermssionsResponse ¶ added in v1.61.13

func CreateListDatabaseUserPermssionsResponse() (response *ListDatabaseUserPermssionsResponse)

CreateListDatabaseUserPermssionsResponse creates a response to parse from ListDatabaseUserPermssions response

type ListDatabasesRequest ¶ added in v1.61.13

type ListDatabasesRequest struct {
	*requests.RpcRequest
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	InstanceId string           `position:"Query" name:"InstanceId"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
}

ListDatabasesRequest is the request struct for api ListDatabases

func CreateListDatabasesRequest ¶ added in v1.61.13

func CreateListDatabasesRequest() (request *ListDatabasesRequest)

CreateListDatabasesRequest creates a request to invoke ListDatabases API

type ListDatabasesResponse ¶ added in v1.61.13

type ListDatabasesResponse struct {
	*responses.BaseResponse
	TotalCount   int64                       `json:"TotalCount" xml:"TotalCount"`
	RequestId    string                      `json:"RequestId" xml:"RequestId"`
	ErrorCode    string                      `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                      `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool                        `json:"Success" xml:"Success"`
	DatabaseList DatabaseListInListDatabases `json:"DatabaseList" xml:"DatabaseList"`
}

ListDatabasesResponse is the response struct for api ListDatabases

func CreateListDatabasesResponse ¶ added in v1.61.13

func CreateListDatabasesResponse() (response *ListDatabasesResponse)

CreateListDatabasesResponse creates a response to parse from ListDatabases response

type ListIndexesRequest ¶ added in v1.61.13

type ListIndexesRequest struct {
	*requests.RpcRequest
	Tid     requests.Integer `position:"Query" name:"Tid"`
	TableId string           `position:"Query" name:"TableId"`
	Logic   requests.Boolean `position:"Query" name:"Logic"`
}

ListIndexesRequest is the request struct for api ListIndexes

func CreateListIndexesRequest ¶ added in v1.61.13

func CreateListIndexesRequest() (request *ListIndexesRequest)

CreateListIndexesRequest creates a request to invoke ListIndexes API

type ListIndexesResponse ¶ added in v1.61.13

type ListIndexesResponse struct {
	*responses.BaseResponse
	RequestId    string                 `json:"RequestId" xml:"RequestId"`
	ErrorCode    string                 `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                 `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool                   `json:"Success" xml:"Success"`
	IndexList    IndexListInListIndexes `json:"IndexList" xml:"IndexList"`
}

ListIndexesResponse is the response struct for api ListIndexes

func CreateListIndexesResponse ¶ added in v1.61.13

func CreateListIndexesResponse() (response *ListIndexesResponse)

CreateListIndexesResponse creates a response to parse from ListIndexes response

type ListInstancesRequest ¶ added in v1.61.13

type ListInstancesRequest struct {
	*requests.RpcRequest
	SearchKey      string           `position:"Query" name:"SearchKey"`
	Tid            requests.Integer `position:"Query" name:"Tid"`
	InstanceState  string           `position:"Query" name:"InstanceState"`
	PageNumber     requests.Integer `position:"Query" name:"PageNumber"`
	NetType        string           `position:"Query" name:"NetType"`
	DbType         string           `position:"Query" name:"DbType"`
	EnvType        string           `position:"Query" name:"EnvType"`
	InstanceSource string           `position:"Query" name:"InstanceSource"`
	PageSize       requests.Integer `position:"Query" name:"PageSize"`
}

ListInstancesRequest is the request struct for api ListInstances

func CreateListInstancesRequest ¶ added in v1.61.13

func CreateListInstancesRequest() (request *ListInstancesRequest)

CreateListInstancesRequest creates a request to invoke ListInstances API

type ListInstancesResponse ¶ added in v1.61.13

type ListInstancesResponse struct {
	*responses.BaseResponse
	TotalCount   int64        `json:"TotalCount" xml:"TotalCount"`
	RequestId    string       `json:"RequestId" xml:"RequestId"`
	ErrorCode    string       `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string       `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool         `json:"Success" xml:"Success"`
	InstanceList InstanceList `json:"InstanceList" xml:"InstanceList"`
}

ListInstancesResponse is the response struct for api ListInstances

func CreateListInstancesResponse ¶ added in v1.61.13

func CreateListInstancesResponse() (response *ListInstancesResponse)

CreateListInstancesResponse creates a response to parse from ListInstances response

type ListLogicDatabasesRequest ¶ added in v1.61.13

type ListLogicDatabasesRequest struct {
	*requests.RpcRequest
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
}

ListLogicDatabasesRequest is the request struct for api ListLogicDatabases

func CreateListLogicDatabasesRequest ¶ added in v1.61.13

func CreateListLogicDatabasesRequest() (request *ListLogicDatabasesRequest)

CreateListLogicDatabasesRequest creates a request to invoke ListLogicDatabases API

type ListLogicDatabasesResponse ¶ added in v1.61.13

type ListLogicDatabasesResponse struct {
	*responses.BaseResponse
	TotalCount        int64             `json:"TotalCount" xml:"TotalCount"`
	RequestId         string            `json:"RequestId" xml:"RequestId"`
	ErrorCode         string            `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string            `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool              `json:"Success" xml:"Success"`
	LogicDatabaseList LogicDatabaseList `json:"LogicDatabaseList" xml:"LogicDatabaseList"`
}

ListLogicDatabasesResponse is the response struct for api ListLogicDatabases

func CreateListLogicDatabasesResponse ¶ added in v1.61.13

func CreateListLogicDatabasesResponse() (response *ListLogicDatabasesResponse)

CreateListLogicDatabasesResponse creates a response to parse from ListLogicDatabases response

type ListLogicTablesRequest ¶ added in v1.61.13

type ListLogicTablesRequest struct {
	*requests.RpcRequest
	SearchName string           `position:"Query" name:"SearchName"`
	ReturnGuid requests.Boolean `position:"Query" name:"ReturnGuid"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
	DatabaseId string           `position:"Query" name:"DatabaseId"`
}

ListLogicTablesRequest is the request struct for api ListLogicTables

func CreateListLogicTablesRequest ¶ added in v1.61.13

func CreateListLogicTablesRequest() (request *ListLogicTablesRequest)

CreateListLogicTablesRequest creates a request to invoke ListLogicTables API

type ListLogicTablesResponse ¶ added in v1.61.13

type ListLogicTablesResponse struct {
	*responses.BaseResponse
	TotalCount     int64          `json:"TotalCount" xml:"TotalCount"`
	RequestId      string         `json:"RequestId" xml:"RequestId"`
	ErrorCode      string         `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage   string         `json:"ErrorMessage" xml:"ErrorMessage"`
	Success        bool           `json:"Success" xml:"Success"`
	LogicTableList LogicTableList `json:"LogicTableList" xml:"LogicTableList"`
}

ListLogicTablesResponse is the response struct for api ListLogicTables

func CreateListLogicTablesResponse ¶ added in v1.61.13

func CreateListLogicTablesResponse() (response *ListLogicTablesResponse)

CreateListLogicTablesResponse creates a response to parse from ListLogicTables response

type ListOrdersRequest ¶ added in v1.61.13

type ListOrdersRequest struct {
	*requests.RpcRequest
	OrderStatus     string           `position:"Query" name:"OrderStatus"`
	SearchContent   string           `position:"Query" name:"SearchContent"`
	SearchDateType  string           `position:"Query" name:"SearchDateType"`
	EndTime         string           `position:"Query" name:"EndTime"`
	StartTime       string           `position:"Query" name:"StartTime"`
	Tid             requests.Integer `position:"Query" name:"Tid"`
	PageNumber      requests.Integer `position:"Query" name:"PageNumber"`
	PluginType      string           `position:"Query" name:"PluginType"`
	PageSize        requests.Integer `position:"Query" name:"PageSize"`
	OrderResultType string           `position:"Query" name:"OrderResultType"`
}

ListOrdersRequest is the request struct for api ListOrders

func CreateListOrdersRequest ¶ added in v1.61.13

func CreateListOrdersRequest() (request *ListOrdersRequest)

CreateListOrdersRequest creates a request to invoke ListOrders API

type ListOrdersResponse ¶ added in v1.61.13

type ListOrdersResponse struct {
	*responses.BaseResponse
	TotalCount   int64  `json:"TotalCount" xml:"TotalCount"`
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
	Orders       Orders `json:"Orders" xml:"Orders"`
}

ListOrdersResponse is the response struct for api ListOrders

func CreateListOrdersResponse ¶ added in v1.61.13

func CreateListOrdersResponse() (response *ListOrdersResponse)

CreateListOrdersResponse creates a response to parse from ListOrders response

type ListSensitiveColumnsDetailRequest ¶ added in v1.61.134

type ListSensitiveColumnsDetailRequest struct {
	*requests.RpcRequest
	SchemaName string           `position:"Query" name:"SchemaName"`
	ColumnName string           `position:"Query" name:"ColumnName"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	TableName  string           `position:"Query" name:"TableName"`
}

ListSensitiveColumnsDetailRequest is the request struct for api ListSensitiveColumnsDetail

func CreateListSensitiveColumnsDetailRequest ¶ added in v1.61.134

func CreateListSensitiveColumnsDetailRequest() (request *ListSensitiveColumnsDetailRequest)

CreateListSensitiveColumnsDetailRequest creates a request to invoke ListSensitiveColumnsDetail API

type ListSensitiveColumnsDetailResponse ¶ added in v1.61.134

type ListSensitiveColumnsDetailResponse struct {
	*responses.BaseResponse
	RequestId                  string                     `json:"RequestId" xml:"RequestId"`
	ErrorCode                  string                     `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage               string                     `json:"ErrorMessage" xml:"ErrorMessage"`
	Success                    bool                       `json:"Success" xml:"Success"`
	SensitiveColumnsDetailList SensitiveColumnsDetailList `json:"SensitiveColumnsDetailList" xml:"SensitiveColumnsDetailList"`
}

ListSensitiveColumnsDetailResponse is the response struct for api ListSensitiveColumnsDetail

func CreateListSensitiveColumnsDetailResponse ¶ added in v1.61.134

func CreateListSensitiveColumnsDetailResponse() (response *ListSensitiveColumnsDetailResponse)

CreateListSensitiveColumnsDetailResponse creates a response to parse from ListSensitiveColumnsDetail response

type ListSensitiveColumnsRequest ¶ added in v1.61.134

type ListSensitiveColumnsRequest struct {
	*requests.RpcRequest
	SchemaName    string           `position:"Query" name:"SchemaName"`
	ColumnName    string           `position:"Query" name:"ColumnName"`
	Tid           requests.Integer `position:"Query" name:"Tid"`
	PageNumber    requests.Integer `position:"Query" name:"PageNumber"`
	SecurityLevel string           `position:"Query" name:"SecurityLevel"`
	PageSize      requests.Integer `position:"Query" name:"PageSize"`
	TableName     string           `position:"Query" name:"TableName"`
}

ListSensitiveColumnsRequest is the request struct for api ListSensitiveColumns

func CreateListSensitiveColumnsRequest ¶ added in v1.61.134

func CreateListSensitiveColumnsRequest() (request *ListSensitiveColumnsRequest)

CreateListSensitiveColumnsRequest creates a request to invoke ListSensitiveColumns API

type ListSensitiveColumnsResponse ¶ added in v1.61.134

type ListSensitiveColumnsResponse struct {
	*responses.BaseResponse
	TotalCount          int64               `json:"TotalCount" xml:"TotalCount"`
	RequestId           string              `json:"RequestId" xml:"RequestId"`
	ErrorCode           string              `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage        string              `json:"ErrorMessage" xml:"ErrorMessage"`
	Success             bool                `json:"Success" xml:"Success"`
	SensitiveColumnList SensitiveColumnList `json:"SensitiveColumnList" xml:"SensitiveColumnList"`
}

ListSensitiveColumnsResponse is the response struct for api ListSensitiveColumns

func CreateListSensitiveColumnsResponse ¶ added in v1.61.134

func CreateListSensitiveColumnsResponse() (response *ListSensitiveColumnsResponse)

CreateListSensitiveColumnsResponse creates a response to parse from ListSensitiveColumns response

type ListTablesRequest ¶ added in v1.61.13

type ListTablesRequest struct {
	*requests.RpcRequest
	SearchName string           `position:"Query" name:"SearchName"`
	ReturnGuid requests.Boolean `position:"Query" name:"ReturnGuid"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
	DatabaseId string           `position:"Query" name:"DatabaseId"`
}

ListTablesRequest is the request struct for api ListTables

func CreateListTablesRequest ¶ added in v1.61.13

func CreateListTablesRequest() (request *ListTablesRequest)

CreateListTablesRequest creates a request to invoke ListTables API

type ListTablesResponse ¶ added in v1.61.13

type ListTablesResponse struct {
	*responses.BaseResponse
	TotalCount   int64                 `json:"TotalCount" xml:"TotalCount"`
	RequestId    string                `json:"RequestId" xml:"RequestId"`
	ErrorCode    string                `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string                `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool                  `json:"Success" xml:"Success"`
	TableList    TableListInListTables `json:"TableList" xml:"TableList"`
}

ListTablesResponse is the response struct for api ListTables

func CreateListTablesResponse ¶ added in v1.61.13

func CreateListTablesResponse() (response *ListTablesResponse)

CreateListTablesResponse creates a response to parse from ListTables response

type ListUserPermissionsRequest ¶ added in v1.61.13

type ListUserPermissionsRequest struct {
	*requests.RpcRequest
	UserId       string           `position:"Query" name:"UserId"`
	Tid          requests.Integer `position:"Query" name:"Tid"`
	PageNumber   requests.Integer `position:"Query" name:"PageNumber"`
	PermType     string           `position:"Query" name:"PermType"`
	DatabaseName string           `position:"Query" name:"DatabaseName"`
	EnvType      string           `position:"Query" name:"EnvType"`
	DbType       string           `position:"Query" name:"DbType"`
	PageSize     requests.Integer `position:"Query" name:"PageSize"`
	Logic        requests.Boolean `position:"Query" name:"Logic"`
}

ListUserPermissionsRequest is the request struct for api ListUserPermissions

func CreateListUserPermissionsRequest ¶ added in v1.61.13

func CreateListUserPermissionsRequest() (request *ListUserPermissionsRequest)

CreateListUserPermissionsRequest creates a request to invoke ListUserPermissions API

type ListUserPermissionsResponse ¶ added in v1.61.13

type ListUserPermissionsResponse struct {
	*responses.BaseResponse
	TotalCount      int64                                `json:"TotalCount" xml:"TotalCount"`
	RequestId       string                               `json:"RequestId" xml:"RequestId"`
	ErrorCode       string                               `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage    string                               `json:"ErrorMessage" xml:"ErrorMessage"`
	Success         bool                                 `json:"Success" xml:"Success"`
	UserPermissions UserPermissionsInListUserPermissions `json:"UserPermissions" xml:"UserPermissions"`
}

ListUserPermissionsResponse is the response struct for api ListUserPermissions

func CreateListUserPermissionsResponse ¶ added in v1.61.13

func CreateListUserPermissionsResponse() (response *ListUserPermissionsResponse)

CreateListUserPermissionsResponse creates a response to parse from ListUserPermissions response

type ListUserTenantsRequest ¶ added in v1.61.504

type ListUserTenantsRequest struct {
	*requests.RpcRequest
	Tid requests.Integer `position:"Query" name:"Tid"`
}

ListUserTenantsRequest is the request struct for api ListUserTenants

func CreateListUserTenantsRequest ¶ added in v1.61.504

func CreateListUserTenantsRequest() (request *ListUserTenantsRequest)

CreateListUserTenantsRequest creates a request to invoke ListUserTenants API

type ListUserTenantsResponse ¶ added in v1.61.504

type ListUserTenantsResponse struct {
	*responses.BaseResponse
	RequestId    string   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool     `json:"Success" xml:"Success"`
	TenantList   []Tenant `json:"TenantList" xml:"TenantList"`
}

ListUserTenantsResponse is the response struct for api ListUserTenants

func CreateListUserTenantsResponse ¶ added in v1.61.504

func CreateListUserTenantsResponse() (response *ListUserTenantsResponse)

CreateListUserTenantsResponse creates a response to parse from ListUserTenants response

type ListUsersRequest ¶ added in v1.61.13

type ListUsersRequest struct {
	*requests.RpcRequest
	Role       string           `position:"Query" name:"Role"`
	SearchKey  string           `position:"Query" name:"SearchKey"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	PageNumber requests.Integer `position:"Query" name:"PageNumber"`
	UserState  string           `position:"Query" name:"UserState"`
	PageSize   requests.Integer `position:"Query" name:"PageSize"`
}

ListUsersRequest is the request struct for api ListUsers

func CreateListUsersRequest ¶ added in v1.61.13

func CreateListUsersRequest() (request *ListUsersRequest)

CreateListUsersRequest creates a request to invoke ListUsers API

type ListUsersResponse ¶ added in v1.61.13

type ListUsersResponse struct {
	*responses.BaseResponse
	TotalCount   int64    `json:"TotalCount" xml:"TotalCount"`
	RequestId    string   `json:"RequestId" xml:"RequestId"`
	ErrorCode    string   `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string   `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool     `json:"Success" xml:"Success"`
	UserList     UserList `json:"UserList" xml:"UserList"`
}

ListUsersResponse is the response struct for api ListUsers

func CreateListUsersResponse ¶ added in v1.61.13

func CreateListUsersResponse() (response *ListUsersResponse)

CreateListUsersResponse creates a response to parse from ListUsers response

type ListWorkFlowNodesRequest ¶ added in v1.61.13

type ListWorkFlowNodesRequest struct {
	*requests.RpcRequest
	SearchName string           `position:"Query" name:"SearchName"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
}

ListWorkFlowNodesRequest is the request struct for api ListWorkFlowNodes

func CreateListWorkFlowNodesRequest ¶ added in v1.61.13

func CreateListWorkFlowNodesRequest() (request *ListWorkFlowNodesRequest)

CreateListWorkFlowNodesRequest creates a request to invoke ListWorkFlowNodes API

type ListWorkFlowNodesResponse ¶ added in v1.61.13

type ListWorkFlowNodesResponse struct {
	*responses.BaseResponse
	RequestId     string                           `json:"RequestId" xml:"RequestId"`
	ErrorCode     string                           `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage  string                           `json:"ErrorMessage" xml:"ErrorMessage"`
	Success       bool                             `json:"Success" xml:"Success"`
	WorkflowNodes WorkflowNodesInListWorkFlowNodes `json:"WorkflowNodes" xml:"WorkflowNodes"`
}

ListWorkFlowNodesResponse is the response struct for api ListWorkFlowNodes

func CreateListWorkFlowNodesResponse ¶ added in v1.61.13

func CreateListWorkFlowNodesResponse() (response *ListWorkFlowNodesResponse)

CreateListWorkFlowNodesResponse creates a response to parse from ListWorkFlowNodes response

type ListWorkFlowTemplatesRequest ¶ added in v1.61.13

type ListWorkFlowTemplatesRequest struct {
	*requests.RpcRequest
	SearchName string           `position:"Query" name:"SearchName"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
}

ListWorkFlowTemplatesRequest is the request struct for api ListWorkFlowTemplates

func CreateListWorkFlowTemplatesRequest ¶ added in v1.61.13

func CreateListWorkFlowTemplatesRequest() (request *ListWorkFlowTemplatesRequest)

CreateListWorkFlowTemplatesRequest creates a request to invoke ListWorkFlowTemplates API

type ListWorkFlowTemplatesResponse ¶ added in v1.61.13

type ListWorkFlowTemplatesResponse struct {
	*responses.BaseResponse
	RequestId         string            `json:"RequestId" xml:"RequestId"`
	ErrorCode         string            `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage      string            `json:"ErrorMessage" xml:"ErrorMessage"`
	Success           bool              `json:"Success" xml:"Success"`
	WorkFlowTemplates WorkFlowTemplates `json:"WorkFlowTemplates" xml:"WorkFlowTemplates"`
}

ListWorkFlowTemplatesResponse is the response struct for api ListWorkFlowTemplates

func CreateListWorkFlowTemplatesResponse ¶ added in v1.61.13

func CreateListWorkFlowTemplatesResponse() (response *ListWorkFlowTemplatesResponse)

CreateListWorkFlowTemplatesResponse creates a response to parse from ListWorkFlowTemplates response

type LogicDatabase ¶ added in v1.61.13

type LogicDatabase struct {
	DatabaseId    string                          `json:"DatabaseId" xml:"DatabaseId"`
	Logic         bool                            `json:"Logic" xml:"Logic"`
	SearchName    string                          `json:"SearchName" xml:"SearchName"`
	EnvType       string                          `json:"EnvType" xml:"EnvType"`
	SchemaName    string                          `json:"SchemaName" xml:"SchemaName"`
	DbType        string                          `json:"DbType" xml:"DbType"`
	OwnerNameList OwnerNameListInGetLogicDatabase `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList   OwnerIdListInGetLogicDatabase   `json:"OwnerIdList" xml:"OwnerIdList"`
}

LogicDatabase is a nested struct in dms_enterprise response

type LogicDatabaseList ¶ added in v1.61.13

type LogicDatabaseList struct {
	LogicDatabase []LogicDatabase `json:"LogicDatabase" xml:"LogicDatabase"`
}

LogicDatabaseList is a nested struct in dms_enterprise response

type LogicTable ¶ added in v1.61.13

type LogicTable struct {
	TableId       string                         `json:"TableId" xml:"TableId"`
	TableName     string                         `json:"TableName" xml:"TableName"`
	TableGuid     string                         `json:"TableGuid" xml:"TableGuid"`
	TableExpr     string                         `json:"TableExpr" xml:"TableExpr"`
	TableCount    string                         `json:"TableCount" xml:"TableCount"`
	DatabaseId    string                         `json:"DatabaseId" xml:"DatabaseId"`
	Logic         bool                           `json:"Logic" xml:"Logic"`
	SchemaName    string                         `json:"SchemaName" xml:"SchemaName"`
	OwnerNameList OwnerNameListInListLogicTables `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList   OwnerIdListInListLogicTables   `json:"OwnerIdList" xml:"OwnerIdList"`
}

LogicTable is a nested struct in dms_enterprise response

type LogicTableList ¶ added in v1.61.13

type LogicTableList struct {
	LogicTable []LogicTable `json:"LogicTable" xml:"LogicTable"`
}

LogicTableList is a nested struct in dms_enterprise response

type OpLogDetail ¶

type OpLogDetail struct {
	UserId    int64  `json:"UserId" xml:"UserId"`
	Database  string `json:"Database" xml:"Database"`
	OpContent string `json:"OpContent" xml:"OpContent"`
	UserNick  string `json:"UserNick" xml:"UserNick"`
	OrderId   int64  `json:"OrderId" xml:"OrderId"`
	Module    string `json:"Module" xml:"Module"`
	OpTime    string `json:"OpTime" xml:"OpTime"`
}

OpLogDetail is a nested struct in dms_enterprise response

type OpLogDetails ¶

type OpLogDetails struct {
	OpLogDetail []OpLogDetail `json:"OpLogDetail" xml:"OpLogDetail"`
}

OpLogDetails is a nested struct in dms_enterprise response

type Order ¶ added in v1.61.13

type Order struct {
	StatusDesc     string `json:"StatusDesc" xml:"StatusDesc"`
	Comment        string `json:"Comment" xml:"Comment"`
	CreateTime     string `json:"CreateTime" xml:"CreateTime"`
	Committer      string `json:"Committer" xml:"Committer"`
	OrderId        int64  `json:"OrderId" xml:"OrderId"`
	LastModifyTime string `json:"LastModifyTime" xml:"LastModifyTime"`
	PluginType     string `json:"PluginType" xml:"PluginType"`
	CommitterId    int64  `json:"CommitterId" xml:"CommitterId"`
	StatusCode     string `json:"StatusCode" xml:"StatusCode"`
}

Order is a nested struct in dms_enterprise response

type OrderBaseInfo ¶ added in v1.61.13

type OrderBaseInfo struct {
	StatusDesc          string              `json:"StatusDesc" xml:"StatusDesc"`
	WorkflowStatusDesc  string              `json:"WorkflowStatusDesc" xml:"WorkflowStatusDesc"`
	Comment             string              `json:"Comment" xml:"Comment"`
	CreateTime          string              `json:"CreateTime" xml:"CreateTime"`
	WorkflowInstanceId  int64               `json:"WorkflowInstanceId" xml:"WorkflowInstanceId"`
	Committer           string              `json:"Committer" xml:"Committer"`
	OrderId             int64               `json:"OrderId" xml:"OrderId"`
	LastModifyTime      string              `json:"LastModifyTime" xml:"LastModifyTime"`
	PluginType          string              `json:"PluginType" xml:"PluginType"`
	StatusCode          string              `json:"StatusCode" xml:"StatusCode"`
	CommitterId         int64               `json:"CommitterId" xml:"CommitterId"`
	RelatedUserList     RelatedUserList     `json:"RelatedUserList" xml:"RelatedUserList"`
	RelatedUserNickList RelatedUserNickList `json:"RelatedUserNickList" xml:"RelatedUserNickList"`
}

OrderBaseInfo is a nested struct in dms_enterprise response

type OrderDetail ¶ added in v1.61.13

type OrderDetail struct {
	Logic                  bool   `json:"Logic" xml:"Logic"`
	ActualAffectRows       int64  `json:"ActualAffectRows" xml:"ActualAffectRows"`
	EstimateAffectRows     int64  `json:"EstimateAffectRows" xml:"EstimateAffectRows"`
	RbSQL                  string `json:"RbSQL" xml:"RbSQL"`
	Classify               string `json:"Classify" xml:"Classify"`
	ExeSQL                 string `json:"ExeSQL" xml:"ExeSQL"`
	SqlType                string `json:"SqlType" xml:"SqlType"`
	EnvType                string `json:"EnvType" xml:"EnvType"`
	IgnoreAffectRowsReason string `json:"IgnoreAffectRowsReason" xml:"IgnoreAffectRowsReason"`
	DbId                   int    `json:"DbId" xml:"DbId"`
	RbSQLType              string `json:"RbSQLType" xml:"RbSQLType"`
	IgnoreAffectRows       bool   `json:"IgnoreAffectRows" xml:"IgnoreAffectRows"`
	Database               string `json:"Database" xml:"Database"`
	RbAttachmentName       string `json:"RbAttachmentName" xml:"RbAttachmentName"`
	AttachmentName         string `json:"AttachmentName" xml:"AttachmentName"`
}

OrderDetail is a nested struct in dms_enterprise response

type Orders ¶ added in v1.61.13

type Orders struct {
	Order []Order `json:"Order" xml:"Order"`
}

Orders is a nested struct in dms_enterprise response

type OwnerApplyOrderDetail ¶ added in v1.61.968

type OwnerApplyOrderDetail struct {
	ApplyType string     `json:"ApplyType" xml:"ApplyType"`
	Resources []Resource `json:"Resources" xml:"Resources"`
}

OwnerApplyOrderDetail is a nested struct in dms_enterprise response

type OwnerIdListInGetDatabase ¶ added in v1.61.13

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

OwnerIdListInGetDatabase is a nested struct in dms_enterprise response

type OwnerIdListInGetInstance ¶ added in v1.61.851

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

OwnerIdListInGetInstance is a nested struct in dms_enterprise response

type OwnerIdListInGetLogicDatabase ¶ added in v1.61.13

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

OwnerIdListInGetLogicDatabase is a nested struct in dms_enterprise response

type OwnerIdListInListDatabases ¶ added in v1.61.13

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

OwnerIdListInListDatabases is a nested struct in dms_enterprise response

type OwnerIdListInListInstances ¶ added in v1.61.851

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

OwnerIdListInListInstances is a nested struct in dms_enterprise response

type OwnerIdListInListLogicDatabases ¶ added in v1.61.13

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

OwnerIdListInListLogicDatabases is a nested struct in dms_enterprise response

type OwnerIdListInListLogicTables ¶ added in v1.61.13

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

OwnerIdListInListLogicTables is a nested struct in dms_enterprise response

type OwnerIdListInListTables ¶ added in v1.61.13

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

OwnerIdListInListTables is a nested struct in dms_enterprise response

type OwnerIdListInSearchDatabase ¶ added in v1.61.13

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

OwnerIdListInSearchDatabase is a nested struct in dms_enterprise response

type OwnerIdListInSearchTable ¶ added in v1.61.13

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

OwnerIdListInSearchTable is a nested struct in dms_enterprise response

type OwnerIdsInGetOwnerApplyOrderDetail ¶ added in v1.61.968

type OwnerIdsInGetOwnerApplyOrderDetail struct {
	OwnerId []int64 `json:"OwnerId" xml:"OwnerId"`
}

OwnerIdsInGetOwnerApplyOrderDetail is a nested struct in dms_enterprise response

type OwnerIdsInGetPermApplyOrderDetail ¶ added in v1.61.968

type OwnerIdsInGetPermApplyOrderDetail struct {
	OwnerId []int64 `json:"OwnerId" xml:"OwnerId"`
}

OwnerIdsInGetPermApplyOrderDetail is a nested struct in dms_enterprise response

type OwnerNameListInGetDatabase ¶ added in v1.61.13

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

OwnerNameListInGetDatabase is a nested struct in dms_enterprise response

type OwnerNameListInGetInstance ¶ added in v1.61.851

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

OwnerNameListInGetInstance is a nested struct in dms_enterprise response

type OwnerNameListInGetLogicDatabase ¶ added in v1.61.13

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

OwnerNameListInGetLogicDatabase is a nested struct in dms_enterprise response

type OwnerNameListInListDatabases ¶ added in v1.61.13

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

OwnerNameListInListDatabases is a nested struct in dms_enterprise response

type OwnerNameListInListInstances ¶ added in v1.61.851

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

OwnerNameListInListInstances is a nested struct in dms_enterprise response

type OwnerNameListInListLogicDatabases ¶ added in v1.61.13

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

OwnerNameListInListLogicDatabases is a nested struct in dms_enterprise response

type OwnerNameListInListLogicTables ¶ added in v1.61.13

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

OwnerNameListInListLogicTables is a nested struct in dms_enterprise response

type OwnerNameListInListTables ¶ added in v1.61.13

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

OwnerNameListInListTables is a nested struct in dms_enterprise response

type OwnerNameListInSearchDatabase ¶ added in v1.61.13

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

OwnerNameListInSearchDatabase is a nested struct in dms_enterprise response

type OwnerNameListInSearchTable ¶ added in v1.61.13

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

OwnerNameListInSearchTable is a nested struct in dms_enterprise response

type OwnerNickName ¶ added in v1.61.968

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

OwnerNickName is a nested struct in dms_enterprise response

type OwnerNickNamesInGetOwnerApplyOrderDetail ¶ added in v1.61.968

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

OwnerNickNamesInGetOwnerApplyOrderDetail is a nested struct in dms_enterprise response

type OwnerNickNamesInGetPermApplyOrderDetail ¶ added in v1.61.968

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

OwnerNickNamesInGetPermApplyOrderDetail is a nested struct in dms_enterprise response

type PermApplyOrderDetail ¶ added in v1.61.968

type PermApplyOrderDetail struct {
	ApplyType string     `json:"ApplyType" xml:"ApplyType"`
	PermType  int64      `json:"PermType" xml:"PermType"`
	Seconds   int64      `json:"Seconds" xml:"Seconds"`
	Resources []Resource `json:"Resources" xml:"Resources"`
}

PermApplyOrderDetail is a nested struct in dms_enterprise response

type PermDetail ¶ added in v1.61.13

type PermDetail struct {
	CreateDate   string `json:"CreateDate" xml:"CreateDate"`
	OriginFrom   string `json:"OriginFrom" xml:"OriginFrom"`
	ExpireDate   string `json:"ExpireDate" xml:"ExpireDate"`
	PermType     string `json:"PermType" xml:"PermType"`
	UserAccessId string `json:"UserAccessId" xml:"UserAccessId"`
	ExtraData    string `json:"ExtraData" xml:"ExtraData"`
}

PermDetail is a nested struct in dms_enterprise response

type PermDetailsInListDatabaseUserPermssions ¶ added in v1.61.13

type PermDetailsInListDatabaseUserPermssions struct {
	PermDetail []PermDetail `json:"PermDetail" xml:"PermDetail"`
}

PermDetailsInListDatabaseUserPermssions is a nested struct in dms_enterprise response

type PermDetailsInListUserPermissions ¶ added in v1.61.13

type PermDetailsInListUserPermissions struct {
	PermDetail []PermDetail `json:"PermDetail" xml:"PermDetail"`
}

PermDetailsInListUserPermissions is a nested struct in dms_enterprise response

type PreCheckDetail ¶ added in v1.61.13

type PreCheckDetail struct {
	TaskCheckDO []TaskCheckDO `json:"TaskCheckDO" xml:"TaskCheckDO"`
}

PreCheckDetail is a nested struct in dms_enterprise response

type PublishJob ¶ added in v1.61.1009

type PublishJob struct {
	StatusDesc    string `json:"StatusDesc" xml:"StatusDesc"`
	TableName     string `json:"TableName" xml:"TableName"`
	Scripts       string `json:"Scripts" xml:"Scripts"`
	TaskJobStatus string `json:"TaskJobStatus" xml:"TaskJobStatus"`
	ExecuteCount  int64  `json:"ExecuteCount" xml:"ExecuteCount"`
	DBTaskGroupId int64  `json:"DBTaskGroupId" xml:"DBTaskGroupId"`
}

PublishJob is a nested struct in dms_enterprise response

type PublishJobList ¶ added in v1.61.1009

type PublishJobList struct {
	PublishJob []PublishJob `json:"PublishJob" xml:"PublishJob"`
}

PublishJobList is a nested struct in dms_enterprise response

type PublishTaskInfo ¶ added in v1.61.1009

type PublishTaskInfo struct {
	StatusDesc      string       `json:"StatusDesc" xml:"StatusDesc"`
	TaskJobStatus   string       `json:"TaskJobStatus" xml:"TaskJobStatus"`
	PublishStrategy string       `json:"PublishStrategy" xml:"PublishStrategy"`
	DbId            int64        `json:"DbId" xml:"DbId"`
	PlanTime        string       `json:"PlanTime" xml:"PlanTime"`
	Logic           bool         `json:"Logic" xml:"Logic"`
	PublishJobList  []PublishJob `json:"PublishJobList" xml:"PublishJobList"`
}

PublishTaskInfo is a nested struct in dms_enterprise response

type PublishTaskInfoList ¶ added in v1.61.1009

type PublishTaskInfoList struct {
	PublishTaskInfo []PublishTaskInfo `json:"PublishTaskInfo" xml:"PublishTaskInfo"`
}

PublishTaskInfoList is a nested struct in dms_enterprise response

type ReasonList ¶ added in v1.61.13

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

ReasonList is a nested struct in dms_enterprise response

type RegisterInstanceRequest ¶

type RegisterInstanceRequest struct {
	*requests.RpcRequest
	EcsRegion        string           `position:"Query" name:"EcsRegion"`
	DdlOnline        requests.Integer `position:"Query" name:"DdlOnline"`
	UseDsql          requests.Integer `position:"Query" name:"UseDsql"`
	NetworkType      string           `position:"Query" name:"NetworkType"`
	Tid              requests.Integer `position:"Query" name:"Tid"`
	Sid              string           `position:"Query" name:"Sid"`
	DataLinkName     string           `position:"Query" name:"DataLinkName"`
	InstanceSource   string           `position:"Query" name:"InstanceSource"`
	EnvType          string           `position:"Query" name:"EnvType"`
	Host             string           `position:"Query" name:"Host"`
	InstanceType     string           `position:"Query" name:"InstanceType"`
	QueryTimeout     requests.Integer `position:"Query" name:"QueryTimeout"`
	EcsInstanceId    string           `position:"Query" name:"EcsInstanceId"`
	ExportTimeout    requests.Integer `position:"Query" name:"ExportTimeout"`
	DatabasePassword string           `position:"Query" name:"DatabasePassword"`
	InstanceAlias    string           `position:"Query" name:"InstanceAlias"`
	DatabaseUser     string           `position:"Query" name:"DatabaseUser"`
	Port             requests.Integer `position:"Query" name:"Port"`
	VpcId            string           `position:"Query" name:"VpcId"`
	DbaUid           requests.Integer `position:"Query" name:"DbaUid"`
	SkipTest         requests.Boolean `position:"Query" name:"SkipTest"`
	SafeRule         string           `position:"Query" name:"SafeRule"`
}

RegisterInstanceRequest is the request struct for api RegisterInstance

func CreateRegisterInstanceRequest ¶

func CreateRegisterInstanceRequest() (request *RegisterInstanceRequest)

CreateRegisterInstanceRequest creates a request to invoke RegisterInstance API

type RegisterInstanceResponse ¶

type RegisterInstanceResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

RegisterInstanceResponse is the response struct for api RegisterInstance

func CreateRegisterInstanceResponse ¶

func CreateRegisterInstanceResponse() (response *RegisterInstanceResponse)

CreateRegisterInstanceResponse creates a response to parse from RegisterInstance response

type RegisterUserRequest ¶

type RegisterUserRequest struct {
	*requests.RpcRequest
	RoleNames string           `position:"Query" name:"RoleNames"`
	UserNick  string           `position:"Query" name:"UserNick"`
	Mobile    string           `position:"Query" name:"Mobile"`
	Tid       requests.Integer `position:"Query" name:"Tid"`
	Uid       string           `position:"Query" name:"Uid"`
}

RegisterUserRequest is the request struct for api RegisterUser

func CreateRegisterUserRequest ¶

func CreateRegisterUserRequest() (request *RegisterUserRequest)

CreateRegisterUserRequest creates a request to invoke RegisterUser API

type RegisterUserResponse ¶

type RegisterUserResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

RegisterUserResponse is the response struct for api RegisterUser

func CreateRegisterUserResponse ¶

func CreateRegisterUserResponse() (response *RegisterUserResponse)

CreateRegisterUserResponse creates a response to parse from RegisterUser response

type RelatedUserList ¶ added in v1.61.13

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

RelatedUserList is a nested struct in dms_enterprise response

type RelatedUserNickList ¶ added in v1.61.13

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

RelatedUserNickList is a nested struct in dms_enterprise response

type Resource ¶ added in v1.61.968

type Resource struct {
	Logic          bool           `json:"Logic" xml:"Logic"`
	TargetId       string         `json:"TargetId" xml:"TargetId"`
	ResourceDetail ResourceDetail `json:"ResourceDetail" xml:"ResourceDetail"`
	InstanceInfo   InstanceInfo   `json:"InstanceInfo" xml:"InstanceInfo"`
	TableInfo      TableInfo      `json:"TableInfo" xml:"TableInfo"`
	ColumnInfo     ColumnInfo     `json:"ColumnInfo" xml:"ColumnInfo"`
	DatabaseInfo   DatabaseInfo   `json:"DatabaseInfo" xml:"DatabaseInfo"`
}

Resource is a nested struct in dms_enterprise response

type ResourceDetail ¶ added in v1.61.968

type ResourceDetail struct {
	TableName      string   `json:"TableName" xml:"TableName"`
	SearchName     string   `json:"SearchName" xml:"SearchName"`
	EnvType        string   `json:"EnvType" xml:"EnvType"`
	DbType         string   `json:"DbType" xml:"DbType"`
	OwnerNickNames []string `json:"OwnerNickNames" xml:"OwnerNickNames"`
	OwnerIds       []int64  `json:"OwnerIds" xml:"OwnerIds"`
}

ResourceDetail is a nested struct in dms_enterprise response

type ResourcesInGetOwnerApplyOrderDetail ¶ added in v1.61.968

type ResourcesInGetOwnerApplyOrderDetail struct {
	Resource []Resource `json:"Resource" xml:"Resource"`
}

ResourcesInGetOwnerApplyOrderDetail is a nested struct in dms_enterprise response

type ResourcesInGetPermApplyOrderDetail ¶ added in v1.61.968

type ResourcesInGetPermApplyOrderDetail struct {
	Resource []Resource `json:"Resource" xml:"Resource"`
}

ResourcesInGetPermApplyOrderDetail is a nested struct in dms_enterprise response

type Result ¶ added in v1.61.487

type Result struct {
	Message         string                   `json:"Message" xml:"Message"`
	SourceTableName string                   `json:"SourceTableName" xml:"SourceTableName"`
	Success         bool                     `json:"Success" xml:"Success"`
	Script          string                   `json:"Script" xml:"Script"`
	RowCount        int64                    `json:"RowCount" xml:"RowCount"`
	TargetTableName string                   `json:"TargetTableName" xml:"TargetTableName"`
	ColumnNames     []string                 `json:"ColumnNames" xml:"ColumnNames"`
	Rows            []map[string]interface{} `json:"Rows" xml:"Rows"`
}

Result is a nested struct in dms_enterprise response

type ResultList ¶ added in v1.61.968

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

ResultList is a nested struct in dms_enterprise response

type Results ¶ added in v1.61.487

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

Results is a nested struct in dms_enterprise response

type RevokeUserPermissionRequest ¶ added in v1.61.13

type RevokeUserPermissionRequest struct {
	*requests.RpcRequest
	PermTypes    string           `position:"Query" name:"PermTypes"`
	UserAccessId string           `position:"Query" name:"UserAccessId"`
	DsType       string           `position:"Query" name:"DsType"`
	UserId       string           `position:"Query" name:"UserId"`
	Tid          requests.Integer `position:"Query" name:"Tid"`
	DbId         string           `position:"Query" name:"DbId"`
	TableId      string           `position:"Query" name:"TableId"`
	Logic        requests.Boolean `position:"Query" name:"Logic"`
	TableName    string           `position:"Query" name:"TableName"`
}

RevokeUserPermissionRequest is the request struct for api RevokeUserPermission

func CreateRevokeUserPermissionRequest ¶ added in v1.61.13

func CreateRevokeUserPermissionRequest() (request *RevokeUserPermissionRequest)

CreateRevokeUserPermissionRequest creates a request to invoke RevokeUserPermission API

type RevokeUserPermissionResponse ¶ added in v1.61.13

type RevokeUserPermissionResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

RevokeUserPermissionResponse is the response struct for api RevokeUserPermission

func CreateRevokeUserPermissionResponse ¶ added in v1.61.13

func CreateRevokeUserPermissionResponse() (response *RevokeUserPermissionResponse)

CreateRevokeUserPermissionResponse creates a response to parse from RevokeUserPermission response

type RoleIdListInGetUser ¶ added in v1.61.13

type RoleIdListInGetUser struct {
	RoleIds []int `json:"RoleIds" xml:"RoleIds"`
}

RoleIdListInGetUser is a nested struct in dms_enterprise response

type RoleIdListInListUsers ¶ added in v1.61.13

type RoleIdListInListUsers struct {
	RoleIds []int `json:"RoleIds" xml:"RoleIds"`
}

RoleIdListInListUsers is a nested struct in dms_enterprise response

type RoleNameListInGetUser ¶ added in v1.61.13

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

RoleNameListInGetUser is a nested struct in dms_enterprise response

type RoleNameListInListUsers ¶ added in v1.61.13

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

RoleNameListInListUsers is a nested struct in dms_enterprise response

type Rows ¶ added in v1.61.487

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

Rows is a nested struct in dms_enterprise response

type SearchDatabase ¶ added in v1.61.13

type SearchDatabase struct {
	DbaId         string                        `json:"DbaId" xml:"DbaId"`
	SearchName    string                        `json:"SearchName" xml:"SearchName"`
	Alias         string                        `json:"Alias" xml:"Alias"`
	Port          int                           `json:"Port" xml:"Port"`
	DatalinkName  string                        `json:"DatalinkName" xml:"DatalinkName"`
	Encoding      string                        `json:"Encoding" xml:"Encoding"`
	Host          string                        `json:"Host" xml:"Host"`
	DatabaseId    string                        `json:"DatabaseId" xml:"DatabaseId"`
	Logic         bool                          `json:"Logic" xml:"Logic"`
	DbType        string                        `json:"DbType" xml:"DbType"`
	EnvType       string                        `json:"EnvType" xml:"EnvType"`
	SchemaName    string                        `json:"SchemaName" xml:"SchemaName"`
	Sid           string                        `json:"Sid" xml:"Sid"`
	OwnerNameList OwnerNameListInSearchDatabase `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList   OwnerIdListInSearchDatabase   `json:"OwnerIdList" xml:"OwnerIdList"`
}

SearchDatabase is a nested struct in dms_enterprise response

type SearchDatabaseList ¶ added in v1.61.13

type SearchDatabaseList struct {
	SearchDatabase []SearchDatabase `json:"SearchDatabase" xml:"SearchDatabase"`
}

SearchDatabaseList is a nested struct in dms_enterprise response

type SearchDatabaseRequest ¶ added in v1.61.13

type SearchDatabaseRequest struct {
	*requests.RpcRequest
	SearchKey    string           `position:"Query" name:"SearchKey"`
	SearchRange  string           `position:"Query" name:"SearchRange"`
	Tid          requests.Integer `position:"Query" name:"Tid"`
	PageNumber   requests.Integer `position:"Query" name:"PageNumber"`
	SearchTarget string           `position:"Query" name:"SearchTarget"`
	PageSize     requests.Integer `position:"Query" name:"PageSize"`
	EnvType      string           `position:"Query" name:"EnvType"`
	DbType       string           `position:"Query" name:"DbType"`
}

SearchDatabaseRequest is the request struct for api SearchDatabase

func CreateSearchDatabaseRequest ¶ added in v1.61.13

func CreateSearchDatabaseRequest() (request *SearchDatabaseRequest)

CreateSearchDatabaseRequest creates a request to invoke SearchDatabase API

type SearchDatabaseResponse ¶ added in v1.61.13

type SearchDatabaseResponse struct {
	*responses.BaseResponse
	TotalCount         int64              `json:"TotalCount" xml:"TotalCount"`
	RequestId          string             `json:"RequestId" xml:"RequestId"`
	ErrorCode          string             `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage       string             `json:"ErrorMessage" xml:"ErrorMessage"`
	Success            bool               `json:"Success" xml:"Success"`
	SearchDatabaseList SearchDatabaseList `json:"SearchDatabaseList" xml:"SearchDatabaseList"`
}

SearchDatabaseResponse is the response struct for api SearchDatabase

func CreateSearchDatabaseResponse ¶ added in v1.61.13

func CreateSearchDatabaseResponse() (response *SearchDatabaseResponse)

CreateSearchDatabaseResponse creates a response to parse from SearchDatabase response

type SearchTable ¶ added in v1.61.13

type SearchTable struct {
	TableId         string                     `json:"TableId" xml:"TableId"`
	TableName       string                     `json:"TableName" xml:"TableName"`
	TableGuid       string                     `json:"TableGuid" xml:"TableGuid"`
	Description     string                     `json:"Description" xml:"Description"`
	TableSchemaName string                     `json:"TableSchemaName" xml:"TableSchemaName"`
	Encoding        string                     `json:"Encoding" xml:"Encoding"`
	DbName          string                     `json:"DbName" xml:"DbName"`
	DatabaseId      string                     `json:"DatabaseId" xml:"DatabaseId"`
	Logic           bool                       `json:"Logic" xml:"Logic"`
	DBSearchName    string                     `json:"DBSearchName" xml:"DBSearchName"`
	Engine          string                     `json:"Engine" xml:"Engine"`
	DbType          string                     `json:"DbType" xml:"DbType"`
	EnvType         string                     `json:"EnvType" xml:"EnvType"`
	OwnerNameList   OwnerNameListInSearchTable `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList     OwnerIdListInSearchTable   `json:"OwnerIdList" xml:"OwnerIdList"`
}

SearchTable is a nested struct in dms_enterprise response

type SearchTableList ¶ added in v1.61.13

type SearchTableList struct {
	SearchTable []SearchTable `json:"SearchTable" xml:"SearchTable"`
}

SearchTableList is a nested struct in dms_enterprise response

type SearchTableRequest ¶ added in v1.61.13

type SearchTableRequest struct {
	*requests.RpcRequest
	ReturnGuid   requests.Boolean `position:"Query" name:"ReturnGuid"`
	SearchKey    string           `position:"Query" name:"SearchKey"`
	SearchRange  string           `position:"Query" name:"SearchRange"`
	Tid          requests.Integer `position:"Query" name:"Tid"`
	PageNumber   requests.Integer `position:"Query" name:"PageNumber"`
	SearchTarget string           `position:"Query" name:"SearchTarget"`
	PageSize     requests.Integer `position:"Query" name:"PageSize"`
	EnvType      string           `position:"Query" name:"EnvType"`
	DbType       string           `position:"Query" name:"DbType"`
}

SearchTableRequest is the request struct for api SearchTable

func CreateSearchTableRequest ¶ added in v1.61.13

func CreateSearchTableRequest() (request *SearchTableRequest)

CreateSearchTableRequest creates a request to invoke SearchTable API

type SearchTableResponse ¶ added in v1.61.13

type SearchTableResponse struct {
	*responses.BaseResponse
	TotalCount      int64           `json:"TotalCount" xml:"TotalCount"`
	RequestId       string          `json:"RequestId" xml:"RequestId"`
	ErrorCode       string          `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage    string          `json:"ErrorMessage" xml:"ErrorMessage"`
	Success         bool            `json:"Success" xml:"Success"`
	SearchTableList SearchTableList `json:"SearchTableList" xml:"SearchTableList"`
}

SearchTableResponse is the response struct for api SearchTable

func CreateSearchTableResponse ¶ added in v1.61.13

func CreateSearchTableResponse() (response *SearchTableResponse)

CreateSearchTableResponse creates a response to parse from SearchTable response

type SensitiveColumn ¶ added in v1.61.134

type SensitiveColumn struct {
	TableName     string `json:"TableName" xml:"TableName"`
	ColumnName    string `json:"ColumnName" xml:"ColumnName"`
	ColumnCount   int64  `json:"ColumnCount" xml:"ColumnCount"`
	FunctionType  string `json:"FunctionType" xml:"FunctionType"`
	SecurityLevel string `json:"SecurityLevel" xml:"SecurityLevel"`
	SchemaName    string `json:"SchemaName" xml:"SchemaName"`
}

SensitiveColumn is a nested struct in dms_enterprise response

type SensitiveColumnList ¶ added in v1.61.134

type SensitiveColumnList struct {
	SensitiveColumn []SensitiveColumn `json:"SensitiveColumn" xml:"SensitiveColumn"`
}

SensitiveColumnList is a nested struct in dms_enterprise response

type SensitiveColumnsDetail ¶ added in v1.61.134

type SensitiveColumnsDetail struct {
	TableName         string `json:"TableName" xml:"TableName"`
	ColumnName        string `json:"ColumnName" xml:"ColumnName"`
	ColumnType        string `json:"ColumnType" xml:"ColumnType"`
	SearchName        string `json:"SearchName" xml:"SearchName"`
	ColumnDescription string `json:"ColumnDescription" xml:"ColumnDescription"`
	DbId              int64  `json:"DbId" xml:"DbId"`
	Logic             bool   `json:"Logic" xml:"Logic"`
	EnvType           string `json:"EnvType" xml:"EnvType"`
	SchemaName        string `json:"SchemaName" xml:"SchemaName"`
	DbType            string `json:"DbType" xml:"DbType"`
}

SensitiveColumnsDetail is a nested struct in dms_enterprise response

type SensitiveColumnsDetailList ¶ added in v1.61.134

type SensitiveColumnsDetailList struct {
	SensitiveColumnsDetail []SensitiveColumnsDetail `json:"SensitiveColumnsDetail" xml:"SensitiveColumnsDetail"`
}

SensitiveColumnsDetailList is a nested struct in dms_enterprise response

type SetOwnersRequest ¶ added in v1.61.13

type SetOwnersRequest struct {
	*requests.RpcRequest
	ResourceId string           `position:"Query" name:"ResourceId"`
	OwnerIds   string           `position:"Query" name:"OwnerIds"`
	Tid        requests.Integer `position:"Query" name:"Tid"`
	OwnerType  string           `position:"Query" name:"OwnerType"`
}

SetOwnersRequest is the request struct for api SetOwners

func CreateSetOwnersRequest ¶ added in v1.61.13

func CreateSetOwnersRequest() (request *SetOwnersRequest)

CreateSetOwnersRequest creates a request to invoke SetOwners API

type SetOwnersResponse ¶ added in v1.61.13

type SetOwnersResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

SetOwnersResponse is the response struct for api SetOwners

func CreateSetOwnersResponse ¶ added in v1.61.13

func CreateSetOwnersResponse() (response *SetOwnersResponse)

CreateSetOwnersResponse creates a response to parse from SetOwners response

type SourceDatabaseInfo ¶ added in v1.61.968

type SourceDatabaseInfo struct {
	SearchName string `json:"SearchName" xml:"SearchName"`
	DbId       int64  `json:"DbId" xml:"DbId"`
	Logic      bool   `json:"Logic" xml:"Logic"`
	EnvType    string `json:"EnvType" xml:"EnvType"`
	DbType     string `json:"DbType" xml:"DbType"`
}

SourceDatabaseInfo is a nested struct in dms_enterprise response

type SourceVersionInfo ¶ added in v1.61.968

type SourceVersionInfo struct {
	VersionId string `json:"VersionId" xml:"VersionId"`
}

SourceVersionInfo is a nested struct in dms_enterprise response

type StructSyncExecSqlDetail ¶ added in v1.61.968

type StructSyncExecSqlDetail struct {
	ExecSql       string `json:"ExecSql" xml:"ExecSql"`
	TotalSqlCount int64  `json:"TotalSqlCount" xml:"TotalSqlCount"`
}

StructSyncExecSqlDetail is a nested struct in dms_enterprise response

type StructSyncJobAnalyzeResult ¶ added in v1.61.968

type StructSyncJobAnalyzeResult struct {
	ResultList  []Result  `json:"ResultList" xml:"ResultList"`
	SummaryList []Summary `json:"SummaryList" xml:"SummaryList"`
}

StructSyncJobAnalyzeResult is a nested struct in dms_enterprise response

type StructSyncJobDetail ¶ added in v1.61.968

type StructSyncJobDetail struct {
	SqlCount      int64  `json:"SqlCount" xml:"SqlCount"`
	JobStatus     string `json:"JobStatus" xml:"JobStatus"`
	Message       string `json:"Message" xml:"Message"`
	TableAnalyzed int64  `json:"TableAnalyzed" xml:"TableAnalyzed"`
	TableCount    int64  `json:"TableCount" xml:"TableCount"`
	ExecuteCount  int64  `json:"ExecuteCount" xml:"ExecuteCount"`
	SecurityRule  string `json:"SecurityRule" xml:"SecurityRule"`
	DBTaskGroupId int64  `json:"DBTaskGroupId" xml:"DBTaskGroupId"`
}

StructSyncJobDetail is a nested struct in dms_enterprise response

type StructSyncOrderDetail ¶ added in v1.61.968

type StructSyncOrderDetail struct {
	SourceType         string             `json:"SourceType" xml:"SourceType"`
	TargetType         string             `json:"TargetType" xml:"TargetType"`
	IgnoreError        bool               `json:"IgnoreError" xml:"IgnoreError"`
	SourceDatabaseInfo SourceDatabaseInfo `json:"SourceDatabaseInfo" xml:"SourceDatabaseInfo"`
	TargetDatabaseInfo TargetDatabaseInfo `json:"TargetDatabaseInfo" xml:"TargetDatabaseInfo"`
	SourceVersionInfo  SourceVersionInfo  `json:"SourceVersionInfo" xml:"SourceVersionInfo"`
	TargetVersionInfo  TargetVersionInfo  `json:"TargetVersionInfo" xml:"TargetVersionInfo"`
	TableInfoList      []TableInfo        `json:"TableInfoList" xml:"TableInfoList"`
}

StructSyncOrderDetail is a nested struct in dms_enterprise response

type SubmitOrderApprovalRequest ¶ added in v1.61.13

type SubmitOrderApprovalRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

SubmitOrderApprovalRequest is the request struct for api SubmitOrderApproval

func CreateSubmitOrderApprovalRequest ¶ added in v1.61.13

func CreateSubmitOrderApprovalRequest() (request *SubmitOrderApprovalRequest)

CreateSubmitOrderApprovalRequest creates a request to invoke SubmitOrderApproval API

type SubmitOrderApprovalResponse ¶ added in v1.61.13

type SubmitOrderApprovalResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

SubmitOrderApprovalResponse is the response struct for api SubmitOrderApproval

func CreateSubmitOrderApprovalResponse ¶ added in v1.61.13

func CreateSubmitOrderApprovalResponse() (response *SubmitOrderApprovalResponse)

CreateSubmitOrderApprovalResponse creates a response to parse from SubmitOrderApproval response

type SubmitStructSyncOrderApprovalRequest ¶ added in v1.61.968

type SubmitStructSyncOrderApprovalRequest struct {
	*requests.RpcRequest
	OrderId requests.Integer `position:"Query" name:"OrderId"`
	Tid     requests.Integer `position:"Query" name:"Tid"`
}

SubmitStructSyncOrderApprovalRequest is the request struct for api SubmitStructSyncOrderApproval

func CreateSubmitStructSyncOrderApprovalRequest ¶ added in v1.61.968

func CreateSubmitStructSyncOrderApprovalRequest() (request *SubmitStructSyncOrderApprovalRequest)

CreateSubmitStructSyncOrderApprovalRequest creates a request to invoke SubmitStructSyncOrderApproval API

type SubmitStructSyncOrderApprovalResponse ¶ added in v1.61.968

type SubmitStructSyncOrderApprovalResponse struct {
	*responses.BaseResponse
	RequestId          string `json:"RequestId" xml:"RequestId"`
	WorkflowInstanceId int64  `json:"WorkflowInstanceId" xml:"WorkflowInstanceId"`
	ErrorCode          string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage       string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success            bool   `json:"Success" xml:"Success"`
}

SubmitStructSyncOrderApprovalResponse is the response struct for api SubmitStructSyncOrderApproval

func CreateSubmitStructSyncOrderApprovalResponse ¶ added in v1.61.968

func CreateSubmitStructSyncOrderApprovalResponse() (response *SubmitStructSyncOrderApprovalResponse)

CreateSubmitStructSyncOrderApprovalResponse creates a response to parse from SubmitStructSyncOrderApproval response

type Summary ¶ added in v1.61.968

type Summary struct {
	CompareType string `json:"CompareType" xml:"CompareType"`
	Count       int64  `json:"Count" xml:"Count"`
}

Summary is a nested struct in dms_enterprise response

type SummaryList ¶ added in v1.61.968

type SummaryList struct {
	Summary []Summary `json:"Summary" xml:"Summary"`
}

SummaryList is a nested struct in dms_enterprise response

type SyncDatabaseMetaRequest ¶ added in v1.61.13

type SyncDatabaseMetaRequest struct {
	*requests.RpcRequest
	Tid   requests.Integer `position:"Query" name:"Tid"`
	DbId  string           `position:"Query" name:"DbId"`
	Logic requests.Boolean `position:"Query" name:"Logic"`
}

SyncDatabaseMetaRequest is the request struct for api SyncDatabaseMeta

func CreateSyncDatabaseMetaRequest ¶ added in v1.61.13

func CreateSyncDatabaseMetaRequest() (request *SyncDatabaseMetaRequest)

CreateSyncDatabaseMetaRequest creates a request to invoke SyncDatabaseMeta API

type SyncDatabaseMetaResponse ¶ added in v1.61.13

type SyncDatabaseMetaResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

SyncDatabaseMetaResponse is the response struct for api SyncDatabaseMeta

func CreateSyncDatabaseMetaResponse ¶ added in v1.61.13

func CreateSyncDatabaseMetaResponse() (response *SyncDatabaseMetaResponse)

CreateSyncDatabaseMetaResponse creates a response to parse from SyncDatabaseMeta response

type SyncInstanceMetaRequest ¶ added in v1.61.13

type SyncInstanceMetaRequest struct {
	*requests.RpcRequest
	IgnoreTable requests.Boolean `position:"Query" name:"IgnoreTable"`
	Tid         requests.Integer `position:"Query" name:"Tid"`
	InstanceId  string           `position:"Query" name:"InstanceId"`
}

SyncInstanceMetaRequest is the request struct for api SyncInstanceMeta

func CreateSyncInstanceMetaRequest ¶ added in v1.61.13

func CreateSyncInstanceMetaRequest() (request *SyncInstanceMetaRequest)

CreateSyncInstanceMetaRequest creates a request to invoke SyncInstanceMeta API

type SyncInstanceMetaResponse ¶ added in v1.61.13

type SyncInstanceMetaResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

SyncInstanceMetaResponse is the response struct for api SyncInstanceMeta

func CreateSyncInstanceMetaResponse ¶ added in v1.61.13

func CreateSyncInstanceMetaResponse() (response *SyncInstanceMetaResponse)

CreateSyncInstanceMetaResponse creates a response to parse from SyncInstanceMeta response

type Table ¶ added in v1.61.13

type Table struct {
	StoreCapacity   int64    `json:"StoreCapacity" xml:"StoreCapacity"`
	Engine          string   `json:"Engine" xml:"Engine"`
	NumRows         int64    `json:"NumRows" xml:"NumRows"`
	TableId         string   `json:"TableId" xml:"TableId"`
	TableName       string   `json:"TableName" xml:"TableName"`
	TableType       string   `json:"TableType" xml:"TableType"`
	TableSchemaName string   `json:"TableSchemaName" xml:"TableSchemaName"`
	DatabaseId      string   `json:"DatabaseId" xml:"DatabaseId"`
	Encoding        string   `json:"Encoding" xml:"Encoding"`
	TableGuid       string   `json:"TableGuid" xml:"TableGuid"`
	Description     string   `json:"Description" xml:"Description"`
	OwnerNameList   []string `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList     []string `json:"OwnerIdList" xml:"OwnerIdList"`
}

Table is a nested struct in dms_enterprise response

type TableInListTables ¶ added in v1.61.504

type TableInListTables struct {
	TableId         string                    `json:"TableId" xml:"TableId"`
	TableName       string                    `json:"TableName" xml:"TableName"`
	TableGuid       string                    `json:"TableGuid" xml:"TableGuid"`
	TableType       string                    `json:"TableType" xml:"TableType"`
	Description     string                    `json:"Description" xml:"Description"`
	TableSchemaName string                    `json:"TableSchemaName" xml:"TableSchemaName"`
	Encoding        string                    `json:"Encoding" xml:"Encoding"`
	DatabaseId      string                    `json:"DatabaseId" xml:"DatabaseId"`
	NumRows         int64                     `json:"NumRows" xml:"NumRows"`
	StoreCapacity   int64                     `json:"StoreCapacity" xml:"StoreCapacity"`
	Engine          string                    `json:"Engine" xml:"Engine"`
	OwnerNameList   OwnerNameListInListTables `json:"OwnerNameList" xml:"OwnerNameList"`
	OwnerIdList     OwnerIdListInListTables   `json:"OwnerIdList" xml:"OwnerIdList"`
}

TableInListTables is a nested struct in dms_enterprise response

type TableInfo ¶ added in v1.61.968

type TableInfo struct {
	SourceTableName string `json:"SourceTableName" xml:"SourceTableName"`
	TargetTableName string `json:"TargetTableName" xml:"TargetTableName"`
	TableName       string `json:"TableName" xml:"TableName"`
}

TableInfo is a nested struct in dms_enterprise response

type TableInfoList ¶ added in v1.61.968

type TableInfoList struct {
	TableInfo []TableInfo `json:"TableInfo" xml:"TableInfo"`
}

TableInfoList is a nested struct in dms_enterprise response

type TableListInGetTableDBTopology ¶ added in v1.61.504

type TableListInGetTableDBTopology struct {
	Table []Table `json:"Table" xml:"Table"`
}

TableListInGetTableDBTopology is a nested struct in dms_enterprise response

type TableListInListTables ¶ added in v1.61.504

type TableListInListTables struct {
	Table []TableInListTables `json:"Table" xml:"Table"`
}

TableListInListTables is a nested struct in dms_enterprise response

type TableTopology ¶ added in v1.61.968

type TableTopology struct {
	TableName             string              `json:"TableName" xml:"TableName"`
	TableGuid             string              `json:"TableGuid" xml:"TableGuid"`
	Logic                 bool                `json:"Logic" xml:"Logic"`
	TableTopologyInfoList []TableTopologyInfo `json:"TableTopologyInfoList" xml:"TableTopologyInfoList"`
}

TableTopology is a nested struct in dms_enterprise response

type TableTopologyInfo ¶ added in v1.61.968

type TableTopologyInfo struct {
	TableNameExpr      string `json:"TableNameExpr" xml:"TableNameExpr"`
	DbSearchName       string `json:"DbSearchName" xml:"DbSearchName"`
	InstanceSource     string `json:"InstanceSource" xml:"InstanceSource"`
	InstanceResourceId string `json:"InstanceResourceId" xml:"InstanceResourceId"`
	InstanceId         int64  `json:"InstanceId" xml:"InstanceId"`
	TableNameList      string `json:"TableNameList" xml:"TableNameList"`
	TableCount         int64  `json:"TableCount" xml:"TableCount"`
	DbId               int64  `json:"DbId" xml:"DbId"`
	DbName             string `json:"DbName" xml:"DbName"`
	RegionId           string `json:"RegionId" xml:"RegionId"`
	DbType             string `json:"DbType" xml:"DbType"`
}

TableTopologyInfo is a nested struct in dms_enterprise response

type TableTopologyInfoList ¶ added in v1.61.968

type TableTopologyInfoList struct {
	TableTopologyInfo []TableTopologyInfo `json:"TableTopologyInfo" xml:"TableTopologyInfo"`
}

TableTopologyInfoList is a nested struct in dms_enterprise response

type TargetDatabaseInfo ¶ added in v1.61.968

type TargetDatabaseInfo struct {
	SearchName string `json:"SearchName" xml:"SearchName"`
	DbId       int64  `json:"DbId" xml:"DbId"`
	Logic      bool   `json:"Logic" xml:"Logic"`
	EnvType    string `json:"EnvType" xml:"EnvType"`
	DbType     string `json:"DbType" xml:"DbType"`
}

TargetDatabaseInfo is a nested struct in dms_enterprise response

type TargetVersionInfo ¶ added in v1.61.968

type TargetVersionInfo struct {
	VersionId string `json:"VersionId" xml:"VersionId"`
}

TargetVersionInfo is a nested struct in dms_enterprise response

type TaskCheckDO ¶ added in v1.61.13

type TaskCheckDO struct {
	UserTip     string `json:"UserTip" xml:"UserTip"`
	CheckStep   string `json:"CheckStep" xml:"CheckStep"`
	CheckStatus string `json:"CheckStatus" xml:"CheckStatus"`
}

TaskCheckDO is a nested struct in dms_enterprise response

type Tenant ¶ added in v1.61.504

type Tenant struct {
	Tid        int64  `json:"Tid" xml:"Tid"`
	TenantName string `json:"TenantName" xml:"TenantName"`
	Status     string `json:"Status" xml:"Status"`
}

Tenant is a nested struct in dms_enterprise response

type TenantList ¶ added in v1.61.504

type TenantList struct {
	Tenant []Tenant `json:"Tenant" xml:"Tenant"`
}

TenantList is a nested struct in dms_enterprise response

type UpdateInstanceRequest ¶ added in v1.61.13

type UpdateInstanceRequest struct {
	*requests.RpcRequest
	SafeRuleId       string           `position:"Query" name:"SafeRuleId"`
	EcsRegion        string           `position:"Query" name:"EcsRegion"`
	DdlOnline        requests.Integer `position:"Query" name:"DdlOnline"`
	UseDsql          requests.Integer `position:"Query" name:"UseDsql"`
	Tid              requests.Integer `position:"Query" name:"Tid"`
	Sid              string           `position:"Query" name:"Sid"`
	DbaId            string           `position:"Query" name:"DbaId"`
	DataLinkName     string           `position:"Query" name:"DataLinkName"`
	InstanceSource   string           `position:"Query" name:"InstanceSource"`
	EnvType          string           `position:"Query" name:"EnvType"`
	Host             string           `position:"Query" name:"Host"`
	InstanceType     string           `position:"Query" name:"InstanceType"`
	QueryTimeout     requests.Integer `position:"Query" name:"QueryTimeout"`
	EcsInstanceId    string           `position:"Query" name:"EcsInstanceId"`
	ExportTimeout    requests.Integer `position:"Query" name:"ExportTimeout"`
	DatabasePassword string           `position:"Query" name:"DatabasePassword"`
	InstanceAlias    string           `position:"Query" name:"InstanceAlias"`
	DatabaseUser     string           `position:"Query" name:"DatabaseUser"`
	InstanceId       string           `position:"Query" name:"InstanceId"`
	Port             requests.Integer `position:"Query" name:"Port"`
	VpcId            string           `position:"Query" name:"VpcId"`
	SkipTest         requests.Boolean `position:"Query" name:"SkipTest"`
}

UpdateInstanceRequest is the request struct for api UpdateInstance

func CreateUpdateInstanceRequest ¶ added in v1.61.13

func CreateUpdateInstanceRequest() (request *UpdateInstanceRequest)

CreateUpdateInstanceRequest creates a request to invoke UpdateInstance API

type UpdateInstanceResponse ¶ added in v1.61.13

type UpdateInstanceResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

UpdateInstanceResponse is the response struct for api UpdateInstance

func CreateUpdateInstanceResponse ¶ added in v1.61.13

func CreateUpdateInstanceResponse() (response *UpdateInstanceResponse)

CreateUpdateInstanceResponse creates a response to parse from UpdateInstance response

type UpdateUserRequest ¶ added in v1.61.13

type UpdateUserRequest struct {
	*requests.RpcRequest
	RoleNames       string           `position:"Query" name:"RoleNames"`
	MaxResultCount  requests.Integer `position:"Query" name:"MaxResultCount"`
	MaxExecuteCount requests.Integer `position:"Query" name:"MaxExecuteCount"`
	UserNick        string           `position:"Query" name:"UserNick"`
	Mobile          string           `position:"Query" name:"Mobile"`
	Tid             requests.Integer `position:"Query" name:"Tid"`
	Uid             requests.Integer `position:"Query" name:"Uid"`
}

UpdateUserRequest is the request struct for api UpdateUser

func CreateUpdateUserRequest ¶ added in v1.61.13

func CreateUpdateUserRequest() (request *UpdateUserRequest)

CreateUpdateUserRequest creates a request to invoke UpdateUser API

type UpdateUserResponse ¶ added in v1.61.13

type UpdateUserResponse struct {
	*responses.BaseResponse
	RequestId    string `json:"RequestId" xml:"RequestId"`
	ErrorCode    string `json:"ErrorCode" xml:"ErrorCode"`
	ErrorMessage string `json:"ErrorMessage" xml:"ErrorMessage"`
	Success      bool   `json:"Success" xml:"Success"`
}

UpdateUserResponse is the response struct for api UpdateUser

func CreateUpdateUserResponse ¶ added in v1.61.13

func CreateUpdateUserResponse() (response *UpdateUserResponse)

CreateUpdateUserResponse creates a response to parse from UpdateUser response

type UploadFileJobDetail ¶ added in v1.61.968

type UploadFileJobDetail struct {
	JobStatus      string         `json:"JobStatus" xml:"JobStatus"`
	AttachmentKey  string         `json:"AttachmentKey" xml:"AttachmentKey"`
	JobKey         string         `json:"JobKey" xml:"JobKey"`
	UploadURL      string         `json:"UploadURL" xml:"UploadURL"`
	UploadedSize   int64          `json:"UploadedSize" xml:"UploadedSize"`
	JobStatusDesc  string         `json:"JobStatusDesc" xml:"JobStatusDesc"`
	FileSource     string         `json:"FileSource" xml:"FileSource"`
	FileName       string         `json:"FileName" xml:"FileName"`
	UploadType     string         `json:"UploadType" xml:"UploadType"`
	FileSize       int64          `json:"FileSize" xml:"FileSize"`
	UploadOSSParam UploadOSSParam `json:"UploadOSSParam" xml:"UploadOSSParam"`
}

UploadFileJobDetail is a nested struct in dms_enterprise response

type UploadOSSParam ¶ added in v1.61.968

type UploadOSSParam struct {
	BucketName string `json:"BucketName" xml:"BucketName"`
	Endpoint   string `json:"Endpoint" xml:"Endpoint"`
	ObjectName string `json:"ObjectName" xml:"ObjectName"`
}

UploadOSSParam is a nested struct in dms_enterprise response

type User ¶ added in v1.61.13

type User struct {
	Uid             string                `json:"Uid" xml:"Uid"`
	CurResultCount  int64                 `json:"CurResultCount" xml:"CurResultCount"`
	MaxExecuteCount int64                 `json:"MaxExecuteCount" xml:"MaxExecuteCount"`
	LastLoginTime   string                `json:"LastLoginTime" xml:"LastLoginTime"`
	State           string                `json:"State" xml:"State"`
	Mobile          string                `json:"Mobile" xml:"Mobile"`
	CurExecuteCount int64                 `json:"CurExecuteCount" xml:"CurExecuteCount"`
	UserId          string                `json:"UserId" xml:"UserId"`
	ParentUid       int64                 `json:"ParentUid" xml:"ParentUid"`
	NickName        string                `json:"NickName" xml:"NickName"`
	MaxResultCount  int64                 `json:"MaxResultCount" xml:"MaxResultCount"`
	RoleNameList    RoleNameListInGetUser `json:"RoleNameList" xml:"RoleNameList"`
	RoleIdList      RoleIdListInGetUser   `json:"RoleIdList" xml:"RoleIdList"`
}

User is a nested struct in dms_enterprise response

type UserInListUsers ¶ added in v1.61.851

type UserInListUsers struct {
	Uid             string                  `json:"Uid" xml:"Uid"`
	LastLoginTime   string                  `json:"LastLoginTime" xml:"LastLoginTime"`
	CurResultCount  int64                   `json:"CurResultCount" xml:"CurResultCount"`
	MaxResultCount  int64                   `json:"MaxResultCount" xml:"MaxResultCount"`
	UserId          string                  `json:"UserId" xml:"UserId"`
	State           string                  `json:"State" xml:"State"`
	CurExecuteCount int64                   `json:"CurExecuteCount" xml:"CurExecuteCount"`
	NickName        string                  `json:"NickName" xml:"NickName"`
	Mobile          string                  `json:"Mobile" xml:"Mobile"`
	MaxExecuteCount int64                   `json:"MaxExecuteCount" xml:"MaxExecuteCount"`
	ParentUid       string                  `json:"ParentUid" xml:"ParentUid"`
	RoleIdList      RoleIdListInListUsers   `json:"RoleIdList" xml:"RoleIdList"`
	RoleNameList    RoleNameListInListUsers `json:"RoleNameList" xml:"RoleNameList"`
}

UserInListUsers is a nested struct in dms_enterprise response

type UserList ¶ added in v1.61.13

type UserList struct {
	User []UserInListUsers `json:"User" xml:"User"`
}

UserList is a nested struct in dms_enterprise response

type UserPermission ¶ added in v1.61.13

type UserPermission struct {
	Logic        bool                                    `json:"Logic" xml:"Logic"`
	SchemaName   string                                  `json:"SchemaName" xml:"SchemaName"`
	TableId      string                                  `json:"TableId" xml:"TableId"`
	TableName    string                                  `json:"TableName" xml:"TableName"`
	DbType       string                                  `json:"DbType" xml:"DbType"`
	UserNickName string                                  `json:"UserNickName" xml:"UserNickName"`
	ColumnName   string                                  `json:"ColumnName" xml:"ColumnName"`
	SearchName   string                                  `json:"SearchName" xml:"SearchName"`
	EnvType      string                                  `json:"EnvType" xml:"EnvType"`
	InstanceId   string                                  `json:"InstanceId" xml:"InstanceId"`
	UserId       string                                  `json:"UserId" xml:"UserId"`
	Alias        string                                  `json:"Alias" xml:"Alias"`
	DsType       string                                  `json:"DsType" xml:"DsType"`
	DbId         string                                  `json:"DbId" xml:"DbId"`
	PermDetails  PermDetailsInListDatabaseUserPermssions `json:"PermDetails" xml:"PermDetails"`
}

UserPermission is a nested struct in dms_enterprise response

type UserPermissionsInListDatabaseUserPermssions ¶ added in v1.61.13

type UserPermissionsInListDatabaseUserPermssions struct {
	UserPermission []UserPermission `json:"UserPermission" xml:"UserPermission"`
}

UserPermissionsInListDatabaseUserPermssions is a nested struct in dms_enterprise response

type UserPermissionsInListUserPermissions ¶ added in v1.61.13

type UserPermissionsInListUserPermissions struct {
	UserPermission []UserPermission `json:"UserPermission" xml:"UserPermission"`
}

UserPermissionsInListUserPermissions is a nested struct in dms_enterprise response

type WorkFlowTemplate ¶ added in v1.61.13

type WorkFlowTemplate struct {
	Comment       string                               `json:"Comment" xml:"Comment"`
	CreateUserId  int64                                `json:"CreateUserId" xml:"CreateUserId"`
	TemplateName  string                               `json:"TemplateName" xml:"TemplateName"`
	Enabled       string                               `json:"Enabled" xml:"Enabled"`
	IsSystem      int                                  `json:"IsSystem" xml:"IsSystem"`
	TemplateId    int64                                `json:"TemplateId" xml:"TemplateId"`
	WorkflowNodes WorkflowNodesInListWorkFlowTemplates `json:"WorkflowNodes" xml:"WorkflowNodes"`
}

WorkFlowTemplate is a nested struct in dms_enterprise response

type WorkFlowTemplates ¶ added in v1.61.13

type WorkFlowTemplates struct {
	WorkFlowTemplate []WorkFlowTemplate `json:"WorkFlowTemplate" xml:"WorkFlowTemplate"`
}

WorkFlowTemplates is a nested struct in dms_enterprise response

type WorkflowNode ¶ added in v1.61.13

type WorkflowNode struct {
	TemplateId         int64           `json:"TemplateId" xml:"TemplateId"`
	CreateUserId       int64           `json:"CreateUserId" xml:"CreateUserId"`
	CreateUserNickName string          `json:"CreateUserNickName" xml:"CreateUserNickName"`
	Comment            string          `json:"Comment" xml:"Comment"`
	OperateTime        string          `json:"OperateTime" xml:"OperateTime"`
	NodeName           string          `json:"NodeName" xml:"NodeName"`
	NodeId             int64           `json:"NodeId" xml:"NodeId"`
	OperateComment     string          `json:"OperateComment" xml:"OperateComment"`
	OperatorId         int64           `json:"OperatorId" xml:"OperatorId"`
	Position           int             `json:"Position" xml:"Position"`
	NodeType           string          `json:"NodeType" xml:"NodeType"`
	WorkflowInsCode    string          `json:"WorkflowInsCode" xml:"WorkflowInsCode"`
	AuditUserIdList    AuditUserIdList `json:"AuditUserIdList" xml:"AuditUserIdList"`
	AuditUsers         AuditUsers      `json:"AuditUsers" xml:"AuditUsers"`
}

WorkflowNode is a nested struct in dms_enterprise response

type WorkflowNodesInGetApprovalDetail ¶ added in v1.61.13

type WorkflowNodesInGetApprovalDetail struct {
	WorkflowNode []WorkflowNode `json:"WorkflowNode" xml:"WorkflowNode"`
}

WorkflowNodesInGetApprovalDetail is a nested struct in dms_enterprise response

type WorkflowNodesInListWorkFlowNodes ¶ added in v1.61.13

type WorkflowNodesInListWorkFlowNodes struct {
	WorkflowNode []WorkflowNode `json:"WorkflowNode" xml:"WorkflowNode"`
}

WorkflowNodesInListWorkFlowNodes is a nested struct in dms_enterprise response

type WorkflowNodesInListWorkFlowTemplates ¶ added in v1.61.13

type WorkflowNodesInListWorkFlowTemplates struct {
	WorkflowNode []WorkflowNode `json:"WorkflowNode" xml:"WorkflowNode"`
}

WorkflowNodesInListWorkFlowTemplates is a nested struct in dms_enterprise response

Source Files ¶

Jump to

Keyboard shortcuts

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