tencentcloud-sdk-nodejs 4.0.493 → 4.0.495
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/CHANGELOG.md +282 -0
- package/SERVICE_CHANGELOG.md +433 -7
- package/package.json +1 -1
- package/products.md +19 -19
- package/src/common/sdk_version.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_models.ts +7 -7
- package/src/services/batch/v20170312/batch_models.ts +6 -0
- package/src/services/cdb/v20170320/cdb_models.ts +8 -2
- package/src/services/ckafka/v20190819/ckafka_client.ts +48 -17
- package/src/services/ckafka/v20190819/ckafka_models.ts +642 -257
- package/src/services/cme/v20191029/cme_models.ts +15 -15
- package/src/services/cpdp/v20190820/cpdp_models.ts +59 -3
- package/src/services/cvm/v20170312/cvm_client.ts +1 -1
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +54 -6
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +162 -0
- package/src/services/dts/v20211206/dts_models.ts +53 -17
- package/src/services/gme/v20180711/gme_client.ts +3 -1
- package/src/services/gme/v20180711/gme_models.ts +7 -7
- package/src/services/iotvideo/v20211125/iotvideo_models.ts +22 -0
- package/src/services/lighthouse/v20200324/lighthouse_client.ts +1 -0
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +28 -6
- package/src/services/monitor/v20180724/monitor_client.ts +14 -1
- package/src/services/monitor/v20180724/monitor_models.ts +63 -7
- package/src/services/scf/v20180416/scf_models.ts +9 -6
- package/src/services/tke/v20180525/tke_client.ts +16 -2
- package/src/services/tke/v20180525/tke_models.ts +175 -37
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +7 -7
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +5 -0
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +7 -2
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +13 -5
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +18 -6
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +514 -189
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +15 -15
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +48 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +19 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +27 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +139 -0
- package/tencentcloud/services/dts/v20211206/dts_models.d.ts +47 -17
- package/tencentcloud/services/gme/v20180711/gme_client.d.ts +3 -1
- package/tencentcloud/services/gme/v20180711/gme_client.js +3 -1
- package/tencentcloud/services/gme/v20180711/gme_models.d.ts +7 -7
- package/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts +18 -0
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +25 -6
- package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +5 -1
- package/tencentcloud/services/monitor/v20180724/monitor_client.js +6 -0
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +54 -6
- package/tencentcloud/services/scf/v20180416/scf_models.d.ts +3 -0
- package/tencentcloud/services/tke/v20180525/tke_client.d.ts +5 -1
- package/tencentcloud/services/tke/v20180525/tke_client.js +6 -0
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +148 -32
- package/test/ckafka.v20190819.test.js +24 -4
- package/test/cynosdb.v20190107.test.js +42 -2
- package/test/monitor.v20180724.test.js +10 -0
- package/test/tke.v20180525.test.js +10 -0
|
@@ -270,41 +270,41 @@ export interface DescribeTaskDetailResponse {
|
|
|
270
270
|
<li>SUCCESS:成功;</li>
|
|
271
271
|
<li>FAIL:失败。</li>
|
|
272
272
|
*/
|
|
273
|
-
Status
|
|
273
|
+
Status?: string
|
|
274
274
|
|
|
275
275
|
/**
|
|
276
276
|
* 任务进度,取值为:0~100。
|
|
277
277
|
*/
|
|
278
|
-
Progress
|
|
278
|
+
Progress?: number
|
|
279
279
|
|
|
280
280
|
/**
|
|
281
281
|
* 错误码。
|
|
282
282
|
<li>0:成功;</li>
|
|
283
283
|
<li>其他值:失败。</li>
|
|
284
284
|
*/
|
|
285
|
-
ErrCode
|
|
285
|
+
ErrCode?: number
|
|
286
286
|
|
|
287
287
|
/**
|
|
288
288
|
* 错误信息。
|
|
289
289
|
*/
|
|
290
|
-
ErrMsg
|
|
290
|
+
ErrMsg?: string
|
|
291
291
|
|
|
292
292
|
/**
|
|
293
293
|
* 任务类型,取值有:
|
|
294
294
|
<li>VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。</li>
|
|
295
295
|
*/
|
|
296
|
-
TaskType
|
|
296
|
+
TaskType?: string
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
*
|
|
299
|
+
* 导出项目输出信息。仅当 TaskType 为 VIDEO_EDIT_PROJECT_EXPORT 时有效。
|
|
300
300
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
301
301
|
*/
|
|
302
|
-
VideoEditProjectOutput
|
|
302
|
+
VideoEditProjectOutput?: VideoEditProjectOutput
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
305
|
* 创建时间,格式按照 ISO 8601 标准表示。
|
|
306
306
|
*/
|
|
307
|
-
CreateTime
|
|
307
|
+
CreateTime?: string
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
310
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -4712,43 +4712,43 @@ export interface MaterialInfo {
|
|
|
4712
4712
|
/**
|
|
4713
4713
|
* 媒体基本信息。
|
|
4714
4714
|
*/
|
|
4715
|
-
BasicInfo
|
|
4715
|
+
BasicInfo?: MaterialBasicInfo
|
|
4716
4716
|
|
|
4717
4717
|
/**
|
|
4718
4718
|
* 视频媒体信息。
|
|
4719
4719
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4720
4720
|
*/
|
|
4721
|
-
VideoMaterial
|
|
4721
|
+
VideoMaterial?: VideoMaterial
|
|
4722
4722
|
|
|
4723
4723
|
/**
|
|
4724
4724
|
* 音频媒体信息。
|
|
4725
4725
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4726
4726
|
*/
|
|
4727
|
-
AudioMaterial
|
|
4727
|
+
AudioMaterial?: AudioMaterial
|
|
4728
4728
|
|
|
4729
4729
|
/**
|
|
4730
4730
|
* 图片媒体信息。
|
|
4731
4731
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4732
4732
|
*/
|
|
4733
|
-
ImageMaterial
|
|
4733
|
+
ImageMaterial?: ImageMaterial
|
|
4734
4734
|
|
|
4735
4735
|
/**
|
|
4736
4736
|
* 链接媒体信息。
|
|
4737
4737
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4738
4738
|
*/
|
|
4739
|
-
LinkMaterial
|
|
4739
|
+
LinkMaterial?: LinkMaterial
|
|
4740
4740
|
|
|
4741
4741
|
/**
|
|
4742
4742
|
* 模板媒体信息。
|
|
4743
4743
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4744
4744
|
*/
|
|
4745
|
-
VideoEditTemplateMaterial
|
|
4745
|
+
VideoEditTemplateMaterial?: VideoEditTemplateMaterial
|
|
4746
4746
|
|
|
4747
4747
|
/**
|
|
4748
4748
|
* 其他类型媒体信息。
|
|
4749
4749
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4750
4750
|
*/
|
|
4751
|
-
OtherMaterial
|
|
4751
|
+
OtherMaterial?: OtherMaterial
|
|
4752
4752
|
}
|
|
4753
4753
|
|
|
4754
4754
|
/**
|
|
@@ -3501,6 +3501,30 @@ FAILED:已失败
|
|
|
3501
3501
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3502
3502
|
*/
|
|
3503
3503
|
ChannelOrderId: string
|
|
3504
|
+
|
|
3505
|
+
/**
|
|
3506
|
+
* 增值税
|
|
3507
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3508
|
+
*/
|
|
3509
|
+
Vat: string
|
|
3510
|
+
|
|
3511
|
+
/**
|
|
3512
|
+
* 个人所得税
|
|
3513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3514
|
+
*/
|
|
3515
|
+
IndividualIncomeTax: string
|
|
3516
|
+
|
|
3517
|
+
/**
|
|
3518
|
+
* 附加税总税额
|
|
3519
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3520
|
+
*/
|
|
3521
|
+
AdditionalTaxSum: string
|
|
3522
|
+
|
|
3523
|
+
/**
|
|
3524
|
+
* 附加税税项。格式为JSON格式
|
|
3525
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3526
|
+
*/
|
|
3527
|
+
AdditionalTaxItem: string
|
|
3504
3528
|
}
|
|
3505
3529
|
|
|
3506
3530
|
/**
|
|
@@ -3878,6 +3902,30 @@ export interface ApplyFlexPaymentResult {
|
|
|
3878
3902
|
* 税金
|
|
3879
3903
|
*/
|
|
3880
3904
|
Tax: string
|
|
3905
|
+
|
|
3906
|
+
/**
|
|
3907
|
+
* 增值税
|
|
3908
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3909
|
+
*/
|
|
3910
|
+
Vat: string
|
|
3911
|
+
|
|
3912
|
+
/**
|
|
3913
|
+
* 个人所得税
|
|
3914
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3915
|
+
*/
|
|
3916
|
+
IndividualIncomeTax: string
|
|
3917
|
+
|
|
3918
|
+
/**
|
|
3919
|
+
* 附加税总税额
|
|
3920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3921
|
+
*/
|
|
3922
|
+
AdditionalTaxSum: string
|
|
3923
|
+
|
|
3924
|
+
/**
|
|
3925
|
+
* 附加税税项。格式为JSON格式
|
|
3926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3927
|
+
*/
|
|
3928
|
+
AdditionalTaxItem: string
|
|
3881
3929
|
}
|
|
3882
3930
|
|
|
3883
3931
|
/**
|
|
@@ -5946,6 +5994,11 @@ __test__:测试环境
|
|
|
5946
5994
|
缺省默认为生产环境
|
|
5947
5995
|
*/
|
|
5948
5996
|
Environment?: string
|
|
5997
|
+
|
|
5998
|
+
/**
|
|
5999
|
+
* 快照日期。格式yyyy-MM-dd
|
|
6000
|
+
*/
|
|
6001
|
+
SnapshotDate?: string
|
|
5949
6002
|
}
|
|
5950
6003
|
|
|
5951
6004
|
/**
|
|
@@ -21836,8 +21889,11 @@ export interface WithdrawCashMembershipResponse {
|
|
|
21836
21889
|
*/
|
|
21837
21890
|
export interface CreateSinglePaymentRequest {
|
|
21838
21891
|
/**
|
|
21839
|
-
|
|
21840
|
-
|
|
21892
|
+
* 转账类型
|
|
21893
|
+
1 微信企业付款
|
|
21894
|
+
2 支付宝转账
|
|
21895
|
+
3 平安银企直连代发转账
|
|
21896
|
+
*/
|
|
21841
21897
|
TransferType: number
|
|
21842
21898
|
|
|
21843
21899
|
/**
|
|
@@ -26103,7 +26159,7 @@ __OPENBANK_PAYMENT__: openbank付款
|
|
|
26103
26159
|
BankAbbreviation: string
|
|
26104
26160
|
|
|
26105
26161
|
/**
|
|
26106
|
-
* 页码。Index和Count必须大于等于1。
|
|
26162
|
+
* 页码。Index和Count必须大于等于1。Count建议不超过100。
|
|
26107
26163
|
*/
|
|
26108
26164
|
PageNumber: Paging
|
|
26109
26165
|
|
|
@@ -1041,7 +1041,7 @@ https://img.qcloud.com/qcloud/app/active_vnc/index.html?InstanceVncUrl=wss%3A%2F
|
|
|
1041
1041
|
}
|
|
1042
1042
|
|
|
1043
1043
|
/**
|
|
1044
|
-
* 当高性能计算集群为空, 即集群内没有任何设备时候,
|
|
1044
|
+
* 当高性能计算集群为空, 即集群内没有任何设备时候, 可以删除该集群。
|
|
1045
1045
|
*/
|
|
1046
1046
|
async DeleteHpcClusters(
|
|
1047
1047
|
req: DeleteHpcClustersRequest,
|
|
@@ -48,6 +48,7 @@ import {
|
|
|
48
48
|
AuditLogFilter,
|
|
49
49
|
DescribeParamTemplatesRequest,
|
|
50
50
|
DescribeAuditLogsResponse,
|
|
51
|
+
SearchClusterTablesRequest,
|
|
51
52
|
PauseServerlessRequest,
|
|
52
53
|
ObjectTask,
|
|
53
54
|
RevokeAccountPrivilegesResponse,
|
|
@@ -86,11 +87,13 @@ import {
|
|
|
86
87
|
CreateAuditLogFileResponse,
|
|
87
88
|
PauseServerlessResponse,
|
|
88
89
|
OfflineClusterRequest,
|
|
90
|
+
ResetAccountPasswordResponse,
|
|
89
91
|
NewAccount,
|
|
90
92
|
BackupFileInfo,
|
|
91
93
|
TablePrivileges,
|
|
92
94
|
DescribeBinlogDownloadUrlResponse,
|
|
93
95
|
DescribeBackupListRequest,
|
|
96
|
+
SearchClusterDatabasesRequest,
|
|
94
97
|
CynosdbInstance,
|
|
95
98
|
DbTable,
|
|
96
99
|
ModifyClusterSlaveZoneResponse,
|
|
@@ -132,7 +135,9 @@ import {
|
|
|
132
135
|
ModifyAccountParamsRequest,
|
|
133
136
|
CynosdbCluster,
|
|
134
137
|
IsolateClusterResponse,
|
|
138
|
+
SearchClusterDatabasesResponse,
|
|
135
139
|
OfflineClusterResponse,
|
|
140
|
+
SwitchProxyVpcResponse,
|
|
136
141
|
RevokeAccountPrivilegesRequest,
|
|
137
142
|
InstanceSpec,
|
|
138
143
|
InquirePriceCreateResponse,
|
|
@@ -141,8 +146,10 @@ import {
|
|
|
141
146
|
Account,
|
|
142
147
|
CreateBackupRequest,
|
|
143
148
|
DescribeClusterParamLogsRequest,
|
|
149
|
+
SearchClusterTablesResponse,
|
|
144
150
|
PolicyRule,
|
|
145
151
|
DescribeMaintainPeriodResponse,
|
|
152
|
+
SwitchProxyVpcRequest,
|
|
146
153
|
DescribeBackupListResponse,
|
|
147
154
|
RollBackClusterResponse,
|
|
148
155
|
DescribeBinlogSaveDaysRequest,
|
|
@@ -158,6 +165,7 @@ import {
|
|
|
158
165
|
DescribeInstanceSlowQueriesRequest,
|
|
159
166
|
CynosdbInstanceDetail,
|
|
160
167
|
CynosdbClusterDetail,
|
|
168
|
+
ResetAccountPasswordRequest,
|
|
161
169
|
DescribeInstanceDetailRequest,
|
|
162
170
|
ModifyMaintainPeriodConfigResponse,
|
|
163
171
|
DisassociateSecurityGroupsRequest,
|
|
@@ -316,13 +324,13 @@ export class Client extends AbstractClient {
|
|
|
316
324
|
}
|
|
317
325
|
|
|
318
326
|
/**
|
|
319
|
-
*
|
|
327
|
+
* 本接口(SearchClusterDatabases)搜索集群database列表
|
|
320
328
|
*/
|
|
321
|
-
async
|
|
322
|
-
req:
|
|
323
|
-
cb?: (error: string, rep:
|
|
324
|
-
): Promise<
|
|
325
|
-
return this.request("
|
|
329
|
+
async SearchClusterDatabases(
|
|
330
|
+
req: SearchClusterDatabasesRequest,
|
|
331
|
+
cb?: (error: string, rep: SearchClusterDatabasesResponse) => void
|
|
332
|
+
): Promise<SearchClusterDatabasesResponse> {
|
|
333
|
+
return this.request("SearchClusterDatabases", req, cb)
|
|
326
334
|
}
|
|
327
335
|
|
|
328
336
|
/**
|
|
@@ -345,6 +353,16 @@ export class Client extends AbstractClient {
|
|
|
345
353
|
return this.request("DeleteAuditLogFile", req, cb)
|
|
346
354
|
}
|
|
347
355
|
|
|
356
|
+
/**
|
|
357
|
+
* 本接口(ResetAccountPassword)用于重置实例的数据库账号密码。
|
|
358
|
+
*/
|
|
359
|
+
async ResetAccountPassword(
|
|
360
|
+
req: ResetAccountPasswordRequest,
|
|
361
|
+
cb?: (error: string, rep: ResetAccountPasswordResponse) => void
|
|
362
|
+
): Promise<ResetAccountPasswordResponse> {
|
|
363
|
+
return this.request("ResetAccountPassword", req, cb)
|
|
364
|
+
}
|
|
365
|
+
|
|
348
366
|
/**
|
|
349
367
|
* 本接口(DescribeInstanceDetail)用于查询实例详情。
|
|
350
368
|
*/
|
|
@@ -495,6 +513,16 @@ export class Client extends AbstractClient {
|
|
|
495
513
|
return this.request("DescribeMaintainPeriod", req, cb)
|
|
496
514
|
}
|
|
497
515
|
|
|
516
|
+
/**
|
|
517
|
+
* 本接口(SwitchProxyVpc)更换数据库代理vpc
|
|
518
|
+
*/
|
|
519
|
+
async SwitchProxyVpc(
|
|
520
|
+
req: SwitchProxyVpcRequest,
|
|
521
|
+
cb?: (error: string, rep: SwitchProxyVpcResponse) => void
|
|
522
|
+
): Promise<SwitchProxyVpcResponse> {
|
|
523
|
+
return this.request("SwitchProxyVpc", req, cb)
|
|
524
|
+
}
|
|
525
|
+
|
|
498
526
|
/**
|
|
499
527
|
* 查询集群列表
|
|
500
528
|
*/
|
|
@@ -775,6 +803,26 @@ export class Client extends AbstractClient {
|
|
|
775
803
|
return this.request("ExportInstanceSlowQueries", req, cb)
|
|
776
804
|
}
|
|
777
805
|
|
|
806
|
+
/**
|
|
807
|
+
* SetRenewFlag设置实例的自动续费功能
|
|
808
|
+
*/
|
|
809
|
+
async SetRenewFlag(
|
|
810
|
+
req: SetRenewFlagRequest,
|
|
811
|
+
cb?: (error: string, rep: SetRenewFlagResponse) => void
|
|
812
|
+
): Promise<SetRenewFlagResponse> {
|
|
813
|
+
return this.request("SetRenewFlag", req, cb)
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* 本接口(SearchClusterTables)搜索集群数据表列表
|
|
818
|
+
*/
|
|
819
|
+
async SearchClusterTables(
|
|
820
|
+
req: SearchClusterTablesRequest,
|
|
821
|
+
cb?: (error: string, rep: SearchClusterTablesResponse) => void
|
|
822
|
+
): Promise<SearchClusterTablesResponse> {
|
|
823
|
+
return this.request("SearchClusterTables", req, cb)
|
|
824
|
+
}
|
|
825
|
+
|
|
778
826
|
/**
|
|
779
827
|
* 切换到从可用区
|
|
780
828
|
*/
|
|
@@ -667,6 +667,34 @@ export interface DescribeAuditLogsResponse {
|
|
|
667
667
|
RequestId?: string
|
|
668
668
|
}
|
|
669
669
|
|
|
670
|
+
/**
|
|
671
|
+
* SearchClusterTables请求参数结构体
|
|
672
|
+
*/
|
|
673
|
+
export interface SearchClusterTablesRequest {
|
|
674
|
+
/**
|
|
675
|
+
* 集群id
|
|
676
|
+
*/
|
|
677
|
+
ClusterId: string
|
|
678
|
+
|
|
679
|
+
/**
|
|
680
|
+
* 数据库名
|
|
681
|
+
*/
|
|
682
|
+
Database?: string
|
|
683
|
+
|
|
684
|
+
/**
|
|
685
|
+
* 数据表名
|
|
686
|
+
*/
|
|
687
|
+
Table?: string
|
|
688
|
+
|
|
689
|
+
/**
|
|
690
|
+
* 数据表类型:
|
|
691
|
+
view:只返回 view,
|
|
692
|
+
base_table: 只返回基本表,
|
|
693
|
+
all:返回 view 和表
|
|
694
|
+
*/
|
|
695
|
+
TableType?: string
|
|
696
|
+
}
|
|
697
|
+
|
|
670
698
|
/**
|
|
671
699
|
* PauseServerless请求参数结构体
|
|
672
700
|
*/
|
|
@@ -1507,6 +1535,16 @@ export interface OfflineClusterRequest {
|
|
|
1507
1535
|
ClusterId: string
|
|
1508
1536
|
}
|
|
1509
1537
|
|
|
1538
|
+
/**
|
|
1539
|
+
* ResetAccountPassword返回参数结构体
|
|
1540
|
+
*/
|
|
1541
|
+
export interface ResetAccountPasswordResponse {
|
|
1542
|
+
/**
|
|
1543
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1544
|
+
*/
|
|
1545
|
+
RequestId?: string
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1510
1548
|
/**
|
|
1511
1549
|
* 新创建的账号
|
|
1512
1550
|
*/
|
|
@@ -1701,6 +1739,28 @@ export interface DescribeBackupListRequest {
|
|
|
1701
1739
|
BackupNames?: Array<string>
|
|
1702
1740
|
}
|
|
1703
1741
|
|
|
1742
|
+
/**
|
|
1743
|
+
* SearchClusterDatabases请求参数结构体
|
|
1744
|
+
*/
|
|
1745
|
+
export interface SearchClusterDatabasesRequest {
|
|
1746
|
+
/**
|
|
1747
|
+
* 集群id
|
|
1748
|
+
*/
|
|
1749
|
+
ClusterId: string
|
|
1750
|
+
|
|
1751
|
+
/**
|
|
1752
|
+
* 数据库名
|
|
1753
|
+
*/
|
|
1754
|
+
Database?: string
|
|
1755
|
+
|
|
1756
|
+
/**
|
|
1757
|
+
* 是否精确搜索。
|
|
1758
|
+
0: 模糊搜索 1:精确搜索
|
|
1759
|
+
默认为0
|
|
1760
|
+
*/
|
|
1761
|
+
MatchType?: number
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1704
1764
|
/**
|
|
1705
1765
|
* 实例信息
|
|
1706
1766
|
*/
|
|
@@ -3311,6 +3371,22 @@ export interface IsolateClusterResponse {
|
|
|
3311
3371
|
RequestId?: string
|
|
3312
3372
|
}
|
|
3313
3373
|
|
|
3374
|
+
/**
|
|
3375
|
+
* SearchClusterDatabases返回参数结构体
|
|
3376
|
+
*/
|
|
3377
|
+
export interface SearchClusterDatabasesResponse {
|
|
3378
|
+
/**
|
|
3379
|
+
* 数据库列表
|
|
3380
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3381
|
+
*/
|
|
3382
|
+
Databases: Array<string>
|
|
3383
|
+
|
|
3384
|
+
/**
|
|
3385
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3386
|
+
*/
|
|
3387
|
+
RequestId?: string
|
|
3388
|
+
}
|
|
3389
|
+
|
|
3314
3390
|
/**
|
|
3315
3391
|
* OfflineCluster返回参数结构体
|
|
3316
3392
|
*/
|
|
@@ -3326,6 +3402,21 @@ export interface OfflineClusterResponse {
|
|
|
3326
3402
|
RequestId?: string
|
|
3327
3403
|
}
|
|
3328
3404
|
|
|
3405
|
+
/**
|
|
3406
|
+
* SwitchProxyVpc返回参数结构体
|
|
3407
|
+
*/
|
|
3408
|
+
export interface SwitchProxyVpcResponse {
|
|
3409
|
+
/**
|
|
3410
|
+
* 异步任务id。
|
|
3411
|
+
*/
|
|
3412
|
+
FlowId: number
|
|
3413
|
+
|
|
3414
|
+
/**
|
|
3415
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3416
|
+
*/
|
|
3417
|
+
RequestId?: string
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3329
3420
|
/**
|
|
3330
3421
|
* RevokeAccountPrivileges请求参数结构体
|
|
3331
3422
|
*/
|
|
@@ -3537,6 +3628,22 @@ export interface DescribeClusterParamLogsRequest {
|
|
|
3537
3628
|
Offset?: number
|
|
3538
3629
|
}
|
|
3539
3630
|
|
|
3631
|
+
/**
|
|
3632
|
+
* SearchClusterTables返回参数结构体
|
|
3633
|
+
*/
|
|
3634
|
+
export interface SearchClusterTablesResponse {
|
|
3635
|
+
/**
|
|
3636
|
+
* 数据表列表
|
|
3637
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3638
|
+
*/
|
|
3639
|
+
Tables: Array<DatabaseTables>
|
|
3640
|
+
|
|
3641
|
+
/**
|
|
3642
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3643
|
+
*/
|
|
3644
|
+
RequestId?: string
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3540
3647
|
/**
|
|
3541
3648
|
* 安全组规则
|
|
3542
3649
|
*/
|
|
@@ -3607,6 +3714,36 @@ export interface DescribeMaintainPeriodResponse {
|
|
|
3607
3714
|
RequestId?: string
|
|
3608
3715
|
}
|
|
3609
3716
|
|
|
3717
|
+
/**
|
|
3718
|
+
* SwitchProxyVpc请求参数结构体
|
|
3719
|
+
*/
|
|
3720
|
+
export interface SwitchProxyVpcRequest {
|
|
3721
|
+
/**
|
|
3722
|
+
* 集群ID
|
|
3723
|
+
*/
|
|
3724
|
+
ClusterId: string
|
|
3725
|
+
|
|
3726
|
+
/**
|
|
3727
|
+
* 字符串vpc id
|
|
3728
|
+
*/
|
|
3729
|
+
UniqVpcId: string
|
|
3730
|
+
|
|
3731
|
+
/**
|
|
3732
|
+
* 字符串子网id
|
|
3733
|
+
*/
|
|
3734
|
+
UniqSubnetId: string
|
|
3735
|
+
|
|
3736
|
+
/**
|
|
3737
|
+
* 旧地址回收时间
|
|
3738
|
+
*/
|
|
3739
|
+
OldIpReserveHours: number
|
|
3740
|
+
|
|
3741
|
+
/**
|
|
3742
|
+
* 数据库代理组Id
|
|
3743
|
+
*/
|
|
3744
|
+
ProxyGroupId?: string
|
|
3745
|
+
}
|
|
3746
|
+
|
|
3610
3747
|
/**
|
|
3611
3748
|
* DescribeBackupList返回参数结构体
|
|
3612
3749
|
*/
|
|
@@ -4272,6 +4409,31 @@ pausing
|
|
|
4272
4409
|
ServerlessStatus: string
|
|
4273
4410
|
}
|
|
4274
4411
|
|
|
4412
|
+
/**
|
|
4413
|
+
* ResetAccountPassword请求参数结构体
|
|
4414
|
+
*/
|
|
4415
|
+
export interface ResetAccountPasswordRequest {
|
|
4416
|
+
/**
|
|
4417
|
+
* 数据库账号名
|
|
4418
|
+
*/
|
|
4419
|
+
AccountName: string
|
|
4420
|
+
|
|
4421
|
+
/**
|
|
4422
|
+
* 数据库账号新密码
|
|
4423
|
+
*/
|
|
4424
|
+
AccountPassword: string
|
|
4425
|
+
|
|
4426
|
+
/**
|
|
4427
|
+
* 集群ID
|
|
4428
|
+
*/
|
|
4429
|
+
ClusterId: string
|
|
4430
|
+
|
|
4431
|
+
/**
|
|
4432
|
+
* 主机,不填默认为"%"
|
|
4433
|
+
*/
|
|
4434
|
+
Host?: string
|
|
4435
|
+
}
|
|
4436
|
+
|
|
4275
4437
|
/**
|
|
4276
4438
|
* DescribeInstanceDetail请求参数结构体
|
|
4277
4439
|
*/
|