tencentcloud-sdk-nodejs-tcbr 4.1.63 → 4.1.68

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.63",
3
+ "version": "4.1.68",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -335,6 +335,10 @@ export interface UpdateCloudRunServerRequest {
335
335
  * 服务配置信息
336
336
  */
337
337
  ServerConfig: ServerBaseConfig;
338
+ /**
339
+ * 业务类型,默认tcr
340
+ */
341
+ Business?: string;
338
342
  }
339
343
  /**
340
344
  * 云日志服务相关信息
@@ -621,6 +625,10 @@ export interface ServerBaseConfig {
621
625
  注意:此字段可能返回 null,表示取不到有效值。
622
626
  */
623
627
  SessionAffinity?: string;
628
+ /**
629
+ * Vpc 配置参数
630
+ */
631
+ VpcConf?: VpcConf;
624
632
  }
625
633
  /**
626
634
  * DescribeCloudRunServerDetail返回参数结构体
@@ -701,6 +709,27 @@ export interface EnvBaseInfo {
701
709
  */
702
710
  SubnetIds?: string;
703
711
  }
712
+ /**
713
+ * 云托管服务 Vpc 配置
714
+ */
715
+ export interface VpcConf {
716
+ /**
717
+ * vpc id
718
+ */
719
+ VpcId?: string;
720
+ /**
721
+ * vpc 网段
722
+ */
723
+ VpcCIDR?: string;
724
+ /**
725
+ * subnet id
726
+ */
727
+ SubnetId?: string;
728
+ /**
729
+ * subnet 网段
730
+ */
731
+ SubnetCIDR?: string;
732
+ }
704
733
  /**
705
734
  * 服务基本信息
706
735
  */