tencentcloud-sdk-nodejs-intl-en 3.0.1178 → 3.0.1179
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
|
@@ -464,7 +464,7 @@ Note: if the name of the new CLB instance already exists, a default name will be
|
|
|
464
464
|
this.VpcId = null;
|
|
465
465
|
|
|
466
466
|
/**
|
|
467
|
-
* A subnet ID
|
|
467
|
+
* A subnet ID should be specified when you purchase a private network CLB instance under a VPC. The VIP of the private network CLB instance is in this subnet. This parameter is required when you create a private network CLB instance but not supported when you create a public network IPv4 CLB instance.
|
|
468
468
|
* @type {string || null}
|
|
469
469
|
*/
|
|
470
470
|
this.SubnetId = null;
|
|
@@ -488,19 +488,20 @@ Note: if the name of the new CLB instance already exists, a default name will be
|
|
|
488
488
|
this.Number = null;
|
|
489
489
|
|
|
490
490
|
/**
|
|
491
|
-
*
|
|
491
|
+
* Applicable only to public network IPv4 CLB instances. This parameter specifies the primary AZ ID for cross-AZ disaster recovery. For example, 100001 or ap-guangzhou-1.
|
|
492
|
+
Note: The primary AZ sustains traffic. The secondary AZ does not sustain traffic by default and is used only when the primary AZ is unavailable. Currently, primary and secondary AZs are supported only for IPv4 CLB instances in Guangzhou, Shanghai, Nanjing, Beijing, Chengdu, Shenzhen Finance, Hong Kong (China), Seoul, Frankfurt, and Singapore regions. You can call the [DescribeResources](https://intl.cloud.tencent.com/document/api/214/70213?from_cn_redirect=1) API to query the list of primary AZs in a region. If you want to experience this feature, [submit a ticket](https://console.cloud.tencent.com/workorder/category).
|
|
492
493
|
* @type {string || null}
|
|
493
494
|
*/
|
|
494
495
|
this.MasterZoneId = null;
|
|
495
496
|
|
|
496
497
|
/**
|
|
497
|
-
*
|
|
498
|
+
* Applicable only to public network IPv4 CLB instances. This parameter specifies the AZ ID for creating a CLB instance. For example, ap-guangzhou-1.
|
|
498
499
|
* @type {string || null}
|
|
499
500
|
*/
|
|
500
501
|
this.ZoneId = null;
|
|
501
502
|
|
|
502
503
|
/**
|
|
503
|
-
*
|
|
504
|
+
* Network billing mode by the maximum outbound bandwidth. It applies only to private network LCU-supported instances and all public network instances. The feature of purchasing monthly subscription instances via an API is under grayscale release. If you want to experience this feature, [submit a ticket](https://console.cloud.tencent.com/workorder/category).
|
|
504
505
|
* @type {InternetAccessible || null}
|
|
505
506
|
*/
|
|
506
507
|
this.InternetAccessible = null;
|
|
@@ -573,8 +574,8 @@ Note: If the specified VIP is occupied or is not within the IP range of the spec
|
|
|
573
574
|
this.ClusterTag = null;
|
|
574
575
|
|
|
575
576
|
/**
|
|
576
|
-
*
|
|
577
|
-
Note: The
|
|
577
|
+
* Applicable only to public network IPv4 CLB instances. This parameter specifies the secondary AZ ID for cross-AZ disaster recovery. For example, 100001 or ap-guangzhou-1.
|
|
578
|
+
Note: The secondary AZ sustains traffic when the primary AZ encounters faults. You can call the [DescribeResources](https://intl.cloud.tencent.com/document/api/214/70213?from_cn_redirect=1) API to query the list of primary/secondary AZs in a region. If you want to experience this feature, [submit a ticket](https://console.cloud.tencent.com/workorder/category).
|
|
578
579
|
* @type {string || null}
|
|
579
580
|
*/
|
|
580
581
|
this.SlaveZoneId = null;
|
|
@@ -604,11 +605,23 @@ Note: The traffic only goes to the secondary AZ when the primary AZ is unavailab
|
|
|
604
605
|
this.Egress = null;
|
|
605
606
|
|
|
606
607
|
/**
|
|
607
|
-
*
|
|
608
|
+
* Prepayment-related attributes of a CLB instance. The feature of purchasing monthly subscription instances via an API is under grayscale release. If you want to experience this feature, [submit a ticket](https://console.cloud.tencent.com/workorder/category).
|
|
608
609
|
* @type {LBChargePrepaid || null}
|
|
609
610
|
*/
|
|
610
611
|
this.LBChargePrepaid = null;
|
|
611
612
|
|
|
613
|
+
/**
|
|
614
|
+
* Billing type of a CLB instance. Valid values: POSTPAID_BY_HOUR and PREPAID. Default value: POSTPAID_BY_HOUR. The feature of purchasing monthly subscription instances via an API is under grayscale release. If you want to experience this feature, [submit a ticket](https://console.cloud.tencent.com/workorder/category).
|
|
615
|
+
* @type {string || null}
|
|
616
|
+
*/
|
|
617
|
+
this.LBChargeType = null;
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* Topic ID of logs of traffic access over layer-7 protocols.
|
|
621
|
+
* @type {string || null}
|
|
622
|
+
*/
|
|
623
|
+
this.AccessLogTopicId = null;
|
|
624
|
+
|
|
612
625
|
}
|
|
613
626
|
|
|
614
627
|
/**
|
|
@@ -677,6 +690,8 @@ Note: The traffic only goes to the secondary AZ when the primary AZ is unavailab
|
|
|
677
690
|
obj.deserialize(params.LBChargePrepaid)
|
|
678
691
|
this.LBChargePrepaid = obj;
|
|
679
692
|
}
|
|
693
|
+
this.LBChargeType = 'LBChargeType' in params ? params.LBChargeType : null;
|
|
694
|
+
this.AccessLogTopicId = 'AccessLogTopicId' in params ? params.AccessLogTopicId : null;
|
|
680
695
|
|
|
681
696
|
}
|
|
682
697
|
}
|
|
@@ -6276,15 +6291,13 @@ class LBChargePrepaid extends AbstractModel {
|
|
|
6276
6291
|
super();
|
|
6277
6292
|
|
|
6278
6293
|
/**
|
|
6279
|
-
*
|
|
6280
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6294
|
+
* Reserved field.
|
|
6281
6295
|
* @type {string || null}
|
|
6282
6296
|
*/
|
|
6283
6297
|
this.RenewFlag = null;
|
|
6284
6298
|
|
|
6285
6299
|
/**
|
|
6286
|
-
*
|
|
6287
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6300
|
+
* Reserved field.
|
|
6288
6301
|
* @type {number || null}
|
|
6289
6302
|
*/
|
|
6290
6303
|
this.Period = null;
|
|
@@ -7827,8 +7840,7 @@ class ClusterItem extends AbstractModel {
|
|
|
7827
7840
|
this.ClusterId = null;
|
|
7828
7841
|
|
|
7829
7842
|
/**
|
|
7830
|
-
* Cluster name
|
|
7831
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7843
|
+
* Cluster name.
|
|
7832
7844
|
* @type {string || null}
|
|
7833
7845
|
*/
|
|
7834
7846
|
this.ClusterName = null;
|
|
@@ -11463,14 +11475,16 @@ class InternetAccessible extends AbstractModel {
|
|
|
11463
11475
|
super();
|
|
11464
11476
|
|
|
11465
11477
|
/**
|
|
11466
|
-
* TRAFFIC_POSTPAID_BY_HOUR:
|
|
11467
|
-
BANDWIDTH_PACKAGE: billed by bandwidth package (currently, this method is supported only if the ISP is specified)
|
|
11478
|
+
* TRAFFIC_POSTPAID_BY_HOUR: Postpaid by traffic on an hourly basis. BANDWIDTH_POSTPAID_BY_HOUR: Postpaid by bandwidth on an hourly basis. International site users do not support this billing mode. BANDWIDTH_PACKAGE: Charged by bandwidth package. BANDWIDTH_PREPAID: Bandwidth prepaid.
|
|
11468
11479
|
* @type {string || null}
|
|
11469
11480
|
*/
|
|
11470
11481
|
this.InternetChargeType = null;
|
|
11471
11482
|
|
|
11472
11483
|
/**
|
|
11473
|
-
* Maximum outbound bandwidth, in Mbps. This
|
|
11484
|
+
* Maximum outbound bandwidth, in Mbps. This parameter is valid only for public network shared, LCU-supported, and exclusive CLB instances and private network LCU-supported CLB instances.
|
|
11485
|
+
- The range of the maximum outbound bandwidth for public network shared and exclusive CLB instances is 1 Mbps to 2,048 Mbps.
|
|
11486
|
+
- The range of the maximum outbound bandwidth for public network and private network LCU-supported CLB instances is 1 Mbps to 61,440 Mbps.
|
|
11487
|
+
(If this parameter is not specified when CreateLoadBalancer is called to create a CLB instance, the default value of 10 Mbps is used. This value can be modified.)
|
|
11474
11488
|
* @type {number || null}
|
|
11475
11489
|
*/
|
|
11476
11490
|
this.InternetMaxBandwidthOut = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1179";
|
|
2
2
|
module.exports = sdkVersion
|