tencentcloud-sdk-nodejs-intl-en 3.0.1177 → 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
|
|
@@ -1505,6 +1505,34 @@ class DescribeIpGeolocationInfosRequest extends AbstractModel {
|
|
|
1505
1505
|
}
|
|
1506
1506
|
}
|
|
1507
1507
|
|
|
1508
|
+
/**
|
|
1509
|
+
* AddTemplateMember response structure.
|
|
1510
|
+
* @class
|
|
1511
|
+
*/
|
|
1512
|
+
class AddTemplateMemberResponse extends AbstractModel {
|
|
1513
|
+
constructor(){
|
|
1514
|
+
super();
|
|
1515
|
+
|
|
1516
|
+
/**
|
|
1517
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1518
|
+
* @type {string || null}
|
|
1519
|
+
*/
|
|
1520
|
+
this.RequestId = null;
|
|
1521
|
+
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
/**
|
|
1525
|
+
* @private
|
|
1526
|
+
*/
|
|
1527
|
+
deserialize(params) {
|
|
1528
|
+
if (!params) {
|
|
1529
|
+
return;
|
|
1530
|
+
}
|
|
1531
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1532
|
+
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1508
1536
|
/**
|
|
1509
1537
|
* ResetAttachCcnInstances response structure.
|
|
1510
1538
|
* @class
|
|
@@ -2662,6 +2690,34 @@ class AddressTemplate extends AbstractModel {
|
|
|
2662
2690
|
}
|
|
2663
2691
|
}
|
|
2664
2692
|
|
|
2693
|
+
/**
|
|
2694
|
+
* ModifyTemplateMember response structure.
|
|
2695
|
+
* @class
|
|
2696
|
+
*/
|
|
2697
|
+
class ModifyTemplateMemberResponse extends AbstractModel {
|
|
2698
|
+
constructor(){
|
|
2699
|
+
super();
|
|
2700
|
+
|
|
2701
|
+
/**
|
|
2702
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2703
|
+
* @type {string || null}
|
|
2704
|
+
*/
|
|
2705
|
+
this.RequestId = null;
|
|
2706
|
+
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2709
|
+
/**
|
|
2710
|
+
* @private
|
|
2711
|
+
*/
|
|
2712
|
+
deserialize(params) {
|
|
2713
|
+
if (!params) {
|
|
2714
|
+
return;
|
|
2715
|
+
}
|
|
2716
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2717
|
+
|
|
2718
|
+
}
|
|
2719
|
+
}
|
|
2720
|
+
|
|
2665
2721
|
/**
|
|
2666
2722
|
* VPN gateway quota object
|
|
2667
2723
|
* @class
|
|
@@ -2886,6 +2942,49 @@ class DescribeFlowLogsRequest extends AbstractModel {
|
|
|
2886
2942
|
}
|
|
2887
2943
|
}
|
|
2888
2944
|
|
|
2945
|
+
/**
|
|
2946
|
+
* DeleteTemplateMember request structure.
|
|
2947
|
+
* @class
|
|
2948
|
+
*/
|
|
2949
|
+
class DeleteTemplateMemberRequest extends AbstractModel {
|
|
2950
|
+
constructor(){
|
|
2951
|
+
super();
|
|
2952
|
+
|
|
2953
|
+
/**
|
|
2954
|
+
* Parameter template instance ID, which can be the instance ID of a parameter template of the following four types: IP address, protocol port, IP address group, and protocol port group.
|
|
2955
|
+
* @type {string || null}
|
|
2956
|
+
*/
|
|
2957
|
+
this.TemplateId = null;
|
|
2958
|
+
|
|
2959
|
+
/**
|
|
2960
|
+
* Information on the parameter template to be added. The template can be of the following four types: IP address, protocol port, IP address group, and protocol port group. The type should be consistent with that of the template specified by the TemplateId parameter.
|
|
2961
|
+
* @type {Array.<MemberInfo> || null}
|
|
2962
|
+
*/
|
|
2963
|
+
this.TemplateMember = null;
|
|
2964
|
+
|
|
2965
|
+
}
|
|
2966
|
+
|
|
2967
|
+
/**
|
|
2968
|
+
* @private
|
|
2969
|
+
*/
|
|
2970
|
+
deserialize(params) {
|
|
2971
|
+
if (!params) {
|
|
2972
|
+
return;
|
|
2973
|
+
}
|
|
2974
|
+
this.TemplateId = 'TemplateId' in params ? params.TemplateId : null;
|
|
2975
|
+
|
|
2976
|
+
if (params.TemplateMember) {
|
|
2977
|
+
this.TemplateMember = new Array();
|
|
2978
|
+
for (let z in params.TemplateMember) {
|
|
2979
|
+
let obj = new MemberInfo();
|
|
2980
|
+
obj.deserialize(params.TemplateMember[z]);
|
|
2981
|
+
this.TemplateMember.push(obj);
|
|
2982
|
+
}
|
|
2983
|
+
}
|
|
2984
|
+
|
|
2985
|
+
}
|
|
2986
|
+
}
|
|
2987
|
+
|
|
2889
2988
|
/**
|
|
2890
2989
|
* CloneSecurityGroup request structure.
|
|
2891
2990
|
* @class
|
|
@@ -8755,6 +8854,34 @@ class CcnRoute extends AbstractModel {
|
|
|
8755
8854
|
}
|
|
8756
8855
|
}
|
|
8757
8856
|
|
|
8857
|
+
/**
|
|
8858
|
+
* ModifyIpv6AddressesAttribute response structure.
|
|
8859
|
+
* @class
|
|
8860
|
+
*/
|
|
8861
|
+
class ModifyIpv6AddressesAttributeResponse extends AbstractModel {
|
|
8862
|
+
constructor(){
|
|
8863
|
+
super();
|
|
8864
|
+
|
|
8865
|
+
/**
|
|
8866
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
8867
|
+
* @type {string || null}
|
|
8868
|
+
*/
|
|
8869
|
+
this.RequestId = null;
|
|
8870
|
+
|
|
8871
|
+
}
|
|
8872
|
+
|
|
8873
|
+
/**
|
|
8874
|
+
* @private
|
|
8875
|
+
*/
|
|
8876
|
+
deserialize(params) {
|
|
8877
|
+
if (!params) {
|
|
8878
|
+
return;
|
|
8879
|
+
}
|
|
8880
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8881
|
+
|
|
8882
|
+
}
|
|
8883
|
+
}
|
|
8884
|
+
|
|
8758
8885
|
/**
|
|
8759
8886
|
* DescribeTrafficPackages request structure.
|
|
8760
8887
|
* @class
|
|
@@ -12549,18 +12676,24 @@ class DisableSnapshotPoliciesRequest extends AbstractModel {
|
|
|
12549
12676
|
}
|
|
12550
12677
|
|
|
12551
12678
|
/**
|
|
12552
|
-
*
|
|
12679
|
+
* Parameter template information.
|
|
12553
12680
|
* @class
|
|
12554
12681
|
*/
|
|
12555
|
-
class
|
|
12682
|
+
class MemberInfo extends AbstractModel {
|
|
12556
12683
|
constructor(){
|
|
12557
12684
|
super();
|
|
12558
12685
|
|
|
12559
12686
|
/**
|
|
12560
|
-
*
|
|
12687
|
+
* Parameter template.
|
|
12561
12688
|
* @type {string || null}
|
|
12562
12689
|
*/
|
|
12563
|
-
this.
|
|
12690
|
+
this.Member = null;
|
|
12691
|
+
|
|
12692
|
+
/**
|
|
12693
|
+
* Parameter template description.
|
|
12694
|
+
* @type {string || null}
|
|
12695
|
+
*/
|
|
12696
|
+
this.Description = null;
|
|
12564
12697
|
|
|
12565
12698
|
}
|
|
12566
12699
|
|
|
@@ -12571,7 +12704,8 @@ class ModifyIpv6AddressesAttributeResponse extends AbstractModel {
|
|
|
12571
12704
|
if (!params) {
|
|
12572
12705
|
return;
|
|
12573
12706
|
}
|
|
12574
|
-
this.
|
|
12707
|
+
this.Member = 'Member' in params ? params.Member : null;
|
|
12708
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
12575
12709
|
|
|
12576
12710
|
}
|
|
12577
12711
|
}
|
|
@@ -14350,6 +14484,34 @@ class CreateCcnRequest extends AbstractModel {
|
|
|
14350
14484
|
}
|
|
14351
14485
|
}
|
|
14352
14486
|
|
|
14487
|
+
/**
|
|
14488
|
+
* DeleteTemplateMember response structure.
|
|
14489
|
+
* @class
|
|
14490
|
+
*/
|
|
14491
|
+
class DeleteTemplateMemberResponse extends AbstractModel {
|
|
14492
|
+
constructor(){
|
|
14493
|
+
super();
|
|
14494
|
+
|
|
14495
|
+
/**
|
|
14496
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
14497
|
+
* @type {string || null}
|
|
14498
|
+
*/
|
|
14499
|
+
this.RequestId = null;
|
|
14500
|
+
|
|
14501
|
+
}
|
|
14502
|
+
|
|
14503
|
+
/**
|
|
14504
|
+
* @private
|
|
14505
|
+
*/
|
|
14506
|
+
deserialize(params) {
|
|
14507
|
+
if (!params) {
|
|
14508
|
+
return;
|
|
14509
|
+
}
|
|
14510
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
14511
|
+
|
|
14512
|
+
}
|
|
14513
|
+
}
|
|
14514
|
+
|
|
14353
14515
|
/**
|
|
14354
14516
|
* DescribeIpGeolocationDatabaseUrl request structure.
|
|
14355
14517
|
* @class
|
|
@@ -19627,6 +19789,64 @@ class DescribeCcnRegionBandwidthLimitsResponse extends AbstractModel {
|
|
|
19627
19789
|
}
|
|
19628
19790
|
}
|
|
19629
19791
|
|
|
19792
|
+
/**
|
|
19793
|
+
* ModifyTemplateMember request structure.
|
|
19794
|
+
* @class
|
|
19795
|
+
*/
|
|
19796
|
+
class ModifyTemplateMemberRequest extends AbstractModel {
|
|
19797
|
+
constructor(){
|
|
19798
|
+
super();
|
|
19799
|
+
|
|
19800
|
+
/**
|
|
19801
|
+
* Parameter template instance ID, which can be the instance ID of a parameter template of the following four types: IP address, protocol port, IP address group, and protocol port group.
|
|
19802
|
+
* @type {string || null}
|
|
19803
|
+
*/
|
|
19804
|
+
this.TemplateId = null;
|
|
19805
|
+
|
|
19806
|
+
/**
|
|
19807
|
+
* Information on the parameter template to be modified. The template can be of the following four types: IP address, protocol port, IP address group, and protocol port group. The type should be consistent with that of the template specified by the TemplateId parameter. The parameter sequence should be the same as that of TemplateMember, and the input parameter length should be consistent with that of TemplateMember.
|
|
19808
|
+
* @type {Array.<MemberInfo> || null}
|
|
19809
|
+
*/
|
|
19810
|
+
this.OriginalTemplateMember = null;
|
|
19811
|
+
|
|
19812
|
+
/**
|
|
19813
|
+
* New parameter template information. The template can be of the following four types: IP address, protocol port, IP address group, and protocol port group. The type should be consistent with that of the template specified by the TemplateId parameter. The parameter sequence should be the same as that of OriginalTemplateMember, and the input parameter length should be consistent with that of OriginalTemplateMember.
|
|
19814
|
+
* @type {Array.<MemberInfo> || null}
|
|
19815
|
+
*/
|
|
19816
|
+
this.TemplateMember = null;
|
|
19817
|
+
|
|
19818
|
+
}
|
|
19819
|
+
|
|
19820
|
+
/**
|
|
19821
|
+
* @private
|
|
19822
|
+
*/
|
|
19823
|
+
deserialize(params) {
|
|
19824
|
+
if (!params) {
|
|
19825
|
+
return;
|
|
19826
|
+
}
|
|
19827
|
+
this.TemplateId = 'TemplateId' in params ? params.TemplateId : null;
|
|
19828
|
+
|
|
19829
|
+
if (params.OriginalTemplateMember) {
|
|
19830
|
+
this.OriginalTemplateMember = new Array();
|
|
19831
|
+
for (let z in params.OriginalTemplateMember) {
|
|
19832
|
+
let obj = new MemberInfo();
|
|
19833
|
+
obj.deserialize(params.OriginalTemplateMember[z]);
|
|
19834
|
+
this.OriginalTemplateMember.push(obj);
|
|
19835
|
+
}
|
|
19836
|
+
}
|
|
19837
|
+
|
|
19838
|
+
if (params.TemplateMember) {
|
|
19839
|
+
this.TemplateMember = new Array();
|
|
19840
|
+
for (let z in params.TemplateMember) {
|
|
19841
|
+
let obj = new MemberInfo();
|
|
19842
|
+
obj.deserialize(params.TemplateMember[z]);
|
|
19843
|
+
this.TemplateMember.push(obj);
|
|
19844
|
+
}
|
|
19845
|
+
}
|
|
19846
|
+
|
|
19847
|
+
}
|
|
19848
|
+
}
|
|
19849
|
+
|
|
19630
19850
|
/**
|
|
19631
19851
|
* EnableSnapshotPolicies request structure.
|
|
19632
19852
|
* @class
|
|
@@ -31692,6 +31912,49 @@ class InstanceChargePrepaid extends AbstractModel {
|
|
|
31692
31912
|
}
|
|
31693
31913
|
}
|
|
31694
31914
|
|
|
31915
|
+
/**
|
|
31916
|
+
* AddTemplateMember request structure.
|
|
31917
|
+
* @class
|
|
31918
|
+
*/
|
|
31919
|
+
class AddTemplateMemberRequest extends AbstractModel {
|
|
31920
|
+
constructor(){
|
|
31921
|
+
super();
|
|
31922
|
+
|
|
31923
|
+
/**
|
|
31924
|
+
* Parameter template instance ID, which can be the instance ID of a parameter template of the following four types: IP address, protocol port, IP address group, and protocol port group.
|
|
31925
|
+
* @type {string || null}
|
|
31926
|
+
*/
|
|
31927
|
+
this.TemplateId = null;
|
|
31928
|
+
|
|
31929
|
+
/**
|
|
31930
|
+
* Information on the parameter template to be added. The template can be of the following four types: IP address, protocol port, IP address group, and protocol port group. The type should be consistent with that of the template specified by the TemplateId parameter.
|
|
31931
|
+
* @type {Array.<MemberInfo> || null}
|
|
31932
|
+
*/
|
|
31933
|
+
this.TemplateMember = null;
|
|
31934
|
+
|
|
31935
|
+
}
|
|
31936
|
+
|
|
31937
|
+
/**
|
|
31938
|
+
* @private
|
|
31939
|
+
*/
|
|
31940
|
+
deserialize(params) {
|
|
31941
|
+
if (!params) {
|
|
31942
|
+
return;
|
|
31943
|
+
}
|
|
31944
|
+
this.TemplateId = 'TemplateId' in params ? params.TemplateId : null;
|
|
31945
|
+
|
|
31946
|
+
if (params.TemplateMember) {
|
|
31947
|
+
this.TemplateMember = new Array();
|
|
31948
|
+
for (let z in params.TemplateMember) {
|
|
31949
|
+
let obj = new MemberInfo();
|
|
31950
|
+
obj.deserialize(params.TemplateMember[z]);
|
|
31951
|
+
this.TemplateMember.push(obj);
|
|
31952
|
+
}
|
|
31953
|
+
}
|
|
31954
|
+
|
|
31955
|
+
}
|
|
31956
|
+
}
|
|
31957
|
+
|
|
31695
31958
|
/**
|
|
31696
31959
|
* DescribeVpcEndPointServiceWhiteList response structure.
|
|
31697
31960
|
* @class
|
|
@@ -31981,6 +32244,7 @@ module.exports = {
|
|
|
31981
32244
|
ModifyServiceTemplateAttributeRequest: ModifyServiceTemplateAttributeRequest,
|
|
31982
32245
|
SecurityGroupPolicy: SecurityGroupPolicy,
|
|
31983
32246
|
DescribeIpGeolocationInfosRequest: DescribeIpGeolocationInfosRequest,
|
|
32247
|
+
AddTemplateMemberResponse: AddTemplateMemberResponse,
|
|
31984
32248
|
ResetAttachCcnInstancesResponse: ResetAttachCcnInstancesResponse,
|
|
31985
32249
|
CreateSnapshotPoliciesResponse: CreateSnapshotPoliciesResponse,
|
|
31986
32250
|
DescribeServiceTemplateGroupsResponse: DescribeServiceTemplateGroupsResponse,
|
|
@@ -32003,10 +32267,12 @@ module.exports = {
|
|
|
32003
32267
|
ModifyNetworkAclEntriesRequest: ModifyNetworkAclEntriesRequest,
|
|
32004
32268
|
DescribeVpcPrivateIpAddressesRequest: DescribeVpcPrivateIpAddressesRequest,
|
|
32005
32269
|
AddressTemplate: AddressTemplate,
|
|
32270
|
+
ModifyTemplateMemberResponse: ModifyTemplateMemberResponse,
|
|
32006
32271
|
VpnGatewayQuota: VpnGatewayQuota,
|
|
32007
32272
|
DescribeBandwidthPackageBillUsageRequest: DescribeBandwidthPackageBillUsageRequest,
|
|
32008
32273
|
UnassignIpv6AddressesResponse: UnassignIpv6AddressesResponse,
|
|
32009
32274
|
DescribeFlowLogsRequest: DescribeFlowLogsRequest,
|
|
32275
|
+
DeleteTemplateMemberRequest: DeleteTemplateMemberRequest,
|
|
32010
32276
|
CloneSecurityGroupRequest: CloneSecurityGroupRequest,
|
|
32011
32277
|
AssociateNatGatewayAddressRequest: AssociateNatGatewayAddressRequest,
|
|
32012
32278
|
CreateDirectConnectGatewayRequest: CreateDirectConnectGatewayRequest,
|
|
@@ -32130,6 +32396,7 @@ module.exports = {
|
|
|
32130
32396
|
InternetPriceDetail: InternetPriceDetail,
|
|
32131
32397
|
CreateVpnConnectionRequest: CreateVpnConnectionRequest,
|
|
32132
32398
|
CcnRoute: CcnRoute,
|
|
32399
|
+
ModifyIpv6AddressesAttributeResponse: ModifyIpv6AddressesAttributeResponse,
|
|
32133
32400
|
DescribeTrafficPackagesRequest: DescribeTrafficPackagesRequest,
|
|
32134
32401
|
DeleteSecurityGroupPoliciesRequest: DeleteSecurityGroupPoliciesRequest,
|
|
32135
32402
|
VpnConnection: VpnConnection,
|
|
@@ -32201,7 +32468,7 @@ module.exports = {
|
|
|
32201
32468
|
NetDetect: NetDetect,
|
|
32202
32469
|
VpnGatewayRouteModify: VpnGatewayRouteModify,
|
|
32203
32470
|
DisableSnapshotPoliciesRequest: DisableSnapshotPoliciesRequest,
|
|
32204
|
-
|
|
32471
|
+
MemberInfo: MemberInfo,
|
|
32205
32472
|
ResumeSnapshotInstanceRequest: ResumeSnapshotInstanceRequest,
|
|
32206
32473
|
ReplaceSecurityGroupPolicyRequest: ReplaceSecurityGroupPolicyRequest,
|
|
32207
32474
|
ModifyVpcEndPointServiceAttributeResponse: ModifyVpcEndPointServiceAttributeResponse,
|
|
@@ -32241,6 +32508,7 @@ module.exports = {
|
|
|
32241
32508
|
DescribeNetworkInterfaceLimitResponse: DescribeNetworkInterfaceLimitResponse,
|
|
32242
32509
|
AssignIpv6CidrBlockResponse: AssignIpv6CidrBlockResponse,
|
|
32243
32510
|
CreateCcnRequest: CreateCcnRequest,
|
|
32511
|
+
DeleteTemplateMemberResponse: DeleteTemplateMemberResponse,
|
|
32244
32512
|
DescribeIpGeolocationDatabaseUrlRequest: DescribeIpGeolocationDatabaseUrlRequest,
|
|
32245
32513
|
DescribeVpcEndPointResponse: DescribeVpcEndPointResponse,
|
|
32246
32514
|
DescribeNetworkAclQuintupleEntriesRequest: DescribeNetworkAclQuintupleEntriesRequest,
|
|
@@ -32342,6 +32610,7 @@ module.exports = {
|
|
|
32342
32610
|
CreateVpcEndPointResponse: CreateVpcEndPointResponse,
|
|
32343
32611
|
DeleteAssistantCidrResponse: DeleteAssistantCidrResponse,
|
|
32344
32612
|
DescribeCcnRegionBandwidthLimitsResponse: DescribeCcnRegionBandwidthLimitsResponse,
|
|
32613
|
+
ModifyTemplateMemberRequest: ModifyTemplateMemberRequest,
|
|
32345
32614
|
EnableSnapshotPoliciesRequest: EnableSnapshotPoliciesRequest,
|
|
32346
32615
|
DescribeAddressesResponse: DescribeAddressesResponse,
|
|
32347
32616
|
GatewayQos: GatewayQos,
|
|
@@ -32613,6 +32882,7 @@ module.exports = {
|
|
|
32613
32882
|
DescribeBandwidthPackageQuotaRequest: DescribeBandwidthPackageQuotaRequest,
|
|
32614
32883
|
DeleteVpcResponse: DeleteVpcResponse,
|
|
32615
32884
|
InstanceChargePrepaid: InstanceChargePrepaid,
|
|
32885
|
+
AddTemplateMemberRequest: AddTemplateMemberRequest,
|
|
32616
32886
|
DescribeVpcEndPointServiceWhiteListResponse: DescribeVpcEndPointServiceWhiteListResponse,
|
|
32617
32887
|
AcceptAttachCcnInstancesResponse: AcceptAttachCcnInstancesResponse,
|
|
32618
32888
|
DescribeUsedIpAddressResponse: DescribeUsedIpAddressResponse,
|
|
@@ -44,6 +44,7 @@ const ModifyNetworkAclQuintupleEntriesRequest = models.ModifyNetworkAclQuintuple
|
|
|
44
44
|
const ModifyServiceTemplateAttributeRequest = models.ModifyServiceTemplateAttributeRequest;
|
|
45
45
|
const SecurityGroupPolicy = models.SecurityGroupPolicy;
|
|
46
46
|
const DescribeIpGeolocationInfosRequest = models.DescribeIpGeolocationInfosRequest;
|
|
47
|
+
const AddTemplateMemberResponse = models.AddTemplateMemberResponse;
|
|
47
48
|
const ResetAttachCcnInstancesResponse = models.ResetAttachCcnInstancesResponse;
|
|
48
49
|
const CreateSnapshotPoliciesResponse = models.CreateSnapshotPoliciesResponse;
|
|
49
50
|
const DescribeServiceTemplateGroupsResponse = models.DescribeServiceTemplateGroupsResponse;
|
|
@@ -66,10 +67,12 @@ const AssistantCidr = models.AssistantCidr;
|
|
|
66
67
|
const ModifyNetworkAclEntriesRequest = models.ModifyNetworkAclEntriesRequest;
|
|
67
68
|
const DescribeVpcPrivateIpAddressesRequest = models.DescribeVpcPrivateIpAddressesRequest;
|
|
68
69
|
const AddressTemplate = models.AddressTemplate;
|
|
70
|
+
const ModifyTemplateMemberResponse = models.ModifyTemplateMemberResponse;
|
|
69
71
|
const VpnGatewayQuota = models.VpnGatewayQuota;
|
|
70
72
|
const DescribeBandwidthPackageBillUsageRequest = models.DescribeBandwidthPackageBillUsageRequest;
|
|
71
73
|
const UnassignIpv6AddressesResponse = models.UnassignIpv6AddressesResponse;
|
|
72
74
|
const DescribeFlowLogsRequest = models.DescribeFlowLogsRequest;
|
|
75
|
+
const DeleteTemplateMemberRequest = models.DeleteTemplateMemberRequest;
|
|
73
76
|
const CloneSecurityGroupRequest = models.CloneSecurityGroupRequest;
|
|
74
77
|
const AssociateNatGatewayAddressRequest = models.AssociateNatGatewayAddressRequest;
|
|
75
78
|
const CreateDirectConnectGatewayRequest = models.CreateDirectConnectGatewayRequest;
|
|
@@ -193,6 +196,7 @@ const InstanceStatistic = models.InstanceStatistic;
|
|
|
193
196
|
const InternetPriceDetail = models.InternetPriceDetail;
|
|
194
197
|
const CreateVpnConnectionRequest = models.CreateVpnConnectionRequest;
|
|
195
198
|
const CcnRoute = models.CcnRoute;
|
|
199
|
+
const ModifyIpv6AddressesAttributeResponse = models.ModifyIpv6AddressesAttributeResponse;
|
|
196
200
|
const DescribeTrafficPackagesRequest = models.DescribeTrafficPackagesRequest;
|
|
197
201
|
const DeleteSecurityGroupPoliciesRequest = models.DeleteSecurityGroupPoliciesRequest;
|
|
198
202
|
const VpnConnection = models.VpnConnection;
|
|
@@ -264,7 +268,7 @@ const CreateServiceTemplateGroupResponse = models.CreateServiceTemplateGroupResp
|
|
|
264
268
|
const NetDetect = models.NetDetect;
|
|
265
269
|
const VpnGatewayRouteModify = models.VpnGatewayRouteModify;
|
|
266
270
|
const DisableSnapshotPoliciesRequest = models.DisableSnapshotPoliciesRequest;
|
|
267
|
-
const
|
|
271
|
+
const MemberInfo = models.MemberInfo;
|
|
268
272
|
const ResumeSnapshotInstanceRequest = models.ResumeSnapshotInstanceRequest;
|
|
269
273
|
const ReplaceSecurityGroupPolicyRequest = models.ReplaceSecurityGroupPolicyRequest;
|
|
270
274
|
const ModifyVpcEndPointServiceAttributeResponse = models.ModifyVpcEndPointServiceAttributeResponse;
|
|
@@ -304,6 +308,7 @@ const ModifyGatewayFlowQosRequest = models.ModifyGatewayFlowQosRequest;
|
|
|
304
308
|
const DescribeNetworkInterfaceLimitResponse = models.DescribeNetworkInterfaceLimitResponse;
|
|
305
309
|
const AssignIpv6CidrBlockResponse = models.AssignIpv6CidrBlockResponse;
|
|
306
310
|
const CreateCcnRequest = models.CreateCcnRequest;
|
|
311
|
+
const DeleteTemplateMemberResponse = models.DeleteTemplateMemberResponse;
|
|
307
312
|
const DescribeIpGeolocationDatabaseUrlRequest = models.DescribeIpGeolocationDatabaseUrlRequest;
|
|
308
313
|
const DescribeVpcEndPointResponse = models.DescribeVpcEndPointResponse;
|
|
309
314
|
const DescribeNetworkAclQuintupleEntriesRequest = models.DescribeNetworkAclQuintupleEntriesRequest;
|
|
@@ -405,6 +410,7 @@ const AssignIpv6SubnetCidrBlockResponse = models.AssignIpv6SubnetCidrBlockRespon
|
|
|
405
410
|
const CreateVpcEndPointResponse = models.CreateVpcEndPointResponse;
|
|
406
411
|
const DeleteAssistantCidrResponse = models.DeleteAssistantCidrResponse;
|
|
407
412
|
const DescribeCcnRegionBandwidthLimitsResponse = models.DescribeCcnRegionBandwidthLimitsResponse;
|
|
413
|
+
const ModifyTemplateMemberRequest = models.ModifyTemplateMemberRequest;
|
|
408
414
|
const EnableSnapshotPoliciesRequest = models.EnableSnapshotPoliciesRequest;
|
|
409
415
|
const DescribeAddressesResponse = models.DescribeAddressesResponse;
|
|
410
416
|
const GatewayQos = models.GatewayQos;
|
|
@@ -676,6 +682,7 @@ const ModifySubnetAttributeRequest = models.ModifySubnetAttributeRequest;
|
|
|
676
682
|
const DescribeBandwidthPackageQuotaRequest = models.DescribeBandwidthPackageQuotaRequest;
|
|
677
683
|
const DeleteVpcResponse = models.DeleteVpcResponse;
|
|
678
684
|
const InstanceChargePrepaid = models.InstanceChargePrepaid;
|
|
685
|
+
const AddTemplateMemberRequest = models.AddTemplateMemberRequest;
|
|
679
686
|
const DescribeVpcEndPointServiceWhiteListResponse = models.DescribeVpcEndPointServiceWhiteListResponse;
|
|
680
687
|
const AcceptAttachCcnInstancesResponse = models.AcceptAttachCcnInstancesResponse;
|
|
681
688
|
const DescribeUsedIpAddressResponse = models.DescribeUsedIpAddressResponse;
|
|
@@ -1640,6 +1647,17 @@ This API is used to check the jumbo frame status before and after instance migra
|
|
|
1640
1647
|
this.request("AcceptAttachCcnInstances", req, resp, cb);
|
|
1641
1648
|
}
|
|
1642
1649
|
|
|
1650
|
+
/**
|
|
1651
|
+
* This API is used to delete a parameter template of the IP address, protocol port, IP address group, or protocol port group type.
|
|
1652
|
+
* @param {DeleteTemplateMemberRequest} req
|
|
1653
|
+
* @param {function(string, DeleteTemplateMemberResponse):void} cb
|
|
1654
|
+
* @public
|
|
1655
|
+
*/
|
|
1656
|
+
DeleteTemplateMember(req, cb) {
|
|
1657
|
+
let resp = new DeleteTemplateMemberResponse();
|
|
1658
|
+
this.request("DeleteTemplateMember", req, resp, cb);
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1643
1661
|
/**
|
|
1644
1662
|
* This API (DeleteServiceTemplateGroup) is used to delete a protocol port template group.
|
|
1645
1663
|
* @param {DeleteServiceTemplateGroupRequest} req
|
|
@@ -1662,6 +1680,17 @@ This API is used to check the jumbo frame status before and after instance migra
|
|
|
1662
1680
|
this.request("DescribeGatewayFlowQos", req, resp, cb);
|
|
1663
1681
|
}
|
|
1664
1682
|
|
|
1683
|
+
/**
|
|
1684
|
+
* This API is used to modify a parameter template of the IP address, protocol port, IP address group, or protocol port group type.
|
|
1685
|
+
* @param {ModifyTemplateMemberRequest} req
|
|
1686
|
+
* @param {function(string, ModifyTemplateMemberResponse):void} cb
|
|
1687
|
+
* @public
|
|
1688
|
+
*/
|
|
1689
|
+
ModifyTemplateMember(req, cb) {
|
|
1690
|
+
let resp = new ModifyTemplateMemberResponse();
|
|
1691
|
+
this.request("ModifyTemplateMember", req, resp, cb);
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1665
1694
|
/**
|
|
1666
1695
|
* This API is used to unbind a direct connect gateway from a NAT Gateway. After unbinding, the direct connect gateway cannot access internet through the NAT Gateway.
|
|
1667
1696
|
* @param {DisassociateDirectConnectGatewayNatGatewayRequest} req
|
|
@@ -2028,6 +2057,17 @@ This API is completed asynchronously. If you need to query the async job executi
|
|
|
2028
2057
|
this.request("DeleteDirectConnectGateway", req, resp, cb);
|
|
2029
2058
|
}
|
|
2030
2059
|
|
|
2060
|
+
/**
|
|
2061
|
+
* This API is used to query instances associated with a snapshot policy.
|
|
2062
|
+
* @param {DescribeSnapshotAttachedInstancesRequest} req
|
|
2063
|
+
* @param {function(string, DescribeSnapshotAttachedInstancesResponse):void} cb
|
|
2064
|
+
* @public
|
|
2065
|
+
*/
|
|
2066
|
+
DescribeSnapshotAttachedInstances(req, cb) {
|
|
2067
|
+
let resp = new DescribeSnapshotAttachedInstancesResponse();
|
|
2068
|
+
this.request("DescribeSnapshotAttachedInstances", req, resp, cb);
|
|
2069
|
+
}
|
|
2070
|
+
|
|
2031
2071
|
/**
|
|
2032
2072
|
* This API (DescribeDirectConnectGatewayCcnRoutes) is used to query the CCN routes (IDC IP range) of the Direct Connect gateway.
|
|
2033
2073
|
* @param {DescribeDirectConnectGatewayCcnRoutesRequest} req
|
|
@@ -3118,14 +3158,14 @@ This API is completed asynchronously. If you need to query the execution result
|
|
|
3118
3158
|
}
|
|
3119
3159
|
|
|
3120
3160
|
/**
|
|
3121
|
-
* This API is used to
|
|
3122
|
-
* @param {
|
|
3123
|
-
* @param {function(string,
|
|
3161
|
+
* This API is used to add a parameter template of the IP address, protocol port, IP address group, or protocol port group type.
|
|
3162
|
+
* @param {AddTemplateMemberRequest} req
|
|
3163
|
+
* @param {function(string, AddTemplateMemberResponse):void} cb
|
|
3124
3164
|
* @public
|
|
3125
3165
|
*/
|
|
3126
|
-
|
|
3127
|
-
let resp = new
|
|
3128
|
-
this.request("
|
|
3166
|
+
AddTemplateMember(req, cb) {
|
|
3167
|
+
let resp = new AddTemplateMemberResponse();
|
|
3168
|
+
this.request("AddTemplateMember", req, resp, cb);
|
|
3129
3169
|
}
|
|
3130
3170
|
|
|
3131
3171
|
/**
|