tencentcloud-sdk-nodejs-tem 4.0.450 → 4.0.452
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 +263 -0
- package/SERVICE_CHANGELOG.md +271 -70
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/services/tem/v20210701/tem_client.ts +60 -11
- package/src/services/tem/v20210701/tem_models.ts +318 -102
- package/tencentcloud/services/tem/v20210701/tem_client.d.ts +19 -3
- package/tencentcloud/services/tem/v20210701/tem_client.js +27 -3
- package/tencentcloud/services/tem/v20210701/tem_models.d.ts +278 -94
|
@@ -88,6 +88,12 @@ export interface NamespacePage {
|
|
|
88
88
|
* 页数
|
|
89
89
|
*/
|
|
90
90
|
Pages: number
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* 当前条目
|
|
94
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
95
|
+
*/
|
|
96
|
+
Current: number
|
|
91
97
|
}
|
|
92
98
|
|
|
93
99
|
/**
|
|
@@ -121,6 +127,31 @@ export interface ModifyIngressResponse {
|
|
|
121
127
|
RequestId?: string
|
|
122
128
|
}
|
|
123
129
|
|
|
130
|
+
/**
|
|
131
|
+
* DeleteApplicationService请求参数结构体
|
|
132
|
+
*/
|
|
133
|
+
export interface DeleteApplicationServiceRequest {
|
|
134
|
+
/**
|
|
135
|
+
* 服务id
|
|
136
|
+
*/
|
|
137
|
+
ApplicationId?: string
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* 来源渠道
|
|
141
|
+
*/
|
|
142
|
+
SourceChannel?: number
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* 环境ID
|
|
146
|
+
*/
|
|
147
|
+
EnvironmentId?: string
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* 访问方式服务名
|
|
151
|
+
*/
|
|
152
|
+
ServiceName?: string
|
|
153
|
+
}
|
|
154
|
+
|
|
124
155
|
/**
|
|
125
156
|
* RestartApplicationPod请求参数结构体
|
|
126
157
|
*/
|
|
@@ -600,33 +631,38 @@ export interface RevertDeployApplicationResponse {
|
|
|
600
631
|
}
|
|
601
632
|
|
|
602
633
|
/**
|
|
603
|
-
*
|
|
634
|
+
* 分批发布策略配置
|
|
604
635
|
*/
|
|
605
|
-
export interface
|
|
636
|
+
export interface DeployStrategyConf {
|
|
606
637
|
/**
|
|
607
|
-
*
|
|
638
|
+
* 总分批数
|
|
608
639
|
*/
|
|
609
|
-
|
|
640
|
+
TotalBatchCount?: number
|
|
610
641
|
|
|
611
642
|
/**
|
|
612
|
-
*
|
|
643
|
+
* beta分批实例数
|
|
613
644
|
*/
|
|
614
|
-
|
|
645
|
+
BetaBatchNum?: number
|
|
615
646
|
|
|
616
647
|
/**
|
|
617
|
-
*
|
|
648
|
+
* 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的,3-首次发布
|
|
618
649
|
*/
|
|
619
|
-
|
|
650
|
+
DeployStrategyType?: number
|
|
620
651
|
|
|
621
652
|
/**
|
|
622
|
-
*
|
|
653
|
+
* 每批暂停间隔
|
|
623
654
|
*/
|
|
624
|
-
|
|
655
|
+
BatchInterval?: number
|
|
625
656
|
|
|
626
657
|
/**
|
|
627
|
-
*
|
|
658
|
+
* 最小可用实例数
|
|
628
659
|
*/
|
|
629
|
-
|
|
660
|
+
MinAvailable?: number
|
|
661
|
+
|
|
662
|
+
/**
|
|
663
|
+
* 是否强制发布
|
|
664
|
+
*/
|
|
665
|
+
Force?: boolean
|
|
630
666
|
}
|
|
631
667
|
|
|
632
668
|
/**
|
|
@@ -645,77 +681,33 @@ export interface DescribeApplicationsResponse {
|
|
|
645
681
|
}
|
|
646
682
|
|
|
647
683
|
/**
|
|
648
|
-
*
|
|
684
|
+
* CreateCosToken请求参数结构体
|
|
649
685
|
*/
|
|
650
|
-
export interface
|
|
651
|
-
/**
|
|
652
|
-
* 环境ID
|
|
653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
654
|
-
*/
|
|
655
|
-
EnvironmentId: string
|
|
656
|
-
|
|
686
|
+
export interface CreateCosTokenRequest {
|
|
657
687
|
/**
|
|
658
|
-
*
|
|
688
|
+
* 应用ID
|
|
659
689
|
*/
|
|
660
|
-
|
|
690
|
+
ApplicationId: string
|
|
661
691
|
|
|
662
692
|
/**
|
|
663
|
-
*
|
|
693
|
+
* 包名
|
|
664
694
|
*/
|
|
665
|
-
|
|
695
|
+
PkgName: string
|
|
666
696
|
|
|
667
697
|
/**
|
|
668
|
-
*
|
|
698
|
+
* optType 1上传 2查询
|
|
669
699
|
*/
|
|
670
|
-
|
|
700
|
+
OptType: number
|
|
671
701
|
|
|
672
702
|
/**
|
|
673
|
-
*
|
|
703
|
+
* 来源 channel
|
|
674
704
|
*/
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
/**
|
|
678
|
-
* clb ID
|
|
679
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
680
|
-
*/
|
|
681
|
-
ClbId?: string
|
|
682
|
-
|
|
683
|
-
/**
|
|
684
|
-
* tls 配置
|
|
685
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
686
|
-
*/
|
|
687
|
-
Tls?: Array<IngressTls>
|
|
688
|
-
|
|
689
|
-
/**
|
|
690
|
-
* 环境集群ID
|
|
691
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
692
|
-
*/
|
|
693
|
-
ClusterId?: string
|
|
694
|
-
|
|
695
|
-
/**
|
|
696
|
-
* clb ip
|
|
697
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
698
|
-
*/
|
|
699
|
-
Vip?: string
|
|
700
|
-
|
|
701
|
-
/**
|
|
702
|
-
* 创建时间
|
|
703
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
704
|
-
*/
|
|
705
|
-
CreateTime?: string
|
|
705
|
+
SourceChannel?: number
|
|
706
706
|
|
|
707
707
|
/**
|
|
708
|
-
*
|
|
708
|
+
* 充当deployVersion入参
|
|
709
709
|
*/
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
/**
|
|
713
|
-
* 重定向模式,可选值:
|
|
714
|
-
- AUTO(自动重定向http到https)
|
|
715
|
-
- NONE(不使用重定向)
|
|
716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
717
|
-
*/
|
|
718
|
-
RewriteType?: string
|
|
710
|
+
TimeVersion?: string
|
|
719
711
|
}
|
|
720
712
|
|
|
721
713
|
/**
|
|
@@ -913,6 +905,21 @@ export interface NodeInfo {
|
|
|
913
905
|
Cidr: string
|
|
914
906
|
}
|
|
915
907
|
|
|
908
|
+
/**
|
|
909
|
+
* DescribeApplicationServiceList返回参数结构体
|
|
910
|
+
*/
|
|
911
|
+
export interface DescribeApplicationServiceListResponse {
|
|
912
|
+
/**
|
|
913
|
+
* 应用 EKS Service 列表
|
|
914
|
+
*/
|
|
915
|
+
Result: EksService
|
|
916
|
+
|
|
917
|
+
/**
|
|
918
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
919
|
+
*/
|
|
920
|
+
RequestId?: string
|
|
921
|
+
}
|
|
922
|
+
|
|
916
923
|
/**
|
|
917
924
|
* DescribeLogConfig请求参数结构体
|
|
918
925
|
*/
|
|
@@ -1038,38 +1045,33 @@ export interface DescribeEnvironmentStatusResponse {
|
|
|
1038
1045
|
}
|
|
1039
1046
|
|
|
1040
1047
|
/**
|
|
1041
|
-
*
|
|
1048
|
+
* 弹性伸缩配置
|
|
1042
1049
|
*/
|
|
1043
|
-
export interface
|
|
1044
|
-
/**
|
|
1045
|
-
* 总分批数
|
|
1046
|
-
*/
|
|
1047
|
-
TotalBatchCount?: number
|
|
1048
|
-
|
|
1050
|
+
export interface EsInfo {
|
|
1049
1051
|
/**
|
|
1050
|
-
*
|
|
1052
|
+
* 最小实例数
|
|
1051
1053
|
*/
|
|
1052
|
-
|
|
1054
|
+
MinAliveInstances: number
|
|
1053
1055
|
|
|
1054
1056
|
/**
|
|
1055
|
-
*
|
|
1057
|
+
* 最大实例数
|
|
1056
1058
|
*/
|
|
1057
|
-
|
|
1059
|
+
MaxAliveInstances: number
|
|
1058
1060
|
|
|
1059
1061
|
/**
|
|
1060
|
-
*
|
|
1062
|
+
* 弹性策略,1:cpu,2:内存
|
|
1061
1063
|
*/
|
|
1062
|
-
|
|
1064
|
+
EsStrategy: number
|
|
1063
1065
|
|
|
1064
1066
|
/**
|
|
1065
|
-
*
|
|
1067
|
+
* 弹性扩缩容条件值
|
|
1066
1068
|
*/
|
|
1067
|
-
|
|
1069
|
+
Threshold: number
|
|
1068
1070
|
|
|
1069
1071
|
/**
|
|
1070
|
-
*
|
|
1072
|
+
* 版本Id
|
|
1071
1073
|
*/
|
|
1072
|
-
|
|
1074
|
+
VersionId?: string
|
|
1073
1075
|
}
|
|
1074
1076
|
|
|
1075
1077
|
/**
|
|
@@ -1644,33 +1646,77 @@ export interface ServicePortMapping {
|
|
|
1644
1646
|
}
|
|
1645
1647
|
|
|
1646
1648
|
/**
|
|
1647
|
-
*
|
|
1649
|
+
* Ingress 配置
|
|
1648
1650
|
*/
|
|
1649
|
-
export interface
|
|
1651
|
+
export interface IngressInfo {
|
|
1650
1652
|
/**
|
|
1651
|
-
|
|
1653
|
+
* 环境ID
|
|
1654
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1655
|
+
*/
|
|
1656
|
+
EnvironmentId: string
|
|
1657
|
+
|
|
1658
|
+
/**
|
|
1659
|
+
* 环境namespace
|
|
1652
1660
|
*/
|
|
1653
|
-
|
|
1661
|
+
ClusterNamespace: string
|
|
1654
1662
|
|
|
1655
1663
|
/**
|
|
1656
|
-
*
|
|
1664
|
+
* ip version
|
|
1657
1665
|
*/
|
|
1658
|
-
|
|
1666
|
+
AddressIPVersion: string
|
|
1659
1667
|
|
|
1660
1668
|
/**
|
|
1661
|
-
*
|
|
1669
|
+
* ingress name
|
|
1662
1670
|
*/
|
|
1663
|
-
|
|
1671
|
+
IngressName: string
|
|
1664
1672
|
|
|
1665
1673
|
/**
|
|
1666
|
-
*
|
|
1674
|
+
* rules 配置
|
|
1667
1675
|
*/
|
|
1668
|
-
|
|
1676
|
+
Rules: Array<IngressRule>
|
|
1669
1677
|
|
|
1670
1678
|
/**
|
|
1671
|
-
|
|
1679
|
+
* clb ID
|
|
1680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1681
|
+
*/
|
|
1682
|
+
ClbId?: string
|
|
1683
|
+
|
|
1684
|
+
/**
|
|
1685
|
+
* tls 配置
|
|
1686
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1687
|
+
*/
|
|
1688
|
+
Tls?: Array<IngressTls>
|
|
1689
|
+
|
|
1690
|
+
/**
|
|
1691
|
+
* 环境集群ID
|
|
1692
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1693
|
+
*/
|
|
1694
|
+
ClusterId?: string
|
|
1695
|
+
|
|
1696
|
+
/**
|
|
1697
|
+
* clb ip
|
|
1698
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1699
|
+
*/
|
|
1700
|
+
Vip?: string
|
|
1701
|
+
|
|
1702
|
+
/**
|
|
1703
|
+
* 创建时间
|
|
1704
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1705
|
+
*/
|
|
1706
|
+
CreateTime?: string
|
|
1707
|
+
|
|
1708
|
+
/**
|
|
1709
|
+
* 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
|
|
1672
1710
|
*/
|
|
1673
|
-
|
|
1711
|
+
Mixed?: boolean
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
* 重定向模式,可选值:
|
|
1715
|
+
- AUTO(自动重定向http到https)
|
|
1716
|
+
- NONE(不使用重定向)
|
|
1717
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1718
|
+
*/
|
|
1719
|
+
RewriteType?: string
|
|
1674
1720
|
}
|
|
1675
1721
|
|
|
1676
1722
|
/**
|
|
@@ -1733,6 +1779,23 @@ export interface ModifyIngressRequest {
|
|
|
1733
1779
|
SourceChannel?: number
|
|
1734
1780
|
}
|
|
1735
1781
|
|
|
1782
|
+
/**
|
|
1783
|
+
* 标签
|
|
1784
|
+
*/
|
|
1785
|
+
export interface Tag {
|
|
1786
|
+
/**
|
|
1787
|
+
* 标签键
|
|
1788
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1789
|
+
*/
|
|
1790
|
+
TagKey?: string
|
|
1791
|
+
|
|
1792
|
+
/**
|
|
1793
|
+
* 标签值
|
|
1794
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1795
|
+
*/
|
|
1796
|
+
TagValue?: string
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1736
1799
|
/**
|
|
1737
1800
|
* 开启prometheus监控配置
|
|
1738
1801
|
*/
|
|
@@ -1929,6 +1992,21 @@ export interface DescribeApplicationsStatusRequest {
|
|
|
1929
1992
|
EnvironmentId?: string
|
|
1930
1993
|
}
|
|
1931
1994
|
|
|
1995
|
+
/**
|
|
1996
|
+
* DescribeIngress返回参数结构体
|
|
1997
|
+
*/
|
|
1998
|
+
export interface DescribeIngressResponse {
|
|
1999
|
+
/**
|
|
2000
|
+
* Ingress 规则配置
|
|
2001
|
+
*/
|
|
2002
|
+
Result: IngressInfo
|
|
2003
|
+
|
|
2004
|
+
/**
|
|
2005
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2006
|
+
*/
|
|
2007
|
+
RequestId?: string
|
|
2008
|
+
}
|
|
2009
|
+
|
|
1932
2010
|
/**
|
|
1933
2011
|
* 应用实例
|
|
1934
2012
|
*/
|
|
@@ -2702,6 +2780,26 @@ export interface CronHorizontalAutoscaler {
|
|
|
2702
2780
|
Priority?: number
|
|
2703
2781
|
}
|
|
2704
2782
|
|
|
2783
|
+
/**
|
|
2784
|
+
* DescribeApplicationServiceList请求参数结构体
|
|
2785
|
+
*/
|
|
2786
|
+
export interface DescribeApplicationServiceListRequest {
|
|
2787
|
+
/**
|
|
2788
|
+
* namespace id
|
|
2789
|
+
*/
|
|
2790
|
+
EnvironmentId: string
|
|
2791
|
+
|
|
2792
|
+
/**
|
|
2793
|
+
* 服务ID
|
|
2794
|
+
*/
|
|
2795
|
+
ApplicationId: string
|
|
2796
|
+
|
|
2797
|
+
/**
|
|
2798
|
+
* xx
|
|
2799
|
+
*/
|
|
2800
|
+
SourceChannel?: number
|
|
2801
|
+
}
|
|
2802
|
+
|
|
2705
2803
|
/**
|
|
2706
2804
|
* DescribeDeployApplicationDetail返回参数结构体
|
|
2707
2805
|
*/
|
|
@@ -2831,6 +2929,36 @@ export interface TemNamespaceInfo {
|
|
|
2831
2929
|
* 环境锁,1为上锁,0则为上锁
|
|
2832
2930
|
*/
|
|
2833
2931
|
Locked: number
|
|
2932
|
+
|
|
2933
|
+
/**
|
|
2934
|
+
* 用户AppId
|
|
2935
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2936
|
+
*/
|
|
2937
|
+
AppId: string
|
|
2938
|
+
|
|
2939
|
+
/**
|
|
2940
|
+
* 用户Uin
|
|
2941
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2942
|
+
*/
|
|
2943
|
+
Uin: string
|
|
2944
|
+
|
|
2945
|
+
/**
|
|
2946
|
+
* 用户SubAccountUin
|
|
2947
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2948
|
+
*/
|
|
2949
|
+
SubAccountUin: string
|
|
2950
|
+
|
|
2951
|
+
/**
|
|
2952
|
+
* 集群ID
|
|
2953
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2954
|
+
*/
|
|
2955
|
+
ClusterId: string
|
|
2956
|
+
|
|
2957
|
+
/**
|
|
2958
|
+
* 标签
|
|
2959
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2960
|
+
*/
|
|
2961
|
+
Tags: Array<Tag>
|
|
2834
2962
|
}
|
|
2835
2963
|
|
|
2836
2964
|
/**
|
|
@@ -2858,6 +2986,22 @@ export interface CreateApplicationAutoscalerRequest {
|
|
|
2858
2986
|
Autoscaler?: Autoscaler
|
|
2859
2987
|
}
|
|
2860
2988
|
|
|
2989
|
+
/**
|
|
2990
|
+
* DeleteApplicationService返回参数结构体
|
|
2991
|
+
*/
|
|
2992
|
+
export interface DeleteApplicationServiceResponse {
|
|
2993
|
+
/**
|
|
2994
|
+
* 是否成功
|
|
2995
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2996
|
+
*/
|
|
2997
|
+
Result: boolean
|
|
2998
|
+
|
|
2999
|
+
/**
|
|
3000
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3001
|
+
*/
|
|
3002
|
+
RequestId?: string
|
|
3003
|
+
}
|
|
3004
|
+
|
|
2861
3005
|
/**
|
|
2862
3006
|
* 配置
|
|
2863
3007
|
*/
|
|
@@ -2973,6 +3117,36 @@ export interface DescribeConfigDataListResponse {
|
|
|
2973
3117
|
RequestId?: string
|
|
2974
3118
|
}
|
|
2975
3119
|
|
|
3120
|
+
/**
|
|
3121
|
+
* ModifyApplicationService请求参数结构体
|
|
3122
|
+
*/
|
|
3123
|
+
export interface ModifyApplicationServiceRequest {
|
|
3124
|
+
/**
|
|
3125
|
+
* 服务id
|
|
3126
|
+
*/
|
|
3127
|
+
ApplicationId: string
|
|
3128
|
+
|
|
3129
|
+
/**
|
|
3130
|
+
* 环境ID
|
|
3131
|
+
*/
|
|
3132
|
+
EnvironmentId: string
|
|
3133
|
+
|
|
3134
|
+
/**
|
|
3135
|
+
* 来源渠道
|
|
3136
|
+
*/
|
|
3137
|
+
SourceChannel?: number
|
|
3138
|
+
|
|
3139
|
+
/**
|
|
3140
|
+
* 全量访问方式设置
|
|
3141
|
+
*/
|
|
3142
|
+
Service?: EksService
|
|
3143
|
+
|
|
3144
|
+
/**
|
|
3145
|
+
* 单条访问方式设置
|
|
3146
|
+
*/
|
|
3147
|
+
Data?: ServicePortMapping
|
|
3148
|
+
}
|
|
3149
|
+
|
|
2976
3150
|
/**
|
|
2977
3151
|
* DescribePagedLogConfigList返回参数结构体
|
|
2978
3152
|
*/
|
|
@@ -3696,6 +3870,31 @@ export interface DescribeRunPodPage {
|
|
|
3696
3870
|
PodList: Array<RunVersionPod>
|
|
3697
3871
|
}
|
|
3698
3872
|
|
|
3873
|
+
/**
|
|
3874
|
+
* CreateApplicationService请求参数结构体
|
|
3875
|
+
*/
|
|
3876
|
+
export interface CreateApplicationServiceRequest {
|
|
3877
|
+
/**
|
|
3878
|
+
* 服务id
|
|
3879
|
+
*/
|
|
3880
|
+
ApplicationId: string
|
|
3881
|
+
|
|
3882
|
+
/**
|
|
3883
|
+
* 环境ID
|
|
3884
|
+
*/
|
|
3885
|
+
EnvironmentId: string
|
|
3886
|
+
|
|
3887
|
+
/**
|
|
3888
|
+
* 来源渠道
|
|
3889
|
+
*/
|
|
3890
|
+
SourceChannel?: number
|
|
3891
|
+
|
|
3892
|
+
/**
|
|
3893
|
+
* 访问方式详情
|
|
3894
|
+
*/
|
|
3895
|
+
Service?: ServicePortMapping
|
|
3896
|
+
}
|
|
3897
|
+
|
|
3699
3898
|
/**
|
|
3700
3899
|
* ModifyApplicationReplicas返回参数结构体
|
|
3701
3900
|
*/
|
|
@@ -3814,13 +4013,14 @@ export interface IngressRuleBackend {
|
|
|
3814
4013
|
}
|
|
3815
4014
|
|
|
3816
4015
|
/**
|
|
3817
|
-
*
|
|
4016
|
+
* CreateApplicationService返回参数结构体
|
|
3818
4017
|
*/
|
|
3819
|
-
export interface
|
|
4018
|
+
export interface CreateApplicationServiceResponse {
|
|
3820
4019
|
/**
|
|
3821
|
-
|
|
3822
|
-
|
|
3823
|
-
|
|
4020
|
+
* 是否成功
|
|
4021
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4022
|
+
*/
|
|
4023
|
+
Result: boolean
|
|
3824
4024
|
|
|
3825
4025
|
/**
|
|
3826
4026
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -4016,6 +4216,22 @@ export interface HorizontalAutoscaler {
|
|
|
4016
4216
|
Enabled?: boolean
|
|
4017
4217
|
}
|
|
4018
4218
|
|
|
4219
|
+
/**
|
|
4220
|
+
* ModifyApplicationService返回参数结构体
|
|
4221
|
+
*/
|
|
4222
|
+
export interface ModifyApplicationServiceResponse {
|
|
4223
|
+
/**
|
|
4224
|
+
* 是否成功
|
|
4225
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4226
|
+
*/
|
|
4227
|
+
Result: boolean
|
|
4228
|
+
|
|
4229
|
+
/**
|
|
4230
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4231
|
+
*/
|
|
4232
|
+
RequestId?: string
|
|
4233
|
+
}
|
|
4234
|
+
|
|
4019
4235
|
/**
|
|
4020
4236
|
* 服务端口映射
|
|
4021
4237
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { CreateResourceRequest, DescribeConfigDataResponse, DescribeApplicationInfoResponse, ModifyIngressResponse, RestartApplicationPodRequest, DestroyLogConfigResponse, ResumeDeployApplicationResponse, DescribeApplicationPodsRequest, DeleteIngressResponse, DeleteApplicationResponse, ModifyApplicationAutoscalerResponse, RollingUpdateApplicationByVersionRequest, CreateCosTokenResponse, ModifyLogConfigResponse, RollingUpdateApplicationByVersionResponse, StopApplicationRequest, ModifyApplicationInfoRequest, DestroyEnvironmentRequest, CreateEnvironmentResponse, DescribeEnvironmentStatusRequest, RevertDeployApplicationResponse, DescribeApplicationsResponse, DescribeEnvironmentsRequest, CreateEnvironmentRequest, DescribeLogConfigRequest, DescribeEnvironmentStatusResponse, DescribeApplicationPodsResponse, DescribeConfigDataListRequest, EnableApplicationAutoscalerResponse,
|
|
2
|
+
import { CreateResourceRequest, DescribeConfigDataResponse, DescribeApplicationInfoResponse, ModifyIngressResponse, DeleteApplicationServiceRequest, RestartApplicationPodRequest, DestroyLogConfigResponse, ResumeDeployApplicationResponse, DescribeApplicationPodsRequest, DeleteIngressResponse, DeleteApplicationResponse, ModifyApplicationAutoscalerResponse, RollingUpdateApplicationByVersionRequest, CreateCosTokenResponse, ModifyLogConfigResponse, RollingUpdateApplicationByVersionResponse, StopApplicationRequest, ModifyApplicationInfoRequest, DestroyEnvironmentRequest, CreateEnvironmentResponse, DescribeEnvironmentStatusRequest, RevertDeployApplicationResponse, DescribeApplicationsResponse, CreateCosTokenRequest, DescribeEnvironmentsRequest, CreateEnvironmentRequest, DescribeApplicationServiceListResponse, DescribeLogConfigRequest, DescribeEnvironmentStatusResponse, DescribeApplicationPodsResponse, DescribeConfigDataListRequest, EnableApplicationAutoscalerResponse, ModifyApplicationAutoscalerRequest, ModifyConfigDataResponse, ModifyIngressRequest, DescribeIngressesRequest, CreateLogConfigRequest, RestartApplicationResponse, DescribeIngressesResponse, ModifyConfigDataRequest, CreateConfigDataResponse, DescribeApplicationsStatusRequest, DescribeIngressResponse, CreateResourceResponse, ModifyApplicationInfoResponse, RestartApplicationRequest, DestroyEnvironmentResponse, DisableApplicationAutoscalerResponse, DescribeIngressRequest, StopApplicationResponse, DeployApplicationResponse, RestartApplicationPodResponse, DeleteApplicationRequest, CreateApplicationAutoscalerResponse, DeleteApplicationAutoscalerRequest, DescribeApplicationAutoscalerListRequest, DescribeApplicationsStatusResponse, DescribeDeployApplicationDetailRequest, DeleteIngressRequest, DisableApplicationAutoscalerRequest, DescribeRelatedIngressesRequest, GenerateApplicationPackageDownloadUrlRequest, DescribeEnvironmentsResponse, DeleteApplicationAutoscalerResponse, DescribeRelatedIngressesResponse, DescribeEnvironmentRequest, DescribePagedLogConfigListRequest, DescribeApplicationServiceListRequest, DescribeDeployApplicationDetailResponse, DescribeEnvironmentResponse, CreateApplicationAutoscalerRequest, DeleteApplicationServiceResponse, ResumeDeployApplicationRequest, DescribeConfigDataRequest, CreateLogConfigResponse, DescribeConfigDataListResponse, ModifyApplicationServiceRequest, DescribePagedLogConfigListResponse, CreateConfigDataRequest, DeployApplicationRequest, DescribeApplicationAutoscalerListResponse, DestroyConfigDataRequest, DestroyConfigDataResponse, DescribeApplicationsRequest, DescribeApplicationInfoRequest, CreateApplicationRequest, CreateApplicationServiceRequest, ModifyApplicationReplicasResponse, ModifyEnvironmentRequest, GenerateApplicationPackageDownloadUrlResponse, CreateApplicationServiceResponse, DescribeLogConfigResponse, RevertDeployApplicationRequest, CreateApplicationResponse, ModifyApplicationServiceResponse, ModifyEnvironmentResponse, ModifyApplicationReplicasRequest, ModifyLogConfigRequest, DestroyLogConfigRequest, EnableApplicationAutoscalerRequest } from "./tem_models";
|
|
3
3
|
/**
|
|
4
4
|
* tem client
|
|
5
5
|
* @class
|
|
@@ -14,6 +14,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
14
14
|
* 单环境下所有应用状态查看
|
|
15
15
|
*/
|
|
16
16
|
DescribeApplicationsStatus(req: DescribeApplicationsStatusRequest, cb?: (error: string, rep: DescribeApplicationsStatusResponse) => void): Promise<DescribeApplicationsStatusResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* 查询应用访问方式列表
|
|
19
|
+
*/
|
|
20
|
+
DescribeApplicationServiceList(req: DescribeApplicationServiceListRequest, cb?: (error: string, rep: DescribeApplicationServiceListResponse) => void): Promise<DescribeApplicationServiceListResponse>;
|
|
17
21
|
/**
|
|
18
22
|
* 查询分页的日志收集配置列表
|
|
19
23
|
*/
|
|
@@ -53,6 +57,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
53
57
|
* 获取环境状态
|
|
54
58
|
*/
|
|
55
59
|
DescribeEnvironmentStatus(req: DescribeEnvironmentStatusRequest, cb?: (error: string, rep: DescribeEnvironmentStatusResponse) => void): Promise<DescribeEnvironmentStatusResponse>;
|
|
60
|
+
/**
|
|
61
|
+
* 开始下一批次发布
|
|
62
|
+
*/
|
|
63
|
+
ResumeDeployApplication(req: ResumeDeployApplicationRequest, cb?: (error: string, rep: ResumeDeployApplicationResponse) => void): Promise<ResumeDeployApplicationResponse>;
|
|
56
64
|
/**
|
|
57
65
|
* 删除 Ingress 规则
|
|
58
66
|
*/
|
|
@@ -70,9 +78,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
70
78
|
*/
|
|
71
79
|
DescribeDeployApplicationDetail(req: DescribeDeployApplicationDetailRequest, cb?: (error: string, rep: DescribeDeployApplicationDetailResponse) => void): Promise<DescribeDeployApplicationDetailResponse>;
|
|
72
80
|
/**
|
|
73
|
-
*
|
|
81
|
+
* 修改服务访问方式列表
|
|
74
82
|
*/
|
|
75
|
-
|
|
83
|
+
ModifyApplicationService(req: ModifyApplicationServiceRequest, cb?: (error: string, rep: ModifyApplicationServiceResponse) => void): Promise<ModifyApplicationServiceResponse>;
|
|
76
84
|
/**
|
|
77
85
|
* 编辑环境
|
|
78
86
|
*/
|
|
@@ -93,6 +101,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
93
101
|
* 创建日志收集配置
|
|
94
102
|
*/
|
|
95
103
|
CreateLogConfig(req: CreateLogConfigRequest, cb?: (error: string, rep: CreateLogConfigResponse) => void): Promise<CreateLogConfigResponse>;
|
|
104
|
+
/**
|
|
105
|
+
* 新增访问方式
|
|
106
|
+
*/
|
|
107
|
+
CreateApplicationService(req: CreateApplicationServiceRequest, cb?: (error: string, rep: CreateApplicationServiceResponse) => void): Promise<CreateApplicationServiceResponse>;
|
|
96
108
|
/**
|
|
97
109
|
* 服务基本信息查看
|
|
98
110
|
*/
|
|
@@ -129,6 +141,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
129
141
|
* 查询 Ingress 规则
|
|
130
142
|
*/
|
|
131
143
|
DescribeIngress(req: DescribeIngressRequest, cb?: (error: string, rep: DescribeIngressResponse) => void): Promise<DescribeIngressResponse>;
|
|
144
|
+
/**
|
|
145
|
+
* 删除一条访问方式
|
|
146
|
+
*/
|
|
147
|
+
DeleteApplicationService(req: DeleteApplicationServiceRequest, cb?: (error: string, rep: DeleteApplicationServiceResponse) => void): Promise<DeleteApplicationServiceResponse>;
|
|
132
148
|
/**
|
|
133
149
|
* 生成应用程序包预签名下载链接
|
|
134
150
|
*/
|