tencentcloud-sdk-nodejs-tem 4.0.317 → 4.0.320

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.
@@ -14,6 +14,10 @@ export interface MountedSettingConf {
14
14
  * 配置内容
15
15
  */
16
16
  Data?: Array<Pair>;
17
+ /**
18
+ * 加密配置名称
19
+ */
20
+ SecretDataName?: string;
17
21
  }
18
22
  /**
19
23
  * RestartApplicationPod返回参数结构体
@@ -70,6 +74,14 @@ export interface CreateResourceRequest {
70
74
  * 来源渠道
71
75
  */
72
76
  SourceChannel?: number;
77
+ /**
78
+ * 资源来源,目前支持:existing,已有资源;creating,自动创建
79
+ */
80
+ ResourceFrom?: string;
81
+ /**
82
+ * 设置 resource 的额外配置
83
+ */
84
+ ResourceConfig?: string;
73
85
  }
74
86
  /**
75
87
  * ResumeDeployApplication返回参数结构体
@@ -651,6 +663,10 @@ export interface DeployApplicationRequest {
651
663
  - TENCENTOS
652
664
  */
653
665
  OsFlavour?: string;
666
+ /**
667
+ * 是否开启prometheus 业务指标监控
668
+ */
669
+ EnablePrometheusConf?: EnablePrometheusConf;
654
670
  }
655
671
  /**
656
672
  * Ingress 配置
@@ -706,6 +722,13 @@ export interface IngressInfo {
706
722
  * 是否混合 https,默认 false,可选值 true 代表有 https 协议监听
707
723
  */
708
724
  Mixed?: boolean;
725
+ /**
726
+ * 重定向模式,可选值:
727
+ - AUTO(自动重定向http到https)
728
+ - NONE(不使用重定向)
729
+ 注意:此字段可能返回 null,表示取不到有效值。
730
+ */
731
+ RewriteType?: string;
709
732
  }
710
733
  /**
711
734
  * ModifyIngress返回参数结构体
@@ -837,10 +860,23 @@ export interface CreateApplicationRequest {
837
860
  */
838
861
  DeployMode?: string;
839
862
  /**
840
- * 是否启用调用链功能
863
+ * 是否开启 Java 应用的 APM 自动上报功能,1 表示启用;0 表示关闭
841
864
  */
842
865
  EnableTracing?: number;
843
866
  }
867
+ /**
868
+ * 开启prometheus监控配置
869
+ */
870
+ export interface EnablePrometheusConf {
871
+ /**
872
+ * 应用开放的监听端口
873
+ */
874
+ Port?: number;
875
+ /**
876
+ * 业务指标暴露的url path
877
+ */
878
+ Path?: string;
879
+ }
844
880
  /**
845
881
  * DescribeRelatedIngresses返回参数结构体
846
882
  */
@@ -1600,7 +1636,7 @@ export interface DeployStrategyConf {
1600
1636
  */
1601
1637
  BetaBatchNum?: number;
1602
1638
  /**
1603
- * 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的
1639
+ * 分批策略:0-全自动,1-全手动,2-beta分批,beta批一定是手动的,3-首次发布
1604
1640
  */
1605
1641
  DeployStrategyType?: number;
1606
1642
  /**
@@ -1867,4 +1903,9 @@ export interface Pair {
1867
1903
  注意:此字段可能返回 null,表示取不到有效值。
1868
1904
  */
1869
1905
  Config?: string;
1906
+ /**
1907
+ * 加密配置名称
1908
+ 注意:此字段可能返回 null,表示取不到有效值。
1909
+ */
1910
+ Secret?: string;
1870
1911
  }