tencentcloud-sdk-nodejs-intl-en 3.0.607 → 3.0.609
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 +1 -1
- package/tencentcloud/ckafka/v20190819/models.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cynosdb/v20190107/cynosdb_client.js +156 -45
- package/tencentcloud/cynosdb/v20190107/models.js +1650 -224
- package/tencentcloud/emr/v20190103/emr_client.js +6 -1
- package/tencentcloud/emr/v20190103/models.js +385 -76
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/lcic/index.js +3 -0
- package/tencentcloud/lcic/v20220817/index.js +4 -0
- package/tencentcloud/lcic/v20220817/lcic_client.js +217 -0
- package/tencentcloud/lcic/v20220817/models.js +1413 -0
- package/tencentcloud/tem/v20210701/models.js +6731 -1890
- package/tencentcloud/tem/v20210701/tem_client.js +393 -61
- package/tencentcloud/vpc/v20170312/models.js +435 -32
- package/tencentcloud/vpc/v20170312/vpc_client.js +61 -20
|
@@ -778,19 +778,21 @@ class DescribeNetworkInterfacesRequest extends AbstractModel {
|
|
|
778
778
|
|
|
779
779
|
/**
|
|
780
780
|
* Filter. `NetworkInterfaceIds` and `Filters` cannot be specified at the same time.
|
|
781
|
-
<li>`vpc-id` - String - VPC
|
|
782
|
-
<li>`subnet-id` - String - Subnet
|
|
783
|
-
<li>`network-interface-id` - String - ENI
|
|
784
|
-
<li>`attachment.instance-id` - String - ID of the bound CVM
|
|
785
|
-
<li>`groups.security-group-id` - String -
|
|
781
|
+
<li>`vpc-id` - String - VPC ID, such as `vpc-f49l6u0z`.</li>
|
|
782
|
+
<li>`subnet-id` - String - Subnet ID, such as `subnet-f49l6u0z`.</li>
|
|
783
|
+
<li>`network-interface-id` - String - ENI ID, such as `eni-5k56k7k7`.</li>
|
|
784
|
+
<li>`attachment.instance-id` - String - ID of the bound CVM, such as `ins-3nqpdn3i`.</li>
|
|
785
|
+
<li>`groups.security-group-id` - String - IDs of associated security groups, such as `sg-f9ekbxeq`.</li>
|
|
786
786
|
<li>`network-interface-name` - String - ENI instance name.</li>
|
|
787
787
|
<li>`network-interface-description` - String - ENI instance description.</li>
|
|
788
788
|
<li>`address-ip` - String - Private IPv4 address. A single IP will be fuzzily matched with the suffix, while multiple IPs will be exactly matched. It can be used with `ip-exact-match` to query and exactly match a single IP.</li>
|
|
789
789
|
<li>`ip-exact-match` - Boolean - Exact match by private IPv4 address. The first value will be returned if multiple values are found.</li>
|
|
790
|
-
<li>`tag-key` - String - Optional - Filter by tag key. See Example 2 for the detailed usage.</li>
|
|
791
|
-
<li>`tag:tag-key` - String - Optional - Filter by tag key pair. Use a specific tag key to replace `tag-key`. See Example
|
|
792
|
-
<li>`is-primary` - Boolean - Optional - Filter based on whether it is a primary ENI.
|
|
793
|
-
<li>`eni-type` - String - Optional - Filter by ENI type.
|
|
790
|
+
<li>`tag-key` - String - Optional - Filter by the tag key. See Example 2 for the detailed usage.</li>
|
|
791
|
+
<li>`tag:tag-key` - String - Optional - Filter by the tag key pair. Use a specific tag key to replace `tag-key`. See Example 2 for the detailed usage.</li>
|
|
792
|
+
<li>`is-primary` - Boolean - Optional - Filter based on whether it is a primary ENI. Values: `true`, `false`. If this parameter is not specified, filter the both.</li>
|
|
793
|
+
<li>`eni-type` - String - Optional - Filter by the ENI type. Values: `0` (Secondary ENI), `1` (Primary ENI), `2` (Relayed ENI)</li>
|
|
794
|
+
<li>`eni-qos` - String - Optional - Filter by the ENI service level. Values: `AG` (Bronze), `AU` (Silver)</li>
|
|
795
|
+
<li>`address-ipv6` - String - Optional - Filter by the private IPv6 address. Multiple IPv6 addresses can be used for query. If this field is used together with `address-ip`, their intersection will be used.</li>
|
|
794
796
|
* @type {Array.<Filter> || null}
|
|
795
797
|
*/
|
|
796
798
|
this.Filters = null;
|
|
@@ -1097,6 +1099,49 @@ class ModifyNatGatewaySourceIpTranslationNatRuleRequest extends AbstractModel {
|
|
|
1097
1099
|
}
|
|
1098
1100
|
}
|
|
1099
1101
|
|
|
1102
|
+
/**
|
|
1103
|
+
* SetVpnGatewaysRenewFlag request structure.
|
|
1104
|
+
* @class
|
|
1105
|
+
*/
|
|
1106
|
+
class SetVpnGatewaysRenewFlagRequest extends AbstractModel {
|
|
1107
|
+
constructor(){
|
|
1108
|
+
super();
|
|
1109
|
+
|
|
1110
|
+
/**
|
|
1111
|
+
* VPN gateway IDs
|
|
1112
|
+
* @type {Array.<string> || null}
|
|
1113
|
+
*/
|
|
1114
|
+
this.VpnGatewayIds = null;
|
|
1115
|
+
|
|
1116
|
+
/**
|
|
1117
|
+
* Status of auto-renewal
|
|
1118
|
+
Values: `0` (Follow original), `1` (Enable auto-renewal), `2` (Disable auto-renewal)
|
|
1119
|
+
* @type {number || null}
|
|
1120
|
+
*/
|
|
1121
|
+
this.AutoRenewFlag = null;
|
|
1122
|
+
|
|
1123
|
+
/**
|
|
1124
|
+
* VPNGW type: `IPSEC`, `SSL`
|
|
1125
|
+
* @type {string || null}
|
|
1126
|
+
*/
|
|
1127
|
+
this.Type = null;
|
|
1128
|
+
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
/**
|
|
1132
|
+
* @private
|
|
1133
|
+
*/
|
|
1134
|
+
deserialize(params) {
|
|
1135
|
+
if (!params) {
|
|
1136
|
+
return;
|
|
1137
|
+
}
|
|
1138
|
+
this.VpnGatewayIds = 'VpnGatewayIds' in params ? params.VpnGatewayIds : null;
|
|
1139
|
+
this.AutoRenewFlag = 'AutoRenewFlag' in params ? params.AutoRenewFlag : null;
|
|
1140
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
1141
|
+
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1100
1145
|
/**
|
|
1101
1146
|
* ModifyCcnRegionBandwidthLimitsType response structure.
|
|
1102
1147
|
* @class
|
|
@@ -2839,17 +2884,12 @@ class ModifyBandwidthPackageAttributeRequest extends AbstractModel {
|
|
|
2839
2884
|
this.BandwidthPackageName = null;
|
|
2840
2885
|
|
|
2841
2886
|
/**
|
|
2842
|
-
* The billing mode of the bandwidth package.
|
|
2887
|
+
* The billing mode of the bandwidth package. Values:
|
|
2888
|
+
`TOP5_POSTPAID_BY_MONTH`: Bill by the top 5 bandwidth value of the current month in a postpaid manner
|
|
2843
2889
|
* @type {string || null}
|
|
2844
2890
|
*/
|
|
2845
2891
|
this.ChargeType = null;
|
|
2846
2892
|
|
|
2847
|
-
/**
|
|
2848
|
-
* When a monthly-subscribed bandwidth package is returned, whether to convert it to a pay-as-you-go bandwidth packages. Default value: `No`
|
|
2849
|
-
* @type {boolean || null}
|
|
2850
|
-
*/
|
|
2851
|
-
this.MigrateOnRefund = null;
|
|
2852
|
-
|
|
2853
2893
|
}
|
|
2854
2894
|
|
|
2855
2895
|
/**
|
|
@@ -2862,7 +2902,6 @@ class ModifyBandwidthPackageAttributeRequest extends AbstractModel {
|
|
|
2862
2902
|
this.BandwidthPackageId = 'BandwidthPackageId' in params ? params.BandwidthPackageId : null;
|
|
2863
2903
|
this.BandwidthPackageName = 'BandwidthPackageName' in params ? params.BandwidthPackageName : null;
|
|
2864
2904
|
this.ChargeType = 'ChargeType' in params ? params.ChargeType : null;
|
|
2865
|
-
this.MigrateOnRefund = 'MigrateOnRefund' in params ? params.MigrateOnRefund : null;
|
|
2866
2905
|
|
|
2867
2906
|
}
|
|
2868
2907
|
}
|
|
@@ -2875,6 +2914,18 @@ class TransformAddressResponse extends AbstractModel {
|
|
|
2875
2914
|
constructor(){
|
|
2876
2915
|
super();
|
|
2877
2916
|
|
|
2917
|
+
/**
|
|
2918
|
+
*
|
|
2919
|
+
* @type {number || null}
|
|
2920
|
+
*/
|
|
2921
|
+
this.TaskId = null;
|
|
2922
|
+
|
|
2923
|
+
/**
|
|
2924
|
+
*
|
|
2925
|
+
* @type {string || null}
|
|
2926
|
+
*/
|
|
2927
|
+
this.AddressId = null;
|
|
2928
|
+
|
|
2878
2929
|
/**
|
|
2879
2930
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
2880
2931
|
* @type {string || null}
|
|
@@ -2890,6 +2941,8 @@ class TransformAddressResponse extends AbstractModel {
|
|
|
2890
2941
|
if (!params) {
|
|
2891
2942
|
return;
|
|
2892
2943
|
}
|
|
2944
|
+
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
2945
|
+
this.AddressId = 'AddressId' in params ? params.AddressId : null;
|
|
2893
2946
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2894
2947
|
|
|
2895
2948
|
}
|
|
@@ -5658,6 +5711,34 @@ class DescribeNatGatewayDestinationIpPortTranslationNatRulesRequest extends Abs
|
|
|
5658
5711
|
}
|
|
5659
5712
|
}
|
|
5660
5713
|
|
|
5714
|
+
/**
|
|
5715
|
+
* ReturnNormalAddresses request structure.
|
|
5716
|
+
* @class
|
|
5717
|
+
*/
|
|
5718
|
+
class ReturnNormalAddressesRequest extends AbstractModel {
|
|
5719
|
+
constructor(){
|
|
5720
|
+
super();
|
|
5721
|
+
|
|
5722
|
+
/**
|
|
5723
|
+
* 1
|
|
5724
|
+
* @type {Array.<string> || null}
|
|
5725
|
+
*/
|
|
5726
|
+
this.AddressIps = null;
|
|
5727
|
+
|
|
5728
|
+
}
|
|
5729
|
+
|
|
5730
|
+
/**
|
|
5731
|
+
* @private
|
|
5732
|
+
*/
|
|
5733
|
+
deserialize(params) {
|
|
5734
|
+
if (!params) {
|
|
5735
|
+
return;
|
|
5736
|
+
}
|
|
5737
|
+
this.AddressIps = 'AddressIps' in params ? params.AddressIps : null;
|
|
5738
|
+
|
|
5739
|
+
}
|
|
5740
|
+
}
|
|
5741
|
+
|
|
5661
5742
|
/**
|
|
5662
5743
|
* ModifyNetworkAclAttribute response structure.
|
|
5663
5744
|
* @class
|
|
@@ -6357,6 +6438,24 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
6357
6438
|
*/
|
|
6358
6439
|
this.AttachType = null;
|
|
6359
6440
|
|
|
6441
|
+
/**
|
|
6442
|
+
* The ID of resource to retain the ENI primary IP. It’s used as the request parameters for deleting an ENI.
|
|
6443
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
6444
|
+
* @type {string || null}
|
|
6445
|
+
*/
|
|
6446
|
+
this.ResourceId = null;
|
|
6447
|
+
|
|
6448
|
+
/**
|
|
6449
|
+
* Service level
|
|
6450
|
+
<li>`DEFAULT`: Default level</lil>
|
|
6451
|
+
<li>`PT`: Gold</li>
|
|
6452
|
+
<li>`AU`: Silver</li>
|
|
6453
|
+
<li>`AG`: Bronze</li>
|
|
6454
|
+
Note: This field may return `null`, indicating that no valid values can be obtained.
|
|
6455
|
+
* @type {string || null}
|
|
6456
|
+
*/
|
|
6457
|
+
this.QosLevel = null;
|
|
6458
|
+
|
|
6360
6459
|
}
|
|
6361
6460
|
|
|
6362
6461
|
/**
|
|
@@ -6414,6 +6513,8 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
6414
6513
|
this.Business = 'Business' in params ? params.Business : null;
|
|
6415
6514
|
this.CdcId = 'CdcId' in params ? params.CdcId : null;
|
|
6416
6515
|
this.AttachType = 'AttachType' in params ? params.AttachType : null;
|
|
6516
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
6517
|
+
this.QosLevel = 'QosLevel' in params ? params.QosLevel : null;
|
|
6417
6518
|
|
|
6418
6519
|
}
|
|
6419
6520
|
}
|
|
@@ -7489,6 +7590,66 @@ class CcnRoute extends AbstractModel {
|
|
|
7489
7590
|
}
|
|
7490
7591
|
}
|
|
7491
7592
|
|
|
7593
|
+
/**
|
|
7594
|
+
* DescribeTrafficPackages request structure.
|
|
7595
|
+
* @class
|
|
7596
|
+
*/
|
|
7597
|
+
class DescribeTrafficPackagesRequest extends AbstractModel {
|
|
7598
|
+
constructor(){
|
|
7599
|
+
super();
|
|
7600
|
+
|
|
7601
|
+
/**
|
|
7602
|
+
* Traffic package IDs. Multiple values can be used.
|
|
7603
|
+
* @type {Array.<string> || null}
|
|
7604
|
+
*/
|
|
7605
|
+
this.TrafficPackageIds = null;
|
|
7606
|
+
|
|
7607
|
+
/**
|
|
7608
|
+
* Each request can have up to 10 `Filters`. `TrafficPackageIds` and `Filters` cannot be specified at the same time. The specific filter conditions are as follows:
|
|
7609
|
+
<li> `traffic-package_id` - String - Optional - Filter by the traffic package ID.</li>
|
|
7610
|
+
<li> `traffic-package-name` - String - Optional - Filter by the traffic package name. Fuzzy match is not supported.</li>
|
|
7611
|
+
<li> `status` - String - Optional - Filter by the traffic package status. Values: [AVAILABLE|EXPIRED|EXHAUSTED].</li>
|
|
7612
|
+
* @type {Array.<Filter> || null}
|
|
7613
|
+
*/
|
|
7614
|
+
this.Filters = null;
|
|
7615
|
+
|
|
7616
|
+
/**
|
|
7617
|
+
* Pagination parameter
|
|
7618
|
+
* @type {number || null}
|
|
7619
|
+
*/
|
|
7620
|
+
this.Offset = null;
|
|
7621
|
+
|
|
7622
|
+
/**
|
|
7623
|
+
* Pagination parameter
|
|
7624
|
+
* @type {number || null}
|
|
7625
|
+
*/
|
|
7626
|
+
this.Limit = null;
|
|
7627
|
+
|
|
7628
|
+
}
|
|
7629
|
+
|
|
7630
|
+
/**
|
|
7631
|
+
* @private
|
|
7632
|
+
*/
|
|
7633
|
+
deserialize(params) {
|
|
7634
|
+
if (!params) {
|
|
7635
|
+
return;
|
|
7636
|
+
}
|
|
7637
|
+
this.TrafficPackageIds = 'TrafficPackageIds' in params ? params.TrafficPackageIds : null;
|
|
7638
|
+
|
|
7639
|
+
if (params.Filters) {
|
|
7640
|
+
this.Filters = new Array();
|
|
7641
|
+
for (let z in params.Filters) {
|
|
7642
|
+
let obj = new Filter();
|
|
7643
|
+
obj.deserialize(params.Filters[z]);
|
|
7644
|
+
this.Filters.push(obj);
|
|
7645
|
+
}
|
|
7646
|
+
}
|
|
7647
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
7648
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
7649
|
+
|
|
7650
|
+
}
|
|
7651
|
+
}
|
|
7652
|
+
|
|
7492
7653
|
/**
|
|
7493
7654
|
* DeleteSecurityGroupPolicies request structure.
|
|
7494
7655
|
* @class
|
|
@@ -9297,6 +9458,13 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
9297
9458
|
*/
|
|
9298
9459
|
this.ExclusiveGatewayBandwidth = null;
|
|
9299
9460
|
|
|
9461
|
+
/**
|
|
9462
|
+
* Whether the NAT gateway is blocked. Values: `NORMAL`, `RESTRICTED`
|
|
9463
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9464
|
+
* @type {string || null}
|
|
9465
|
+
*/
|
|
9466
|
+
this.RestrictState = null;
|
|
9467
|
+
|
|
9300
9468
|
}
|
|
9301
9469
|
|
|
9302
9470
|
/**
|
|
@@ -9356,6 +9524,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
9356
9524
|
}
|
|
9357
9525
|
this.IsExclusive = 'IsExclusive' in params ? params.IsExclusive : null;
|
|
9358
9526
|
this.ExclusiveGatewayBandwidth = 'ExclusiveGatewayBandwidth' in params ? params.ExclusiveGatewayBandwidth : null;
|
|
9527
|
+
this.RestrictState = 'RestrictState' in params ? params.RestrictState : null;
|
|
9359
9528
|
|
|
9360
9529
|
}
|
|
9361
9530
|
}
|
|
@@ -9443,6 +9612,107 @@ class CreateCustomerGatewayResponse extends AbstractModel {
|
|
|
9443
9612
|
}
|
|
9444
9613
|
}
|
|
9445
9614
|
|
|
9615
|
+
/**
|
|
9616
|
+
* Information of a traffic package
|
|
9617
|
+
* @class
|
|
9618
|
+
*/
|
|
9619
|
+
class TrafficPackage extends AbstractModel {
|
|
9620
|
+
constructor(){
|
|
9621
|
+
super();
|
|
9622
|
+
|
|
9623
|
+
/**
|
|
9624
|
+
* Unique traffic package ID
|
|
9625
|
+
* @type {string || null}
|
|
9626
|
+
*/
|
|
9627
|
+
this.TrafficPackageId = null;
|
|
9628
|
+
|
|
9629
|
+
/**
|
|
9630
|
+
* Traffic package name
|
|
9631
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9632
|
+
* @type {string || null}
|
|
9633
|
+
*/
|
|
9634
|
+
this.TrafficPackageName = null;
|
|
9635
|
+
|
|
9636
|
+
/**
|
|
9637
|
+
* Traffic package size in GB
|
|
9638
|
+
* @type {number || null}
|
|
9639
|
+
*/
|
|
9640
|
+
this.TotalAmount = null;
|
|
9641
|
+
|
|
9642
|
+
/**
|
|
9643
|
+
* Traffic package balance in GB
|
|
9644
|
+
* @type {number || null}
|
|
9645
|
+
*/
|
|
9646
|
+
this.RemainingAmount = null;
|
|
9647
|
+
|
|
9648
|
+
/**
|
|
9649
|
+
* Traffic package status. Valid values: `AVAILABLE`, `EXPIRED`, `EXHAUSTED`, `REFUNDED`, `DELETED`
|
|
9650
|
+
* @type {string || null}
|
|
9651
|
+
*/
|
|
9652
|
+
this.Status = null;
|
|
9653
|
+
|
|
9654
|
+
/**
|
|
9655
|
+
* Traffic package creation time
|
|
9656
|
+
* @type {string || null}
|
|
9657
|
+
*/
|
|
9658
|
+
this.CreatedTime = null;
|
|
9659
|
+
|
|
9660
|
+
/**
|
|
9661
|
+
* Traffic package expiration time
|
|
9662
|
+
* @type {string || null}
|
|
9663
|
+
*/
|
|
9664
|
+
this.Deadline = null;
|
|
9665
|
+
|
|
9666
|
+
/**
|
|
9667
|
+
* Used traffic in GB
|
|
9668
|
+
* @type {number || null}
|
|
9669
|
+
*/
|
|
9670
|
+
this.UsedAmount = null;
|
|
9671
|
+
|
|
9672
|
+
/**
|
|
9673
|
+
* Traffic package tag
|
|
9674
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
9675
|
+
* @type {Array.<Tag> || null}
|
|
9676
|
+
*/
|
|
9677
|
+
this.TagSet = null;
|
|
9678
|
+
|
|
9679
|
+
/**
|
|
9680
|
+
* Traffic package type (idle-time or full-time)
|
|
9681
|
+
* @type {string || null}
|
|
9682
|
+
*/
|
|
9683
|
+
this.DeductType = null;
|
|
9684
|
+
|
|
9685
|
+
}
|
|
9686
|
+
|
|
9687
|
+
/**
|
|
9688
|
+
* @private
|
|
9689
|
+
*/
|
|
9690
|
+
deserialize(params) {
|
|
9691
|
+
if (!params) {
|
|
9692
|
+
return;
|
|
9693
|
+
}
|
|
9694
|
+
this.TrafficPackageId = 'TrafficPackageId' in params ? params.TrafficPackageId : null;
|
|
9695
|
+
this.TrafficPackageName = 'TrafficPackageName' in params ? params.TrafficPackageName : null;
|
|
9696
|
+
this.TotalAmount = 'TotalAmount' in params ? params.TotalAmount : null;
|
|
9697
|
+
this.RemainingAmount = 'RemainingAmount' in params ? params.RemainingAmount : null;
|
|
9698
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
9699
|
+
this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
|
|
9700
|
+
this.Deadline = 'Deadline' in params ? params.Deadline : null;
|
|
9701
|
+
this.UsedAmount = 'UsedAmount' in params ? params.UsedAmount : null;
|
|
9702
|
+
|
|
9703
|
+
if (params.TagSet) {
|
|
9704
|
+
this.TagSet = new Array();
|
|
9705
|
+
for (let z in params.TagSet) {
|
|
9706
|
+
let obj = new Tag();
|
|
9707
|
+
obj.deserialize(params.TagSet[z]);
|
|
9708
|
+
this.TagSet.push(obj);
|
|
9709
|
+
}
|
|
9710
|
+
}
|
|
9711
|
+
this.DeductType = 'DeductType' in params ? params.DeductType : null;
|
|
9712
|
+
|
|
9713
|
+
}
|
|
9714
|
+
}
|
|
9715
|
+
|
|
9446
9716
|
/**
|
|
9447
9717
|
* WithdrawNotifyRoutes request structure.
|
|
9448
9718
|
* @class
|
|
@@ -12130,16 +12400,16 @@ class DescribeSecurityGroupPoliciesRequest extends AbstractModel {
|
|
|
12130
12400
|
this.SecurityGroupId = null;
|
|
12131
12401
|
|
|
12132
12402
|
/**
|
|
12133
|
-
*
|
|
12134
|
-
<li
|
|
12135
|
-
<li
|
|
12136
|
-
<li
|
|
12137
|
-
<li
|
|
12138
|
-
<li
|
|
12139
|
-
<li
|
|
12140
|
-
<li
|
|
12141
|
-
<li
|
|
12142
|
-
<li
|
|
12403
|
+
* Filters
|
|
12404
|
+
<li>`security-group-id` - String - Security group ID in the rule.</li>
|
|
12405
|
+
<li>`ip` - String - IP. IPV4 and IPV6 fuzzy matching is supported.</li>
|
|
12406
|
+
<li>`address-module` - String - IP address or address group template ID.</li>
|
|
12407
|
+
<li>`service-module` - String - Protocol port or port group template ID.</li>
|
|
12408
|
+
<li>`protocol-type` - String - Protocol supported by the security group policy. Valid values: `TCP`, `UDP`, `ICMP`, `ICMPV6`, `GRE`, `ALL`.</li>
|
|
12409
|
+
<li>`port` - String - Optional - Port. Fuzzy matching is supported. Query all ports when the protocol value is `ALL`.</li>
|
|
12410
|
+
<li>`poly` - String - Policy type. Valid values: `ALL`, `ACCEPT` and `DROP`.</li>
|
|
12411
|
+
<li>`direction` - String - Direction of the rule. Valid values: `ALL`, `INBOUND` and `OUTBOUND`.</li>
|
|
12412
|
+
<li>`description` - String - Policy description. Fuzzy matching is supported.</li>
|
|
12143
12413
|
* @type {Array.<Filter> || null}
|
|
12144
12414
|
*/
|
|
12145
12415
|
this.Filters = null;
|
|
@@ -13320,6 +13590,34 @@ class HaVipDisassociateAddressIpRequest extends AbstractModel {
|
|
|
13320
13590
|
}
|
|
13321
13591
|
}
|
|
13322
13592
|
|
|
13593
|
+
/**
|
|
13594
|
+
* ReturnNormalAddresses response structure.
|
|
13595
|
+
* @class
|
|
13596
|
+
*/
|
|
13597
|
+
class ReturnNormalAddressesResponse extends AbstractModel {
|
|
13598
|
+
constructor(){
|
|
13599
|
+
super();
|
|
13600
|
+
|
|
13601
|
+
/**
|
|
13602
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
13603
|
+
* @type {string || null}
|
|
13604
|
+
*/
|
|
13605
|
+
this.RequestId = null;
|
|
13606
|
+
|
|
13607
|
+
}
|
|
13608
|
+
|
|
13609
|
+
/**
|
|
13610
|
+
* @private
|
|
13611
|
+
*/
|
|
13612
|
+
deserialize(params) {
|
|
13613
|
+
if (!params) {
|
|
13614
|
+
return;
|
|
13615
|
+
}
|
|
13616
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
13617
|
+
|
|
13618
|
+
}
|
|
13619
|
+
}
|
|
13620
|
+
|
|
13323
13621
|
/**
|
|
13324
13622
|
* DisableFlowLogs response structure.
|
|
13325
13623
|
* @class
|
|
@@ -13574,6 +13872,12 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
13574
13872
|
*/
|
|
13575
13873
|
this.CreateTime = null;
|
|
13576
13874
|
|
|
13875
|
+
/**
|
|
13876
|
+
* Mounted PaaS service type. Values: `CLB`, `CDB`, `CRS`
|
|
13877
|
+
* @type {string || null}
|
|
13878
|
+
*/
|
|
13879
|
+
this.ServiceType = null;
|
|
13880
|
+
|
|
13577
13881
|
}
|
|
13578
13882
|
|
|
13579
13883
|
/**
|
|
@@ -13601,6 +13905,7 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
13601
13905
|
}
|
|
13602
13906
|
}
|
|
13603
13907
|
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
13908
|
+
this.ServiceType = 'ServiceType' in params ? params.ServiceType : null;
|
|
13604
13909
|
|
|
13605
13910
|
}
|
|
13606
13911
|
}
|
|
@@ -14291,11 +14596,17 @@ class CreateVpcEndPointServiceRequest extends AbstractModel {
|
|
|
14291
14596
|
this.ServiceInstanceId = null;
|
|
14292
14597
|
|
|
14293
14598
|
/**
|
|
14294
|
-
* Whether it
|
|
14599
|
+
* (Disused) Whether it’s a PaaS service
|
|
14295
14600
|
* @type {boolean || null}
|
|
14296
14601
|
*/
|
|
14297
14602
|
this.IsPassService = null;
|
|
14298
14603
|
|
|
14604
|
+
/**
|
|
14605
|
+
* Mounted PaaS service type. Values: `CLB` (default), `CDB`, `CRS`
|
|
14606
|
+
* @type {string || null}
|
|
14607
|
+
*/
|
|
14608
|
+
this.ServiceType = null;
|
|
14609
|
+
|
|
14299
14610
|
}
|
|
14300
14611
|
|
|
14301
14612
|
/**
|
|
@@ -14310,6 +14621,7 @@ class CreateVpcEndPointServiceRequest extends AbstractModel {
|
|
|
14310
14621
|
this.AutoAcceptFlag = 'AutoAcceptFlag' in params ? params.AutoAcceptFlag : null;
|
|
14311
14622
|
this.ServiceInstanceId = 'ServiceInstanceId' in params ? params.ServiceInstanceId : null;
|
|
14312
14623
|
this.IsPassService = 'IsPassService' in params ? params.IsPassService : null;
|
|
14624
|
+
this.ServiceType = 'ServiceType' in params ? params.ServiceType : null;
|
|
14313
14625
|
|
|
14314
14626
|
}
|
|
14315
14627
|
}
|
|
@@ -15737,6 +16049,12 @@ Whether the Anycast EIP can be bound to CLB instances.
|
|
|
15737
16049
|
*/
|
|
15738
16050
|
this.AddressName = null;
|
|
15739
16051
|
|
|
16052
|
+
/**
|
|
16053
|
+
* Network egress. It defaults to `center_egress1`.
|
|
16054
|
+
* @type {string || null}
|
|
16055
|
+
*/
|
|
16056
|
+
this.Egress = null;
|
|
16057
|
+
|
|
15740
16058
|
}
|
|
15741
16059
|
|
|
15742
16060
|
/**
|
|
@@ -15770,6 +16088,7 @@ Whether the Anycast EIP can be bound to CLB instances.
|
|
|
15770
16088
|
}
|
|
15771
16089
|
this.BandwidthPackageId = 'BandwidthPackageId' in params ? params.BandwidthPackageId : null;
|
|
15772
16090
|
this.AddressName = 'AddressName' in params ? params.AddressName : null;
|
|
16091
|
+
this.Egress = 'Egress' in params ? params.Egress : null;
|
|
15773
16092
|
|
|
15774
16093
|
}
|
|
15775
16094
|
}
|
|
@@ -17891,6 +18210,56 @@ class DisassociateNatGatewayAddressRequest extends AbstractModel {
|
|
|
17891
18210
|
}
|
|
17892
18211
|
}
|
|
17893
18212
|
|
|
18213
|
+
/**
|
|
18214
|
+
* DescribeTrafficPackages response structure.
|
|
18215
|
+
* @class
|
|
18216
|
+
*/
|
|
18217
|
+
class DescribeTrafficPackagesResponse extends AbstractModel {
|
|
18218
|
+
constructor(){
|
|
18219
|
+
super();
|
|
18220
|
+
|
|
18221
|
+
/**
|
|
18222
|
+
* Number of eligible traffic packages
|
|
18223
|
+
* @type {number || null}
|
|
18224
|
+
*/
|
|
18225
|
+
this.TotalCount = null;
|
|
18226
|
+
|
|
18227
|
+
/**
|
|
18228
|
+
* Traffic package information
|
|
18229
|
+
* @type {Array.<TrafficPackage> || null}
|
|
18230
|
+
*/
|
|
18231
|
+
this.TrafficPackageSet = null;
|
|
18232
|
+
|
|
18233
|
+
/**
|
|
18234
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
18235
|
+
* @type {string || null}
|
|
18236
|
+
*/
|
|
18237
|
+
this.RequestId = null;
|
|
18238
|
+
|
|
18239
|
+
}
|
|
18240
|
+
|
|
18241
|
+
/**
|
|
18242
|
+
* @private
|
|
18243
|
+
*/
|
|
18244
|
+
deserialize(params) {
|
|
18245
|
+
if (!params) {
|
|
18246
|
+
return;
|
|
18247
|
+
}
|
|
18248
|
+
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
18249
|
+
|
|
18250
|
+
if (params.TrafficPackageSet) {
|
|
18251
|
+
this.TrafficPackageSet = new Array();
|
|
18252
|
+
for (let z in params.TrafficPackageSet) {
|
|
18253
|
+
let obj = new TrafficPackage();
|
|
18254
|
+
obj.deserialize(params.TrafficPackageSet[z]);
|
|
18255
|
+
this.TrafficPackageSet.push(obj);
|
|
18256
|
+
}
|
|
18257
|
+
}
|
|
18258
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
18259
|
+
|
|
18260
|
+
}
|
|
18261
|
+
}
|
|
18262
|
+
|
|
17894
18263
|
/**
|
|
17895
18264
|
* DescribeServiceTemplates response structure.
|
|
17896
18265
|
* @class
|
|
@@ -19298,6 +19667,34 @@ class ModifyNetworkAclAttributeRequest extends AbstractModel {
|
|
|
19298
19667
|
}
|
|
19299
19668
|
}
|
|
19300
19669
|
|
|
19670
|
+
/**
|
|
19671
|
+
* SetVpnGatewaysRenewFlag response structure.
|
|
19672
|
+
* @class
|
|
19673
|
+
*/
|
|
19674
|
+
class SetVpnGatewaysRenewFlagResponse extends AbstractModel {
|
|
19675
|
+
constructor(){
|
|
19676
|
+
super();
|
|
19677
|
+
|
|
19678
|
+
/**
|
|
19679
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
19680
|
+
* @type {string || null}
|
|
19681
|
+
*/
|
|
19682
|
+
this.RequestId = null;
|
|
19683
|
+
|
|
19684
|
+
}
|
|
19685
|
+
|
|
19686
|
+
/**
|
|
19687
|
+
* @private
|
|
19688
|
+
*/
|
|
19689
|
+
deserialize(params) {
|
|
19690
|
+
if (!params) {
|
|
19691
|
+
return;
|
|
19692
|
+
}
|
|
19693
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
19694
|
+
|
|
19695
|
+
}
|
|
19696
|
+
}
|
|
19697
|
+
|
|
19301
19698
|
/**
|
|
19302
19699
|
* DeleteVpnGateway response structure.
|
|
19303
19700
|
* @class
|
|
@@ -19492,7 +19889,7 @@ class Address extends AbstractModel {
|
|
|
19492
19889
|
this.IsEipDirectConnection = null;
|
|
19493
19890
|
|
|
19494
19891
|
/**
|
|
19495
|
-
*
|
|
19892
|
+
* IP type. Valid values: `CalcIP` (device IP), `WanIP` (public network IP), `EIP` (general elastic IP), `AnycastEIP` (accelerated EIP), and `AntiDDoSEIP` (Anti DDoS EIP).
|
|
19496
19893
|
* @type {string || null}
|
|
19497
19894
|
*/
|
|
19498
19895
|
this.AddressType = null;
|
|
@@ -24325,7 +24722,7 @@ class AssociateAddressRequest extends AbstractModel {
|
|
|
24325
24722
|
this.AddressId = null;
|
|
24326
24723
|
|
|
24327
24724
|
/**
|
|
24328
|
-
* The ID of the instance to be bound, such as `ins-11112222`. You can query the instance ID by logging into the [Console](https://console.cloud.tencent.com/cvm). You can also obtain the parameter value from the `InstanceId` field in the returned result of [DescribeInstances](https://intl.cloud.tencent.com/document/api/213/15728?from_cn_redirect=1) API.
|
|
24725
|
+
* The ID of the instance to be bound, such as `ins-11112222`, `lb-11112222`. You can query the instance ID by logging into the [Console](https://console.cloud.tencent.com/cvm). You can also obtain the parameter value from the `InstanceId` field in the returned result of [DescribeInstances](https://intl.cloud.tencent.com/document/api/213/15728?from_cn_redirect=1) API.
|
|
24329
24726
|
* @type {string || null}
|
|
24330
24727
|
*/
|
|
24331
24728
|
this.InstanceId = null;
|
|
@@ -26494,7 +26891,7 @@ class CreateVpcRequest extends AbstractModel {
|
|
|
26494
26891
|
this.VpcName = null;
|
|
26495
26892
|
|
|
26496
26893
|
/**
|
|
26497
|
-
* VPC CIDR
|
|
26894
|
+
* VPC CIDR block, which must fall within the following three private network IP ranges: 10.0.0.0/12, 172.16.0.0/12, and 192.168.0.0/16.
|
|
26498
26895
|
* @type {string || null}
|
|
26499
26896
|
*/
|
|
26500
26897
|
this.CidrBlock = null;
|
|
@@ -26693,7 +27090,6 @@ class Route extends AbstractModel {
|
|
|
26693
27090
|
|
|
26694
27091
|
/**
|
|
26695
27092
|
* Next hop address. You simply need to specify the gateway ID of a different next hop type, and the system will automatically match the next hop address.
|
|
26696
|
-
Important note: When the GatewayType is EIP, the GatewayId has a fixed value `0`
|
|
26697
27093
|
* @type {string || null}
|
|
26698
27094
|
*/
|
|
26699
27095
|
this.GatewayId = null;
|
|
@@ -27137,6 +27533,7 @@ module.exports = {
|
|
|
27137
27533
|
DescribeCustomerGatewaysRequest: DescribeCustomerGatewaysRequest,
|
|
27138
27534
|
ModifyNatGatewayDestinationIpPortTranslationNatRuleResponse: ModifyNatGatewayDestinationIpPortTranslationNatRuleResponse,
|
|
27139
27535
|
ModifyNatGatewaySourceIpTranslationNatRuleRequest: ModifyNatGatewaySourceIpTranslationNatRuleRequest,
|
|
27536
|
+
SetVpnGatewaysRenewFlagRequest: SetVpnGatewaysRenewFlagRequest,
|
|
27140
27537
|
ModifyCcnRegionBandwidthLimitsTypeResponse: ModifyCcnRegionBandwidthLimitsTypeResponse,
|
|
27141
27538
|
DescribeVpnGatewaysResponse: DescribeVpnGatewaysResponse,
|
|
27142
27539
|
ModifyNetworkAclQuintupleEntriesRequest: ModifyNetworkAclQuintupleEntriesRequest,
|
|
@@ -27233,6 +27630,7 @@ module.exports = {
|
|
|
27233
27630
|
DescribeSecurityGroupsRequest: DescribeSecurityGroupsRequest,
|
|
27234
27631
|
RefreshDirectConnectGatewayRouteToNatGatewayRequest: RefreshDirectConnectGatewayRouteToNatGatewayRequest,
|
|
27235
27632
|
DescribeNatGatewayDestinationIpPortTranslationNatRulesRequest: DescribeNatGatewayDestinationIpPortTranslationNatRulesRequest,
|
|
27633
|
+
ReturnNormalAddressesRequest: ReturnNormalAddressesRequest,
|
|
27236
27634
|
ModifyNetworkAclAttributeResponse: ModifyNetworkAclAttributeResponse,
|
|
27237
27635
|
AddBandwidthPackageResourcesResponse: AddBandwidthPackageResourcesResponse,
|
|
27238
27636
|
DisassociateNetworkAclSubnetsResponse: DisassociateNetworkAclSubnetsResponse,
|
|
@@ -27268,6 +27666,7 @@ module.exports = {
|
|
|
27268
27666
|
InstanceStatistic: InstanceStatistic,
|
|
27269
27667
|
CreateVpnConnectionRequest: CreateVpnConnectionRequest,
|
|
27270
27668
|
CcnRoute: CcnRoute,
|
|
27669
|
+
DescribeTrafficPackagesRequest: DescribeTrafficPackagesRequest,
|
|
27271
27670
|
DeleteSecurityGroupPoliciesRequest: DeleteSecurityGroupPoliciesRequest,
|
|
27272
27671
|
VpnConnection: VpnConnection,
|
|
27273
27672
|
DescribeCcnsRequest: DescribeCcnsRequest,
|
|
@@ -27303,6 +27702,7 @@ module.exports = {
|
|
|
27303
27702
|
NatGateway: NatGateway,
|
|
27304
27703
|
ReplaceRoutesRequest: ReplaceRoutesRequest,
|
|
27305
27704
|
CreateCustomerGatewayResponse: CreateCustomerGatewayResponse,
|
|
27705
|
+
TrafficPackage: TrafficPackage,
|
|
27306
27706
|
WithdrawNotifyRoutesRequest: WithdrawNotifyRoutesRequest,
|
|
27307
27707
|
DeleteServiceTemplateGroupResponse: DeleteServiceTemplateGroupResponse,
|
|
27308
27708
|
DisassociateAddressRequest: DisassociateAddressRequest,
|
|
@@ -27376,6 +27776,7 @@ module.exports = {
|
|
|
27376
27776
|
DirectConnectGateway: DirectConnectGateway,
|
|
27377
27777
|
Price: Price,
|
|
27378
27778
|
HaVipDisassociateAddressIpRequest: HaVipDisassociateAddressIpRequest,
|
|
27779
|
+
ReturnNormalAddressesResponse: ReturnNormalAddressesResponse,
|
|
27379
27780
|
DisableFlowLogsResponse: DisableFlowLogsResponse,
|
|
27380
27781
|
DescribeBandwidthPackageResourcesResponse: DescribeBandwidthPackageResourcesResponse,
|
|
27381
27782
|
DescribeCrossBorderComplianceResponse: DescribeCrossBorderComplianceResponse,
|
|
@@ -27475,6 +27876,7 @@ module.exports = {
|
|
|
27475
27876
|
InquirePriceCreateDirectConnectGatewayRequest: InquirePriceCreateDirectConnectGatewayRequest,
|
|
27476
27877
|
AttachNetworkInterfaceResponse: AttachNetworkInterfaceResponse,
|
|
27477
27878
|
DisassociateNatGatewayAddressRequest: DisassociateNatGatewayAddressRequest,
|
|
27879
|
+
DescribeTrafficPackagesResponse: DescribeTrafficPackagesResponse,
|
|
27478
27880
|
DescribeServiceTemplatesResponse: DescribeServiceTemplatesResponse,
|
|
27479
27881
|
DescribeRouteTablesRequest: DescribeRouteTablesRequest,
|
|
27480
27882
|
ResetAttachCcnInstancesRequest: ResetAttachCcnInstancesRequest,
|
|
@@ -27509,6 +27911,7 @@ module.exports = {
|
|
|
27509
27911
|
DeleteSecurityGroupPoliciesResponse: DeleteSecurityGroupPoliciesResponse,
|
|
27510
27912
|
CreateVpcEndPointServiceResponse: CreateVpcEndPointServiceResponse,
|
|
27511
27913
|
ModifyNetworkAclAttributeRequest: ModifyNetworkAclAttributeRequest,
|
|
27914
|
+
SetVpnGatewaysRenewFlagResponse: SetVpnGatewaysRenewFlagResponse,
|
|
27512
27915
|
DeleteVpnGatewayResponse: DeleteVpnGatewayResponse,
|
|
27513
27916
|
DescribeHaVipsRequest: DescribeHaVipsRequest,
|
|
27514
27917
|
UnassignPrivateIpAddressesResponse: UnassignPrivateIpAddressesResponse,
|