tencentcloud-sdk-nodejs-tcbr 4.1.22 → 4.1.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-tcbr",
3
- "version": "4.1.22",
3
+ "version": "4.1.35",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -600,6 +600,16 @@ export interface ServerBaseConfig {
600
600
  * 内网域名
601
601
  */
602
602
  InternalDomain?: string;
603
+ /**
604
+ * 运行模式
605
+ 注意:此字段可能返回 null,表示取不到有效值。
606
+ */
607
+ OperationMode?: string;
608
+ /**
609
+ * 定时扩缩容配置
610
+ 注意:此字段可能返回 null,表示取不到有效值。
611
+ */
612
+ TimerScale?: Array<TimerScale>;
603
613
  }
604
614
  /**
605
615
  * DescribeCloudRunServerDetail返回参数结构体
@@ -721,6 +731,41 @@ export interface ServerBaseInfo {
721
731
  */
722
732
  TrafficType?: string;
723
733
  }
734
+ /**
735
+ * 定时扩缩容配置
736
+ */
737
+ export interface TimerScale {
738
+ /**
739
+ * 循环类型
740
+ 注意:此字段可能返回 null,表示取不到有效值。
741
+ */
742
+ CycleType?: string;
743
+ /**
744
+ * 循环起始
745
+ 注意:此字段可能返回 null,表示取不到有效值。
746
+ */
747
+ StartDate?: string;
748
+ /**
749
+ * 循环结束
750
+ 注意:此字段可能返回 null,表示取不到有效值。
751
+ */
752
+ EndDate?: string;
753
+ /**
754
+ * 起始时间
755
+ 注意:此字段可能返回 null,表示取不到有效值。
756
+ */
757
+ StartTime?: string;
758
+ /**
759
+ * 结束时间
760
+ 注意:此字段可能返回 null,表示取不到有效值。
761
+ */
762
+ EndTime?: string;
763
+ /**
764
+ * 副本个数
765
+ 注意:此字段可能返回 null,表示取不到有效值。
766
+ */
767
+ ReplicaNum?: number;
768
+ }
724
769
  /**
725
770
  * 环境信息
726
771
  */