tencentcloud-sdk-nodejs 4.1.63 → 4.1.64
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/es/common/sdk_version.js +1 -1
- package/es/services/emr/v20190103/emr_client.js +161 -158
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bh/v20230418/bh_models.d.ts +4 -0
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +12 -2
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +4 -0
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +182 -178
- package/tencentcloud/services/emr/v20190103/emr_client.js +272 -266
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +169 -78
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +1 -0
- package/tencentcloud/services/ess/v20201111/ess_client.js +1 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +1 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +1 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +1 -0
- package/tencentcloud/services/gs/v20191118/gs_models.d.ts +4 -0
- package/tencentcloud/services/live/v20180801/live_models.d.ts +4 -0
- package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +32 -0
- package/tencentcloud/services/organization/v20210331/organization_models.d.ts +4 -0
- package/tencentcloud/services/partners/v20180321/partners_models.d.ts +2 -2
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +2 -0
- package/tencentcloud/services/trocket/v20230308/trocket_client.d.ts +32 -14
- package/tencentcloud/services/trocket/v20230308/trocket_client.js +32 -14
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +3 -2
|
@@ -44,18 +44,21 @@ export interface AddNodeResourceConfigRequest {
|
|
|
44
44
|
HardwareResourceType?: string;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* DescribeSparkApplications返回参数结构体
|
|
48
48
|
*/
|
|
49
|
-
export interface
|
|
49
|
+
export interface DescribeSparkApplicationsResponse {
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* 返回数量
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
TotalCount?: number;
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
56
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
55
|
+
* spark应用列表
|
|
57
56
|
*/
|
|
58
|
-
|
|
57
|
+
ResultList?: Array<SparkApplicationsList>;
|
|
58
|
+
/**
|
|
59
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
60
|
+
*/
|
|
61
|
+
RequestId?: string;
|
|
59
62
|
}
|
|
60
63
|
/**
|
|
61
64
|
* 集群配置。
|
|
@@ -2458,17 +2461,63 @@ export interface NodeDetailPriceResult {
|
|
|
2458
2461
|
PartDetailPrice?: Array<PartDetailPriceItem>;
|
|
2459
2462
|
}
|
|
2460
2463
|
/**
|
|
2461
|
-
*
|
|
2464
|
+
* 询价资源
|
|
2462
2465
|
*/
|
|
2463
|
-
export interface
|
|
2466
|
+
export interface PriceResource {
|
|
2464
2467
|
/**
|
|
2465
|
-
*
|
|
2468
|
+
* 需要的规格
|
|
2466
2469
|
*/
|
|
2467
|
-
|
|
2470
|
+
Spec?: string;
|
|
2468
2471
|
/**
|
|
2469
|
-
*
|
|
2472
|
+
* 硬盘类型
|
|
2470
2473
|
*/
|
|
2471
|
-
|
|
2474
|
+
StorageType?: number;
|
|
2475
|
+
/**
|
|
2476
|
+
* 硬盘类型
|
|
2477
|
+
*/
|
|
2478
|
+
DiskType?: string;
|
|
2479
|
+
/**
|
|
2480
|
+
* 系统盘大小
|
|
2481
|
+
*/
|
|
2482
|
+
RootSize?: number;
|
|
2483
|
+
/**
|
|
2484
|
+
* 内存大小
|
|
2485
|
+
*/
|
|
2486
|
+
MemSize?: number;
|
|
2487
|
+
/**
|
|
2488
|
+
* 核心数量
|
|
2489
|
+
*/
|
|
2490
|
+
Cpu?: number;
|
|
2491
|
+
/**
|
|
2492
|
+
* 硬盘大小
|
|
2493
|
+
*/
|
|
2494
|
+
DiskSize?: number;
|
|
2495
|
+
/**
|
|
2496
|
+
* 云盘列表
|
|
2497
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2498
|
+
*/
|
|
2499
|
+
MultiDisks?: Array<MultiDisk>;
|
|
2500
|
+
/**
|
|
2501
|
+
* 磁盘数量
|
|
2502
|
+
*/
|
|
2503
|
+
DiskCnt?: number;
|
|
2504
|
+
/**
|
|
2505
|
+
* 规格
|
|
2506
|
+
*/
|
|
2507
|
+
InstanceType?: string;
|
|
2508
|
+
/**
|
|
2509
|
+
* 标签
|
|
2510
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2511
|
+
*/
|
|
2512
|
+
Tags?: Array<Tag>;
|
|
2513
|
+
/**
|
|
2514
|
+
* 磁盘数量
|
|
2515
|
+
*/
|
|
2516
|
+
DiskNum?: number;
|
|
2517
|
+
/**
|
|
2518
|
+
* 本地盘的数量
|
|
2519
|
+
*/
|
|
2520
|
+
LocalDiskNum?: number;
|
|
2472
2521
|
}
|
|
2473
2522
|
/**
|
|
2474
2523
|
* 数据卷目录设置
|
|
@@ -3779,6 +3828,31 @@ export interface HealthStatus {
|
|
|
3779
3828
|
*/
|
|
3780
3829
|
Desc: string;
|
|
3781
3830
|
}
|
|
3831
|
+
/**
|
|
3832
|
+
* DescribeSparkApplications请求参数结构体
|
|
3833
|
+
*/
|
|
3834
|
+
export interface DescribeSparkApplicationsRequest {
|
|
3835
|
+
/**
|
|
3836
|
+
* 集群id
|
|
3837
|
+
*/
|
|
3838
|
+
InstanceId: string;
|
|
3839
|
+
/**
|
|
3840
|
+
* 查询开始时间
|
|
3841
|
+
*/
|
|
3842
|
+
StartTime: number;
|
|
3843
|
+
/**
|
|
3844
|
+
* 查询结束时间
|
|
3845
|
+
*/
|
|
3846
|
+
EndTime: number;
|
|
3847
|
+
/**
|
|
3848
|
+
* 每一页条数
|
|
3849
|
+
*/
|
|
3850
|
+
PageSize: number;
|
|
3851
|
+
/**
|
|
3852
|
+
* 第几页
|
|
3853
|
+
*/
|
|
3854
|
+
Page: number;
|
|
3855
|
+
}
|
|
3782
3856
|
/**
|
|
3783
3857
|
* 自定义配置参数
|
|
3784
3858
|
*/
|
|
@@ -5183,34 +5257,53 @@ export interface ModifyResourceSchedulerRequest {
|
|
|
5183
5257
|
NewValue: string;
|
|
5184
5258
|
}
|
|
5185
5259
|
/**
|
|
5186
|
-
*
|
|
5260
|
+
* spark任务列表
|
|
5187
5261
|
*/
|
|
5188
|
-
export interface
|
|
5262
|
+
export interface SparkApplicationsList {
|
|
5189
5263
|
/**
|
|
5190
|
-
*
|
|
5264
|
+
* 应用id
|
|
5265
|
+
*/
|
|
5266
|
+
ID?: string;
|
|
5267
|
+
/**
|
|
5268
|
+
* 应用名称
|
|
5191
5269
|
*/
|
|
5192
5270
|
Name?: string;
|
|
5193
5271
|
/**
|
|
5194
|
-
*
|
|
5272
|
+
* 用户
|
|
5195
5273
|
*/
|
|
5196
|
-
|
|
5274
|
+
User?: string;
|
|
5197
5275
|
/**
|
|
5198
|
-
*
|
|
5276
|
+
* 起始时间
|
|
5199
5277
|
*/
|
|
5200
|
-
|
|
5278
|
+
StartTime?: number;
|
|
5201
5279
|
/**
|
|
5202
|
-
*
|
|
5203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5280
|
+
* 结束时间
|
|
5204
5281
|
*/
|
|
5205
|
-
|
|
5282
|
+
EndTime?: number;
|
|
5206
5283
|
/**
|
|
5207
|
-
*
|
|
5284
|
+
* 持续时间
|
|
5208
5285
|
*/
|
|
5209
|
-
|
|
5286
|
+
Duration?: number;
|
|
5210
5287
|
/**
|
|
5211
|
-
*
|
|
5288
|
+
* 状态
|
|
5212
5289
|
*/
|
|
5213
|
-
|
|
5290
|
+
State?: string;
|
|
5291
|
+
/**
|
|
5292
|
+
* 类型
|
|
5293
|
+
*/
|
|
5294
|
+
ApplicationType?: string;
|
|
5295
|
+
/**
|
|
5296
|
+
* 核数*秒
|
|
5297
|
+
*/
|
|
5298
|
+
CoreSeconds?: number;
|
|
5299
|
+
/**
|
|
5300
|
+
* 内存MB*秒
|
|
5301
|
+
*/
|
|
5302
|
+
MemorySeconds?: string;
|
|
5303
|
+
/**
|
|
5304
|
+
* 洞察结果
|
|
5305
|
+
*/
|
|
5306
|
+
Insight?: string;
|
|
5214
5307
|
}
|
|
5215
5308
|
/**
|
|
5216
5309
|
* 登录设置
|
|
@@ -5268,63 +5361,18 @@ export interface DescribeKyuubiQueryInfoRequest {
|
|
|
5268
5361
|
Page: number;
|
|
5269
5362
|
}
|
|
5270
5363
|
/**
|
|
5271
|
-
*
|
|
5364
|
+
* 定时伸缩每月重复任务策略
|
|
5272
5365
|
*/
|
|
5273
|
-
export interface
|
|
5274
|
-
/**
|
|
5275
|
-
* 需要的规格
|
|
5276
|
-
*/
|
|
5277
|
-
Spec?: string;
|
|
5278
|
-
/**
|
|
5279
|
-
* 硬盘类型
|
|
5280
|
-
*/
|
|
5281
|
-
StorageType?: number;
|
|
5282
|
-
/**
|
|
5283
|
-
* 硬盘类型
|
|
5284
|
-
*/
|
|
5285
|
-
DiskType?: string;
|
|
5286
|
-
/**
|
|
5287
|
-
* 系统盘大小
|
|
5288
|
-
*/
|
|
5289
|
-
RootSize?: number;
|
|
5290
|
-
/**
|
|
5291
|
-
* 内存大小
|
|
5292
|
-
*/
|
|
5293
|
-
MemSize?: number;
|
|
5294
|
-
/**
|
|
5295
|
-
* 核心数量
|
|
5296
|
-
*/
|
|
5297
|
-
Cpu?: number;
|
|
5298
|
-
/**
|
|
5299
|
-
* 硬盘大小
|
|
5300
|
-
*/
|
|
5301
|
-
DiskSize?: number;
|
|
5302
|
-
/**
|
|
5303
|
-
* 云盘列表
|
|
5304
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5305
|
-
*/
|
|
5306
|
-
MultiDisks?: Array<MultiDisk>;
|
|
5307
|
-
/**
|
|
5308
|
-
* 磁盘数量
|
|
5309
|
-
*/
|
|
5310
|
-
DiskCnt?: number;
|
|
5366
|
+
export interface MonthRepeatStrategy {
|
|
5311
5367
|
/**
|
|
5312
|
-
*
|
|
5368
|
+
* 重复任务执行的具体时刻,例如"01:02:00"
|
|
5313
5369
|
*/
|
|
5314
|
-
|
|
5370
|
+
ExecuteAtTimeOfDay: string;
|
|
5315
5371
|
/**
|
|
5316
|
-
*
|
|
5372
|
+
* 每月中的天数时间段描述,长度只能为2,例如[2,10]表示每月2-10号。
|
|
5317
5373
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5318
5374
|
*/
|
|
5319
|
-
|
|
5320
|
-
/**
|
|
5321
|
-
* 磁盘数量
|
|
5322
|
-
*/
|
|
5323
|
-
DiskNum?: number;
|
|
5324
|
-
/**
|
|
5325
|
-
* 本地盘的数量
|
|
5326
|
-
*/
|
|
5327
|
-
LocalDiskNum?: number;
|
|
5375
|
+
DaysOfMonthRange: Array<number | bigint>;
|
|
5328
5376
|
}
|
|
5329
5377
|
/**
|
|
5330
5378
|
* ModifyGlobalConfig返回参数结构体
|
|
@@ -6923,6 +6971,36 @@ export interface QuotaEntity {
|
|
|
6923
6971
|
*/
|
|
6924
6972
|
Zone?: string;
|
|
6925
6973
|
}
|
|
6974
|
+
/**
|
|
6975
|
+
* 表格schema信息
|
|
6976
|
+
*/
|
|
6977
|
+
export interface TableSchemaItem {
|
|
6978
|
+
/**
|
|
6979
|
+
* 列标识
|
|
6980
|
+
*/
|
|
6981
|
+
Name?: string;
|
|
6982
|
+
/**
|
|
6983
|
+
* 是否可按该列排序
|
|
6984
|
+
*/
|
|
6985
|
+
Sortable?: boolean;
|
|
6986
|
+
/**
|
|
6987
|
+
* 是否可筛选
|
|
6988
|
+
*/
|
|
6989
|
+
WithFilter?: boolean;
|
|
6990
|
+
/**
|
|
6991
|
+
* 筛选的候选集
|
|
6992
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6993
|
+
*/
|
|
6994
|
+
Candidates?: Array<string>;
|
|
6995
|
+
/**
|
|
6996
|
+
* 是否可点击
|
|
6997
|
+
*/
|
|
6998
|
+
Clickable?: boolean;
|
|
6999
|
+
/**
|
|
7000
|
+
* 展示的名字
|
|
7001
|
+
*/
|
|
7002
|
+
Title?: string;
|
|
7003
|
+
}
|
|
6926
7004
|
/**
|
|
6927
7005
|
* 集群续费实例信息
|
|
6928
7006
|
*/
|
|
@@ -9416,6 +9494,19 @@ export interface DescribeTrinoQueryInfoRequest {
|
|
|
9416
9494
|
*/
|
|
9417
9495
|
Page: number;
|
|
9418
9496
|
}
|
|
9497
|
+
/**
|
|
9498
|
+
* 容器集群用户组信息
|
|
9499
|
+
*/
|
|
9500
|
+
export interface UserAndGroup {
|
|
9501
|
+
/**
|
|
9502
|
+
* 用户名
|
|
9503
|
+
*/
|
|
9504
|
+
UserName: string;
|
|
9505
|
+
/**
|
|
9506
|
+
* 用户组
|
|
9507
|
+
*/
|
|
9508
|
+
UserGroup: string;
|
|
9509
|
+
}
|
|
9419
9510
|
/**
|
|
9420
9511
|
* Emr询价描述
|
|
9421
9512
|
*/
|
|
@@ -1038,6 +1038,7 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
|
|
|
1038
1038
|
**使用条件**
|
|
1039
1039
|
- 在发起合同时,必须将OpenDynamicSignFlow参数设置为true,以确保合同以动态签署方2.0的方式处理,否则默认处理为普通合同。
|
|
1040
1040
|
- 此接口只能在合同处于非终态时调用。一旦合同进入终态(例如:过期、拒签或撤销),将无法通过此接口添加新的签署方。
|
|
1041
|
+
- 此接口补充的动态签署人暂不支持他方企业自动签署。
|
|
1041
1042
|
|
|
1042
1043
|
|
|
1043
1044
|
动态签署方2.0合同<font color="red">不会自动结束(整个合同变为签署完成)</font>,需要通过调用<a href="https://qian.tencent.com/developers/companyApis/operateFlows/ArchiveDynamicFlow/" target="_blank">结束动态签署合同</a>来手动结束签署流程。整体的流程如下图
|
|
@@ -1218,6 +1218,7 @@ httpProfile.setEndpoint("file.test.ess.tencent.cn");
|
|
|
1218
1218
|
**使用条件**
|
|
1219
1219
|
- 在发起合同时,必须将OpenDynamicSignFlow参数设置为true,以确保合同以动态签署方2.0的方式处理,否则默认处理为普通合同。
|
|
1220
1220
|
- 此接口只能在合同处于非终态时调用。一旦合同进入终态(例如:过期、拒签或撤销),将无法通过此接口添加新的签署方。
|
|
1221
|
+
- 此接口补充的动态签署人暂不支持他方企业自动签署。
|
|
1221
1222
|
|
|
1222
1223
|
|
|
1223
1224
|
动态签署方2.0合同<font color="red">不会自动结束(整个合同变为签署完成)</font>,需要通过调用<a href="https://qian.tencent.com/developers/companyApis/operateFlows/ArchiveDynamicFlow/" target="_blank">结束动态签署合同</a>来手动结束签署流程。整体的流程如下图
|
|
@@ -416,6 +416,7 @@ Agent参数中的OpenId 必须为审批者的openId,且链接必须由审批
|
|
|
416
416
|
<li>此接口需要保证:渠道应用已开启:动态签署人2.0能力</li>
|
|
417
417
|
<li>此接口需要保证:合同发起时指定开启了动态合同</li>
|
|
418
418
|
<li>此接口补充的动态签署人传参规则,请参考接口:<a href="https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowByFiles" target="_blank">用PDF文件创建签署流程</a>的签署人传参规则</li>
|
|
419
|
+
<li>此接口补充的动态签署人暂不支持他方企业自动签署。</li>
|
|
419
420
|
</ul>
|
|
420
421
|
*/
|
|
421
422
|
ChannelCreateDynamicFlowApprover(req: ChannelCreateDynamicFlowApproverRequest, cb?: (error: string, rep: ChannelCreateDynamicFlowApproverResponse) => void): Promise<ChannelCreateDynamicFlowApproverResponse>;
|
|
@@ -492,6 +492,7 @@ Agent参数中的OpenId 必须为审批者的openId,且链接必须由审批
|
|
|
492
492
|
<li>此接口需要保证:渠道应用已开启:动态签署人2.0能力</li>
|
|
493
493
|
<li>此接口需要保证:合同发起时指定开启了动态合同</li>
|
|
494
494
|
<li>此接口补充的动态签署人传参规则,请参考接口:<a href="https://qian.tencent.com/developers/partnerApis/startFlows/ChannelCreateFlowByFiles" target="_blank">用PDF文件创建签署流程</a>的签署人传参规则</li>
|
|
495
|
+
<li>此接口补充的动态签署人暂不支持他方企业自动签署。</li>
|
|
495
496
|
</ul>
|
|
496
497
|
*/
|
|
497
498
|
async ChannelCreateDynamicFlowApprover(req, cb) {
|
|
@@ -849,6 +849,22 @@ export interface MQTTInstanceItem {
|
|
|
849
849
|
* 最大订阅数
|
|
850
850
|
*/
|
|
851
851
|
MaxSubscription?: number;
|
|
852
|
+
/**
|
|
853
|
+
* 共享订阅组数最大限制
|
|
854
|
+
*/
|
|
855
|
+
SharedSubscriptionGroupLimit?: number;
|
|
856
|
+
/**
|
|
857
|
+
* 单个共享订阅组TopicFilter数限制
|
|
858
|
+
*/
|
|
859
|
+
MaxTopicFilterPerSharedSubscriptionGroup?: number;
|
|
860
|
+
/**
|
|
861
|
+
* 自动订阅规则条数限制
|
|
862
|
+
*/
|
|
863
|
+
AutoSubscriptionPolicyLimit?: number;
|
|
864
|
+
/**
|
|
865
|
+
* 单条自动订阅规则TopicFilter数限制
|
|
866
|
+
*/
|
|
867
|
+
MaxTopicFilterPerAutoSubscriptionPolicy?: number;
|
|
852
868
|
}
|
|
853
869
|
/**
|
|
854
870
|
* DescribeInstanceList返回参数结构体
|
|
@@ -2060,6 +2076,22 @@ export interface DescribeInstanceResponse {
|
|
|
2060
2076
|
* 授权策略开关
|
|
2061
2077
|
*/
|
|
2062
2078
|
AuthorizationPolicy?: boolean;
|
|
2079
|
+
/**
|
|
2080
|
+
* 共享订阅组数最大限制
|
|
2081
|
+
*/
|
|
2082
|
+
SharedSubscriptionGroupLimit?: number;
|
|
2083
|
+
/**
|
|
2084
|
+
* 单个共享订阅组TopicFilter数限制
|
|
2085
|
+
*/
|
|
2086
|
+
MaxTopicFilterPerSharedSubscriptionGroup?: number;
|
|
2087
|
+
/**
|
|
2088
|
+
* 自动订阅规则条数限制
|
|
2089
|
+
*/
|
|
2090
|
+
AutoSubscriptionPolicyLimit?: number;
|
|
2091
|
+
/**
|
|
2092
|
+
* 单条自动订阅规则TopicFilter数限制
|
|
2093
|
+
*/
|
|
2094
|
+
MaxTopicFilterPerAutoSubscriptionPolicy?: number;
|
|
2063
2095
|
/**
|
|
2064
2096
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2065
2097
|
*/
|
|
@@ -969,11 +969,11 @@ export interface DescribeAgentDealsByCacheRequest {
|
|
|
969
969
|
*/
|
|
970
970
|
Limit: number;
|
|
971
971
|
/**
|
|
972
|
-
*
|
|
972
|
+
* 下单时间范围起始点【*请必传并控制时间范围最大90天,避免出现超时】
|
|
973
973
|
*/
|
|
974
974
|
CreatTimeRangeStart?: string;
|
|
975
975
|
/**
|
|
976
|
-
*
|
|
976
|
+
* 下单时间范围终止点【*请必传并控制时间范围最大90天,避免出现超时】
|
|
977
977
|
*/
|
|
978
978
|
CreatTimeRangeEnd?: string;
|
|
979
979
|
/**
|
|
@@ -2070,6 +2070,7 @@ export interface DescribeLogBackupsRequest {
|
|
|
2070
2070
|
db-instance-id:按照实例ID过滤,类型为string。
|
|
2071
2071
|
db-instance-name:按照实例名过滤,类型为string。
|
|
2072
2072
|
db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
|
2073
|
+
db-instance-status:按实例状态过滤,类型为string。取值参考DBInstance结构的DBInstanceStatus字段。
|
|
2073
2074
|
*/
|
|
2074
2075
|
Filters?: Array<Filter>;
|
|
2075
2076
|
/**
|
|
@@ -5732,6 +5733,7 @@ export interface DescribeBaseBackupsRequest {
|
|
|
5732
5733
|
db-instance-name:按照实例名过滤,类型为string。
|
|
5733
5734
|
db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
|
5734
5735
|
base-backup-id:按照备份集ID过滤,类型为string。
|
|
5736
|
+
db-instance-status:按实例状态过滤,类型为string。取值参考DBInstance结构的DBInstanceStatus字段。
|
|
5735
5737
|
*/
|
|
5736
5738
|
Filters?: Array<Filter>;
|
|
5737
5739
|
/**
|
|
@@ -21,12 +21,18 @@ export declare class Client extends AbstractClient {
|
|
|
21
21
|
*/
|
|
22
22
|
ModifyInstanceEndpoint(req: ModifyInstanceEndpointRequest, cb?: (error: string, rep: ModifyInstanceEndpointResponse) => void): Promise<ModifyInstanceEndpointResponse>;
|
|
23
23
|
/**
|
|
24
|
-
* 查询Topic
|
|
24
|
+
* 查询Topic迁移状态列表。
|
|
25
25
|
|
|
26
26
|
Filters字段为查询过滤器,支持以下条件:
|
|
27
|
-
TopicName
|
|
28
|
-
MigrationStatus 迁移状态,可参考MigratingTopic
|
|
29
|
-
Namespace 命名空间,仅4.x
|
|
27
|
+
* TopicName 主题名称,支持模糊查询
|
|
28
|
+
* MigrationStatus 迁移状态,可参考[MigratingTopic](https://cloud.tencent.com/document/api/1493/96031#MigratingTopic)数据结构
|
|
29
|
+
* Namespace 命名空间,仅4.x集群有效
|
|
30
|
+
|
|
31
|
+
Filters示例:
|
|
32
|
+
[{
|
|
33
|
+
"Name": "TopicName",
|
|
34
|
+
"Values": ["topic-a"]
|
|
35
|
+
}]
|
|
30
36
|
*/
|
|
31
37
|
DescribeMigratingTopicList(req: DescribeMigratingTopicListRequest, cb?: (error: string, rep: DescribeMigratingTopicListResponse) => void): Promise<DescribeMigratingTopicListResponse>;
|
|
32
38
|
/**
|
|
@@ -64,13 +70,19 @@ TopicName,主题名称过滤
|
|
|
64
70
|
*/
|
|
65
71
|
ImportSourceClusterConsumerGroups(req: ImportSourceClusterConsumerGroupsRequest, cb?: (error: string, rep: ImportSourceClusterConsumerGroupsResponse) => void): Promise<ImportSourceClusterConsumerGroupsResponse>;
|
|
66
72
|
/**
|
|
67
|
-
*
|
|
73
|
+
* 用于查询平滑迁移任务列表。
|
|
68
74
|
|
|
69
75
|
查询参数Filters, 支持的字段如下:
|
|
70
|
-
TaskStatus, 任务状态,支持多选
|
|
71
|
-
ConnectionType
|
|
72
|
-
InstanceId,实例ID,精确搜索
|
|
73
|
-
TaskName,任务名称,支持模糊搜索
|
|
76
|
+
* TaskStatus, 任务状态,支持多选
|
|
77
|
+
* ConnectionType,网络连接类型,支持多选,参考[SmoothMigrationTaskItem](https://cloud.tencent.com/document/api/1493/96031#SmoothMigrationTaskItem)的说明
|
|
78
|
+
* InstanceId,实例ID,精确搜索
|
|
79
|
+
* TaskName,任务名称,支持模糊搜索
|
|
80
|
+
|
|
81
|
+
Filters示例:
|
|
82
|
+
[{
|
|
83
|
+
"Name": "InstanceId",
|
|
84
|
+
"Values": ["rmq-1gzecldfg"]
|
|
85
|
+
}]
|
|
74
86
|
*/
|
|
75
87
|
DescribeSmoothMigrationTaskList(req: DescribeSmoothMigrationTaskListRequest, cb?: (error: string, rep: DescribeSmoothMigrationTaskListResponse) => void): Promise<DescribeSmoothMigrationTaskListResponse>;
|
|
76
88
|
/**
|
|
@@ -86,13 +98,19 @@ TaskName,任务名称,支持模糊搜索
|
|
|
86
98
|
*/
|
|
87
99
|
DescribeMQTTProductSKUList(req?: DescribeMQTTProductSKUListRequest, cb?: (error: string, rep: DescribeMQTTProductSKUListResponse) => void): Promise<DescribeMQTTProductSKUListResponse>;
|
|
88
100
|
/**
|
|
89
|
-
* 平滑迁移过程获取源集群group
|
|
101
|
+
* 平滑迁移过程获取源集群group列表接口。
|
|
90
102
|
|
|
91
103
|
Filters字段为查询过滤器,支持以下字段:
|
|
92
|
-
GroupName
|
|
93
|
-
Imported,是否已导入
|
|
94
|
-
ImportStatus
|
|
95
|
-
Namespace
|
|
104
|
+
* GroupName,消费组名称,支持模糊搜索
|
|
105
|
+
* Imported,是否已导入
|
|
106
|
+
* ImportStatus,导入状态,参考[SourceClusterGroupConfig](https://cloud.tencent.com/document/api/1493/96031#SourceClusterGroupConfig)的说明
|
|
107
|
+
* Namespace,命名空间,仅4.x集群有效
|
|
108
|
+
|
|
109
|
+
Filters示例:
|
|
110
|
+
[{
|
|
111
|
+
"Name": "GroupName",
|
|
112
|
+
"Values": ["group-a"]
|
|
113
|
+
}]
|
|
96
114
|
*/
|
|
97
115
|
DescribeSourceClusterGroupList(req: DescribeSourceClusterGroupListRequest, cb?: (error: string, rep: DescribeSourceClusterGroupListResponse) => void): Promise<DescribeSourceClusterGroupListResponse>;
|
|
98
116
|
/**
|
|
@@ -47,12 +47,18 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
47
47
|
return this.request("ModifyInstanceEndpoint", req, cb);
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* 查询Topic
|
|
50
|
+
* 查询Topic迁移状态列表。
|
|
51
51
|
|
|
52
52
|
Filters字段为查询过滤器,支持以下条件:
|
|
53
|
-
TopicName
|
|
54
|
-
MigrationStatus 迁移状态,可参考MigratingTopic
|
|
55
|
-
Namespace 命名空间,仅4.x
|
|
53
|
+
* TopicName 主题名称,支持模糊查询
|
|
54
|
+
* MigrationStatus 迁移状态,可参考[MigratingTopic](https://cloud.tencent.com/document/api/1493/96031#MigratingTopic)数据结构
|
|
55
|
+
* Namespace 命名空间,仅4.x集群有效
|
|
56
|
+
|
|
57
|
+
Filters示例:
|
|
58
|
+
[{
|
|
59
|
+
"Name": "TopicName",
|
|
60
|
+
"Values": ["topic-a"]
|
|
61
|
+
}]
|
|
56
62
|
*/
|
|
57
63
|
async DescribeMigratingTopicList(req, cb) {
|
|
58
64
|
return this.request("DescribeMigratingTopicList", req, cb);
|
|
@@ -108,13 +114,19 @@ TopicName,主题名称过滤
|
|
|
108
114
|
return this.request("ImportSourceClusterConsumerGroups", req, cb);
|
|
109
115
|
}
|
|
110
116
|
/**
|
|
111
|
-
*
|
|
117
|
+
* 用于查询平滑迁移任务列表。
|
|
112
118
|
|
|
113
119
|
查询参数Filters, 支持的字段如下:
|
|
114
|
-
TaskStatus, 任务状态,支持多选
|
|
115
|
-
ConnectionType
|
|
116
|
-
InstanceId,实例ID,精确搜索
|
|
117
|
-
TaskName,任务名称,支持模糊搜索
|
|
120
|
+
* TaskStatus, 任务状态,支持多选
|
|
121
|
+
* ConnectionType,网络连接类型,支持多选,参考[SmoothMigrationTaskItem](https://cloud.tencent.com/document/api/1493/96031#SmoothMigrationTaskItem)的说明
|
|
122
|
+
* InstanceId,实例ID,精确搜索
|
|
123
|
+
* TaskName,任务名称,支持模糊搜索
|
|
124
|
+
|
|
125
|
+
Filters示例:
|
|
126
|
+
[{
|
|
127
|
+
"Name": "InstanceId",
|
|
128
|
+
"Values": ["rmq-1gzecldfg"]
|
|
129
|
+
}]
|
|
118
130
|
*/
|
|
119
131
|
async DescribeSmoothMigrationTaskList(req, cb) {
|
|
120
132
|
return this.request("DescribeSmoothMigrationTaskList", req, cb);
|
|
@@ -138,13 +150,19 @@ TaskName,任务名称,支持模糊搜索
|
|
|
138
150
|
return this.request("DescribeMQTTProductSKUList", req, cb);
|
|
139
151
|
}
|
|
140
152
|
/**
|
|
141
|
-
* 平滑迁移过程获取源集群group
|
|
153
|
+
* 平滑迁移过程获取源集群group列表接口。
|
|
142
154
|
|
|
143
155
|
Filters字段为查询过滤器,支持以下字段:
|
|
144
|
-
GroupName
|
|
145
|
-
Imported,是否已导入
|
|
146
|
-
ImportStatus
|
|
147
|
-
Namespace
|
|
156
|
+
* GroupName,消费组名称,支持模糊搜索
|
|
157
|
+
* Imported,是否已导入
|
|
158
|
+
* ImportStatus,导入状态,参考[SourceClusterGroupConfig](https://cloud.tencent.com/document/api/1493/96031#SourceClusterGroupConfig)的说明
|
|
159
|
+
* Namespace,命名空间,仅4.x集群有效
|
|
160
|
+
|
|
161
|
+
Filters示例:
|
|
162
|
+
[{
|
|
163
|
+
"Name": "GroupName",
|
|
164
|
+
"Values": ["group-a"]
|
|
165
|
+
}]
|
|
148
166
|
*/
|
|
149
167
|
async DescribeSourceClusterGroupList(req, cb) {
|
|
150
168
|
return this.request("DescribeSourceClusterGroupList", req, cb);
|
|
@@ -1316,7 +1316,7 @@ export interface DescribeMQTTClientRequest {
|
|
|
1316
1316
|
*/
|
|
1317
1317
|
export interface DescribeSourceClusterGroupListRequest {
|
|
1318
1318
|
/**
|
|
1319
|
-
* 任务ID,可在[DescribeSmoothMigrationTaskList](https://cloud.tencent.com/document/api/1493/119997)接口返回的[SmoothMigrationTaskItem](https://cloud.tencent.com/document/api/1493/96031#SmoothMigrationTaskItem)
|
|
1319
|
+
* 任务ID,可在[DescribeSmoothMigrationTaskList](https://cloud.tencent.com/document/api/1493/119997)接口返回的[SmoothMigrationTaskItem](https://cloud.tencent.com/document/api/1493/96031#SmoothMigrationTaskItem)或控制台上获得。
|
|
1320
1320
|
|
|
1321
1321
|
*/
|
|
1322
1322
|
TaskId: string;
|
|
@@ -2524,7 +2524,8 @@ export interface RemoveMigratingTopicRequest {
|
|
|
2524
2524
|
*/
|
|
2525
2525
|
TaskId: string;
|
|
2526
2526
|
/**
|
|
2527
|
-
*
|
|
2527
|
+
* 主题名称,可在[DescribeMigratingTopicList](https://cloud.tencent.com/document/api/1493/118007)接口返回的[MigratingTopic](https://cloud.tencent.com/document/api/1493/96031#MigratingTopic)数据结构中获得。
|
|
2528
|
+
|
|
2528
2529
|
*/
|
|
2529
2530
|
TopicName: string;
|
|
2530
2531
|
/**
|