tencentcloud-sdk-nodejs-tem 4.0.464 → 4.0.469
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 +848 -0
- package/README.md +6 -4
- package/SERVICE_CHANGELOG.md +1065 -683
- package/package.json +1 -1
- package/products.md +44 -44
- package/src/services/tem/v20210701/tem_client.ts +1 -0
- package/src/services/tem/v20210701/tem_models.ts +257 -0
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +214 -0
|
@@ -160,6 +160,19 @@ export interface DestroyLogConfigResponse {
|
|
|
160
160
|
*/
|
|
161
161
|
RequestId?: string;
|
|
162
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* 查询过滤器
|
|
165
|
+
*/
|
|
166
|
+
export interface QueryFilter {
|
|
167
|
+
/**
|
|
168
|
+
* 查询字段名称
|
|
169
|
+
*/
|
|
170
|
+
Name?: string;
|
|
171
|
+
/**
|
|
172
|
+
* 查询字段值
|
|
173
|
+
*/
|
|
174
|
+
Value?: Array<string>;
|
|
175
|
+
}
|
|
163
176
|
/**
|
|
164
177
|
* ResumeDeployApplication返回参数结构体
|
|
165
178
|
*/
|
|
@@ -278,6 +291,11 @@ export interface DeployServicePodDetail {
|
|
|
278
291
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
279
292
|
*/
|
|
280
293
|
Webshell?: string;
|
|
294
|
+
/**
|
|
295
|
+
* 状态
|
|
296
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
297
|
+
*/
|
|
298
|
+
Status?: string;
|
|
281
299
|
}
|
|
282
300
|
/**
|
|
283
301
|
* 日志输出配置
|
|
@@ -603,6 +621,10 @@ export interface DescribeEnvironmentsRequest {
|
|
|
603
621
|
* 来源source
|
|
604
622
|
*/
|
|
605
623
|
SourceChannel?: number;
|
|
624
|
+
/**
|
|
625
|
+
* 查询过滤器
|
|
626
|
+
*/
|
|
627
|
+
Filters?: Array<QueryFilter>;
|
|
606
628
|
}
|
|
607
629
|
/**
|
|
608
630
|
* LogConfig 列表结果
|
|
@@ -688,6 +710,36 @@ export interface ServiceVersionBrief {
|
|
|
688
710
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
689
711
|
*/
|
|
690
712
|
UnderDeploying: boolean;
|
|
713
|
+
/**
|
|
714
|
+
* 分批次部署状态
|
|
715
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
716
|
+
*/
|
|
717
|
+
BatchDeployStatus: string;
|
|
718
|
+
/**
|
|
719
|
+
* 可用区
|
|
720
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
721
|
+
*/
|
|
722
|
+
Zones: Array<string>;
|
|
723
|
+
/**
|
|
724
|
+
* 节点信息
|
|
725
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
726
|
+
*/
|
|
727
|
+
NodeInfos: Array<NodeInfo>;
|
|
728
|
+
/**
|
|
729
|
+
* 实例信息
|
|
730
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
731
|
+
*/
|
|
732
|
+
PodList: DescribeRunPodPage;
|
|
733
|
+
/**
|
|
734
|
+
* 工作负载信息
|
|
735
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
736
|
+
*/
|
|
737
|
+
WorkloadInfo: WorkloadInfo;
|
|
738
|
+
/**
|
|
739
|
+
* 创建日期
|
|
740
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
741
|
+
*/
|
|
742
|
+
CreateDate: string;
|
|
691
743
|
}
|
|
692
744
|
/**
|
|
693
745
|
* CreateEnvironment请求参数结构体
|
|
@@ -721,6 +773,10 @@ export interface CreateEnvironmentRequest {
|
|
|
721
773
|
* 是否开启tsw服务
|
|
722
774
|
*/
|
|
723
775
|
EnableTswTraceService?: boolean;
|
|
776
|
+
/**
|
|
777
|
+
* 标签
|
|
778
|
+
*/
|
|
779
|
+
Tags?: Array<Tag>;
|
|
724
780
|
}
|
|
725
781
|
/**
|
|
726
782
|
* node信息
|
|
@@ -962,6 +1018,11 @@ export interface ServicePage {
|
|
|
962
1018
|
* 页数
|
|
963
1019
|
*/
|
|
964
1020
|
Pages: number;
|
|
1021
|
+
/**
|
|
1022
|
+
* 当前条数
|
|
1023
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1024
|
+
*/
|
|
1025
|
+
Current?: number;
|
|
965
1026
|
}
|
|
966
1027
|
/**
|
|
967
1028
|
* 版本信息
|
|
@@ -1314,6 +1375,71 @@ export interface TemServiceVersionInfo {
|
|
|
1314
1375
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1315
1376
|
*/
|
|
1316
1377
|
EnableMetrics?: number;
|
|
1378
|
+
/**
|
|
1379
|
+
* 用户AppId
|
|
1380
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1381
|
+
*/
|
|
1382
|
+
AppId?: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* 用户SubAccountUin
|
|
1385
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1386
|
+
*/
|
|
1387
|
+
SubAccountUin?: string;
|
|
1388
|
+
/**
|
|
1389
|
+
* 用户Uin
|
|
1390
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1391
|
+
*/
|
|
1392
|
+
Uin?: string;
|
|
1393
|
+
/**
|
|
1394
|
+
* 地域
|
|
1395
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1396
|
+
*/
|
|
1397
|
+
Region?: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* 应用分组ID
|
|
1400
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1401
|
+
*/
|
|
1402
|
+
GroupId?: string;
|
|
1403
|
+
/**
|
|
1404
|
+
* 是否启用注册中心
|
|
1405
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1406
|
+
*/
|
|
1407
|
+
EnableRegistry?: number;
|
|
1408
|
+
/**
|
|
1409
|
+
* 弹性伸缩数组
|
|
1410
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1411
|
+
*/
|
|
1412
|
+
AutoscalerList?: Array<Autoscaler>;
|
|
1413
|
+
/**
|
|
1414
|
+
* 修改人
|
|
1415
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1416
|
+
*/
|
|
1417
|
+
Modifier?: string;
|
|
1418
|
+
/**
|
|
1419
|
+
* 创建人
|
|
1420
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1421
|
+
*/
|
|
1422
|
+
Creator?: string;
|
|
1423
|
+
/**
|
|
1424
|
+
* 部署策略
|
|
1425
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1426
|
+
*/
|
|
1427
|
+
DeployStrategyConf?: DeployStrategyConf;
|
|
1428
|
+
/**
|
|
1429
|
+
* 实例列表
|
|
1430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1431
|
+
*/
|
|
1432
|
+
PodList?: DescribeRunPodPage;
|
|
1433
|
+
/**
|
|
1434
|
+
* 发布时配置是否有修改
|
|
1435
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1436
|
+
*/
|
|
1437
|
+
ConfEdited?: boolean;
|
|
1438
|
+
/**
|
|
1439
|
+
* 标签
|
|
1440
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1441
|
+
*/
|
|
1442
|
+
Tags?: Array<Tag>;
|
|
1317
1443
|
}
|
|
1318
1444
|
/**
|
|
1319
1445
|
* 端口映射详细信息结构体
|
|
@@ -1726,6 +1852,36 @@ export interface RunVersionPod {
|
|
|
1726
1852
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1727
1853
|
*/
|
|
1728
1854
|
ContainerState: string;
|
|
1855
|
+
/**
|
|
1856
|
+
* 实例所在节点信息
|
|
1857
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1858
|
+
*/
|
|
1859
|
+
NodeInfo: NodeInfo;
|
|
1860
|
+
/**
|
|
1861
|
+
* 启动时间
|
|
1862
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1863
|
+
*/
|
|
1864
|
+
StartTime: string;
|
|
1865
|
+
/**
|
|
1866
|
+
* 是否健康
|
|
1867
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1868
|
+
*/
|
|
1869
|
+
Unhealthy: boolean;
|
|
1870
|
+
/**
|
|
1871
|
+
* 不健康时的提示信息
|
|
1872
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1873
|
+
*/
|
|
1874
|
+
UnhealthyWarningMsg: string;
|
|
1875
|
+
/**
|
|
1876
|
+
* 版本ID
|
|
1877
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1878
|
+
*/
|
|
1879
|
+
VersionId: string;
|
|
1880
|
+
/**
|
|
1881
|
+
* 应用名称
|
|
1882
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1883
|
+
*/
|
|
1884
|
+
ApplicationName: string;
|
|
1729
1885
|
}
|
|
1730
1886
|
/**
|
|
1731
1887
|
* CreateResource返回参数结构体
|
|
@@ -2285,6 +2441,11 @@ export interface TemService {
|
|
|
2285
2441
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2286
2442
|
*/
|
|
2287
2443
|
EnableTracing: number;
|
|
2444
|
+
/**
|
|
2445
|
+
* 标签
|
|
2446
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2447
|
+
*/
|
|
2448
|
+
Tags: Array<Tag>;
|
|
2288
2449
|
}
|
|
2289
2450
|
/**
|
|
2290
2451
|
* ingress rule 配置
|
|
@@ -3109,6 +3270,10 @@ export interface DescribeApplicationsRequest {
|
|
|
3109
3270
|
* 搜索关键字
|
|
3110
3271
|
*/
|
|
3111
3272
|
Keyword?: string;
|
|
3273
|
+
/**
|
|
3274
|
+
* 查询过滤器
|
|
3275
|
+
*/
|
|
3276
|
+
Filters?: Array<QueryFilter>;
|
|
3112
3277
|
}
|
|
3113
3278
|
/**
|
|
3114
3279
|
* DescribeApplicationInfo请求参数结构体
|
|
@@ -3188,6 +3353,10 @@ export interface CreateApplicationRequest {
|
|
|
3188
3353
|
* 使用默认镜像服务额外参数
|
|
3189
3354
|
*/
|
|
3190
3355
|
UseDefaultImageServiceParameters?: UseDefaultRepoParameters;
|
|
3356
|
+
/**
|
|
3357
|
+
* 标签
|
|
3358
|
+
*/
|
|
3359
|
+
Tags?: Array<Tag>;
|
|
3191
3360
|
}
|
|
3192
3361
|
/**
|
|
3193
3362
|
* 命名空间状态
|
|
@@ -3270,6 +3439,11 @@ export interface CreateApplicationServiceRequest {
|
|
|
3270
3439
|
* ModifyApplicationReplicas返回参数结构体
|
|
3271
3440
|
*/
|
|
3272
3441
|
export interface ModifyApplicationReplicasResponse {
|
|
3442
|
+
/**
|
|
3443
|
+
* 是否成功
|
|
3444
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3445
|
+
*/
|
|
3446
|
+
Result: boolean;
|
|
3273
3447
|
/**
|
|
3274
3448
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3275
3449
|
*/
|
|
@@ -3395,6 +3569,41 @@ export interface WorkloadInfo {
|
|
|
3395
3569
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3396
3570
|
*/
|
|
3397
3571
|
ApplicationName: string;
|
|
3572
|
+
/**
|
|
3573
|
+
* 版本名称
|
|
3574
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3575
|
+
*/
|
|
3576
|
+
VersionName: string;
|
|
3577
|
+
/**
|
|
3578
|
+
* Ready实例数
|
|
3579
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3580
|
+
*/
|
|
3581
|
+
ReadyReplicas: number;
|
|
3582
|
+
/**
|
|
3583
|
+
* 实例数
|
|
3584
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3585
|
+
*/
|
|
3586
|
+
Replicas: number;
|
|
3587
|
+
/**
|
|
3588
|
+
* Updated实例数
|
|
3589
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3590
|
+
*/
|
|
3591
|
+
UpdatedReplicas: number;
|
|
3592
|
+
/**
|
|
3593
|
+
* UpdatedReady实例数
|
|
3594
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3595
|
+
*/
|
|
3596
|
+
UpdatedReadyReplicas: number;
|
|
3597
|
+
/**
|
|
3598
|
+
* 更新版本
|
|
3599
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3600
|
+
*/
|
|
3601
|
+
UpdateRevision: string;
|
|
3602
|
+
/**
|
|
3603
|
+
* 当前版本
|
|
3604
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3605
|
+
*/
|
|
3606
|
+
CurrentRevision: string;
|
|
3398
3607
|
}
|
|
3399
3608
|
/**
|
|
3400
3609
|
* Ingress Rule Path 配置
|
|
@@ -3456,6 +3665,11 @@ export interface NamespaceInfo {
|
|
|
3456
3665
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3457
3666
|
*/
|
|
3458
3667
|
Locked: number;
|
|
3668
|
+
/**
|
|
3669
|
+
* 标签
|
|
3670
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3671
|
+
*/
|
|
3672
|
+
Tags: Array<Tag>;
|
|
3459
3673
|
}
|
|
3460
3674
|
/**
|
|
3461
3675
|
* DescribeLogConfig返回参数结构体
|