@alicloud/adb20211201 1.5.2 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1258 -10
- package/dist/client.js +1336 -13
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1387 -10
package/dist/client.d.ts
CHANGED
|
@@ -759,7 +759,10 @@ export declare class CreateDBClusterRequest extends $tea.Model {
|
|
|
759
759
|
enableDefaultResourcePool?: boolean;
|
|
760
760
|
payType?: string;
|
|
761
761
|
period?: string;
|
|
762
|
+
productForm?: string;
|
|
762
763
|
regionId?: string;
|
|
764
|
+
reservedNodeCount?: number;
|
|
765
|
+
reservedNodeSize?: string;
|
|
763
766
|
resourceGroupId?: string;
|
|
764
767
|
restoreToTime?: string;
|
|
765
768
|
restoreType?: string;
|
|
@@ -1755,6 +1758,8 @@ export declare class DescribeApsActionLogsResponse extends $tea.Model {
|
|
|
1755
1758
|
}
|
|
1756
1759
|
export declare class DescribeApsResourceGroupsRequest extends $tea.Model {
|
|
1757
1760
|
DBClusterId?: string;
|
|
1761
|
+
regionId?: string;
|
|
1762
|
+
workloadId?: string;
|
|
1758
1763
|
static names(): {
|
|
1759
1764
|
[key: string]: string;
|
|
1760
1765
|
};
|
|
@@ -2447,8 +2452,10 @@ export declare class DescribeDBClustersRequest extends $tea.Model {
|
|
|
2447
2452
|
DBClusterDescription?: string;
|
|
2448
2453
|
DBClusterIds?: string;
|
|
2449
2454
|
DBClusterStatus?: string;
|
|
2455
|
+
DBClusterVersion?: string;
|
|
2450
2456
|
pageNumber?: number;
|
|
2451
2457
|
pageSize?: number;
|
|
2458
|
+
productVersion?: string;
|
|
2452
2459
|
regionId?: string;
|
|
2453
2460
|
resourceGroupId?: string;
|
|
2454
2461
|
tag?: DescribeDBClustersRequestTag[];
|
|
@@ -5308,6 +5315,8 @@ export declare class ModifyDBClusterRequest extends $tea.Model {
|
|
|
5308
5315
|
ownerAccount?: string;
|
|
5309
5316
|
ownerId?: number;
|
|
5310
5317
|
regionId?: string;
|
|
5318
|
+
reservedNodeCount?: number;
|
|
5319
|
+
reservedNodeSize?: string;
|
|
5311
5320
|
resourceOwnerAccount?: string;
|
|
5312
5321
|
storageResource?: string;
|
|
5313
5322
|
static names(): {
|
|
@@ -6696,8 +6705,11 @@ export declare class DescribeDBClusterAttributeResponseBodyItemsDBCluster extend
|
|
|
6696
6705
|
mode?: string;
|
|
6697
6706
|
payType?: string;
|
|
6698
6707
|
port?: number;
|
|
6708
|
+
productForm?: string;
|
|
6699
6709
|
regionId?: string;
|
|
6700
6710
|
reservedACU?: string;
|
|
6711
|
+
reservedNodeCount?: number;
|
|
6712
|
+
reservedNodeSize?: string;
|
|
6701
6713
|
resourceGroupId?: string;
|
|
6702
6714
|
storageResource?: string;
|
|
6703
6715
|
storageResourceTotal?: string;
|
|
@@ -6905,7 +6917,52 @@ export declare class DescribeDBClustersResponseBodyItemsDBClusterTags extends $t
|
|
|
6905
6917
|
[key: string]: any;
|
|
6906
6918
|
});
|
|
6907
6919
|
}
|
|
6920
|
+
export declare class DescribeDBClustersResponseBodyItemsDBClusterTaskInfoStepListStepList extends $tea.Model {
|
|
6921
|
+
endTime?: string;
|
|
6922
|
+
startTime?: string;
|
|
6923
|
+
stepDesc?: string;
|
|
6924
|
+
stepName?: string;
|
|
6925
|
+
stepProgress?: string;
|
|
6926
|
+
stepStatus?: string;
|
|
6927
|
+
static names(): {
|
|
6928
|
+
[key: string]: string;
|
|
6929
|
+
};
|
|
6930
|
+
static types(): {
|
|
6931
|
+
[key: string]: any;
|
|
6932
|
+
};
|
|
6933
|
+
constructor(map?: {
|
|
6934
|
+
[key: string]: any;
|
|
6935
|
+
});
|
|
6936
|
+
}
|
|
6937
|
+
export declare class DescribeDBClustersResponseBodyItemsDBClusterTaskInfoStepList extends $tea.Model {
|
|
6938
|
+
stepList?: DescribeDBClustersResponseBodyItemsDBClusterTaskInfoStepListStepList[];
|
|
6939
|
+
static names(): {
|
|
6940
|
+
[key: string]: string;
|
|
6941
|
+
};
|
|
6942
|
+
static types(): {
|
|
6943
|
+
[key: string]: any;
|
|
6944
|
+
};
|
|
6945
|
+
constructor(map?: {
|
|
6946
|
+
[key: string]: any;
|
|
6947
|
+
});
|
|
6948
|
+
}
|
|
6949
|
+
export declare class DescribeDBClustersResponseBodyItemsDBClusterTaskInfo extends $tea.Model {
|
|
6950
|
+
name?: string;
|
|
6951
|
+
progress?: string;
|
|
6952
|
+
status?: string;
|
|
6953
|
+
stepList?: DescribeDBClustersResponseBodyItemsDBClusterTaskInfoStepList;
|
|
6954
|
+
static names(): {
|
|
6955
|
+
[key: string]: string;
|
|
6956
|
+
};
|
|
6957
|
+
static types(): {
|
|
6958
|
+
[key: string]: any;
|
|
6959
|
+
};
|
|
6960
|
+
constructor(map?: {
|
|
6961
|
+
[key: string]: any;
|
|
6962
|
+
});
|
|
6963
|
+
}
|
|
6908
6964
|
export declare class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.Model {
|
|
6965
|
+
category?: string;
|
|
6909
6966
|
commodityCode?: string;
|
|
6910
6967
|
computeResource?: string;
|
|
6911
6968
|
connectionString?: string;
|
|
@@ -6915,20 +6972,35 @@ export declare class DescribeDBClustersResponseBodyItemsDBCluster extends $tea.M
|
|
|
6915
6972
|
DBClusterNetworkType?: string;
|
|
6916
6973
|
DBClusterStatus?: string;
|
|
6917
6974
|
DBClusterType?: string;
|
|
6975
|
+
DBNodeClass?: string;
|
|
6976
|
+
DBNodeCount?: number;
|
|
6977
|
+
DBNodeStorage?: number;
|
|
6918
6978
|
DBVersion?: string;
|
|
6979
|
+
diskType?: string;
|
|
6980
|
+
dtsJobId?: string;
|
|
6981
|
+
elasticIOResource?: number;
|
|
6919
6982
|
engine?: string;
|
|
6983
|
+
executorCount?: string;
|
|
6920
6984
|
expireTime?: string;
|
|
6921
6985
|
expired?: string;
|
|
6986
|
+
innerIp?: string;
|
|
6987
|
+
innerPort?: string;
|
|
6922
6988
|
lockMode?: string;
|
|
6923
6989
|
lockReason?: string;
|
|
6924
6990
|
mode?: string;
|
|
6925
6991
|
payType?: string;
|
|
6926
6992
|
port?: string;
|
|
6993
|
+
productForm?: string;
|
|
6994
|
+
rdsInstanceId?: string;
|
|
6927
6995
|
regionId?: string;
|
|
6928
6996
|
reservedACU?: string;
|
|
6997
|
+
reservedNodeCount?: number;
|
|
6998
|
+
reservedNodeSize?: string;
|
|
6929
6999
|
resourceGroupId?: string;
|
|
6930
7000
|
storageResource?: string;
|
|
6931
7001
|
tags?: DescribeDBClustersResponseBodyItemsDBClusterTags;
|
|
7002
|
+
taskInfo?: DescribeDBClustersResponseBodyItemsDBClusterTaskInfo;
|
|
7003
|
+
VPCCloudInstanceId?: string;
|
|
6932
7004
|
VPCId?: string;
|
|
6933
7005
|
vSwitchId?: string;
|
|
6934
7006
|
zoneId?: string;
|
|
@@ -7835,35 +7907,200 @@ export default class Client extends OpenApi {
|
|
|
7835
7907
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
7836
7908
|
[key: string]: string;
|
|
7837
7909
|
}, endpoint: string): string;
|
|
7910
|
+
/**
|
|
7911
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
7912
|
+
*
|
|
7913
|
+
* @param request AllocateClusterPublicConnectionRequest
|
|
7914
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7915
|
+
* @return AllocateClusterPublicConnectionResponse
|
|
7916
|
+
*/
|
|
7838
7917
|
allocateClusterPublicConnectionWithOptions(request: AllocateClusterPublicConnectionRequest, runtime: $Util.RuntimeOptions): Promise<AllocateClusterPublicConnectionResponse>;
|
|
7918
|
+
/**
|
|
7919
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
7920
|
+
*
|
|
7921
|
+
* @param request AllocateClusterPublicConnectionRequest
|
|
7922
|
+
* @return AllocateClusterPublicConnectionResponse
|
|
7923
|
+
*/
|
|
7839
7924
|
allocateClusterPublicConnection(request: AllocateClusterPublicConnectionRequest): Promise<AllocateClusterPublicConnectionResponse>;
|
|
7925
|
+
/**
|
|
7926
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7927
|
+
*
|
|
7928
|
+
* @param request AttachUserENIRequest
|
|
7929
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7930
|
+
* @return AttachUserENIResponse
|
|
7931
|
+
*/
|
|
7840
7932
|
attachUserENIWithOptions(request: AttachUserENIRequest, runtime: $Util.RuntimeOptions): Promise<AttachUserENIResponse>;
|
|
7933
|
+
/**
|
|
7934
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7935
|
+
*
|
|
7936
|
+
* @param request AttachUserENIRequest
|
|
7937
|
+
* @return AttachUserENIResponse
|
|
7938
|
+
*/
|
|
7841
7939
|
attachUserENI(request: AttachUserENIRequest): Promise<AttachUserENIResponse>;
|
|
7940
|
+
/**
|
|
7941
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7942
|
+
*
|
|
7943
|
+
* @param request BindAccountRequest
|
|
7944
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7945
|
+
* @return BindAccountResponse
|
|
7946
|
+
*/
|
|
7842
7947
|
bindAccountWithOptions(request: BindAccountRequest, runtime: $Util.RuntimeOptions): Promise<BindAccountResponse>;
|
|
7948
|
+
/**
|
|
7949
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7950
|
+
*
|
|
7951
|
+
* @param request BindAccountRequest
|
|
7952
|
+
* @return BindAccountResponse
|
|
7953
|
+
*/
|
|
7843
7954
|
bindAccount(request: BindAccountRequest): Promise<BindAccountResponse>;
|
|
7955
|
+
/**
|
|
7956
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7957
|
+
*
|
|
7958
|
+
* @param request BindDBResourceGroupWithUserRequest
|
|
7959
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7960
|
+
* @return BindDBResourceGroupWithUserResponse
|
|
7961
|
+
*/
|
|
7844
7962
|
bindDBResourceGroupWithUserWithOptions(request: BindDBResourceGroupWithUserRequest, runtime: $Util.RuntimeOptions): Promise<BindDBResourceGroupWithUserResponse>;
|
|
7963
|
+
/**
|
|
7964
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7965
|
+
*
|
|
7966
|
+
* @param request BindDBResourceGroupWithUserRequest
|
|
7967
|
+
* @return BindDBResourceGroupWithUserResponse
|
|
7968
|
+
*/
|
|
7845
7969
|
bindDBResourceGroupWithUser(request: BindDBResourceGroupWithUserRequest): Promise<BindDBResourceGroupWithUserResponse>;
|
|
7970
|
+
/**
|
|
7971
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7972
|
+
*
|
|
7973
|
+
* @param request CheckBindRamUserRequest
|
|
7974
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7975
|
+
* @return CheckBindRamUserResponse
|
|
7976
|
+
*/
|
|
7846
7977
|
checkBindRamUserWithOptions(request: CheckBindRamUserRequest, runtime: $Util.RuntimeOptions): Promise<CheckBindRamUserResponse>;
|
|
7978
|
+
/**
|
|
7979
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7980
|
+
*
|
|
7981
|
+
* @param request CheckBindRamUserRequest
|
|
7982
|
+
* @return CheckBindRamUserResponse
|
|
7983
|
+
*/
|
|
7847
7984
|
checkBindRamUser(request: CheckBindRamUserRequest): Promise<CheckBindRamUserResponse>;
|
|
7985
|
+
/**
|
|
7986
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7987
|
+
*
|
|
7988
|
+
* @param request CheckSampleDataSetRequest
|
|
7989
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7990
|
+
* @return CheckSampleDataSetResponse
|
|
7991
|
+
*/
|
|
7848
7992
|
checkSampleDataSetWithOptions(request: CheckSampleDataSetRequest, runtime: $Util.RuntimeOptions): Promise<CheckSampleDataSetResponse>;
|
|
7993
|
+
/**
|
|
7994
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7995
|
+
*
|
|
7996
|
+
* @param request CheckSampleDataSetRequest
|
|
7997
|
+
* @return CheckSampleDataSetResponse
|
|
7998
|
+
*/
|
|
7849
7999
|
checkSampleDataSet(request: CheckSampleDataSetRequest): Promise<CheckSampleDataSetResponse>;
|
|
8000
|
+
/**
|
|
8001
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8002
|
+
*
|
|
8003
|
+
* @param request CreateAccountRequest
|
|
8004
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8005
|
+
* @return CreateAccountResponse
|
|
8006
|
+
*/
|
|
7850
8007
|
createAccountWithOptions(request: CreateAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccountResponse>;
|
|
8008
|
+
/**
|
|
8009
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8010
|
+
*
|
|
8011
|
+
* @param request CreateAccountRequest
|
|
8012
|
+
* @return CreateAccountResponse
|
|
8013
|
+
*/
|
|
7851
8014
|
createAccount(request: CreateAccountRequest): Promise<CreateAccountResponse>;
|
|
8015
|
+
/**
|
|
8016
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8017
|
+
*
|
|
8018
|
+
* @param request CreateDBClusterRequest
|
|
8019
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8020
|
+
* @return CreateDBClusterResponse
|
|
8021
|
+
*/
|
|
7852
8022
|
createDBClusterWithOptions(request: CreateDBClusterRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBClusterResponse>;
|
|
8023
|
+
/**
|
|
8024
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8025
|
+
*
|
|
8026
|
+
* @param request CreateDBClusterRequest
|
|
8027
|
+
* @return CreateDBClusterResponse
|
|
8028
|
+
*/
|
|
7853
8029
|
createDBCluster(request: CreateDBClusterRequest): Promise<CreateDBClusterResponse>;
|
|
8030
|
+
/**
|
|
8031
|
+
* For information about the endpoints of the current service, see [Endpoints](~~612373~~).
|
|
8032
|
+
*
|
|
8033
|
+
* @param tmpReq CreateDBResourceGroupRequest
|
|
8034
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8035
|
+
* @return CreateDBResourceGroupResponse
|
|
8036
|
+
*/
|
|
7854
8037
|
createDBResourceGroupWithOptions(tmpReq: CreateDBResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBResourceGroupResponse>;
|
|
8038
|
+
/**
|
|
8039
|
+
* For information about the endpoints of the current service, see [Endpoints](~~612373~~).
|
|
8040
|
+
*
|
|
8041
|
+
* @param request CreateDBResourceGroupRequest
|
|
8042
|
+
* @return CreateDBResourceGroupResponse
|
|
8043
|
+
*/
|
|
7855
8044
|
createDBResourceGroup(request: CreateDBResourceGroupRequest): Promise<CreateDBResourceGroupResponse>;
|
|
8045
|
+
/**
|
|
8046
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8047
|
+
*
|
|
8048
|
+
* @param request CreateElasticPlanRequest
|
|
8049
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8050
|
+
* @return CreateElasticPlanResponse
|
|
8051
|
+
*/
|
|
7856
8052
|
createElasticPlanWithOptions(request: CreateElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<CreateElasticPlanResponse>;
|
|
8053
|
+
/**
|
|
8054
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8055
|
+
*
|
|
8056
|
+
* @param request CreateElasticPlanRequest
|
|
8057
|
+
* @return CreateElasticPlanResponse
|
|
8058
|
+
*/
|
|
7857
8059
|
createElasticPlan(request: CreateElasticPlanRequest): Promise<CreateElasticPlanResponse>;
|
|
8060
|
+
/**
|
|
8061
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8062
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8063
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8064
|
+
*
|
|
8065
|
+
* @param request CreateOssSubDirectoryRequest
|
|
8066
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8067
|
+
* @return CreateOssSubDirectoryResponse
|
|
8068
|
+
*/
|
|
7858
8069
|
createOssSubDirectoryWithOptions(request: CreateOssSubDirectoryRequest, runtime: $Util.RuntimeOptions): Promise<CreateOssSubDirectoryResponse>;
|
|
8070
|
+
/**
|
|
8071
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8072
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8073
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8074
|
+
*
|
|
8075
|
+
* @param request CreateOssSubDirectoryRequest
|
|
8076
|
+
* @return CreateOssSubDirectoryResponse
|
|
8077
|
+
*/
|
|
7859
8078
|
createOssSubDirectory(request: CreateOssSubDirectoryRequest): Promise<CreateOssSubDirectoryResponse>;
|
|
8079
|
+
/**
|
|
8080
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8081
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8082
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8083
|
+
*
|
|
8084
|
+
* @param request CreateSparkTemplateRequest
|
|
8085
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8086
|
+
* @return CreateSparkTemplateResponse
|
|
8087
|
+
*/
|
|
7860
8088
|
createSparkTemplateWithOptions(request: CreateSparkTemplateRequest, runtime: $Util.RuntimeOptions): Promise<CreateSparkTemplateResponse>;
|
|
8089
|
+
/**
|
|
8090
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8091
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8092
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8093
|
+
*
|
|
8094
|
+
* @param request CreateSparkTemplateRequest
|
|
8095
|
+
* @return CreateSparkTemplateResponse
|
|
8096
|
+
*/
|
|
7861
8097
|
createSparkTemplate(request: CreateSparkTemplateRequest): Promise<CreateSparkTemplateResponse>;
|
|
7862
8098
|
deleteAccountWithOptions(request: DeleteAccountRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccountResponse>;
|
|
7863
8099
|
deleteAccount(request: DeleteAccountRequest): Promise<DeleteAccountResponse>;
|
|
7864
8100
|
/**
|
|
7865
|
-
* ###
|
|
7866
|
-
* You can call this operation to delete only subscription clusters.
|
|
8101
|
+
* ### [](#)
|
|
8102
|
+
* * You can call this operation to delete only subscription clusters.
|
|
8103
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7867
8104
|
*
|
|
7868
8105
|
* @param request DeleteDBClusterRequest
|
|
7869
8106
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -7871,30 +8108,128 @@ export default class Client extends OpenApi {
|
|
|
7871
8108
|
*/
|
|
7872
8109
|
deleteDBClusterWithOptions(request: DeleteDBClusterRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDBClusterResponse>;
|
|
7873
8110
|
/**
|
|
7874
|
-
* ###
|
|
7875
|
-
* You can call this operation to delete only subscription clusters.
|
|
8111
|
+
* ### [](#)
|
|
8112
|
+
* * You can call this operation to delete only subscription clusters.
|
|
8113
|
+
* * For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
7876
8114
|
*
|
|
7877
8115
|
* @param request DeleteDBClusterRequest
|
|
7878
8116
|
* @return DeleteDBClusterResponse
|
|
7879
8117
|
*/
|
|
7880
8118
|
deleteDBCluster(request: DeleteDBClusterRequest): Promise<DeleteDBClusterResponse>;
|
|
8119
|
+
/**
|
|
8120
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8121
|
+
*
|
|
8122
|
+
* @param request DeleteDBResourceGroupRequest
|
|
8123
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8124
|
+
* @return DeleteDBResourceGroupResponse
|
|
8125
|
+
*/
|
|
7881
8126
|
deleteDBResourceGroupWithOptions(request: DeleteDBResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDBResourceGroupResponse>;
|
|
8127
|
+
/**
|
|
8128
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8129
|
+
*
|
|
8130
|
+
* @param request DeleteDBResourceGroupRequest
|
|
8131
|
+
* @return DeleteDBResourceGroupResponse
|
|
8132
|
+
*/
|
|
7882
8133
|
deleteDBResourceGroup(request: DeleteDBResourceGroupRequest): Promise<DeleteDBResourceGroupResponse>;
|
|
8134
|
+
/**
|
|
8135
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8136
|
+
*
|
|
8137
|
+
* @param request DeleteElasticPlanRequest
|
|
8138
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8139
|
+
* @return DeleteElasticPlanResponse
|
|
8140
|
+
*/
|
|
7883
8141
|
deleteElasticPlanWithOptions(request: DeleteElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<DeleteElasticPlanResponse>;
|
|
8142
|
+
/**
|
|
8143
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8144
|
+
*
|
|
8145
|
+
* @param request DeleteElasticPlanRequest
|
|
8146
|
+
* @return DeleteElasticPlanResponse
|
|
8147
|
+
*/
|
|
7884
8148
|
deleteElasticPlan(request: DeleteElasticPlanRequest): Promise<DeleteElasticPlanResponse>;
|
|
8149
|
+
/**
|
|
8150
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8151
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8152
|
+
*
|
|
8153
|
+
* @param request DeleteProcessInstanceRequest
|
|
8154
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8155
|
+
* @return DeleteProcessInstanceResponse
|
|
8156
|
+
*/
|
|
7885
8157
|
deleteProcessInstanceWithOptions(request: DeleteProcessInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProcessInstanceResponse>;
|
|
8158
|
+
/**
|
|
8159
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8160
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8161
|
+
*
|
|
8162
|
+
* @param request DeleteProcessInstanceRequest
|
|
8163
|
+
* @return DeleteProcessInstanceResponse
|
|
8164
|
+
*/
|
|
7886
8165
|
deleteProcessInstance(request: DeleteProcessInstanceRequest): Promise<DeleteProcessInstanceResponse>;
|
|
8166
|
+
/**
|
|
8167
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8168
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8169
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
8170
|
+
*
|
|
8171
|
+
* @param request DeleteSparkTemplateRequest
|
|
8172
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8173
|
+
* @return DeleteSparkTemplateResponse
|
|
8174
|
+
*/
|
|
7887
8175
|
deleteSparkTemplateWithOptions(request: DeleteSparkTemplateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSparkTemplateResponse>;
|
|
8176
|
+
/**
|
|
8177
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8178
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8179
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
8180
|
+
*
|
|
8181
|
+
* @param request DeleteSparkTemplateRequest
|
|
8182
|
+
* @return DeleteSparkTemplateResponse
|
|
8183
|
+
*/
|
|
7888
8184
|
deleteSparkTemplate(request: DeleteSparkTemplateRequest): Promise<DeleteSparkTemplateResponse>;
|
|
7889
8185
|
deleteSparkTemplateFileWithOptions(request: DeleteSparkTemplateFileRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSparkTemplateFileResponse>;
|
|
7890
8186
|
deleteSparkTemplateFile(request: DeleteSparkTemplateFileRequest): Promise<DeleteSparkTemplateFileResponse>;
|
|
8187
|
+
/**
|
|
8188
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8189
|
+
*
|
|
8190
|
+
* @param request DescribeAccountAllPrivilegesRequest
|
|
8191
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8192
|
+
* @return DescribeAccountAllPrivilegesResponse
|
|
8193
|
+
*/
|
|
7891
8194
|
describeAccountAllPrivilegesWithOptions(request: DescribeAccountAllPrivilegesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountAllPrivilegesResponse>;
|
|
8195
|
+
/**
|
|
8196
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8197
|
+
*
|
|
8198
|
+
* @param request DescribeAccountAllPrivilegesRequest
|
|
8199
|
+
* @return DescribeAccountAllPrivilegesResponse
|
|
8200
|
+
*/
|
|
7892
8201
|
describeAccountAllPrivileges(request: DescribeAccountAllPrivilegesRequest): Promise<DescribeAccountAllPrivilegesResponse>;
|
|
8202
|
+
/**
|
|
8203
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8204
|
+
*
|
|
8205
|
+
* @param request DescribeAccountPrivilegeObjectsRequest
|
|
8206
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8207
|
+
* @return DescribeAccountPrivilegeObjectsResponse
|
|
8208
|
+
*/
|
|
7893
8209
|
describeAccountPrivilegeObjectsWithOptions(request: DescribeAccountPrivilegeObjectsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountPrivilegeObjectsResponse>;
|
|
8210
|
+
/**
|
|
8211
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8212
|
+
*
|
|
8213
|
+
* @param request DescribeAccountPrivilegeObjectsRequest
|
|
8214
|
+
* @return DescribeAccountPrivilegeObjectsResponse
|
|
8215
|
+
*/
|
|
7894
8216
|
describeAccountPrivilegeObjects(request: DescribeAccountPrivilegeObjectsRequest): Promise<DescribeAccountPrivilegeObjectsResponse>;
|
|
7895
8217
|
describeAccountPrivilegesWithOptions(request: DescribeAccountPrivilegesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountPrivilegesResponse>;
|
|
7896
8218
|
describeAccountPrivileges(request: DescribeAccountPrivilegesRequest): Promise<DescribeAccountPrivilegesResponse>;
|
|
8219
|
+
/**
|
|
8220
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8221
|
+
*
|
|
8222
|
+
* @param request DescribeAccountsRequest
|
|
8223
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8224
|
+
* @return DescribeAccountsResponse
|
|
8225
|
+
*/
|
|
7897
8226
|
describeAccountsWithOptions(request: DescribeAccountsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountsResponse>;
|
|
8227
|
+
/**
|
|
8228
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8229
|
+
*
|
|
8230
|
+
* @param request DescribeAccountsRequest
|
|
8231
|
+
* @return DescribeAccountsResponse
|
|
8232
|
+
*/
|
|
7898
8233
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
7899
8234
|
describeAdbMySqlColumnsWithOptions(request: DescribeAdbMySqlColumnsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAdbMySqlColumnsResponse>;
|
|
7900
8235
|
describeAdbMySqlColumns(request: DescribeAdbMySqlColumnsRequest): Promise<DescribeAdbMySqlColumnsResponse>;
|
|
@@ -7906,10 +8241,28 @@ export default class Client extends OpenApi {
|
|
|
7906
8241
|
describeAllDataSource(request: DescribeAllDataSourceRequest): Promise<DescribeAllDataSourceResponse>;
|
|
7907
8242
|
describeApsActionLogsWithOptions(request: DescribeApsActionLogsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApsActionLogsResponse>;
|
|
7908
8243
|
describeApsActionLogs(request: DescribeApsActionLogsRequest): Promise<DescribeApsActionLogsResponse>;
|
|
8244
|
+
/**
|
|
8245
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8246
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8247
|
+
*
|
|
8248
|
+
* @param request DescribeApsResourceGroupsRequest
|
|
8249
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8250
|
+
* @return DescribeApsResourceGroupsResponse
|
|
8251
|
+
*/
|
|
7909
8252
|
describeApsResourceGroupsWithOptions(request: DescribeApsResourceGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApsResourceGroupsResponse>;
|
|
8253
|
+
/**
|
|
8254
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8255
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8256
|
+
*
|
|
8257
|
+
* @param request DescribeApsResourceGroupsRequest
|
|
8258
|
+
* @return DescribeApsResourceGroupsResponse
|
|
8259
|
+
*/
|
|
7910
8260
|
describeApsResourceGroups(request: DescribeApsResourceGroupsRequest): Promise<DescribeApsResourceGroupsResponse>;
|
|
7911
8261
|
/**
|
|
7912
|
-
* SQL audit logs can be queried only when SQL audit is enabled. Only SQL audit logs within the last 30 days can be queried. If SQL audit was disabled and re-enabled, only SQL audit logs from the time when SQL audit was re-enabled can be queried. The following operations are not recorded in SQL audit logs: **INSERT INTO VALUES**, **REPLACE INTO VALUES**, and **UPSERT INTO VALUES**.
|
|
8262
|
+
* * SQL audit logs can be queried only when SQL audit is enabled. Only SQL audit logs within the last 30 days can be queried. If SQL audit was disabled and re-enabled, only SQL audit logs from the time when SQL audit was re-enabled can be queried. The following operations are not recorded in SQL audit logs: **INSERT INTO VALUES**, **REPLACE INTO VALUES**, and **UPSERT INTO VALUES**.
|
|
8263
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8264
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8265
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
7913
8266
|
*
|
|
7914
8267
|
* @param request DescribeAuditLogRecordsRequest
|
|
7915
8268
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -7917,19 +8270,74 @@ export default class Client extends OpenApi {
|
|
|
7917
8270
|
*/
|
|
7918
8271
|
describeAuditLogRecordsWithOptions(request: DescribeAuditLogRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuditLogRecordsResponse>;
|
|
7919
8272
|
/**
|
|
7920
|
-
* SQL audit logs can be queried only when SQL audit is enabled. Only SQL audit logs within the last 30 days can be queried. If SQL audit was disabled and re-enabled, only SQL audit logs from the time when SQL audit was re-enabled can be queried. The following operations are not recorded in SQL audit logs: **INSERT INTO VALUES**, **REPLACE INTO VALUES**, and **UPSERT INTO VALUES**.
|
|
8273
|
+
* * SQL audit logs can be queried only when SQL audit is enabled. Only SQL audit logs within the last 30 days can be queried. If SQL audit was disabled and re-enabled, only SQL audit logs from the time when SQL audit was re-enabled can be queried. The following operations are not recorded in SQL audit logs: **INSERT INTO VALUES**, **REPLACE INTO VALUES**, and **UPSERT INTO VALUES**.
|
|
8274
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8275
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8276
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
7921
8277
|
*
|
|
7922
8278
|
* @param request DescribeAuditLogRecordsRequest
|
|
7923
8279
|
* @return DescribeAuditLogRecordsResponse
|
|
7924
8280
|
*/
|
|
7925
8281
|
describeAuditLogRecords(request: DescribeAuditLogRecordsRequest): Promise<DescribeAuditLogRecordsResponse>;
|
|
8282
|
+
/**
|
|
8283
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8284
|
+
*
|
|
8285
|
+
* @param request DescribeBackupPolicyRequest
|
|
8286
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8287
|
+
* @return DescribeBackupPolicyResponse
|
|
8288
|
+
*/
|
|
7926
8289
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
8290
|
+
/**
|
|
8291
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8292
|
+
*
|
|
8293
|
+
* @param request DescribeBackupPolicyRequest
|
|
8294
|
+
* @return DescribeBackupPolicyResponse
|
|
8295
|
+
*/
|
|
7927
8296
|
describeBackupPolicy(request: DescribeBackupPolicyRequest): Promise<DescribeBackupPolicyResponse>;
|
|
8297
|
+
/**
|
|
8298
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8299
|
+
*
|
|
8300
|
+
* @param request DescribeBackupsRequest
|
|
8301
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8302
|
+
* @return DescribeBackupsResponse
|
|
8303
|
+
*/
|
|
7928
8304
|
describeBackupsWithOptions(request: DescribeBackupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupsResponse>;
|
|
8305
|
+
/**
|
|
8306
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8307
|
+
*
|
|
8308
|
+
* @param request DescribeBackupsRequest
|
|
8309
|
+
* @return DescribeBackupsResponse
|
|
8310
|
+
*/
|
|
7929
8311
|
describeBackups(request: DescribeBackupsRequest): Promise<DescribeBackupsResponse>;
|
|
8312
|
+
/**
|
|
8313
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8314
|
+
*
|
|
8315
|
+
* @param request DescribeClusterAccessWhiteListRequest
|
|
8316
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8317
|
+
* @return DescribeClusterAccessWhiteListResponse
|
|
8318
|
+
*/
|
|
7930
8319
|
describeClusterAccessWhiteListWithOptions(request: DescribeClusterAccessWhiteListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClusterAccessWhiteListResponse>;
|
|
8320
|
+
/**
|
|
8321
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8322
|
+
*
|
|
8323
|
+
* @param request DescribeClusterAccessWhiteListRequest
|
|
8324
|
+
* @return DescribeClusterAccessWhiteListResponse
|
|
8325
|
+
*/
|
|
7931
8326
|
describeClusterAccessWhiteList(request: DescribeClusterAccessWhiteListRequest): Promise<DescribeClusterAccessWhiteListResponse>;
|
|
8327
|
+
/**
|
|
8328
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8329
|
+
*
|
|
8330
|
+
* @param request DescribeClusterNetInfoRequest
|
|
8331
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8332
|
+
* @return DescribeClusterNetInfoResponse
|
|
8333
|
+
*/
|
|
7932
8334
|
describeClusterNetInfoWithOptions(request: DescribeClusterNetInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClusterNetInfoResponse>;
|
|
8335
|
+
/**
|
|
8336
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8337
|
+
*
|
|
8338
|
+
* @param request DescribeClusterNetInfoRequest
|
|
8339
|
+
* @return DescribeClusterNetInfoResponse
|
|
8340
|
+
*/
|
|
7933
8341
|
describeClusterNetInfo(request: DescribeClusterNetInfoRequest): Promise<DescribeClusterNetInfoResponse>;
|
|
7934
8342
|
describeClusterResourceDetailWithOptions(request: DescribeClusterResourceDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClusterResourceDetailResponse>;
|
|
7935
8343
|
describeClusterResourceDetail(request: DescribeClusterResourceDetailRequest): Promise<DescribeClusterResourceDetailResponse>;
|
|
@@ -7939,31 +8347,199 @@ export default class Client extends OpenApi {
|
|
|
7939
8347
|
describeColumns(request: DescribeColumnsRequest): Promise<DescribeColumnsResponse>;
|
|
7940
8348
|
describeComputeResourceUsageWithOptions(request: DescribeComputeResourceUsageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeComputeResourceUsageResponse>;
|
|
7941
8349
|
describeComputeResourceUsage(request: DescribeComputeResourceUsageRequest): Promise<DescribeComputeResourceUsageResponse>;
|
|
8350
|
+
/**
|
|
8351
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8352
|
+
*
|
|
8353
|
+
* @param request DescribeDBClusterAttributeRequest
|
|
8354
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8355
|
+
* @return DescribeDBClusterAttributeResponse
|
|
8356
|
+
*/
|
|
7942
8357
|
describeDBClusterAttributeWithOptions(request: DescribeDBClusterAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterAttributeResponse>;
|
|
8358
|
+
/**
|
|
8359
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8360
|
+
*
|
|
8361
|
+
* @param request DescribeDBClusterAttributeRequest
|
|
8362
|
+
* @return DescribeDBClusterAttributeResponse
|
|
8363
|
+
*/
|
|
7943
8364
|
describeDBClusterAttribute(request: DescribeDBClusterAttributeRequest): Promise<DescribeDBClusterAttributeResponse>;
|
|
8365
|
+
/**
|
|
8366
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
8367
|
+
*
|
|
8368
|
+
* @param request DescribeDBClusterHealthStatusRequest
|
|
8369
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8370
|
+
* @return DescribeDBClusterHealthStatusResponse
|
|
8371
|
+
*/
|
|
7944
8372
|
describeDBClusterHealthStatusWithOptions(request: DescribeDBClusterHealthStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterHealthStatusResponse>;
|
|
8373
|
+
/**
|
|
8374
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
8375
|
+
*
|
|
8376
|
+
* @param request DescribeDBClusterHealthStatusRequest
|
|
8377
|
+
* @return DescribeDBClusterHealthStatusResponse
|
|
8378
|
+
*/
|
|
7945
8379
|
describeDBClusterHealthStatus(request: DescribeDBClusterHealthStatusRequest): Promise<DescribeDBClusterHealthStatusResponse>;
|
|
8380
|
+
/**
|
|
8381
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8382
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8383
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8384
|
+
*
|
|
8385
|
+
* @param request DescribeDBClusterPerformanceRequest
|
|
8386
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8387
|
+
* @return DescribeDBClusterPerformanceResponse
|
|
8388
|
+
*/
|
|
7946
8389
|
describeDBClusterPerformanceWithOptions(request: DescribeDBClusterPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterPerformanceResponse>;
|
|
8390
|
+
/**
|
|
8391
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8392
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8393
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8394
|
+
*
|
|
8395
|
+
* @param request DescribeDBClusterPerformanceRequest
|
|
8396
|
+
* @return DescribeDBClusterPerformanceResponse
|
|
8397
|
+
*/
|
|
7947
8398
|
describeDBClusterPerformance(request: DescribeDBClusterPerformanceRequest): Promise<DescribeDBClusterPerformanceResponse>;
|
|
8399
|
+
/**
|
|
8400
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8401
|
+
*
|
|
8402
|
+
* @param request DescribeDBClusterSpaceSummaryRequest
|
|
8403
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8404
|
+
* @return DescribeDBClusterSpaceSummaryResponse
|
|
8405
|
+
*/
|
|
7948
8406
|
describeDBClusterSpaceSummaryWithOptions(request: DescribeDBClusterSpaceSummaryRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterSpaceSummaryResponse>;
|
|
8407
|
+
/**
|
|
8408
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8409
|
+
*
|
|
8410
|
+
* @param request DescribeDBClusterSpaceSummaryRequest
|
|
8411
|
+
* @return DescribeDBClusterSpaceSummaryResponse
|
|
8412
|
+
*/
|
|
7949
8413
|
describeDBClusterSpaceSummary(request: DescribeDBClusterSpaceSummaryRequest): Promise<DescribeDBClusterSpaceSummaryResponse>;
|
|
8414
|
+
/**
|
|
8415
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8416
|
+
*
|
|
8417
|
+
* @param request DescribeDBClusterStatusRequest
|
|
8418
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8419
|
+
* @return DescribeDBClusterStatusResponse
|
|
8420
|
+
*/
|
|
7950
8421
|
describeDBClusterStatusWithOptions(request: DescribeDBClusterStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterStatusResponse>;
|
|
8422
|
+
/**
|
|
8423
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8424
|
+
*
|
|
8425
|
+
* @param request DescribeDBClusterStatusRequest
|
|
8426
|
+
* @return DescribeDBClusterStatusResponse
|
|
8427
|
+
*/
|
|
7951
8428
|
describeDBClusterStatus(request: DescribeDBClusterStatusRequest): Promise<DescribeDBClusterStatusResponse>;
|
|
8429
|
+
/**
|
|
8430
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8431
|
+
*
|
|
8432
|
+
* @param request DescribeDBClustersRequest
|
|
8433
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8434
|
+
* @return DescribeDBClustersResponse
|
|
8435
|
+
*/
|
|
7952
8436
|
describeDBClustersWithOptions(request: DescribeDBClustersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClustersResponse>;
|
|
8437
|
+
/**
|
|
8438
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8439
|
+
*
|
|
8440
|
+
* @param request DescribeDBClustersRequest
|
|
8441
|
+
* @return DescribeDBClustersResponse
|
|
8442
|
+
*/
|
|
7953
8443
|
describeDBClusters(request: DescribeDBClustersRequest): Promise<DescribeDBClustersResponse>;
|
|
8444
|
+
/**
|
|
8445
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8446
|
+
*
|
|
8447
|
+
* @param request DescribeDBResourceGroupRequest
|
|
8448
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8449
|
+
* @return DescribeDBResourceGroupResponse
|
|
8450
|
+
*/
|
|
7954
8451
|
describeDBResourceGroupWithOptions(request: DescribeDBResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBResourceGroupResponse>;
|
|
8452
|
+
/**
|
|
8453
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8454
|
+
*
|
|
8455
|
+
* @param request DescribeDBResourceGroupRequest
|
|
8456
|
+
* @return DescribeDBResourceGroupResponse
|
|
8457
|
+
*/
|
|
7955
8458
|
describeDBResourceGroup(request: DescribeDBResourceGroupRequest): Promise<DescribeDBResourceGroupResponse>;
|
|
8459
|
+
/**
|
|
8460
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8461
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8462
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8463
|
+
*
|
|
8464
|
+
* @param request DescribeDiagnosisDimensionsRequest
|
|
8465
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8466
|
+
* @return DescribeDiagnosisDimensionsResponse
|
|
8467
|
+
*/
|
|
7956
8468
|
describeDiagnosisDimensionsWithOptions(request: DescribeDiagnosisDimensionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisDimensionsResponse>;
|
|
8469
|
+
/**
|
|
8470
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8471
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8472
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8473
|
+
*
|
|
8474
|
+
* @param request DescribeDiagnosisDimensionsRequest
|
|
8475
|
+
* @return DescribeDiagnosisDimensionsResponse
|
|
8476
|
+
*/
|
|
7957
8477
|
describeDiagnosisDimensions(request: DescribeDiagnosisDimensionsRequest): Promise<DescribeDiagnosisDimensionsResponse>;
|
|
8478
|
+
/**
|
|
8479
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
8480
|
+
*
|
|
8481
|
+
* @param request DescribeDiagnosisRecordsRequest
|
|
8482
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8483
|
+
* @return DescribeDiagnosisRecordsResponse
|
|
8484
|
+
*/
|
|
7958
8485
|
describeDiagnosisRecordsWithOptions(request: DescribeDiagnosisRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisRecordsResponse>;
|
|
8486
|
+
/**
|
|
8487
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
8488
|
+
*
|
|
8489
|
+
* @param request DescribeDiagnosisRecordsRequest
|
|
8490
|
+
* @return DescribeDiagnosisRecordsResponse
|
|
8491
|
+
*/
|
|
7959
8492
|
describeDiagnosisRecords(request: DescribeDiagnosisRecordsRequest): Promise<DescribeDiagnosisRecordsResponse>;
|
|
8493
|
+
/**
|
|
8494
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8495
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8496
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8497
|
+
*
|
|
8498
|
+
* @param request DescribeDiagnosisSQLInfoRequest
|
|
8499
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8500
|
+
* @return DescribeDiagnosisSQLInfoResponse
|
|
8501
|
+
*/
|
|
7960
8502
|
describeDiagnosisSQLInfoWithOptions(request: DescribeDiagnosisSQLInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisSQLInfoResponse>;
|
|
8503
|
+
/**
|
|
8504
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8505
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8506
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8507
|
+
*
|
|
8508
|
+
* @param request DescribeDiagnosisSQLInfoRequest
|
|
8509
|
+
* @return DescribeDiagnosisSQLInfoResponse
|
|
8510
|
+
*/
|
|
7961
8511
|
describeDiagnosisSQLInfo(request: DescribeDiagnosisSQLInfoRequest): Promise<DescribeDiagnosisSQLInfoResponse>;
|
|
7962
8512
|
describeDownloadRecordsWithOptions(request: DescribeDownloadRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDownloadRecordsResponse>;
|
|
7963
8513
|
describeDownloadRecords(request: DescribeDownloadRecordsRequest): Promise<DescribeDownloadRecordsResponse>;
|
|
8514
|
+
/**
|
|
8515
|
+
* For information about the endpoints of AnalyticDB for MySQL, see DescribeElasticPlanAttribute.
|
|
8516
|
+
*
|
|
8517
|
+
* @param request DescribeElasticPlanAttributeRequest
|
|
8518
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8519
|
+
* @return DescribeElasticPlanAttributeResponse
|
|
8520
|
+
*/
|
|
7964
8521
|
describeElasticPlanAttributeWithOptions(request: DescribeElasticPlanAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeElasticPlanAttributeResponse>;
|
|
8522
|
+
/**
|
|
8523
|
+
* For information about the endpoints of AnalyticDB for MySQL, see DescribeElasticPlanAttribute.
|
|
8524
|
+
*
|
|
8525
|
+
* @param request DescribeElasticPlanAttributeRequest
|
|
8526
|
+
* @return DescribeElasticPlanAttributeResponse
|
|
8527
|
+
*/
|
|
7965
8528
|
describeElasticPlanAttribute(request: DescribeElasticPlanAttributeRequest): Promise<DescribeElasticPlanAttributeResponse>;
|
|
8529
|
+
/**
|
|
8530
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8531
|
+
*
|
|
8532
|
+
* @param request DescribeElasticPlanJobsRequest
|
|
8533
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8534
|
+
* @return DescribeElasticPlanJobsResponse
|
|
8535
|
+
*/
|
|
7966
8536
|
describeElasticPlanJobsWithOptions(request: DescribeElasticPlanJobsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeElasticPlanJobsResponse>;
|
|
8537
|
+
/**
|
|
8538
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8539
|
+
*
|
|
8540
|
+
* @param request DescribeElasticPlanJobsRequest
|
|
8541
|
+
* @return DescribeElasticPlanJobsResponse
|
|
8542
|
+
*/
|
|
7967
8543
|
describeElasticPlanJobs(request: DescribeElasticPlanJobsRequest): Promise<DescribeElasticPlanJobsResponse>;
|
|
7968
8544
|
describeElasticPlanSpecificationsWithOptions(request: DescribeElasticPlanSpecificationsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeElasticPlanSpecificationsResponse>;
|
|
7969
8545
|
describeElasticPlanSpecifications(request: DescribeElasticPlanSpecificationsRequest): Promise<DescribeElasticPlanSpecificationsResponse>;
|
|
@@ -7973,9 +8549,35 @@ export default class Client extends OpenApi {
|
|
|
7973
8549
|
describeEnabledPrivileges(request: DescribeEnabledPrivilegesRequest): Promise<DescribeEnabledPrivilegesResponse>;
|
|
7974
8550
|
describeJobResourceUsageWithOptions(request: DescribeJobResourceUsageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeJobResourceUsageResponse>;
|
|
7975
8551
|
describeJobResourceUsage(request: DescribeJobResourceUsageRequest): Promise<DescribeJobResourceUsageResponse>;
|
|
8552
|
+
/**
|
|
8553
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8554
|
+
*
|
|
8555
|
+
* @param request DescribePatternPerformanceRequest
|
|
8556
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8557
|
+
* @return DescribePatternPerformanceResponse
|
|
8558
|
+
*/
|
|
7976
8559
|
describePatternPerformanceWithOptions(request: DescribePatternPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribePatternPerformanceResponse>;
|
|
8560
|
+
/**
|
|
8561
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8562
|
+
*
|
|
8563
|
+
* @param request DescribePatternPerformanceRequest
|
|
8564
|
+
* @return DescribePatternPerformanceResponse
|
|
8565
|
+
*/
|
|
7977
8566
|
describePatternPerformance(request: DescribePatternPerformanceRequest): Promise<DescribePatternPerformanceResponse>;
|
|
8567
|
+
/**
|
|
8568
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8569
|
+
*
|
|
8570
|
+
* @param request DescribeRegionsRequest
|
|
8571
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8572
|
+
* @return DescribeRegionsResponse
|
|
8573
|
+
*/
|
|
7978
8574
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
8575
|
+
/**
|
|
8576
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8577
|
+
*
|
|
8578
|
+
* @param request DescribeRegionsRequest
|
|
8579
|
+
* @return DescribeRegionsResponse
|
|
8580
|
+
*/
|
|
7979
8581
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
7980
8582
|
describeSQLPatternsWithOptions(request: DescribeSQLPatternsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSQLPatternsResponse>;
|
|
7981
8583
|
describeSQLPatterns(request: DescribeSQLPatternsRequest): Promise<DescribeSQLPatternsResponse>;
|
|
@@ -7983,57 +8585,341 @@ export default class Client extends OpenApi {
|
|
|
7983
8585
|
describeSchemas(request: DescribeSchemasRequest): Promise<DescribeSchemasResponse>;
|
|
7984
8586
|
describeSparkCodeLogWithOptions(request: DescribeSparkCodeLogRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSparkCodeLogResponse>;
|
|
7985
8587
|
describeSparkCodeLog(request: DescribeSparkCodeLogRequest): Promise<DescribeSparkCodeLogResponse>;
|
|
8588
|
+
/**
|
|
8589
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8590
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8591
|
+
*
|
|
8592
|
+
* @param request DescribeSparkCodeOutputRequest
|
|
8593
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8594
|
+
* @return DescribeSparkCodeOutputResponse
|
|
8595
|
+
*/
|
|
7986
8596
|
describeSparkCodeOutputWithOptions(request: DescribeSparkCodeOutputRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSparkCodeOutputResponse>;
|
|
8597
|
+
/**
|
|
8598
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8599
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8600
|
+
*
|
|
8601
|
+
* @param request DescribeSparkCodeOutputRequest
|
|
8602
|
+
* @return DescribeSparkCodeOutputResponse
|
|
8603
|
+
*/
|
|
7987
8604
|
describeSparkCodeOutput(request: DescribeSparkCodeOutputRequest): Promise<DescribeSparkCodeOutputResponse>;
|
|
7988
8605
|
describeSparkCodeWebUiWithOptions(request: DescribeSparkCodeWebUiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSparkCodeWebUiResponse>;
|
|
7989
8606
|
describeSparkCodeWebUi(request: DescribeSparkCodeWebUiRequest): Promise<DescribeSparkCodeWebUiResponse>;
|
|
8607
|
+
/**
|
|
8608
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8609
|
+
*
|
|
8610
|
+
* @param request DescribeSqlPatternRequest
|
|
8611
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8612
|
+
* @return DescribeSqlPatternResponse
|
|
8613
|
+
*/
|
|
7990
8614
|
describeSqlPatternWithOptions(request: DescribeSqlPatternRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSqlPatternResponse>;
|
|
8615
|
+
/**
|
|
8616
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8617
|
+
*
|
|
8618
|
+
* @param request DescribeSqlPatternRequest
|
|
8619
|
+
* @return DescribeSqlPatternResponse
|
|
8620
|
+
*/
|
|
7991
8621
|
describeSqlPattern(request: DescribeSqlPatternRequest): Promise<DescribeSqlPatternResponse>;
|
|
7992
8622
|
describeStorageResourceUsageWithOptions(request: DescribeStorageResourceUsageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeStorageResourceUsageResponse>;
|
|
7993
8623
|
describeStorageResourceUsage(request: DescribeStorageResourceUsageRequest): Promise<DescribeStorageResourceUsageResponse>;
|
|
8624
|
+
/**
|
|
8625
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8626
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8627
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8628
|
+
*
|
|
8629
|
+
* @param request DescribeTableAccessCountRequest
|
|
8630
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8631
|
+
* @return DescribeTableAccessCountResponse
|
|
8632
|
+
*/
|
|
7994
8633
|
describeTableAccessCountWithOptions(request: DescribeTableAccessCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTableAccessCountResponse>;
|
|
8634
|
+
/**
|
|
8635
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8636
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8637
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8638
|
+
*
|
|
8639
|
+
* @param request DescribeTableAccessCountRequest
|
|
8640
|
+
* @return DescribeTableAccessCountResponse
|
|
8641
|
+
*/
|
|
7995
8642
|
describeTableAccessCount(request: DescribeTableAccessCountRequest): Promise<DescribeTableAccessCountResponse>;
|
|
7996
8643
|
describeTablesWithOptions(request: DescribeTablesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTablesResponse>;
|
|
7997
8644
|
describeTables(request: DescribeTablesRequest): Promise<DescribeTablesResponse>;
|
|
8645
|
+
/**
|
|
8646
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8647
|
+
*
|
|
8648
|
+
* @param request DescribeUserQuotaRequest
|
|
8649
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8650
|
+
* @return DescribeUserQuotaResponse
|
|
8651
|
+
*/
|
|
7998
8652
|
describeUserQuotaWithOptions(request: DescribeUserQuotaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserQuotaResponse>;
|
|
8653
|
+
/**
|
|
8654
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8655
|
+
*
|
|
8656
|
+
* @param request DescribeUserQuotaRequest
|
|
8657
|
+
* @return DescribeUserQuotaResponse
|
|
8658
|
+
*/
|
|
7999
8659
|
describeUserQuota(request: DescribeUserQuotaRequest): Promise<DescribeUserQuotaResponse>;
|
|
8660
|
+
/**
|
|
8661
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8662
|
+
*
|
|
8663
|
+
* @param request DetachUserENIRequest
|
|
8664
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8665
|
+
* @return DetachUserENIResponse
|
|
8666
|
+
*/
|
|
8000
8667
|
detachUserENIWithOptions(request: DetachUserENIRequest, runtime: $Util.RuntimeOptions): Promise<DetachUserENIResponse>;
|
|
8668
|
+
/**
|
|
8669
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8670
|
+
*
|
|
8671
|
+
* @param request DetachUserENIRequest
|
|
8672
|
+
* @return DetachUserENIResponse
|
|
8673
|
+
*/
|
|
8001
8674
|
detachUserENI(request: DetachUserENIRequest): Promise<DetachUserENIResponse>;
|
|
8675
|
+
/**
|
|
8676
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8677
|
+
*
|
|
8678
|
+
* @param request DisableElasticPlanRequest
|
|
8679
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8680
|
+
* @return DisableElasticPlanResponse
|
|
8681
|
+
*/
|
|
8002
8682
|
disableElasticPlanWithOptions(request: DisableElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<DisableElasticPlanResponse>;
|
|
8683
|
+
/**
|
|
8684
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8685
|
+
*
|
|
8686
|
+
* @param request DisableElasticPlanRequest
|
|
8687
|
+
* @return DisableElasticPlanResponse
|
|
8688
|
+
*/
|
|
8003
8689
|
disableElasticPlan(request: DisableElasticPlanRequest): Promise<DisableElasticPlanResponse>;
|
|
8690
|
+
/**
|
|
8691
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8692
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8693
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8694
|
+
*
|
|
8695
|
+
* @param request DownloadDiagnosisRecordsRequest
|
|
8696
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8697
|
+
* @return DownloadDiagnosisRecordsResponse
|
|
8698
|
+
*/
|
|
8004
8699
|
downloadDiagnosisRecordsWithOptions(request: DownloadDiagnosisRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DownloadDiagnosisRecordsResponse>;
|
|
8700
|
+
/**
|
|
8701
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8702
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8703
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8704
|
+
*
|
|
8705
|
+
* @param request DownloadDiagnosisRecordsRequest
|
|
8706
|
+
* @return DownloadDiagnosisRecordsResponse
|
|
8707
|
+
*/
|
|
8005
8708
|
downloadDiagnosisRecords(request: DownloadDiagnosisRecordsRequest): Promise<DownloadDiagnosisRecordsResponse>;
|
|
8709
|
+
/**
|
|
8710
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8711
|
+
*
|
|
8712
|
+
* @param request EnableElasticPlanRequest
|
|
8713
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8714
|
+
* @return EnableElasticPlanResponse
|
|
8715
|
+
*/
|
|
8006
8716
|
enableElasticPlanWithOptions(request: EnableElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<EnableElasticPlanResponse>;
|
|
8717
|
+
/**
|
|
8718
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
8719
|
+
*
|
|
8720
|
+
* @param request EnableElasticPlanRequest
|
|
8721
|
+
* @return EnableElasticPlanResponse
|
|
8722
|
+
*/
|
|
8007
8723
|
enableElasticPlan(request: EnableElasticPlanRequest): Promise<EnableElasticPlanResponse>;
|
|
8008
8724
|
existRunningSQLEngineWithOptions(request: ExistRunningSQLEngineRequest, runtime: $Util.RuntimeOptions): Promise<ExistRunningSQLEngineResponse>;
|
|
8009
8725
|
existRunningSQLEngine(request: ExistRunningSQLEngineRequest): Promise<ExistRunningSQLEngineResponse>;
|
|
8726
|
+
/**
|
|
8727
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8728
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8729
|
+
*
|
|
8730
|
+
* @param request GetDatabaseObjectsRequest
|
|
8731
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8732
|
+
* @return GetDatabaseObjectsResponse
|
|
8733
|
+
*/
|
|
8010
8734
|
getDatabaseObjectsWithOptions(request: GetDatabaseObjectsRequest, runtime: $Util.RuntimeOptions): Promise<GetDatabaseObjectsResponse>;
|
|
8735
|
+
/**
|
|
8736
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8737
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8738
|
+
*
|
|
8739
|
+
* @param request GetDatabaseObjectsRequest
|
|
8740
|
+
* @return GetDatabaseObjectsResponse
|
|
8741
|
+
*/
|
|
8011
8742
|
getDatabaseObjects(request: GetDatabaseObjectsRequest): Promise<GetDatabaseObjectsResponse>;
|
|
8743
|
+
/**
|
|
8744
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8745
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8746
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8747
|
+
*
|
|
8748
|
+
* @param request GetSparkAppAttemptLogRequest
|
|
8749
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8750
|
+
* @return GetSparkAppAttemptLogResponse
|
|
8751
|
+
*/
|
|
8012
8752
|
getSparkAppAttemptLogWithOptions(request: GetSparkAppAttemptLogRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkAppAttemptLogResponse>;
|
|
8753
|
+
/**
|
|
8754
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8755
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8756
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8757
|
+
*
|
|
8758
|
+
* @param request GetSparkAppAttemptLogRequest
|
|
8759
|
+
* @return GetSparkAppAttemptLogResponse
|
|
8760
|
+
*/
|
|
8013
8761
|
getSparkAppAttemptLog(request: GetSparkAppAttemptLogRequest): Promise<GetSparkAppAttemptLogResponse>;
|
|
8014
8762
|
getSparkAppInfoWithOptions(request: GetSparkAppInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkAppInfoResponse>;
|
|
8015
8763
|
getSparkAppInfo(request: GetSparkAppInfoRequest): Promise<GetSparkAppInfoResponse>;
|
|
8764
|
+
/**
|
|
8765
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8766
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8767
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8768
|
+
*
|
|
8769
|
+
* @param request GetSparkAppLogRequest
|
|
8770
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8771
|
+
* @return GetSparkAppLogResponse
|
|
8772
|
+
*/
|
|
8016
8773
|
getSparkAppLogWithOptions(request: GetSparkAppLogRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkAppLogResponse>;
|
|
8774
|
+
/**
|
|
8775
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8776
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8777
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8778
|
+
*
|
|
8779
|
+
* @param request GetSparkAppLogRequest
|
|
8780
|
+
* @return GetSparkAppLogResponse
|
|
8781
|
+
*/
|
|
8017
8782
|
getSparkAppLog(request: GetSparkAppLogRequest): Promise<GetSparkAppLogResponse>;
|
|
8783
|
+
/**
|
|
8784
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8785
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8786
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8787
|
+
*
|
|
8788
|
+
* @param request GetSparkAppMetricsRequest
|
|
8789
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8790
|
+
* @return GetSparkAppMetricsResponse
|
|
8791
|
+
*/
|
|
8018
8792
|
getSparkAppMetricsWithOptions(request: GetSparkAppMetricsRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkAppMetricsResponse>;
|
|
8793
|
+
/**
|
|
8794
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8795
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8796
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8797
|
+
*
|
|
8798
|
+
* @param request GetSparkAppMetricsRequest
|
|
8799
|
+
* @return GetSparkAppMetricsResponse
|
|
8800
|
+
*/
|
|
8019
8801
|
getSparkAppMetrics(request: GetSparkAppMetricsRequest): Promise<GetSparkAppMetricsResponse>;
|
|
8802
|
+
/**
|
|
8803
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8804
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8805
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8806
|
+
*
|
|
8807
|
+
* @param request GetSparkAppStateRequest
|
|
8808
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8809
|
+
* @return GetSparkAppStateResponse
|
|
8810
|
+
*/
|
|
8020
8811
|
getSparkAppStateWithOptions(request: GetSparkAppStateRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkAppStateResponse>;
|
|
8812
|
+
/**
|
|
8813
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8814
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8815
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8816
|
+
*
|
|
8817
|
+
* @param request GetSparkAppStateRequest
|
|
8818
|
+
* @return GetSparkAppStateResponse
|
|
8819
|
+
*/
|
|
8021
8820
|
getSparkAppState(request: GetSparkAppStateRequest): Promise<GetSparkAppStateResponse>;
|
|
8821
|
+
/**
|
|
8822
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8823
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8824
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8825
|
+
*
|
|
8826
|
+
* @param request GetSparkAppWebUiAddressRequest
|
|
8827
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8828
|
+
* @return GetSparkAppWebUiAddressResponse
|
|
8829
|
+
*/
|
|
8022
8830
|
getSparkAppWebUiAddressWithOptions(request: GetSparkAppWebUiAddressRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkAppWebUiAddressResponse>;
|
|
8831
|
+
/**
|
|
8832
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8833
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8834
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8835
|
+
*
|
|
8836
|
+
* @param request GetSparkAppWebUiAddressRequest
|
|
8837
|
+
* @return GetSparkAppWebUiAddressResponse
|
|
8838
|
+
*/
|
|
8023
8839
|
getSparkAppWebUiAddress(request: GetSparkAppWebUiAddressRequest): Promise<GetSparkAppWebUiAddressResponse>;
|
|
8840
|
+
/**
|
|
8841
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8842
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8843
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
8844
|
+
*
|
|
8845
|
+
* @param request GetSparkConfigLogPathRequest
|
|
8846
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8847
|
+
* @return GetSparkConfigLogPathResponse
|
|
8848
|
+
*/
|
|
8024
8849
|
getSparkConfigLogPathWithOptions(request: GetSparkConfigLogPathRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkConfigLogPathResponse>;
|
|
8850
|
+
/**
|
|
8851
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8852
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8853
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
8854
|
+
*
|
|
8855
|
+
* @param request GetSparkConfigLogPathRequest
|
|
8856
|
+
* @return GetSparkConfigLogPathResponse
|
|
8857
|
+
*/
|
|
8025
8858
|
getSparkConfigLogPath(request: GetSparkConfigLogPathRequest): Promise<GetSparkConfigLogPathResponse>;
|
|
8859
|
+
/**
|
|
8860
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8861
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8862
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8863
|
+
*
|
|
8864
|
+
* @param request GetSparkDefinitionsRequest
|
|
8865
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8866
|
+
* @return GetSparkDefinitionsResponse
|
|
8867
|
+
*/
|
|
8026
8868
|
getSparkDefinitionsWithOptions(request: GetSparkDefinitionsRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkDefinitionsResponse>;
|
|
8869
|
+
/**
|
|
8870
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8871
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8872
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8873
|
+
*
|
|
8874
|
+
* @param request GetSparkDefinitionsRequest
|
|
8875
|
+
* @return GetSparkDefinitionsResponse
|
|
8876
|
+
*/
|
|
8027
8877
|
getSparkDefinitions(request: GetSparkDefinitionsRequest): Promise<GetSparkDefinitionsResponse>;
|
|
8878
|
+
/**
|
|
8879
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8880
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8881
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8882
|
+
*
|
|
8883
|
+
* @param request GetSparkLogAnalyzeTaskRequest
|
|
8884
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8885
|
+
* @return GetSparkLogAnalyzeTaskResponse
|
|
8886
|
+
*/
|
|
8028
8887
|
getSparkLogAnalyzeTaskWithOptions(request: GetSparkLogAnalyzeTaskRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkLogAnalyzeTaskResponse>;
|
|
8888
|
+
/**
|
|
8889
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8890
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8891
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8892
|
+
*
|
|
8893
|
+
* @param request GetSparkLogAnalyzeTaskRequest
|
|
8894
|
+
* @return GetSparkLogAnalyzeTaskResponse
|
|
8895
|
+
*/
|
|
8029
8896
|
getSparkLogAnalyzeTask(request: GetSparkLogAnalyzeTaskRequest): Promise<GetSparkLogAnalyzeTaskResponse>;
|
|
8030
8897
|
getSparkSQLEngineStateWithOptions(request: GetSparkSQLEngineStateRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkSQLEngineStateResponse>;
|
|
8031
8898
|
getSparkSQLEngineState(request: GetSparkSQLEngineStateRequest): Promise<GetSparkSQLEngineStateResponse>;
|
|
8899
|
+
/**
|
|
8900
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8901
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8902
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8903
|
+
*
|
|
8904
|
+
* @param request GetSparkTemplateFileContentRequest
|
|
8905
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8906
|
+
* @return GetSparkTemplateFileContentResponse
|
|
8907
|
+
*/
|
|
8032
8908
|
getSparkTemplateFileContentWithOptions(request: GetSparkTemplateFileContentRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkTemplateFileContentResponse>;
|
|
8909
|
+
/**
|
|
8910
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8911
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8912
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8913
|
+
*
|
|
8914
|
+
* @param request GetSparkTemplateFileContentRequest
|
|
8915
|
+
* @return GetSparkTemplateFileContentResponse
|
|
8916
|
+
*/
|
|
8033
8917
|
getSparkTemplateFileContent(request: GetSparkTemplateFileContentRequest): Promise<GetSparkTemplateFileContentResponse>;
|
|
8034
8918
|
/**
|
|
8035
|
-
*
|
|
8036
|
-
*
|
|
8919
|
+
* * You can call this operation to query the directory structure but not application data in the directory. To query the directory structure that contains application data, call the [GetSparkTemplateFullTree](~~612467~~) operation.
|
|
8920
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8921
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8922
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8037
8923
|
*
|
|
8038
8924
|
* @param request GetSparkTemplateFolderTreeRequest
|
|
8039
8925
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -8041,14 +8927,33 @@ export default class Client extends OpenApi {
|
|
|
8041
8927
|
*/
|
|
8042
8928
|
getSparkTemplateFolderTreeWithOptions(request: GetSparkTemplateFolderTreeRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkTemplateFolderTreeResponse>;
|
|
8043
8929
|
/**
|
|
8044
|
-
*
|
|
8045
|
-
*
|
|
8930
|
+
* * You can call this operation to query the directory structure but not application data in the directory. To query the directory structure that contains application data, call the [GetSparkTemplateFullTree](~~612467~~) operation.
|
|
8931
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8932
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8933
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8046
8934
|
*
|
|
8047
8935
|
* @param request GetSparkTemplateFolderTreeRequest
|
|
8048
8936
|
* @return GetSparkTemplateFolderTreeResponse
|
|
8049
8937
|
*/
|
|
8050
8938
|
getSparkTemplateFolderTree(request: GetSparkTemplateFolderTreeRequest): Promise<GetSparkTemplateFolderTreeResponse>;
|
|
8939
|
+
/**
|
|
8940
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8941
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8942
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8943
|
+
*
|
|
8944
|
+
* @param request GetSparkTemplateFullTreeRequest
|
|
8945
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8946
|
+
* @return GetSparkTemplateFullTreeResponse
|
|
8947
|
+
*/
|
|
8051
8948
|
getSparkTemplateFullTreeWithOptions(request: GetSparkTemplateFullTreeRequest, runtime: $Util.RuntimeOptions): Promise<GetSparkTemplateFullTreeResponse>;
|
|
8949
|
+
/**
|
|
8950
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
8951
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8952
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8953
|
+
*
|
|
8954
|
+
* @param request GetSparkTemplateFullTreeRequest
|
|
8955
|
+
* @return GetSparkTemplateFullTreeResponse
|
|
8956
|
+
*/
|
|
8052
8957
|
getSparkTemplateFullTree(request: GetSparkTemplateFullTreeRequest): Promise<GetSparkTemplateFullTreeResponse>;
|
|
8053
8958
|
/**
|
|
8054
8959
|
* @deprecated
|
|
@@ -8071,37 +8976,234 @@ export default class Client extends OpenApi {
|
|
|
8071
8976
|
getTableDDL(request: GetTableDDLRequest): Promise<GetTableDDLResponse>;
|
|
8072
8977
|
getTableObjectsWithOptions(request: GetTableObjectsRequest, runtime: $Util.RuntimeOptions): Promise<GetTableObjectsResponse>;
|
|
8073
8978
|
getTableObjects(request: GetTableObjectsRequest): Promise<GetTableObjectsResponse>;
|
|
8979
|
+
/**
|
|
8980
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8981
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8982
|
+
*
|
|
8983
|
+
* @param request GetViewDDLRequest
|
|
8984
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8985
|
+
* @return GetViewDDLResponse
|
|
8986
|
+
*/
|
|
8074
8987
|
getViewDDLWithOptions(request: GetViewDDLRequest, runtime: $Util.RuntimeOptions): Promise<GetViewDDLResponse>;
|
|
8988
|
+
/**
|
|
8989
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8990
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8991
|
+
*
|
|
8992
|
+
* @param request GetViewDDLRequest
|
|
8993
|
+
* @return GetViewDDLResponse
|
|
8994
|
+
*/
|
|
8075
8995
|
getViewDDL(request: GetViewDDLRequest): Promise<GetViewDDLResponse>;
|
|
8996
|
+
/**
|
|
8997
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
8998
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
8999
|
+
*
|
|
9000
|
+
* @param request GetViewObjectsRequest
|
|
9001
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9002
|
+
* @return GetViewObjectsResponse
|
|
9003
|
+
*/
|
|
8076
9004
|
getViewObjectsWithOptions(request: GetViewObjectsRequest, runtime: $Util.RuntimeOptions): Promise<GetViewObjectsResponse>;
|
|
9005
|
+
/**
|
|
9006
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9007
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9008
|
+
*
|
|
9009
|
+
* @param request GetViewObjectsRequest
|
|
9010
|
+
* @return GetViewObjectsResponse
|
|
9011
|
+
*/
|
|
8077
9012
|
getViewObjects(request: GetViewObjectsRequest): Promise<GetViewObjectsResponse>;
|
|
9013
|
+
/**
|
|
9014
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9015
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9016
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9017
|
+
*
|
|
9018
|
+
* @param request KillSparkAppRequest
|
|
9019
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9020
|
+
* @return KillSparkAppResponse
|
|
9021
|
+
*/
|
|
8078
9022
|
killSparkAppWithOptions(request: KillSparkAppRequest, runtime: $Util.RuntimeOptions): Promise<KillSparkAppResponse>;
|
|
9023
|
+
/**
|
|
9024
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9025
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9026
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9027
|
+
*
|
|
9028
|
+
* @param request KillSparkAppRequest
|
|
9029
|
+
* @return KillSparkAppResponse
|
|
9030
|
+
*/
|
|
8079
9031
|
killSparkApp(request: KillSparkAppRequest): Promise<KillSparkAppResponse>;
|
|
9032
|
+
/**
|
|
9033
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9034
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9035
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9036
|
+
*
|
|
9037
|
+
* @param request KillSparkLogAnalyzeTaskRequest
|
|
9038
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9039
|
+
* @return KillSparkLogAnalyzeTaskResponse
|
|
9040
|
+
*/
|
|
8080
9041
|
killSparkLogAnalyzeTaskWithOptions(request: KillSparkLogAnalyzeTaskRequest, runtime: $Util.RuntimeOptions): Promise<KillSparkLogAnalyzeTaskResponse>;
|
|
9042
|
+
/**
|
|
9043
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9044
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9045
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9046
|
+
*
|
|
9047
|
+
* @param request KillSparkLogAnalyzeTaskRequest
|
|
9048
|
+
* @return KillSparkLogAnalyzeTaskResponse
|
|
9049
|
+
*/
|
|
8081
9050
|
killSparkLogAnalyzeTask(request: KillSparkLogAnalyzeTaskRequest): Promise<KillSparkLogAnalyzeTaskResponse>;
|
|
9051
|
+
/**
|
|
9052
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9053
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9054
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9055
|
+
*
|
|
9056
|
+
* @param request KillSparkSQLEngineRequest
|
|
9057
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9058
|
+
* @return KillSparkSQLEngineResponse
|
|
9059
|
+
*/
|
|
8082
9060
|
killSparkSQLEngineWithOptions(request: KillSparkSQLEngineRequest, runtime: $Util.RuntimeOptions): Promise<KillSparkSQLEngineResponse>;
|
|
9061
|
+
/**
|
|
9062
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9063
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9064
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9065
|
+
*
|
|
9066
|
+
* @param request KillSparkSQLEngineRequest
|
|
9067
|
+
* @return KillSparkSQLEngineResponse
|
|
9068
|
+
*/
|
|
8083
9069
|
killSparkSQLEngine(request: KillSparkSQLEngineRequest): Promise<KillSparkSQLEngineResponse>;
|
|
9070
|
+
/**
|
|
9071
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9072
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9073
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9074
|
+
*
|
|
9075
|
+
* @param request ListSparkAppAttemptsRequest
|
|
9076
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9077
|
+
* @return ListSparkAppAttemptsResponse
|
|
9078
|
+
*/
|
|
8084
9079
|
listSparkAppAttemptsWithOptions(request: ListSparkAppAttemptsRequest, runtime: $Util.RuntimeOptions): Promise<ListSparkAppAttemptsResponse>;
|
|
9080
|
+
/**
|
|
9081
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9082
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9083
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9084
|
+
*
|
|
9085
|
+
* @param request ListSparkAppAttemptsRequest
|
|
9086
|
+
* @return ListSparkAppAttemptsResponse
|
|
9087
|
+
*/
|
|
8085
9088
|
listSparkAppAttempts(request: ListSparkAppAttemptsRequest): Promise<ListSparkAppAttemptsResponse>;
|
|
8086
9089
|
listSparkAppsWithOptions(request: ListSparkAppsRequest, runtime: $Util.RuntimeOptions): Promise<ListSparkAppsResponse>;
|
|
8087
9090
|
listSparkApps(request: ListSparkAppsRequest): Promise<ListSparkAppsResponse>;
|
|
9091
|
+
/**
|
|
9092
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9093
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9094
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9095
|
+
*
|
|
9096
|
+
* @param request ListSparkLogAnalyzeTasksRequest
|
|
9097
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9098
|
+
* @return ListSparkLogAnalyzeTasksResponse
|
|
9099
|
+
*/
|
|
8088
9100
|
listSparkLogAnalyzeTasksWithOptions(request: ListSparkLogAnalyzeTasksRequest, runtime: $Util.RuntimeOptions): Promise<ListSparkLogAnalyzeTasksResponse>;
|
|
9101
|
+
/**
|
|
9102
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9103
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9104
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9105
|
+
*
|
|
9106
|
+
* @param request ListSparkLogAnalyzeTasksRequest
|
|
9107
|
+
* @return ListSparkLogAnalyzeTasksResponse
|
|
9108
|
+
*/
|
|
8089
9109
|
listSparkLogAnalyzeTasks(request: ListSparkLogAnalyzeTasksRequest): Promise<ListSparkLogAnalyzeTasksResponse>;
|
|
9110
|
+
/**
|
|
9111
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9112
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9113
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9114
|
+
*
|
|
9115
|
+
* @param request ListSparkTemplateFileIdsRequest
|
|
9116
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9117
|
+
* @return ListSparkTemplateFileIdsResponse
|
|
9118
|
+
*/
|
|
8090
9119
|
listSparkTemplateFileIdsWithOptions(request: ListSparkTemplateFileIdsRequest, runtime: $Util.RuntimeOptions): Promise<ListSparkTemplateFileIdsResponse>;
|
|
9120
|
+
/**
|
|
9121
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9122
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9123
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9124
|
+
*
|
|
9125
|
+
* @param request ListSparkTemplateFileIdsRequest
|
|
9126
|
+
* @return ListSparkTemplateFileIdsResponse
|
|
9127
|
+
*/
|
|
8091
9128
|
listSparkTemplateFileIds(request: ListSparkTemplateFileIdsRequest): Promise<ListSparkTemplateFileIdsResponse>;
|
|
9129
|
+
/**
|
|
9130
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
9131
|
+
*
|
|
9132
|
+
* @param request LoadSampleDataSetRequest
|
|
9133
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9134
|
+
* @return LoadSampleDataSetResponse
|
|
9135
|
+
*/
|
|
8092
9136
|
loadSampleDataSetWithOptions(request: LoadSampleDataSetRequest, runtime: $Util.RuntimeOptions): Promise<LoadSampleDataSetResponse>;
|
|
9137
|
+
/**
|
|
9138
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
9139
|
+
*
|
|
9140
|
+
* @param request LoadSampleDataSetRequest
|
|
9141
|
+
* @return LoadSampleDataSetResponse
|
|
9142
|
+
*/
|
|
8093
9143
|
loadSampleDataSet(request: LoadSampleDataSetRequest): Promise<LoadSampleDataSetResponse>;
|
|
9144
|
+
/**
|
|
9145
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
9146
|
+
*
|
|
9147
|
+
* @param request ModifyAccountDescriptionRequest
|
|
9148
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9149
|
+
* @return ModifyAccountDescriptionResponse
|
|
9150
|
+
*/
|
|
8094
9151
|
modifyAccountDescriptionWithOptions(request: ModifyAccountDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountDescriptionResponse>;
|
|
9152
|
+
/**
|
|
9153
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
9154
|
+
*
|
|
9155
|
+
* @param request ModifyAccountDescriptionRequest
|
|
9156
|
+
* @return ModifyAccountDescriptionResponse
|
|
9157
|
+
*/
|
|
8095
9158
|
modifyAccountDescription(request: ModifyAccountDescriptionRequest): Promise<ModifyAccountDescriptionResponse>;
|
|
8096
9159
|
modifyAccountPrivilegesWithOptions(tmpReq: ModifyAccountPrivilegesRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountPrivilegesResponse>;
|
|
8097
9160
|
modifyAccountPrivileges(request: ModifyAccountPrivilegesRequest): Promise<ModifyAccountPrivilegesResponse>;
|
|
8098
9161
|
modifyAuditLogConfigWithOptions(request: ModifyAuditLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAuditLogConfigResponse>;
|
|
8099
9162
|
modifyAuditLogConfig(request: ModifyAuditLogConfigRequest): Promise<ModifyAuditLogConfigResponse>;
|
|
9163
|
+
/**
|
|
9164
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9165
|
+
*
|
|
9166
|
+
* @param request ModifyBackupPolicyRequest
|
|
9167
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9168
|
+
* @return ModifyBackupPolicyResponse
|
|
9169
|
+
*/
|
|
8100
9170
|
modifyBackupPolicyWithOptions(request: ModifyBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyBackupPolicyResponse>;
|
|
9171
|
+
/**
|
|
9172
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9173
|
+
*
|
|
9174
|
+
* @param request ModifyBackupPolicyRequest
|
|
9175
|
+
* @return ModifyBackupPolicyResponse
|
|
9176
|
+
*/
|
|
8101
9177
|
modifyBackupPolicy(request: ModifyBackupPolicyRequest): Promise<ModifyBackupPolicyResponse>;
|
|
9178
|
+
/**
|
|
9179
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9180
|
+
*
|
|
9181
|
+
* @param request ModifyClusterAccessWhiteListRequest
|
|
9182
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9183
|
+
* @return ModifyClusterAccessWhiteListResponse
|
|
9184
|
+
*/
|
|
8102
9185
|
modifyClusterAccessWhiteListWithOptions(request: ModifyClusterAccessWhiteListRequest, runtime: $Util.RuntimeOptions): Promise<ModifyClusterAccessWhiteListResponse>;
|
|
9186
|
+
/**
|
|
9187
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9188
|
+
*
|
|
9189
|
+
* @param request ModifyClusterAccessWhiteListRequest
|
|
9190
|
+
* @return ModifyClusterAccessWhiteListResponse
|
|
9191
|
+
*/
|
|
8103
9192
|
modifyClusterAccessWhiteList(request: ModifyClusterAccessWhiteListRequest): Promise<ModifyClusterAccessWhiteListResponse>;
|
|
9193
|
+
/**
|
|
9194
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9195
|
+
*
|
|
9196
|
+
* @param request ModifyClusterConnectionStringRequest
|
|
9197
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9198
|
+
* @return ModifyClusterConnectionStringResponse
|
|
9199
|
+
*/
|
|
8104
9200
|
modifyClusterConnectionStringWithOptions(request: ModifyClusterConnectionStringRequest, runtime: $Util.RuntimeOptions): Promise<ModifyClusterConnectionStringResponse>;
|
|
9201
|
+
/**
|
|
9202
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9203
|
+
*
|
|
9204
|
+
* @param request ModifyClusterConnectionStringRequest
|
|
9205
|
+
* @return ModifyClusterConnectionStringResponse
|
|
9206
|
+
*/
|
|
8105
9207
|
modifyClusterConnectionString(request: ModifyClusterConnectionStringRequest): Promise<ModifyClusterConnectionStringResponse>;
|
|
8106
9208
|
/**
|
|
8107
9209
|
* ### [](#)
|
|
@@ -8128,13 +9230,65 @@ export default class Client extends OpenApi {
|
|
|
8128
9230
|
* @return ModifyDBClusterResponse
|
|
8129
9231
|
*/
|
|
8130
9232
|
modifyDBCluster(request: ModifyDBClusterRequest): Promise<ModifyDBClusterResponse>;
|
|
9233
|
+
/**
|
|
9234
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9235
|
+
*
|
|
9236
|
+
* @param request ModifyDBClusterDescriptionRequest
|
|
9237
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9238
|
+
* @return ModifyDBClusterDescriptionResponse
|
|
9239
|
+
*/
|
|
8131
9240
|
modifyDBClusterDescriptionWithOptions(request: ModifyDBClusterDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterDescriptionResponse>;
|
|
9241
|
+
/**
|
|
9242
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9243
|
+
*
|
|
9244
|
+
* @param request ModifyDBClusterDescriptionRequest
|
|
9245
|
+
* @return ModifyDBClusterDescriptionResponse
|
|
9246
|
+
*/
|
|
8132
9247
|
modifyDBClusterDescription(request: ModifyDBClusterDescriptionRequest): Promise<ModifyDBClusterDescriptionResponse>;
|
|
9248
|
+
/**
|
|
9249
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9250
|
+
*
|
|
9251
|
+
* @param request ModifyDBClusterMaintainTimeRequest
|
|
9252
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9253
|
+
* @return ModifyDBClusterMaintainTimeResponse
|
|
9254
|
+
*/
|
|
8133
9255
|
modifyDBClusterMaintainTimeWithOptions(request: ModifyDBClusterMaintainTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBClusterMaintainTimeResponse>;
|
|
9256
|
+
/**
|
|
9257
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9258
|
+
*
|
|
9259
|
+
* @param request ModifyDBClusterMaintainTimeRequest
|
|
9260
|
+
* @return ModifyDBClusterMaintainTimeResponse
|
|
9261
|
+
*/
|
|
8134
9262
|
modifyDBClusterMaintainTime(request: ModifyDBClusterMaintainTimeRequest): Promise<ModifyDBClusterMaintainTimeResponse>;
|
|
9263
|
+
/**
|
|
9264
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9265
|
+
*
|
|
9266
|
+
* @param tmpReq ModifyDBResourceGroupRequest
|
|
9267
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9268
|
+
* @return ModifyDBResourceGroupResponse
|
|
9269
|
+
*/
|
|
8135
9270
|
modifyDBResourceGroupWithOptions(tmpReq: ModifyDBResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBResourceGroupResponse>;
|
|
9271
|
+
/**
|
|
9272
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9273
|
+
*
|
|
9274
|
+
* @param request ModifyDBResourceGroupRequest
|
|
9275
|
+
* @return ModifyDBResourceGroupResponse
|
|
9276
|
+
*/
|
|
8136
9277
|
modifyDBResourceGroup(request: ModifyDBResourceGroupRequest): Promise<ModifyDBResourceGroupResponse>;
|
|
9278
|
+
/**
|
|
9279
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9280
|
+
*
|
|
9281
|
+
* @param request ModifyElasticPlanRequest
|
|
9282
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9283
|
+
* @return ModifyElasticPlanResponse
|
|
9284
|
+
*/
|
|
8137
9285
|
modifyElasticPlanWithOptions(request: ModifyElasticPlanRequest, runtime: $Util.RuntimeOptions): Promise<ModifyElasticPlanResponse>;
|
|
9286
|
+
/**
|
|
9287
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9288
|
+
*
|
|
9289
|
+
* @param request ModifyElasticPlanRequest
|
|
9290
|
+
* @return ModifyElasticPlanResponse
|
|
9291
|
+
*/
|
|
8138
9292
|
modifyElasticPlan(request: ModifyElasticPlanRequest): Promise<ModifyElasticPlanResponse>;
|
|
8139
9293
|
preloadSparkAppMetricsWithOptions(request: PreloadSparkAppMetricsRequest, runtime: $Util.RuntimeOptions): Promise<PreloadSparkAppMetricsResponse>;
|
|
8140
9294
|
preloadSparkAppMetrics(request: PreloadSparkAppMetricsRequest): Promise<PreloadSparkAppMetricsResponse>;
|
|
@@ -8144,18 +9298,112 @@ export default class Client extends OpenApi {
|
|
|
8144
9298
|
renameSparkTemplateFile(request: RenameSparkTemplateFileRequest): Promise<RenameSparkTemplateFileResponse>;
|
|
8145
9299
|
resetAccountPasswordWithOptions(request: ResetAccountPasswordRequest, runtime: $Util.RuntimeOptions): Promise<ResetAccountPasswordResponse>;
|
|
8146
9300
|
resetAccountPassword(request: ResetAccountPasswordRequest): Promise<ResetAccountPasswordResponse>;
|
|
9301
|
+
/**
|
|
9302
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9303
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9304
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9305
|
+
*
|
|
9306
|
+
* @param request SetSparkAppLogRootPathRequest
|
|
9307
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9308
|
+
* @return SetSparkAppLogRootPathResponse
|
|
9309
|
+
*/
|
|
8147
9310
|
setSparkAppLogRootPathWithOptions(request: SetSparkAppLogRootPathRequest, runtime: $Util.RuntimeOptions): Promise<SetSparkAppLogRootPathResponse>;
|
|
9311
|
+
/**
|
|
9312
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9313
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9314
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9315
|
+
*
|
|
9316
|
+
* @param request SetSparkAppLogRootPathRequest
|
|
9317
|
+
* @return SetSparkAppLogRootPathResponse
|
|
9318
|
+
*/
|
|
8148
9319
|
setSparkAppLogRootPath(request: SetSparkAppLogRootPathRequest): Promise<SetSparkAppLogRootPathResponse>;
|
|
9320
|
+
/**
|
|
9321
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9322
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9323
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9324
|
+
*
|
|
9325
|
+
* @param request StartSparkSQLEngineRequest
|
|
9326
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9327
|
+
* @return StartSparkSQLEngineResponse
|
|
9328
|
+
*/
|
|
8149
9329
|
startSparkSQLEngineWithOptions(request: StartSparkSQLEngineRequest, runtime: $Util.RuntimeOptions): Promise<StartSparkSQLEngineResponse>;
|
|
9330
|
+
/**
|
|
9331
|
+
* * General endpoint: `adb.aliyuncs.com`.
|
|
9332
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9333
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9334
|
+
*
|
|
9335
|
+
* @param request StartSparkSQLEngineRequest
|
|
9336
|
+
* @return StartSparkSQLEngineResponse
|
|
9337
|
+
*/
|
|
8150
9338
|
startSparkSQLEngine(request: StartSparkSQLEngineRequest): Promise<StartSparkSQLEngineResponse>;
|
|
9339
|
+
/**
|
|
9340
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9341
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9342
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
9343
|
+
*
|
|
9344
|
+
* @param request SubmitSparkAppRequest
|
|
9345
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9346
|
+
* @return SubmitSparkAppResponse
|
|
9347
|
+
*/
|
|
8151
9348
|
submitSparkAppWithOptions(request: SubmitSparkAppRequest, runtime: $Util.RuntimeOptions): Promise<SubmitSparkAppResponse>;
|
|
9349
|
+
/**
|
|
9350
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9351
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9352
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
9353
|
+
*
|
|
9354
|
+
* @param request SubmitSparkAppRequest
|
|
9355
|
+
* @return SubmitSparkAppResponse
|
|
9356
|
+
*/
|
|
8152
9357
|
submitSparkApp(request: SubmitSparkAppRequest): Promise<SubmitSparkAppResponse>;
|
|
8153
9358
|
submitSparkLogAnalyzeTaskWithOptions(request: SubmitSparkLogAnalyzeTaskRequest, runtime: $Util.RuntimeOptions): Promise<SubmitSparkLogAnalyzeTaskResponse>;
|
|
8154
9359
|
submitSparkLogAnalyzeTask(request: SubmitSparkLogAnalyzeTaskRequest): Promise<SubmitSparkLogAnalyzeTaskResponse>;
|
|
9360
|
+
/**
|
|
9361
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
9362
|
+
*
|
|
9363
|
+
* @param request UnbindAccountRequest
|
|
9364
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9365
|
+
* @return UnbindAccountResponse
|
|
9366
|
+
*/
|
|
8155
9367
|
unbindAccountWithOptions(request: UnbindAccountRequest, runtime: $Util.RuntimeOptions): Promise<UnbindAccountResponse>;
|
|
9368
|
+
/**
|
|
9369
|
+
* For information about the endpoints of AnalyticDB for MySQL, see Endpoints.
|
|
9370
|
+
*
|
|
9371
|
+
* @param request UnbindAccountRequest
|
|
9372
|
+
* @return UnbindAccountResponse
|
|
9373
|
+
*/
|
|
8156
9374
|
unbindAccount(request: UnbindAccountRequest): Promise<UnbindAccountResponse>;
|
|
9375
|
+
/**
|
|
9376
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9377
|
+
*
|
|
9378
|
+
* @param request UnbindDBResourceGroupWithUserRequest
|
|
9379
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9380
|
+
* @return UnbindDBResourceGroupWithUserResponse
|
|
9381
|
+
*/
|
|
8157
9382
|
unbindDBResourceGroupWithUserWithOptions(request: UnbindDBResourceGroupWithUserRequest, runtime: $Util.RuntimeOptions): Promise<UnbindDBResourceGroupWithUserResponse>;
|
|
9383
|
+
/**
|
|
9384
|
+
* For information about the endpoints of AnalyticDB for MySQL, see [Endpoints](~~612373~~).
|
|
9385
|
+
*
|
|
9386
|
+
* @param request UnbindDBResourceGroupWithUserRequest
|
|
9387
|
+
* @return UnbindDBResourceGroupWithUserResponse
|
|
9388
|
+
*/
|
|
8158
9389
|
unbindDBResourceGroupWithUser(request: UnbindDBResourceGroupWithUserRequest): Promise<UnbindDBResourceGroupWithUserResponse>;
|
|
9390
|
+
/**
|
|
9391
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9392
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9393
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
9394
|
+
*
|
|
9395
|
+
* @param request UpdateSparkTemplateFileRequest
|
|
9396
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9397
|
+
* @return UpdateSparkTemplateFileResponse
|
|
9398
|
+
*/
|
|
8159
9399
|
updateSparkTemplateFileWithOptions(request: UpdateSparkTemplateFileRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSparkTemplateFileResponse>;
|
|
9400
|
+
/**
|
|
9401
|
+
* * Regional public endpoint: `adb.<region-id>.aliyuncs.com`. Example: `adb.cn-hangzhou.aliyuncs.com`.
|
|
9402
|
+
* * Regional Virtual Private Cloud (VPC) endpoint: `adb-vpc.<region-id>.aliyuncs.com`. Example: `adb-vpc.cn-hangzhou.aliyuncs.com`.
|
|
9403
|
+
* > If HTTP status code 409 is returned when you call this operation in the China (Qingdao), China (Shenzhen), China (Guangzhou), or China (Hong Kong) region, contact technical support.
|
|
9404
|
+
*
|
|
9405
|
+
* @param request UpdateSparkTemplateFileRequest
|
|
9406
|
+
* @return UpdateSparkTemplateFileResponse
|
|
9407
|
+
*/
|
|
8160
9408
|
updateSparkTemplateFile(request: UpdateSparkTemplateFileRequest): Promise<UpdateSparkTemplateFileResponse>;
|
|
8161
9409
|
}
|