tencentcloud-sdk-nodejs 4.0.614 → 4.0.615
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 +229 -0
- package/SERVICE_CHANGELOG.md +286 -157
- package/package.json +1 -1
- package/products.md +21 -21
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_client.ts +1 -1
- package/src/services/ccc/v20200210/ccc_models.ts +2 -2
- package/src/services/cdb/v20170320/cdb_models.ts +24 -14
- package/src/services/ckafka/v20190819/ckafka_models.ts +9 -4
- package/src/services/dlc/v20210125/dlc_client.ts +12 -0
- package/src/services/dlc/v20210125/dlc_models.ts +50 -0
- package/src/services/ess/v20201111/ess_models.ts +7 -0
- package/src/services/essbasic/v20210526/essbasic_models.ts +62 -62
- package/src/services/lighthouse/v20200324/lighthouse_models.ts +2 -2
- package/src/services/live/v20180801/live_client.ts +2 -3
- package/src/services/live/v20180801/live_models.ts +23 -10
- package/src/services/mps/v20190612/mps_client.ts +14 -2
- package/src/services/mps/v20190612/mps_models.ts +69 -34
- package/src/services/partners/v20180321/partners_client.ts +12 -6
- package/src/services/redis/v20180412/redis_models.ts +1 -1
- package/src/services/tcss/v20201101/tcss_client.ts +5 -4
- package/src/services/tcss/v20201101/tcss_models.ts +74 -54
- package/src/services/tsf/v20180326/tsf_client.ts +13 -0
- package/src/services/tsf/v20180326/tsf_models.ts +89 -0
- package/src/services/waf/v20180125/waf_models.ts +1 -1
- package/src/services/wedata/v20210820/wedata_models.ts +3 -3
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +1 -1
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +2 -2
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +22 -14
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +8 -4
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +42 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +6 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +62 -62
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +1 -1
- package/tencentcloud/services/live/v20180801/live_client.d.ts +0 -1
- package/tencentcloud/services/live/v20180801/live_client.js +0 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +20 -8
- package/tencentcloud/services/mps/v20190612/mps_client.d.ts +5 -1
- package/tencentcloud/services/mps/v20190612/mps_client.js +6 -0
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +59 -29
- package/tencentcloud/services/partners/v20180321/partners_client.d.ts +9 -3
- package/tencentcloud/services/partners/v20180321/partners_client.js +9 -3
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +1 -1
- package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +1 -1
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +63 -46
- package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +5 -1
- package/tencentcloud/services/tsf/v20180326/tsf_client.js +6 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +75 -0
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +1 -1
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +3 -3
- package/test/dlc.v20210125.test.js +10 -0
- package/test/mps.v20190612.test.js +10 -0
- package/test/tsf.v20180326.test.js +10 -0
|
@@ -3514,6 +3514,15 @@ export interface CreateUnitRuleWithDetailRespRequest {
|
|
|
3514
3514
|
*/
|
|
3515
3515
|
UnitRuleItemList?: Array<UnitRuleItem>;
|
|
3516
3516
|
}
|
|
3517
|
+
/**
|
|
3518
|
+
* DescribeContainerGroupAttribute请求参数结构体
|
|
3519
|
+
*/
|
|
3520
|
+
export interface DescribeContainerGroupAttributeRequest {
|
|
3521
|
+
/**
|
|
3522
|
+
* 部署组ID
|
|
3523
|
+
*/
|
|
3524
|
+
GroupId: string;
|
|
3525
|
+
}
|
|
3517
3526
|
/**
|
|
3518
3527
|
* DescribeSimpleApplications请求参数结构体
|
|
3519
3528
|
*/
|
|
@@ -5247,6 +5256,59 @@ export interface DescribeApiRateLimitRulesResponse {
|
|
|
5247
5256
|
*/
|
|
5248
5257
|
RequestId?: string;
|
|
5249
5258
|
}
|
|
5259
|
+
/**
|
|
5260
|
+
* 部署组列表-其它字段
|
|
5261
|
+
*/
|
|
5262
|
+
export interface ContainerGroupOther {
|
|
5263
|
+
/**
|
|
5264
|
+
* 实例总数
|
|
5265
|
+
*/
|
|
5266
|
+
InstanceNum: number;
|
|
5267
|
+
/**
|
|
5268
|
+
* 已启动实例总数
|
|
5269
|
+
*/
|
|
5270
|
+
CurrentNum: number;
|
|
5271
|
+
/**
|
|
5272
|
+
* 负载均衡ip
|
|
5273
|
+
*/
|
|
5274
|
+
LbIp: string;
|
|
5275
|
+
/**
|
|
5276
|
+
* Service ip
|
|
5277
|
+
*/
|
|
5278
|
+
ClusterIp: string;
|
|
5279
|
+
/**
|
|
5280
|
+
* 服务状态,请参考后面的的状态定义
|
|
5281
|
+
*/
|
|
5282
|
+
Status: string;
|
|
5283
|
+
/**
|
|
5284
|
+
* 服务状态,请参考后面的的状态定义
|
|
5285
|
+
*/
|
|
5286
|
+
Message: string;
|
|
5287
|
+
/**
|
|
5288
|
+
* 环境变量
|
|
5289
|
+
*/
|
|
5290
|
+
Envs: Array<Env>;
|
|
5291
|
+
/**
|
|
5292
|
+
* Service NodePort
|
|
5293
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5294
|
+
*/
|
|
5295
|
+
NodePort: number;
|
|
5296
|
+
/**
|
|
5297
|
+
* 子网ID
|
|
5298
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5299
|
+
*/
|
|
5300
|
+
SubnetId: string;
|
|
5301
|
+
/**
|
|
5302
|
+
* 健康检查相关字段
|
|
5303
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5304
|
+
*/
|
|
5305
|
+
HealthCheckSettings: Array<HealthCheckSetting>;
|
|
5306
|
+
/**
|
|
5307
|
+
* 服务配置信息是否匹配
|
|
5308
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5309
|
+
*/
|
|
5310
|
+
IsNotEqualServiceConfig: boolean;
|
|
5311
|
+
}
|
|
5250
5312
|
/**
|
|
5251
5313
|
* AddClusterInstances请求参数结构体
|
|
5252
5314
|
*/
|
|
@@ -10802,6 +10864,19 @@ export interface ChangeApiUsableStatusResponse {
|
|
|
10802
10864
|
*/
|
|
10803
10865
|
RequestId?: string;
|
|
10804
10866
|
}
|
|
10867
|
+
/**
|
|
10868
|
+
* DescribeContainerGroupAttribute返回参数结构体
|
|
10869
|
+
*/
|
|
10870
|
+
export interface DescribeContainerGroupAttributeResponse {
|
|
10871
|
+
/**
|
|
10872
|
+
* 部署组列表-其它字段
|
|
10873
|
+
*/
|
|
10874
|
+
Result?: ContainerGroupOther;
|
|
10875
|
+
/**
|
|
10876
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
10877
|
+
*/
|
|
10878
|
+
RequestId?: string;
|
|
10879
|
+
}
|
|
10805
10880
|
/**
|
|
10806
10881
|
* CreateFileConfig返回参数结构体
|
|
10807
10882
|
*/
|
|
@@ -6177,7 +6177,7 @@ export interface DeleteTaskAlarmRegularResponse {
|
|
|
6177
6177
|
* 删除结果(true表示删除成功,false表示删除失败)
|
|
6178
6178
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6179
6179
|
*/
|
|
6180
|
-
Data
|
|
6180
|
+
Data?: boolean;
|
|
6181
6181
|
/**
|
|
6182
6182
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6183
6183
|
*/
|
|
@@ -9931,11 +9931,11 @@ export interface DeleteTaskAlarmRegularRequest {
|
|
|
9931
9931
|
/**
|
|
9932
9932
|
* 任务ID
|
|
9933
9933
|
*/
|
|
9934
|
-
TaskId
|
|
9934
|
+
TaskId?: string;
|
|
9935
9935
|
/**
|
|
9936
9936
|
* 任务类型(201表示实时任务,202表示离线任务)
|
|
9937
9937
|
*/
|
|
9938
|
-
TaskType
|
|
9938
|
+
TaskType?: number;
|
|
9939
9939
|
}
|
|
9940
9940
|
/**
|
|
9941
9941
|
* 对比规则
|
|
@@ -258,6 +258,16 @@ it("dlc.v20210125.DescribeTables", async function () {
|
|
|
258
258
|
}
|
|
259
259
|
})
|
|
260
260
|
|
|
261
|
+
it("dlc.v20210125.ModifySparkAppBatch", async function () {
|
|
262
|
+
try {
|
|
263
|
+
const data = await client.ModifySparkAppBatch({})
|
|
264
|
+
expect(data).to.be.ok
|
|
265
|
+
} catch(error) {
|
|
266
|
+
expect(error.requestId).to.be.ok
|
|
267
|
+
expect(error.code).to.be.ok
|
|
268
|
+
}
|
|
269
|
+
})
|
|
270
|
+
|
|
261
271
|
it("dlc.v20210125.AlterDMSPartition", async function () {
|
|
262
272
|
try {
|
|
263
273
|
const data = await client.AlterDMSPartition({})
|
|
@@ -868,6 +868,16 @@ it("mps.v20190612.DisableSchedule", async function () {
|
|
|
868
868
|
}
|
|
869
869
|
})
|
|
870
870
|
|
|
871
|
+
it("mps.v20190612.CreateStreamLinkInput", async function () {
|
|
872
|
+
try {
|
|
873
|
+
const data = await client.CreateStreamLinkInput({})
|
|
874
|
+
expect(data).to.be.ok
|
|
875
|
+
} catch(error) {
|
|
876
|
+
expect(error.requestId).to.be.ok
|
|
877
|
+
expect(error.code).to.be.ok
|
|
878
|
+
}
|
|
879
|
+
})
|
|
880
|
+
|
|
871
881
|
it("mps.v20190612.ModifyContentReviewTemplate", async function () {
|
|
872
882
|
try {
|
|
873
883
|
const data = await client.ModifyContentReviewTemplate({})
|
|
@@ -1168,6 +1168,16 @@ it("tsf.v20180326.RedoTask", async function () {
|
|
|
1168
1168
|
}
|
|
1169
1169
|
})
|
|
1170
1170
|
|
|
1171
|
+
it("tsf.v20180326.DescribeContainerGroupAttribute", async function () {
|
|
1172
|
+
try {
|
|
1173
|
+
const data = await client.DescribeContainerGroupAttribute({})
|
|
1174
|
+
expect(data).to.be.ok
|
|
1175
|
+
} catch(error) {
|
|
1176
|
+
expect(error.requestId).to.be.ok
|
|
1177
|
+
expect(error.code).to.be.ok
|
|
1178
|
+
}
|
|
1179
|
+
})
|
|
1180
|
+
|
|
1171
1181
|
it("tsf.v20180326.DescribePkgs", async function () {
|
|
1172
1182
|
try {
|
|
1173
1183
|
const data = await client.DescribePkgs({})
|