tencentcloud-sdk-nodejs-tem 4.0.449 → 4.0.451

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.
@@ -88,6 +88,27 @@ export interface ModifyIngressResponse {
88
88
  */
89
89
  RequestId?: string;
90
90
  }
91
+ /**
92
+ * DeleteApplicationService请求参数结构体
93
+ */
94
+ export interface DeleteApplicationServiceRequest {
95
+ /**
96
+ * 服务id
97
+ */
98
+ ApplicationId?: string;
99
+ /**
100
+ * 来源渠道
101
+ */
102
+ SourceChannel?: number;
103
+ /**
104
+ * 环境ID
105
+ */
106
+ EnvironmentId?: string;
107
+ /**
108
+ * 访问方式服务名
109
+ */
110
+ ServiceName?: string;
111
+ }
91
112
  /**
92
113
  * RestartApplicationPod请求参数结构体
93
114
  */
@@ -495,29 +516,33 @@ export interface RevertDeployApplicationResponse {
495
516
  RequestId?: string;
496
517
  }
497
518
  /**
498
- * 弹性伸缩配置
519
+ * 分批发布策略配置
499
520
  */
500
- export interface EsInfo {
521
+ export interface DeployStrategyConf {
501
522
  /**
502
- * 最小实例数
523
+ * 总分批数
503
524
  */
504
- MinAliveInstances: number;
525
+ TotalBatchCount?: number;
505
526
  /**
506
- * 最大实例数
527
+ * beta分批实例数
507
528
  */
508
- MaxAliveInstances: number;
529
+ BetaBatchNum?: number;
509
530
  /**
510
- * 弹性策略,1:cpu,2:内存
531
+ * 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的,3-首次发布
511
532
  */
512
- EsStrategy: number;
533
+ DeployStrategyType?: number;
513
534
  /**
514
- * 弹性扩缩容条件值
535
+ * 每批暂停间隔
515
536
  */
516
- Threshold: number;
537
+ BatchInterval?: number;
517
538
  /**
518
- * 版本Id
539
+ * 最小可用实例数
519
540
  */
520
- VersionId?: string;
541
+ MinAvailable?: number;
542
+ /**
543
+ * 是否强制发布
544
+ */
545
+ Force?: boolean;
521
546
  }
522
547
  /**
523
548
  * DescribeApplications返回参数结构体
@@ -533,66 +558,29 @@ export interface DescribeApplicationsResponse {
533
558
  RequestId?: string;
534
559
  }
535
560
  /**
536
- * Ingress 配置
561
+ * CreateCosToken请求参数结构体
537
562
  */
538
- export interface IngressInfo {
539
- /**
540
- * 环境ID
541
- 注意:此字段可能返回 null,表示取不到有效值。
542
- */
543
- EnvironmentId: string;
563
+ export interface CreateCosTokenRequest {
544
564
  /**
545
- * 环境namespace
565
+ * 应用ID
546
566
  */
547
- ClusterNamespace: string;
567
+ ApplicationId: string;
548
568
  /**
549
- * ip version
569
+ * 包名
550
570
  */
551
- AddressIPVersion: string;
571
+ PkgName: string;
552
572
  /**
553
- * ingress name
573
+ * optType 1上传 2查询
554
574
  */
555
- IngressName: string;
575
+ OptType: number;
556
576
  /**
557
- * rules 配置
577
+ * 来源 channel
558
578
  */
559
- Rules: Array<IngressRule>;
560
- /**
561
- * clb ID
562
- 注意:此字段可能返回 null,表示取不到有效值。
563
- */
564
- ClbId?: string;
565
- /**
566
- * tls 配置
567
- 注意:此字段可能返回 null,表示取不到有效值。
568
- */
569
- Tls?: Array<IngressTls>;
570
- /**
571
- * 环境集群ID
572
- 注意:此字段可能返回 null,表示取不到有效值。
573
- */
574
- ClusterId?: string;
575
- /**
576
- * clb ip
577
- 注意:此字段可能返回 null,表示取不到有效值。
578
- */
579
- Vip?: string;
580
- /**
581
- * 创建时间
582
- 注意:此字段可能返回 null,表示取不到有效值。
583
- */
584
- CreateTime?: string;
579
+ SourceChannel?: number;
585
580
  /**
586
- * 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
581
+ * 充当deployVersion入参
587
582
  */
588
- Mixed?: boolean;
589
- /**
590
- * 重定向模式,可选值:
591
- - AUTO(自动重定向http到https)
592
- - NONE(不使用重定向)
593
- 注意:此字段可能返回 null,表示取不到有效值。
594
- */
595
- RewriteType?: string;
583
+ TimeVersion?: string;
596
584
  }
597
585
  /**
598
586
  * DescribeEnvironments请求参数结构体
@@ -758,6 +746,19 @@ export interface NodeInfo {
758
746
  */
759
747
  Cidr: string;
760
748
  }
749
+ /**
750
+ * DescribeApplicationServiceList返回参数结构体
751
+ */
752
+ export interface DescribeApplicationServiceListResponse {
753
+ /**
754
+ * 应用 EKS Service 列表
755
+ */
756
+ Result: EksService;
757
+ /**
758
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
759
+ */
760
+ RequestId?: string;
761
+ }
761
762
  /**
762
763
  * DescribeLogConfig请求参数结构体
763
764
  */
@@ -864,33 +865,29 @@ export interface DescribeEnvironmentStatusResponse {
864
865
  RequestId?: string;
865
866
  }
866
867
  /**
867
- * 分批发布策略配置
868
+ * 弹性伸缩配置
868
869
  */
869
- export interface DeployStrategyConf {
870
- /**
871
- * 总分批数
872
- */
873
- TotalBatchCount?: number;
870
+ export interface EsInfo {
874
871
  /**
875
- * beta分批实例数
872
+ * 最小实例数
876
873
  */
877
- BetaBatchNum?: number;
874
+ MinAliveInstances: number;
878
875
  /**
879
- * 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的,3-首次发布
876
+ * 最大实例数
880
877
  */
881
- DeployStrategyType?: number;
878
+ MaxAliveInstances: number;
882
879
  /**
883
- * 每批暂停间隔
880
+ * 弹性策略,1:cpu,2:内存
884
881
  */
885
- BatchInterval?: number;
882
+ EsStrategy: number;
886
883
  /**
887
- * 最小可用实例数
884
+ * 弹性扩缩容条件值
888
885
  */
889
- MinAvailable?: number;
886
+ Threshold: number;
890
887
  /**
891
- * 是否强制发布
888
+ * 版本Id
892
889
  */
893
- Force?: boolean;
890
+ VersionId?: string;
894
891
  }
895
892
  /**
896
893
  * DescribeApplicationPods返回参数结构体
@@ -1369,29 +1366,66 @@ export interface ServicePortMapping {
1369
1366
  PortMappingItemList?: Array<ServicePortMappingItem>;
1370
1367
  }
1371
1368
  /**
1372
- * CreateCosToken请求参数结构体
1369
+ * Ingress 配置
1373
1370
  */
1374
- export interface CreateCosTokenRequest {
1371
+ export interface IngressInfo {
1375
1372
  /**
1376
- * 应用ID
1373
+ * 环境ID
1374
+ 注意:此字段可能返回 null,表示取不到有效值。
1375
+ */
1376
+ EnvironmentId: string;
1377
+ /**
1378
+ * 环境namespace
1377
1379
  */
1378
- ApplicationId: string;
1380
+ ClusterNamespace: string;
1379
1381
  /**
1380
- * 包名
1382
+ * ip version
1381
1383
  */
1382
- PkgName: string;
1384
+ AddressIPVersion: string;
1383
1385
  /**
1384
- * optType 1上传 2查询
1386
+ * ingress name
1385
1387
  */
1386
- OptType: number;
1388
+ IngressName: string;
1387
1389
  /**
1388
- * 来源 channel
1390
+ * rules 配置
1389
1391
  */
1390
- SourceChannel?: number;
1392
+ Rules: Array<IngressRule>;
1391
1393
  /**
1392
- * 充当deployVersion入参
1394
+ * clb ID
1395
+ 注意:此字段可能返回 null,表示取不到有效值。
1396
+ */
1397
+ ClbId?: string;
1398
+ /**
1399
+ * tls 配置
1400
+ 注意:此字段可能返回 null,表示取不到有效值。
1401
+ */
1402
+ Tls?: Array<IngressTls>;
1403
+ /**
1404
+ * 环境集群ID
1405
+ 注意:此字段可能返回 null,表示取不到有效值。
1406
+ */
1407
+ ClusterId?: string;
1408
+ /**
1409
+ * clb ip
1410
+ 注意:此字段可能返回 null,表示取不到有效值。
1411
+ */
1412
+ Vip?: string;
1413
+ /**
1414
+ * 创建时间
1415
+ 注意:此字段可能返回 null,表示取不到有效值。
1416
+ */
1417
+ CreateTime?: string;
1418
+ /**
1419
+ * 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
1393
1420
  */
1394
- TimeVersion?: string;
1421
+ Mixed?: boolean;
1422
+ /**
1423
+ * 重定向模式,可选值:
1424
+ - AUTO(自动重定向http到https)
1425
+ - NONE(不使用重定向)
1426
+ 注意:此字段可能返回 null,表示取不到有效值。
1427
+ */
1428
+ RewriteType?: string;
1395
1429
  }
1396
1430
  /**
1397
1431
  * ModifyApplicationAutoscaler请求参数结构体
@@ -1610,6 +1644,19 @@ export interface DescribeApplicationsStatusRequest {
1610
1644
  */
1611
1645
  EnvironmentId?: string;
1612
1646
  }
1647
+ /**
1648
+ * DescribeIngress返回参数结构体
1649
+ */
1650
+ export interface DescribeIngressResponse {
1651
+ /**
1652
+ * Ingress 规则配置
1653
+ */
1654
+ Result: IngressInfo;
1655
+ /**
1656
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1657
+ */
1658
+ RequestId?: string;
1659
+ }
1613
1660
  /**
1614
1661
  * 应用实例
1615
1662
  */
@@ -2267,6 +2314,23 @@ export interface CronHorizontalAutoscaler {
2267
2314
  */
2268
2315
  Priority?: number;
2269
2316
  }
2317
+ /**
2318
+ * DescribeApplicationServiceList请求参数结构体
2319
+ */
2320
+ export interface DescribeApplicationServiceListRequest {
2321
+ /**
2322
+ * namespace id
2323
+ */
2324
+ EnvironmentId: string;
2325
+ /**
2326
+ * 服务ID
2327
+ */
2328
+ ApplicationId: string;
2329
+ /**
2330
+ * xx
2331
+ */
2332
+ SourceChannel?: number;
2333
+ }
2270
2334
  /**
2271
2335
  * DescribeDeployApplicationDetail返回参数结构体
2272
2336
  */
@@ -2397,6 +2461,20 @@ export interface CreateApplicationAutoscalerRequest {
2397
2461
  */
2398
2462
  Autoscaler?: Autoscaler;
2399
2463
  }
2464
+ /**
2465
+ * DeleteApplicationService返回参数结构体
2466
+ */
2467
+ export interface DeleteApplicationServiceResponse {
2468
+ /**
2469
+ * 是否成功
2470
+ 注意:此字段可能返回 null,表示取不到有效值。
2471
+ */
2472
+ Result: boolean;
2473
+ /**
2474
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2475
+ */
2476
+ RequestId?: string;
2477
+ }
2400
2478
  /**
2401
2479
  * 配置
2402
2480
  */
@@ -2495,6 +2573,31 @@ export interface DescribeConfigDataListResponse {
2495
2573
  */
2496
2574
  RequestId?: string;
2497
2575
  }
2576
+ /**
2577
+ * ModifyApplicationService请求参数结构体
2578
+ */
2579
+ export interface ModifyApplicationServiceRequest {
2580
+ /**
2581
+ * 服务id
2582
+ */
2583
+ ApplicationId: string;
2584
+ /**
2585
+ * 环境ID
2586
+ */
2587
+ EnvironmentId: string;
2588
+ /**
2589
+ * 来源渠道
2590
+ */
2591
+ SourceChannel?: number;
2592
+ /**
2593
+ * 全量访问方式设置
2594
+ */
2595
+ Service?: EksService;
2596
+ /**
2597
+ * 单条访问方式设置
2598
+ */
2599
+ Data?: ServicePortMapping;
2600
+ }
2498
2601
  /**
2499
2602
  * DescribePagedLogConfigList返回参数结构体
2500
2603
  */
@@ -3097,6 +3200,27 @@ export interface DescribeRunPodPage {
3097
3200
  */
3098
3201
  PodList: Array<RunVersionPod>;
3099
3202
  }
3203
+ /**
3204
+ * CreateApplicationService请求参数结构体
3205
+ */
3206
+ export interface CreateApplicationServiceRequest {
3207
+ /**
3208
+ * 服务id
3209
+ */
3210
+ ApplicationId: string;
3211
+ /**
3212
+ * 环境ID
3213
+ */
3214
+ EnvironmentId: string;
3215
+ /**
3216
+ * 来源渠道
3217
+ */
3218
+ SourceChannel?: number;
3219
+ /**
3220
+ * 访问方式详情
3221
+ */
3222
+ Service?: ServicePortMapping;
3223
+ }
3100
3224
  /**
3101
3225
  * ModifyApplicationReplicas返回参数结构体
3102
3226
  */
@@ -3199,13 +3323,14 @@ export interface IngressRuleBackend {
3199
3323
  ServicePort: number;
3200
3324
  }
3201
3325
  /**
3202
- * DescribeIngress返回参数结构体
3326
+ * CreateApplicationService返回参数结构体
3203
3327
  */
3204
- export interface DescribeIngressResponse {
3328
+ export interface CreateApplicationServiceResponse {
3205
3329
  /**
3206
- * Ingress 规则配置
3207
- */
3208
- Result: IngressInfo;
3330
+ * 是否成功
3331
+ 注意:此字段可能返回 null,表示取不到有效值。
3332
+ */
3333
+ Result: boolean;
3209
3334
  /**
3210
3335
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3211
3336
  */
@@ -3371,6 +3496,20 @@ export interface HorizontalAutoscaler {
3371
3496
  */
3372
3497
  Enabled?: boolean;
3373
3498
  }
3499
+ /**
3500
+ * ModifyApplicationService返回参数结构体
3501
+ */
3502
+ export interface ModifyApplicationServiceResponse {
3503
+ /**
3504
+ * 是否成功
3505
+ 注意:此字段可能返回 null,表示取不到有效值。
3506
+ */
3507
+ Result: boolean;
3508
+ /**
3509
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3510
+ */
3511
+ RequestId?: string;
3512
+ }
3374
3513
  /**
3375
3514
  * 服务端口映射
3376
3515
  */