tencentcloud-sdk-nodejs-tsf 4.0.605 → 4.0.617
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 +2502 -0
- package/SERVICE_CHANGELOG.md +2083 -174
- package/package.json +1 -1
- package/products.md +77 -77
- package/src/services/tsf/v20180326/tsf_client.ts +13 -0
- package/src/services/tsf/v20180326/tsf_models.ts +89 -0
- 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
|
@@ -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: HealthCheckSettings;
|
|
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
|
*/
|