tencentcloud-sdk-nodejs-intl-en 3.0.415 → 3.0.418

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.
@@ -820,34 +820,6 @@ class ModifyNewDomainRulesRequest extends AbstractModel {
820
820
  }
821
821
  }
822
822
 
823
- /**
824
- * Region information.
825
- * @class
826
- */
827
- class RegionInfo extends AbstractModel {
828
- constructor(){
829
- super();
830
-
831
- /**
832
- * Region name, such as `ap-guangzhou`
833
- * @type {string || null}
834
- */
835
- this.Region = null;
836
-
837
- }
838
-
839
- /**
840
- * @private
841
- */
842
- deserialize(params) {
843
- if (!params) {
844
- return;
845
- }
846
- this.Region = 'Region' in params ? params.Region : null;
847
-
848
- }
849
- }
850
-
851
823
  /**
852
824
  * DescribeListProtocolBlockConfig response structure.
853
825
  * @class
@@ -898,90 +870,6 @@ class DescribeListProtocolBlockConfigResponse extends AbstractModel {
898
870
  }
899
871
  }
900
872
 
901
- /**
902
- * DescribeListBGPInstances request structure.
903
- * @class
904
- */
905
- class DescribeListBGPInstancesRequest extends AbstractModel {
906
- constructor(){
907
- super();
908
-
909
- /**
910
- * Starting offset of the page. Value: (number of pages – 1) * items per page.
911
- * @type {number || null}
912
- */
913
- this.Offset = null;
914
-
915
- /**
916
- * Number of items per page. The default value is 20 when `Limit = 0`. The maximum value is 100.
917
- * @type {number || null}
918
- */
919
- this.Limit = null;
920
-
921
- /**
922
- * IP filter
923
- * @type {string || null}
924
- */
925
- this.FilterIp = null;
926
-
927
- /**
928
- * Anti-DDoS instance ID filter. For example, `bgp-00000001`.
929
- * @type {string || null}
930
- */
931
- this.FilterInstanceId = null;
932
-
933
- /**
934
- * Region filter. For example, `ap-guangzhou`.
935
- * @type {string || null}
936
- */
937
- this.FilterRegion = null;
938
-
939
- /**
940
- * Name filter
941
- * @type {string || null}
942
- */
943
- this.FilterName = null;
944
-
945
- /**
946
- * Line filter. Valid values: 1: BGP; 2: Non-BGP.
947
- * @type {number || null}
948
- */
949
- this.FilterLine = null;
950
-
951
- /**
952
- * Filters by instance status. `idle`: Running; `attacking`: Being attacked; `blocking`: Being blocked.
953
- * @type {string || null}
954
- */
955
- this.FilterStatus = null;
956
-
957
- /**
958
- * Filters by binding status. `bounding`: the instance is bound; `failed`: the binding failed.
959
- * @type {string || null}
960
- */
961
- this.FilterBoundStatus = null;
962
-
963
- }
964
-
965
- /**
966
- * @private
967
- */
968
- deserialize(params) {
969
- if (!params) {
970
- return;
971
- }
972
- this.Offset = 'Offset' in params ? params.Offset : null;
973
- this.Limit = 'Limit' in params ? params.Limit : null;
974
- this.FilterIp = 'FilterIp' in params ? params.FilterIp : null;
975
- this.FilterInstanceId = 'FilterInstanceId' in params ? params.FilterInstanceId : null;
976
- this.FilterRegion = 'FilterRegion' in params ? params.FilterRegion : null;
977
- this.FilterName = 'FilterName' in params ? params.FilterName : null;
978
- this.FilterLine = 'FilterLine' in params ? params.FilterLine : null;
979
- this.FilterStatus = 'FilterStatus' in params ? params.FilterStatus : null;
980
- this.FilterBoundStatus = 'FilterBoundStatus' in params ? params.FilterBoundStatus : null;
981
-
982
- }
983
- }
984
-
985
873
  /**
986
874
  * Status of the IP
987
875
  * @class
@@ -1330,56 +1218,6 @@ class DeleteDDoSGeoIPBlockConfigRequest extends AbstractModel {
1330
1218
  }
1331
1219
  }
1332
1220
 
1333
- /**
1334
- * DescribeCcBlackWhiteIpList response structure.
1335
- * @class
1336
- */
1337
- class DescribeCcBlackWhiteIpListResponse extends AbstractModel {
1338
- constructor(){
1339
- super();
1340
-
1341
- /**
1342
- * Number of policy lists
1343
- * @type {number || null}
1344
- */
1345
- this.Total = null;
1346
-
1347
- /**
1348
- * Information of the policy list
1349
- * @type {Array.<CcBlackWhiteIpPolicy> || null}
1350
- */
1351
- this.CcBlackWhiteIpList = null;
1352
-
1353
- /**
1354
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
1355
- * @type {string || null}
1356
- */
1357
- this.RequestId = null;
1358
-
1359
- }
1360
-
1361
- /**
1362
- * @private
1363
- */
1364
- deserialize(params) {
1365
- if (!params) {
1366
- return;
1367
- }
1368
- this.Total = 'Total' in params ? params.Total : null;
1369
-
1370
- if (params.CcBlackWhiteIpList) {
1371
- this.CcBlackWhiteIpList = new Array();
1372
- for (let z in params.CcBlackWhiteIpList) {
1373
- let obj = new CcBlackWhiteIpPolicy();
1374
- obj.deserialize(params.CcBlackWhiteIpList[z]);
1375
- this.CcBlackWhiteIpList.push(obj);
1376
- }
1377
- }
1378
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
1379
-
1380
- }
1381
- }
1382
-
1383
1221
  /**
1384
1222
  * CreateIPAlarmThresholdConfig request structure.
1385
1223
  * @class
@@ -1628,97 +1466,6 @@ class ModifyNewDomainRulesResponse extends AbstractModel {
1628
1466
  }
1629
1467
  }
1630
1468
 
1631
- /**
1632
- * Layer-4 access control list
1633
- * @class
1634
- */
1635
- class CcBlackWhiteIpPolicy extends AbstractModel {
1636
- constructor(){
1637
- super();
1638
-
1639
- /**
1640
- * Policy ID
1641
- * @type {string || null}
1642
- */
1643
- this.PolicyId = null;
1644
-
1645
- /**
1646
- * Instance ID
1647
- * @type {string || null}
1648
- */
1649
- this.InstanceId = null;
1650
-
1651
- /**
1652
- * IP address
1653
- * @type {string || null}
1654
- */
1655
- this.Ip = null;
1656
-
1657
- /**
1658
- * Domain name
1659
- * @type {string || null}
1660
- */
1661
- this.Domain = null;
1662
-
1663
- /**
1664
- * Protocol
1665
- * @type {string || null}
1666
- */
1667
- this.Protocol = null;
1668
-
1669
- /**
1670
- * IP type. Valid values: `black` (blocklisted IP), `white`(allowlisted IP).
1671
- * @type {string || null}
1672
- */
1673
- this.Type = null;
1674
-
1675
- /**
1676
- * Blocklist/Allowlist IP address
1677
- * @type {string || null}
1678
- */
1679
- this.BlackWhiteIp = null;
1680
-
1681
- /**
1682
- * Mask
1683
- * @type {number || null}
1684
- */
1685
- this.Mask = null;
1686
-
1687
- /**
1688
- * Creation time
1689
- * @type {string || null}
1690
- */
1691
- this.CreateTime = null;
1692
-
1693
- /**
1694
- * Modification time
1695
- * @type {string || null}
1696
- */
1697
- this.ModifyTime = null;
1698
-
1699
- }
1700
-
1701
- /**
1702
- * @private
1703
- */
1704
- deserialize(params) {
1705
- if (!params) {
1706
- return;
1707
- }
1708
- this.PolicyId = 'PolicyId' in params ? params.PolicyId : null;
1709
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
1710
- this.Ip = 'Ip' in params ? params.Ip : null;
1711
- this.Domain = 'Domain' in params ? params.Domain : null;
1712
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
1713
- this.Type = 'Type' in params ? params.Type : null;
1714
- this.BlackWhiteIp = 'BlackWhiteIp' in params ? params.BlackWhiteIp : null;
1715
- this.Mask = 'Mask' in params ? params.Mask : null;
1716
- this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
1717
- this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
1718
-
1719
- }
1720
- }
1721
-
1722
1469
  /**
1723
1470
  * DescribeCCLevelPolicy request structure.
1724
1471
  * @class
@@ -2132,6 +1879,12 @@ class CreateSchedulingDomainRequest extends AbstractModel {
2132
1879
  constructor(){
2133
1880
  super();
2134
1881
 
1882
+ /**
1883
+ *
1884
+ * @type {string || null}
1885
+ */
1886
+ this.Product = null;
1887
+
2135
1888
  }
2136
1889
 
2137
1890
  /**
@@ -2141,6 +1894,7 @@ class CreateSchedulingDomainRequest extends AbstractModel {
2141
1894
  if (!params) {
2142
1895
  return;
2143
1896
  }
1897
+ this.Product = 'Product' in params ? params.Product : null;
2144
1898
 
2145
1899
  }
2146
1900
  }
@@ -4556,128 +4310,36 @@ class CreateDDoSGeoIPBlockConfigResponse extends AbstractModel {
4556
4310
  }
4557
4311
 
4558
4312
  /**
4559
- * CC precise protection policy information
4313
+ * CC protection thresholds of the domain name and protocol
4560
4314
  * @class
4561
4315
  */
4562
- class CCPrecisionPolicy extends AbstractModel {
4316
+ class ListenerCcThreholdConfig extends AbstractModel {
4563
4317
  constructor(){
4564
4318
  super();
4565
4319
 
4566
4320
  /**
4567
- * Policy ID
4321
+ * Domain name
4568
4322
  * @type {string || null}
4569
4323
  */
4570
- this.PolicyId = null;
4324
+ this.Domain = null;
4571
4325
 
4572
4326
  /**
4573
- * Instance ID
4327
+ * Protocol. Value: htttps
4574
4328
  * @type {string || null}
4575
4329
  */
4576
- this.InstanceId = null;
4330
+ this.Protocol = null;
4577
4331
 
4578
4332
  /**
4579
- * IP address
4580
- * @type {string || null}
4333
+ * Status. Valid values: `0` (disabled), `1` (enabled).
4334
+ * @type {number || null}
4581
4335
  */
4582
- this.Ip = null;
4336
+ this.CCEnable = null;
4583
4337
 
4584
4338
  /**
4585
- * Protocol
4586
- * @type {string || null}
4339
+ * CC protection threshold
4340
+ * @type {number || null}
4587
4341
  */
4588
- this.Protocol = null;
4589
-
4590
- /**
4591
- * Domain name
4592
- * @type {string || null}
4593
- */
4594
- this.Domain = null;
4595
-
4596
- /**
4597
- * Action of limiting request frequency. Valid values: `alg` (limit request frequency via verification codes) and `drop`(drop requests).
4598
- * @type {string || null}
4599
- */
4600
- this.PolicyAction = null;
4601
-
4602
- /**
4603
- * List of policies
4604
- * @type {Array.<CCPrecisionPlyRecord> || null}
4605
- */
4606
- this.PolicyList = null;
4607
-
4608
- /**
4609
- * Creation time
4610
- * @type {string || null}
4611
- */
4612
- this.CreateTime = null;
4613
-
4614
- /**
4615
- * Modification time
4616
- * @type {string || null}
4617
- */
4618
- this.ModifyTime = null;
4619
-
4620
- }
4621
-
4622
- /**
4623
- * @private
4624
- */
4625
- deserialize(params) {
4626
- if (!params) {
4627
- return;
4628
- }
4629
- this.PolicyId = 'PolicyId' in params ? params.PolicyId : null;
4630
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
4631
- this.Ip = 'Ip' in params ? params.Ip : null;
4632
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
4633
- this.Domain = 'Domain' in params ? params.Domain : null;
4634
- this.PolicyAction = 'PolicyAction' in params ? params.PolicyAction : null;
4635
-
4636
- if (params.PolicyList) {
4637
- this.PolicyList = new Array();
4638
- for (let z in params.PolicyList) {
4639
- let obj = new CCPrecisionPlyRecord();
4640
- obj.deserialize(params.PolicyList[z]);
4641
- this.PolicyList.push(obj);
4642
- }
4643
- }
4644
- this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
4645
- this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
4646
-
4647
- }
4648
- }
4649
-
4650
- /**
4651
- * CC protection thresholds of the domain name and protocol
4652
- * @class
4653
- */
4654
- class ListenerCcThreholdConfig extends AbstractModel {
4655
- constructor(){
4656
- super();
4657
-
4658
- /**
4659
- * Domain name
4660
- * @type {string || null}
4661
- */
4662
- this.Domain = null;
4663
-
4664
- /**
4665
- * Protocol. Value: htttps
4666
- * @type {string || null}
4667
- */
4668
- this.Protocol = null;
4669
-
4670
- /**
4671
- * Status. Valid values: `0` (disabled), `1` (enabled).
4672
- * @type {number || null}
4673
- */
4674
- this.CCEnable = null;
4675
-
4676
- /**
4677
- * CC protection threshold
4678
- * @type {number || null}
4679
- */
4680
- this.CCThreshold = null;
4342
+ this.CCThreshold = null;
4681
4343
 
4682
4344
  }
4683
4345
 
@@ -4696,67 +4358,6 @@ class ListenerCcThreholdConfig extends AbstractModel {
4696
4358
  }
4697
4359
  }
4698
4360
 
4699
- /**
4700
- * EIP association details
4701
- * @class
4702
- */
4703
- class EipAddressRelation extends AbstractModel {
4704
- constructor(){
4705
- super();
4706
-
4707
- /**
4708
- * Region of the Anti-DDoS instance bound to the EIP. For example, hk indicates Hong Kong.
4709
- Note: This field may return `null`, indicating that no valid value can be obtained.
4710
- * @type {string || null}
4711
- */
4712
- this.EipAddressRegion = null;
4713
-
4714
- /**
4715
- * ID of the bound resource. For example, an ID may be bound to an CVM instance.
4716
- Note: This is field may return `null`, indicating that no valid value can be obtained.
4717
- * @type {string || null}
4718
- */
4719
- this.EipBoundRscIns = null;
4720
-
4721
- /**
4722
- * ID of the bound ENI
4723
- Note: This field may return `null`, indicating that no valid value can be obtained.
4724
- * @type {string || null}
4725
- */
4726
- this.EipBoundRscEni = null;
4727
-
4728
- /**
4729
- * Private IP of the bound resource
4730
- Note: This field may return `null`, indicating that no valid value can be obtained.
4731
- * @type {string || null}
4732
- */
4733
- this.EipBoundRscVip = null;
4734
-
4735
- /**
4736
- * Modification time
4737
- Note: This field may return `null`, indicating that no valid value can be obtained.
4738
- * @type {string || null}
4739
- */
4740
- this.ModifyTime = null;
4741
-
4742
- }
4743
-
4744
- /**
4745
- * @private
4746
- */
4747
- deserialize(params) {
4748
- if (!params) {
4749
- return;
4750
- }
4751
- this.EipAddressRegion = 'EipAddressRegion' in params ? params.EipAddressRegion : null;
4752
- this.EipBoundRscIns = 'EipBoundRscIns' in params ? params.EipBoundRscIns : null;
4753
- this.EipBoundRscEni = 'EipBoundRscEni' in params ? params.EipBoundRscEni : null;
4754
- this.EipBoundRscVip = 'EipBoundRscVip' in params ? params.EipBoundRscVip : null;
4755
- this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
4756
-
4757
- }
4758
- }
4759
-
4760
4361
  /**
4761
4362
  * DescribeBasicDeviceStatus request structure.
4762
4363
  * @class
@@ -4865,66 +4466,47 @@ class IPLineInfo extends AbstractModel {
4865
4466
  }
4866
4467
 
4867
4468
  /**
4868
- * DescribeCcBlackWhiteIpList request structure.
4469
+ * EIP association details
4869
4470
  * @class
4870
4471
  */
4871
- class DescribeCcBlackWhiteIpListRequest extends AbstractModel {
4472
+ class EipAddressRelation extends AbstractModel {
4872
4473
  constructor(){
4873
4474
  super();
4874
4475
 
4875
4476
  /**
4876
- * Anti-DDoS service type. Valid values: `bgpip-multip` (Anti-DDoS Pro) and `bgpip` (Anti-DDoS Advanced).
4877
- * @type {string || null}
4878
- */
4879
- this.Business = null;
4880
-
4881
- /**
4882
- * Instance ID
4883
- * @type {string || null}
4884
- */
4885
- this.InstanceId = null;
4886
-
4887
- /**
4888
- * Starting offset of the page. Value: (number of pages – 1) * items per page.
4889
- * @type {number || null}
4890
- */
4891
- this.Offset = null;
4892
-
4893
- /**
4894
- * Number of results returned in one page
4895
- * @type {number || null}
4896
- */
4897
- this.Limit = null;
4898
-
4899
- /**
4900
- * IP address, which is required when an Anti-DDoS Advanced instance is used.
4477
+ * Region of the Anti-DDoS instance bound to the EIP. For example, hk indicates Hong Kong.
4478
+ Note: This field may return `null`, indicating that no valid value can be obtained.
4901
4479
  * @type {string || null}
4902
4480
  */
4903
- this.Ip = null;
4481
+ this.EipAddressRegion = null;
4904
4482
 
4905
4483
  /**
4906
- * Domain name, which is required when an Anti-DDoS Advanced instance is used.
4484
+ * ID of the bound resource. For example, an ID may be bound to an CVM instance.
4485
+ Note: This is field may return `null`, indicating that no valid value can be obtained.
4907
4486
  * @type {string || null}
4908
4487
  */
4909
- this.Domain = null;
4488
+ this.EipBoundRscIns = null;
4910
4489
 
4911
4490
  /**
4912
- * Protocol, which is required when an Anti-DDoS Advanced instance is used.
4491
+ * ID of the bound ENI
4492
+ Note: This field may return `null`, indicating that no valid value can be obtained.
4913
4493
  * @type {string || null}
4914
4494
  */
4915
- this.Protocol = null;
4495
+ this.EipBoundRscEni = null;
4916
4496
 
4917
4497
  /**
4918
- * Specifies a blocklist/allowlist IP.
4498
+ * Private IP of the bound resource
4499
+ Note: This field may return `null`, indicating that no valid value can be obtained.
4919
4500
  * @type {string || null}
4920
4501
  */
4921
- this.FilterIp = null;
4502
+ this.EipBoundRscVip = null;
4922
4503
 
4923
4504
  /**
4924
- * Specifies whether is an IP blocklist or IP allowlist.
4505
+ * Modification time
4506
+ Note: This field may return `null`, indicating that no valid value can be obtained.
4925
4507
  * @type {string || null}
4926
4508
  */
4927
- this.FilterType = null;
4509
+ this.ModifyTime = null;
4928
4510
 
4929
4511
  }
4930
4512
 
@@ -4935,15 +4517,11 @@ class DescribeCcBlackWhiteIpListRequest extends AbstractModel {
4935
4517
  if (!params) {
4936
4518
  return;
4937
4519
  }
4938
- this.Business = 'Business' in params ? params.Business : null;
4939
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
4940
- this.Offset = 'Offset' in params ? params.Offset : null;
4941
- this.Limit = 'Limit' in params ? params.Limit : null;
4942
- this.Ip = 'Ip' in params ? params.Ip : null;
4943
- this.Domain = 'Domain' in params ? params.Domain : null;
4944
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
4945
- this.FilterIp = 'FilterIp' in params ? params.FilterIp : null;
4946
- this.FilterType = 'FilterType' in params ? params.FilterType : null;
4520
+ this.EipAddressRegion = 'EipAddressRegion' in params ? params.EipAddressRegion : null;
4521
+ this.EipBoundRscIns = 'EipBoundRscIns' in params ? params.EipBoundRscIns : null;
4522
+ this.EipBoundRscEni = 'EipBoundRscEni' in params ? params.EipBoundRscEni : null;
4523
+ this.EipBoundRscVip = 'EipBoundRscVip' in params ? params.EipBoundRscVip : null;
4524
+ this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
4947
4525
 
4948
4526
  }
4949
4527
  }
@@ -5564,97 +5142,6 @@ class DescribeListIPAlarmConfigResponse extends AbstractModel {
5564
5142
  }
5565
5143
  }
5566
5144
 
5567
- /**
5568
- * Information of the policy list
5569
- * @class
5570
- */
5571
- class CcGeoIpPolicyNew extends AbstractModel {
5572
- constructor(){
5573
- super();
5574
-
5575
- /**
5576
- * Policy ID
5577
- * @type {string || null}
5578
- */
5579
- this.PolicyId = null;
5580
-
5581
- /**
5582
- * Instance ID
5583
- * @type {string || null}
5584
- */
5585
- this.InstanceId = null;
5586
-
5587
- /**
5588
- * IP address
5589
- * @type {string || null}
5590
- */
5591
- this.Ip = null;
5592
-
5593
- /**
5594
- *
5595
- * @type {string || null}
5596
- */
5597
- this.Domain = null;
5598
-
5599
- /**
5600
- * Protocol. Valid values: `HTTP` and `HTTPS`.
5601
- * @type {string || null}
5602
- */
5603
- this.Protocol = null;
5604
-
5605
- /**
5606
- * Action. Valid values: `drop` and `alg`.
5607
- * @type {string || null}
5608
- */
5609
- this.Action = null;
5610
-
5611
- /**
5612
- * Region type. Valid values: `china`, `oversea` and `customized`.
5613
- * @type {string || null}
5614
- */
5615
- this.RegionType = null;
5616
-
5617
- /**
5618
- * ID list of regions to be blocked
5619
- * @type {Array.<number> || null}
5620
- */
5621
- this.AreaList = null;
5622
-
5623
- /**
5624
- * Creation time
5625
- * @type {string || null}
5626
- */
5627
- this.CreateTime = null;
5628
-
5629
- /**
5630
- * Modification time
5631
- * @type {string || null}
5632
- */
5633
- this.ModifyTime = null;
5634
-
5635
- }
5636
-
5637
- /**
5638
- * @private
5639
- */
5640
- deserialize(params) {
5641
- if (!params) {
5642
- return;
5643
- }
5644
- this.PolicyId = 'PolicyId' in params ? params.PolicyId : null;
5645
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
5646
- this.Ip = 'Ip' in params ? params.Ip : null;
5647
- this.Domain = 'Domain' in params ? params.Domain : null;
5648
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
5649
- this.Action = 'Action' in params ? params.Action : null;
5650
- this.RegionType = 'RegionType' in params ? params.RegionType : null;
5651
- this.AreaList = 'AreaList' in params ? params.AreaList : null;
5652
- this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
5653
- this.ModifyTime = 'ModifyTime' in params ? params.ModifyTime : null;
5654
-
5655
- }
5656
- }
5657
-
5658
5145
  /**
5659
5146
  * Return code, only used to report success.
5660
5147
  * @class
@@ -5690,76 +5177,6 @@ class SuccessCode extends AbstractModel {
5690
5177
  }
5691
5178
  }
5692
5179
 
5693
- /**
5694
- * DescribeCCPrecisionPlyList request structure.
5695
- * @class
5696
- */
5697
- class DescribeCCPrecisionPlyListRequest extends AbstractModel {
5698
- constructor(){
5699
- super();
5700
-
5701
- /**
5702
- * Anti-DDoS service type. Valid values: `bgpip-multip` (Anti-DDoS Pro) and `bgpip` (Anti-DDoS Advanced).
5703
- * @type {string || null}
5704
- */
5705
- this.Business = null;
5706
-
5707
- /**
5708
- * Starting offset of the page. Value: (number of pages – 1) * items per page.
5709
- * @type {number || null}
5710
- */
5711
- this.Offset = null;
5712
-
5713
- /**
5714
- * Number of results returned in one page
5715
- * @type {number || null}
5716
- */
5717
- this.Limit = null;
5718
-
5719
- /**
5720
- * Instance ID
5721
- * @type {string || null}
5722
- */
5723
- this.InstanceId = null;
5724
-
5725
- /**
5726
- * IP address, which is required when an Anti-DDoS Advanced instance is used.
5727
- * @type {string || null}
5728
- */
5729
- this.Ip = null;
5730
-
5731
- /**
5732
- * Domain name, which is required when an Anti-DDoS Advanced instance is used.
5733
- * @type {string || null}
5734
- */
5735
- this.Domain = null;
5736
-
5737
- /**
5738
- * Protocol, which is required when an Anti-DDoS Advanced instance is used.
5739
- * @type {string || null}
5740
- */
5741
- this.Protocol = null;
5742
-
5743
- }
5744
-
5745
- /**
5746
- * @private
5747
- */
5748
- deserialize(params) {
5749
- if (!params) {
5750
- return;
5751
- }
5752
- this.Business = 'Business' in params ? params.Business : null;
5753
- this.Offset = 'Offset' in params ? params.Offset : null;
5754
- this.Limit = 'Limit' in params ? params.Limit : null;
5755
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
5756
- this.Ip = 'Ip' in params ? params.Ip : null;
5757
- this.Domain = 'Domain' in params ? params.Domain : null;
5758
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
5759
-
5760
- }
5761
- }
5762
-
5763
5180
  /**
5764
5181
  * "Protocol" and "Port" parameters
5765
5182
  * @class
@@ -5937,68 +5354,30 @@ class DescribeListIPAlarmConfigRequest extends AbstractModel {
5937
5354
 
5938
5355
  /**
5939
5356
  * Number of items per page. The default value is 20 when Limit = 0. The maximum value is 100.
5940
- * @type {number || null}
5941
- */
5942
- this.Limit = null;
5943
-
5944
- /**
5945
- * Anti-DDoS instance ID filter. Anti-DDoS instance prefix wildcard search is supported. For example, you can filter Anti-DDoS Pro instances by `bgp-*`.
5946
- * @type {string || null}
5947
- */
5948
- this.FilterInstanceId = null;
5949
-
5950
- /**
5951
- * Alarm threshold type filter. Valid values:
5952
- `1`: alarm threshold for inbound traffic
5953
- `2`: alarm threshold for cleansing attack traffic
5954
- ]
5955
- * @type {number || null}
5956
- */
5957
- this.FilterAlarmType = null;
5958
-
5959
- /**
5960
- * IP filter
5961
- * @type {string || null}
5962
- */
5963
- this.FilterIp = null;
5964
-
5965
- }
5966
-
5967
- /**
5968
- * @private
5969
- */
5970
- deserialize(params) {
5971
- if (!params) {
5972
- return;
5973
- }
5974
- this.Offset = 'Offset' in params ? params.Offset : null;
5975
- this.Limit = 'Limit' in params ? params.Limit : null;
5976
- this.FilterInstanceId = 'FilterInstanceId' in params ? params.FilterInstanceId : null;
5977
- this.FilterAlarmType = 'FilterAlarmType' in params ? params.FilterAlarmType : null;
5978
- this.FilterIp = 'FilterIp' in params ? params.FilterIp : null;
5979
-
5980
- }
5981
- }
5982
-
5983
- /**
5984
- * Port range information
5985
- * @class
5986
- */
5987
- class PortSegment extends AbstractModel {
5988
- constructor(){
5989
- super();
5357
+ * @type {number || null}
5358
+ */
5359
+ this.Limit = null;
5990
5360
 
5991
5361
  /**
5992
- * Start port. Value range: 1–65535.
5993
- * @type {number || null}
5362
+ * Anti-DDoS instance ID filter. Anti-DDoS instance prefix wildcard search is supported. For example, you can filter Anti-DDoS Pro instances by `bgp-*`.
5363
+ * @type {string || null}
5994
5364
  */
5995
- this.BeginPort = null;
5365
+ this.FilterInstanceId = null;
5996
5366
 
5997
5367
  /**
5998
- * End port. The value should be in the range 1–65535 and cannot be less than that of the start port.
5368
+ * Alarm threshold type filter. Valid values:
5369
+ `1`: alarm threshold for inbound traffic
5370
+ `2`: alarm threshold for cleansing attack traffic
5371
+ ]
5999
5372
  * @type {number || null}
6000
5373
  */
6001
- this.EndPort = null;
5374
+ this.FilterAlarmType = null;
5375
+
5376
+ /**
5377
+ * IP filter
5378
+ * @type {string || null}
5379
+ */
5380
+ this.FilterIp = null;
6002
5381
 
6003
5382
  }
6004
5383
 
@@ -6009,8 +5388,11 @@ class PortSegment extends AbstractModel {
6009
5388
  if (!params) {
6010
5389
  return;
6011
5390
  }
6012
- this.BeginPort = 'BeginPort' in params ? params.BeginPort : null;
6013
- this.EndPort = 'EndPort' in params ? params.EndPort : null;
5391
+ this.Offset = 'Offset' in params ? params.Offset : null;
5392
+ this.Limit = 'Limit' in params ? params.Limit : null;
5393
+ this.FilterInstanceId = 'FilterInstanceId' in params ? params.FilterInstanceId : null;
5394
+ this.FilterAlarmType = 'FilterAlarmType' in params ? params.FilterAlarmType : null;
5395
+ this.FilterIp = 'FilterIp' in params ? params.FilterIp : null;
6014
5396
 
6015
5397
  }
6016
5398
  }
@@ -6310,39 +5692,24 @@ class ForwardListener extends AbstractModel {
6310
5692
  }
6311
5693
 
6312
5694
  /**
6313
- * Anti-DDoS Pro instance specifications
5695
+ * SwitchWaterPrintConfig request structure.
6314
5696
  * @class
6315
5697
  */
6316
- class BGPInstanceSpecification extends AbstractModel {
5698
+ class SwitchWaterPrintConfigRequest extends AbstractModel {
6317
5699
  constructor(){
6318
5700
  super();
6319
5701
 
6320
5702
  /**
6321
- * Base protection bandwidth (in Gbps)
6322
- * @type {number || null}
6323
- */
6324
- this.ProtectBandwidth = null;
6325
-
6326
- /**
6327
- * Number of protection chances
6328
- * @type {number || null}
6329
- */
6330
- this.ProtectCountLimit = null;
6331
-
6332
- /**
6333
- * Number of protection IPs
6334
- * @type {number || null}
5703
+ * Anti-DDoS instance ID
5704
+ * @type {string || null}
6335
5705
  */
6336
- this.ProtectIPNumberLimit = null;
5706
+ this.InstanceId = null;
6337
5707
 
6338
5708
  /**
6339
- * Auto-renewal status. Valid values:
6340
- `0`: disabled
6341
- `1`: enabled
6342
- ]
5709
+ * Watermark status. `1`: enabled; `0`: disabled.
6343
5710
  * @type {number || null}
6344
5711
  */
6345
- this.AutoRenewFlag = null;
5712
+ this.OpenStatus = null;
6346
5713
 
6347
5714
  }
6348
5715
 
@@ -6353,10 +5720,8 @@ class BGPInstanceSpecification extends AbstractModel {
6353
5720
  if (!params) {
6354
5721
  return;
6355
5722
  }
6356
- this.ProtectBandwidth = 'ProtectBandwidth' in params ? params.ProtectBandwidth : null;
6357
- this.ProtectCountLimit = 'ProtectCountLimit' in params ? params.ProtectCountLimit : null;
6358
- this.ProtectIPNumberLimit = 'ProtectIPNumberLimit' in params ? params.ProtectIPNumberLimit : null;
6359
- this.AutoRenewFlag = 'AutoRenewFlag' in params ? params.AutoRenewFlag : null;
5723
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
5724
+ this.OpenStatus = 'OpenStatus' in params ? params.OpenStatus : null;
6360
5725
 
6361
5726
  }
6362
5727
  }
@@ -7216,41 +6581,6 @@ class SpeedValue extends AbstractModel {
7216
6581
  }
7217
6582
  }
7218
6583
 
7219
- /**
7220
- * SwitchWaterPrintConfig request structure.
7221
- * @class
7222
- */
7223
- class SwitchWaterPrintConfigRequest extends AbstractModel {
7224
- constructor(){
7225
- super();
7226
-
7227
- /**
7228
- * Anti-DDoS instance ID
7229
- * @type {string || null}
7230
- */
7231
- this.InstanceId = null;
7232
-
7233
- /**
7234
- * Watermark status. `1`: enabled; `0`: disabled.
7235
- * @type {number || null}
7236
- */
7237
- this.OpenStatus = null;
7238
-
7239
- }
7240
-
7241
- /**
7242
- * @private
7243
- */
7244
- deserialize(params) {
7245
- if (!params) {
7246
- return;
7247
- }
7248
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
7249
- this.OpenStatus = 'OpenStatus' in params ? params.OpenStatus : null;
7250
-
7251
- }
7252
- }
7253
-
7254
6584
  /**
7255
6585
  * DescribeListSchedulingDomain response structure.
7256
6586
  * @class
@@ -7556,46 +6886,24 @@ class CreateSchedulingDomainResponse extends AbstractModel {
7556
6886
  }
7557
6887
 
7558
6888
  /**
7559
- * Details of the cloud product used by the EIP
6889
+ * Port range information
7560
6890
  * @class
7561
6891
  */
7562
- class EipProductInfo extends AbstractModel {
6892
+ class PortSegment extends AbstractModel {
7563
6893
  constructor(){
7564
6894
  super();
7565
6895
 
7566
6896
  /**
7567
- * IP address
7568
- * @type {string || null}
7569
- */
7570
- this.Ip = null;
7571
-
7572
- /**
7573
- * Cloud product category. Valid values:
7574
- `public`: CVM
7575
- `bm`: BM
7576
- `eni`: ENI
7577
- `vpngw`: VPN gateway
7578
- `natgw`: NAT gateway
7579
- `waf`: WAF
7580
- `fpc`: financial products
7581
- `gaap`: GAAP
7582
- `other`: hosted IP
7583
- ]
7584
- * @type {string || null}
7585
- */
7586
- this.BizType = null;
7587
-
7588
- /**
7589
- * Cloud sub-product category. Valid values: `cvm` (CVM), `lb` (Load balancer), `eni` (ENI), `vpngw` (VPN gateway), `natgw` (NAT gateway), `waf` (WAF), `fpc` (financial products), `gaap` (GAAP), `eip` (BM EIP) and `other` (hosted IP).
7590
- * @type {string || null}
6897
+ * Start port. Value range: 1–65535.
6898
+ * @type {number || null}
7591
6899
  */
7592
- this.DeviceType = null;
6900
+ this.BeginPort = null;
7593
6901
 
7594
6902
  /**
7595
- * Cloud instance ID of the IP. This field InstanceId will be `eni-*` if the instance ID is bound to an ENI IP; `none` if there is no instance ID to bind to a hosted IP.
7596
- * @type {string || null}
6903
+ * End port. The value should be in the range 1–65535 and cannot be less than that of the start port.
6904
+ * @type {number || null}
7597
6905
  */
7598
- this.InstanceId = null;
6906
+ this.EndPort = null;
7599
6907
 
7600
6908
  }
7601
6909
 
@@ -7606,10 +6914,8 @@ class EipProductInfo extends AbstractModel {
7606
6914
  if (!params) {
7607
6915
  return;
7608
6916
  }
7609
- this.Ip = 'Ip' in params ? params.Ip : null;
7610
- this.BizType = 'BizType' in params ? params.BizType : null;
7611
- this.DeviceType = 'DeviceType' in params ? params.DeviceType : null;
7612
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
6917
+ this.BeginPort = 'BeginPort' in params ? params.BeginPort : null;
6918
+ this.EndPort = 'EndPort' in params ? params.EndPort : null;
7613
6919
 
7614
6920
  }
7615
6921
  }
@@ -7649,56 +6955,6 @@ class DeleteCcBlackWhiteIpListRequest extends AbstractModel {
7649
6955
  }
7650
6956
  }
7651
6957
 
7652
- /**
7653
- * DescribeCcGeoIPBlockConfigList response structure.
7654
- * @class
7655
- */
7656
- class DescribeCcGeoIPBlockConfigListResponse extends AbstractModel {
7657
- constructor(){
7658
- super();
7659
-
7660
- /**
7661
- * Number of policy lists
7662
- * @type {number || null}
7663
- */
7664
- this.Total = null;
7665
-
7666
- /**
7667
- * Information of the policy list
7668
- * @type {Array.<CcGeoIpPolicyNew> || null}
7669
- */
7670
- this.CcGeoIpPolicyList = null;
7671
-
7672
- /**
7673
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
7674
- * @type {string || null}
7675
- */
7676
- this.RequestId = null;
7677
-
7678
- }
7679
-
7680
- /**
7681
- * @private
7682
- */
7683
- deserialize(params) {
7684
- if (!params) {
7685
- return;
7686
- }
7687
- this.Total = 'Total' in params ? params.Total : null;
7688
-
7689
- if (params.CcGeoIpPolicyList) {
7690
- this.CcGeoIpPolicyList = new Array();
7691
- for (let z in params.CcGeoIpPolicyList) {
7692
- let obj = new CcGeoIpPolicyNew();
7693
- obj.deserialize(params.CcGeoIpPolicyList[z]);
7694
- this.CcGeoIpPolicyList.push(obj);
7695
- }
7696
- }
7697
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
7698
-
7699
- }
7700
- }
7701
-
7702
6958
  /**
7703
6959
  * CreateDDoSAI response structure.
7704
6960
  * @class
@@ -7825,30 +7081,18 @@ class DescribeListProtocolBlockConfigRequest extends AbstractModel {
7825
7081
  }
7826
7082
 
7827
7083
  /**
7828
- * DescribeListBGPInstances response structure.
7084
+ * Region information.
7829
7085
  * @class
7830
7086
  */
7831
- class DescribeListBGPInstancesResponse extends AbstractModel {
7087
+ class RegionInfo extends AbstractModel {
7832
7088
  constructor(){
7833
7089
  super();
7834
7090
 
7835
7091
  /**
7836
- * Total number of lists
7837
- * @type {number || null}
7838
- */
7839
- this.Total = null;
7840
-
7841
- /**
7842
- * List of Anti-DDoS Pro instances
7843
- * @type {Array.<BGPInstance> || null}
7844
- */
7845
- this.InstanceList = null;
7846
-
7847
- /**
7848
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
7092
+ * Region name, such as `ap-guangzhou`
7849
7093
  * @type {string || null}
7850
7094
  */
7851
- this.RequestId = null;
7095
+ this.Region = null;
7852
7096
 
7853
7097
  }
7854
7098
 
@@ -7859,17 +7103,7 @@ class DescribeListBGPInstancesResponse extends AbstractModel {
7859
7103
  if (!params) {
7860
7104
  return;
7861
7105
  }
7862
- this.Total = 'Total' in params ? params.Total : null;
7863
-
7864
- if (params.InstanceList) {
7865
- this.InstanceList = new Array();
7866
- for (let z in params.InstanceList) {
7867
- let obj = new BGPInstance();
7868
- obj.deserialize(params.InstanceList[z]);
7869
- this.InstanceList.push(obj);
7870
- }
7871
- }
7872
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
7106
+ this.Region = 'Region' in params ? params.Region : null;
7873
7107
 
7874
7108
  }
7875
7109
  }
@@ -7973,173 +7207,48 @@ class ModifyDDoSGeoIPBlockConfigResponse extends AbstractModel {
7973
7207
  }
7974
7208
 
7975
7209
  /**
7976
- * CreateCcBlackWhiteIpList request structure.
7977
- * @class
7978
- */
7979
- class CreateCcBlackWhiteIpListRequest extends AbstractModel {
7980
- constructor(){
7981
- super();
7982
-
7983
- /**
7984
- * Instance ID
7985
- * @type {string || null}
7986
- */
7987
- this.InstanceId = null;
7988
-
7989
- /**
7990
- * List of IPs
7991
- * @type {Array.<IpSegment> || null}
7992
- */
7993
- this.IpList = null;
7994
-
7995
- /**
7996
- * IP permission. Valid values: `black` (blocked IP), `white` (allowed IP).
7997
- * @type {string || null}
7998
- */
7999
- this.Type = null;
8000
-
8001
- /**
8002
- * IP address
8003
- * @type {string || null}
8004
- */
8005
- this.Ip = null;
8006
-
8007
- /**
8008
- * Domain name
8009
- * @type {string || null}
8010
- */
8011
- this.Domain = null;
8012
-
8013
- /**
8014
- * Protocol
8015
- * @type {string || null}
8016
- */
8017
- this.Protocol = null;
8018
-
8019
- }
8020
-
8021
- /**
8022
- * @private
8023
- */
8024
- deserialize(params) {
8025
- if (!params) {
8026
- return;
8027
- }
8028
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
8029
-
8030
- if (params.IpList) {
8031
- this.IpList = new Array();
8032
- for (let z in params.IpList) {
8033
- let obj = new IpSegment();
8034
- obj.deserialize(params.IpList[z]);
8035
- this.IpList.push(obj);
8036
- }
8037
- }
8038
- this.Type = 'Type' in params ? params.Type : null;
8039
- this.Ip = 'Ip' in params ? params.Ip : null;
8040
- this.Domain = 'Domain' in params ? params.Domain : null;
8041
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
8042
-
8043
- }
8044
- }
8045
-
8046
- /**
8047
- * Anti-DDoS Pro instance details
7210
+ * CreateCcBlackWhiteIpList request structure.
8048
7211
  * @class
8049
7212
  */
8050
- class BGPInstance extends AbstractModel {
7213
+ class CreateCcBlackWhiteIpListRequest extends AbstractModel {
8051
7214
  constructor(){
8052
7215
  super();
8053
7216
 
8054
7217
  /**
8055
- * Anti-DDoS instance details
8056
- * @type {InstanceRelation || null}
8057
- */
8058
- this.InstanceDetail = null;
8059
-
8060
- /**
8061
- * Anti-DDoS instance specifications
8062
- * @type {BGPInstanceSpecification || null}
8063
- */
8064
- this.SpecificationLimit = null;
8065
-
8066
- /**
8067
- * Anti-DDoS instance usage statistics
8068
- * @type {BGPInstanceUsages || null}
8069
- */
8070
- this.Usage = null;
8071
-
8072
- /**
8073
- * Region of the Anti-DDoS instance
8074
- * @type {RegionInfo || null}
8075
- */
8076
- this.Region = null;
8077
-
8078
- /**
8079
- * Status of the Anti-DDoS instance. Valid values:
8080
- `idle`: running
8081
- `attacking`: under attacks
8082
- `blocking`: blocked
8083
- `creating`: creating
8084
- `deblocking`: unblocked
8085
- `isolate`: isolated
7218
+ * Instance ID
8086
7219
  * @type {string || null}
8087
7220
  */
8088
- this.Status = null;
7221
+ this.InstanceId = null;
8089
7222
 
8090
7223
  /**
8091
- * Purchase Time
8092
- * @type {string || null}
7224
+ * List of IPs
7225
+ * @type {Array.<IpSegment> || null}
8093
7226
  */
8094
- this.CreatedTime = null;
7227
+ this.IpList = null;
8095
7228
 
8096
7229
  /**
8097
- * Expiration time
7230
+ * IP permission. Valid values: `black` (blocked IP), `white` (allowed IP).
8098
7231
  * @type {string || null}
8099
7232
  */
8100
- this.ExpiredTime = null;
7233
+ this.Type = null;
8101
7234
 
8102
7235
  /**
8103
- * Name of the Anti-DDoS instance
7236
+ * IP address
8104
7237
  * @type {string || null}
8105
7238
  */
8106
- this.Name = null;
8107
-
8108
- /**
8109
- * Package details of the Anti-DDoS instance.
8110
- Note: This field is `null` for an Anti-DDoS instance without using a package.
8111
- Note: This field may return `null`, indicating that no valid value can be obtained.
8112
- * @type {PackInfo || null}
8113
- */
8114
- this.PackInfo = null;
8115
-
8116
- /**
8117
- * Details of the cloud product used by the EIP bound to the Anti-DDoS Pro instance
8118
- * @type {Array.<EipProductInfo> || null}
8119
- */
8120
- this.EipProductInfos = null;
7239
+ this.Ip = null;
8121
7240
 
8122
7241
  /**
8123
- * Binding status of the Anti-DDoS Pro instance
8124
- `idle`: the instance is bound.
8125
- `bounding`: the instance is in binding.
8126
- `failed`: the binding failed.
8127
- ]
7242
+ * Domain name
8128
7243
  * @type {string || null}
8129
7244
  */
8130
- this.BoundStatus = null;
7245
+ this.Domain = null;
8131
7246
 
8132
7247
  /**
8133
- * Layer-4 protection level
7248
+ * Protocol
8134
7249
  * @type {string || null}
8135
7250
  */
8136
- this.DDoSLevel = null;
8137
-
8138
- /**
8139
- * CC protection switch
8140
- * @type {number || null}
8141
- */
8142
- this.CCEnable = null;
7251
+ this.Protocol = null;
8143
7252
 
8144
7253
  }
8145
7254
 
@@ -8150,52 +7259,20 @@ Note: This field may return `null`, indicating that no valid value can be obtain
8150
7259
  if (!params) {
8151
7260
  return;
8152
7261
  }
7262
+ this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
8153
7263
 
8154
- if (params.InstanceDetail) {
8155
- let obj = new InstanceRelation();
8156
- obj.deserialize(params.InstanceDetail)
8157
- this.InstanceDetail = obj;
8158
- }
8159
-
8160
- if (params.SpecificationLimit) {
8161
- let obj = new BGPInstanceSpecification();
8162
- obj.deserialize(params.SpecificationLimit)
8163
- this.SpecificationLimit = obj;
8164
- }
8165
-
8166
- if (params.Usage) {
8167
- let obj = new BGPInstanceUsages();
8168
- obj.deserialize(params.Usage)
8169
- this.Usage = obj;
8170
- }
8171
-
8172
- if (params.Region) {
8173
- let obj = new RegionInfo();
8174
- obj.deserialize(params.Region)
8175
- this.Region = obj;
8176
- }
8177
- this.Status = 'Status' in params ? params.Status : null;
8178
- this.CreatedTime = 'CreatedTime' in params ? params.CreatedTime : null;
8179
- this.ExpiredTime = 'ExpiredTime' in params ? params.ExpiredTime : null;
8180
- this.Name = 'Name' in params ? params.Name : null;
8181
-
8182
- if (params.PackInfo) {
8183
- let obj = new PackInfo();
8184
- obj.deserialize(params.PackInfo)
8185
- this.PackInfo = obj;
8186
- }
8187
-
8188
- if (params.EipProductInfos) {
8189
- this.EipProductInfos = new Array();
8190
- for (let z in params.EipProductInfos) {
8191
- let obj = new EipProductInfo();
8192
- obj.deserialize(params.EipProductInfos[z]);
8193
- this.EipProductInfos.push(obj);
7264
+ if (params.IpList) {
7265
+ this.IpList = new Array();
7266
+ for (let z in params.IpList) {
7267
+ let obj = new IpSegment();
7268
+ obj.deserialize(params.IpList[z]);
7269
+ this.IpList.push(obj);
8194
7270
  }
8195
7271
  }
8196
- this.BoundStatus = 'BoundStatus' in params ? params.BoundStatus : null;
8197
- this.DDoSLevel = 'DDoSLevel' in params ? params.DDoSLevel : null;
8198
- this.CCEnable = 'CCEnable' in params ? params.CCEnable : null;
7272
+ this.Type = 'Type' in params ? params.Type : null;
7273
+ this.Ip = 'Ip' in params ? params.Ip : null;
7274
+ this.Domain = 'Domain' in params ? params.Domain : null;
7275
+ this.Protocol = 'Protocol' in params ? params.Protocol : null;
8199
7276
 
8200
7277
  }
8201
7278
  }
@@ -8249,56 +7326,6 @@ class CCPrecisionPlyRecord extends AbstractModel {
8249
7326
  }
8250
7327
  }
8251
7328
 
8252
- /**
8253
- * DescribeCCPrecisionPlyList response structure.
8254
- * @class
8255
- */
8256
- class DescribeCCPrecisionPlyListResponse extends AbstractModel {
8257
- constructor(){
8258
- super();
8259
-
8260
- /**
8261
- * Number of policy lists
8262
- * @type {number || null}
8263
- */
8264
- this.Total = null;
8265
-
8266
- /**
8267
- * Information of the policy list
8268
- * @type {Array.<CCPrecisionPolicy> || null}
8269
- */
8270
- this.PrecisionPolicyList = null;
8271
-
8272
- /**
8273
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
8274
- * @type {string || null}
8275
- */
8276
- this.RequestId = null;
8277
-
8278
- }
8279
-
8280
- /**
8281
- * @private
8282
- */
8283
- deserialize(params) {
8284
- if (!params) {
8285
- return;
8286
- }
8287
- this.Total = 'Total' in params ? params.Total : null;
8288
-
8289
- if (params.PrecisionPolicyList) {
8290
- this.PrecisionPolicyList = new Array();
8291
- for (let z in params.PrecisionPolicyList) {
8292
- let obj = new CCPrecisionPolicy();
8293
- obj.deserialize(params.PrecisionPolicyList[z]);
8294
- this.PrecisionPolicyList.push(obj);
8295
- }
8296
- }
8297
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
8298
-
8299
- }
8300
- }
8301
-
8302
7329
  /**
8303
7330
  * DescribeBizTrend request structure.
8304
7331
  * @class
@@ -8476,48 +7503,6 @@ class DescribeListWaterPrintConfigResponse extends AbstractModel {
8476
7503
  }
8477
7504
  }
8478
7505
 
8479
- /**
8480
- * Anti-DDoS Pro instance usage statistics
8481
- * @class
8482
- */
8483
- class BGPInstanceUsages extends AbstractModel {
8484
- constructor(){
8485
- super();
8486
-
8487
- /**
8488
- * Number of used protection chances
8489
- * @type {number || null}
8490
- */
8491
- this.ProtectCountUsage = null;
8492
-
8493
- /**
8494
- * Number of protected IPs
8495
- * @type {number || null}
8496
- */
8497
- this.ProtectIPNumberUsage = null;
8498
-
8499
- /**
8500
- * Number of attack times in the last 7 days
8501
- * @type {number || null}
8502
- */
8503
- this.Last7DayAttackCount = null;
8504
-
8505
- }
8506
-
8507
- /**
8508
- * @private
8509
- */
8510
- deserialize(params) {
8511
- if (!params) {
8512
- return;
8513
- }
8514
- this.ProtectCountUsage = 'ProtectCountUsage' in params ? params.ProtectCountUsage : null;
8515
- this.ProtectIPNumberUsage = 'ProtectIPNumberUsage' in params ? params.ProtectIPNumberUsage : null;
8516
- this.Last7DayAttackCount = 'Last7DayAttackCount' in params ? params.Last7DayAttackCount : null;
8517
-
8518
- }
8519
- }
8520
-
8521
7506
  /**
8522
7507
  * DeleteDDoSSpeedLimitConfig response structure.
8523
7508
  * @class
@@ -9089,76 +8074,6 @@ class WaterPrintKey extends AbstractModel {
9089
8074
  }
9090
8075
  }
9091
8076
 
9092
- /**
9093
- * DescribeCcGeoIPBlockConfigList request structure.
9094
- * @class
9095
- */
9096
- class DescribeCcGeoIPBlockConfigListRequest extends AbstractModel {
9097
- constructor(){
9098
- super();
9099
-
9100
- /**
9101
- * Anti-DDoS service type. Valid values: `bgpip-multip` (Anti-DDoS Pro) and `bgpip` (Anti-DDoS Advanced).
9102
- * @type {string || null}
9103
- */
9104
- this.Business = null;
9105
-
9106
- /**
9107
- * Starting offset of the page. Value: (number of pages – 1) * items per page.
9108
- * @type {number || null}
9109
- */
9110
- this.Offset = null;
9111
-
9112
- /**
9113
- * Number of results returned in one page
9114
- * @type {number || null}
9115
- */
9116
- this.Limit = null;
9117
-
9118
- /**
9119
- * Instance ID
9120
- * @type {string || null}
9121
- */
9122
- this.InstanceId = null;
9123
-
9124
- /**
9125
- * IP address, which is required when an Anti-DDoS Advanced instance is used.
9126
- * @type {string || null}
9127
- */
9128
- this.Ip = null;
9129
-
9130
- /**
9131
- * Domain name, which is required when an Anti-DDoS Advanced instance is used.
9132
- * @type {string || null}
9133
- */
9134
- this.Domain = null;
9135
-
9136
- /**
9137
- * Protocol, which is required when an Anti-DDoS Advanced instance is used.
9138
- * @type {string || null}
9139
- */
9140
- this.Protocol = null;
9141
-
9142
- }
9143
-
9144
- /**
9145
- * @private
9146
- */
9147
- deserialize(params) {
9148
- if (!params) {
9149
- return;
9150
- }
9151
- this.Business = 'Business' in params ? params.Business : null;
9152
- this.Offset = 'Offset' in params ? params.Offset : null;
9153
- this.Limit = 'Limit' in params ? params.Limit : null;
9154
- this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
9155
- this.Ip = 'Ip' in params ? params.Ip : null;
9156
- this.Domain = 'Domain' in params ? params.Domain : null;
9157
- this.Protocol = 'Protocol' in params ? params.Protocol : null;
9158
-
9159
- }
9160
- }
9161
-
9162
8077
  /**
9163
8078
  * Feature filtering information
9164
8079
  * @class
@@ -9342,9 +8257,7 @@ module.exports = {
9342
8257
  DescribeListDDoSSpeedLimitConfigRequest: DescribeListDDoSSpeedLimitConfigRequest,
9343
8258
  InstanceRelation: InstanceRelation,
9344
8259
  ModifyNewDomainRulesRequest: ModifyNewDomainRulesRequest,
9345
- RegionInfo: RegionInfo,
9346
8260
  DescribeListProtocolBlockConfigResponse: DescribeListProtocolBlockConfigResponse,
9347
- DescribeListBGPInstancesRequest: DescribeListBGPInstancesRequest,
9348
8261
  KeyValue: KeyValue,
9349
8262
  ModifyCcBlackWhiteIpListRequest: ModifyCcBlackWhiteIpListRequest,
9350
8263
  DeleteDDoSSpeedLimitConfigRequest: DeleteDDoSSpeedLimitConfigRequest,
@@ -9354,14 +8267,12 @@ module.exports = {
9354
8267
  CreateL7RuleCertsRequest: CreateL7RuleCertsRequest,
9355
8268
  CreateCCPrecisionPolicyResponse: CreateCCPrecisionPolicyResponse,
9356
8269
  DeleteDDoSGeoIPBlockConfigRequest: DeleteDDoSGeoIPBlockConfigRequest,
9357
- DescribeCcBlackWhiteIpListResponse: DescribeCcBlackWhiteIpListResponse,
9358
8270
  CreateIPAlarmThresholdConfigRequest: CreateIPAlarmThresholdConfigRequest,
9359
8271
  CreateCcBlackWhiteIpListResponse: CreateCcBlackWhiteIpListResponse,
9360
8272
  DescribeDefaultAlarmThresholdResponse: DescribeDefaultAlarmThresholdResponse,
9361
8273
  CreateDDoSAIRequest: CreateDDoSAIRequest,
9362
8274
  DescribeListProtectThresholdConfigRequest: DescribeListProtectThresholdConfigRequest,
9363
8275
  ModifyNewDomainRulesResponse: ModifyNewDomainRulesResponse,
9364
- CcBlackWhiteIpPolicy: CcBlackWhiteIpPolicy,
9365
8276
  DescribeCCLevelPolicyRequest: DescribeCCLevelPolicyRequest,
9366
8277
  CreateWaterPrintConfigResponse: CreateWaterPrintConfigResponse,
9367
8278
  DescribeListBGPIPInstancesRequest: DescribeListBGPIPInstancesRequest,
@@ -9425,13 +8336,11 @@ module.exports = {
9425
8336
  DDoSAIRelation: DDoSAIRelation,
9426
8337
  DescribeListDDoSSpeedLimitConfigResponse: DescribeListDDoSSpeedLimitConfigResponse,
9427
8338
  CreateDDoSGeoIPBlockConfigResponse: CreateDDoSGeoIPBlockConfigResponse,
9428
- CCPrecisionPolicy: CCPrecisionPolicy,
9429
8339
  ListenerCcThreholdConfig: ListenerCcThreholdConfig,
9430
- EipAddressRelation: EipAddressRelation,
9431
8340
  DescribeBasicDeviceStatusRequest: DescribeBasicDeviceStatusRequest,
9432
8341
  PackInfo: PackInfo,
9433
8342
  IPLineInfo: IPLineInfo,
9434
- DescribeCcBlackWhiteIpListRequest: DescribeCcBlackWhiteIpListRequest,
8343
+ EipAddressRelation: EipAddressRelation,
9435
8344
  DescribeListListenerResponse: DescribeListListenerResponse,
9436
8345
  ProtectThresholdRelation: ProtectThresholdRelation,
9437
8346
  IpSegment: IpSegment,
@@ -9443,19 +8352,16 @@ module.exports = {
9443
8352
  CertIdInsL7Rules: CertIdInsL7Rules,
9444
8353
  CreateDefaultAlarmThresholdResponse: CreateDefaultAlarmThresholdResponse,
9445
8354
  DescribeListIPAlarmConfigResponse: DescribeListIPAlarmConfigResponse,
9446
- CcGeoIpPolicyNew: CcGeoIpPolicyNew,
9447
8355
  SuccessCode: SuccessCode,
9448
- DescribeCCPrecisionPlyListRequest: DescribeCCPrecisionPlyListRequest,
9449
8356
  ProtocolPort: ProtocolPort,
9450
8357
  DescribeCCLevelListRequest: DescribeCCLevelListRequest,
9451
8358
  DeleteCCPrecisionPolicyResponse: DeleteCCPrecisionPolicyResponse,
9452
8359
  DescribeListDDoSAIRequest: DescribeListDDoSAIRequest,
9453
8360
  DescribeListIPAlarmConfigRequest: DescribeListIPAlarmConfigRequest,
9454
- PortSegment: PortSegment,
9455
8361
  PacketFilterConfig: PacketFilterConfig,
9456
8362
  DefaultAlarmThreshold: DefaultAlarmThreshold,
9457
8363
  ForwardListener: ForwardListener,
9458
- BGPInstanceSpecification: BGPInstanceSpecification,
8364
+ SwitchWaterPrintConfigRequest: SwitchWaterPrintConfigRequest,
9459
8365
  CCLevelPolicy: CCLevelPolicy,
9460
8366
  CreateWaterPrintKeyRequest: CreateWaterPrintKeyRequest,
9461
8367
  WaterPrintRelation: WaterPrintRelation,
@@ -9472,29 +8378,24 @@ module.exports = {
9472
8378
  DeleteCcBlackWhiteIpListResponse: DeleteCcBlackWhiteIpListResponse,
9473
8379
  CreateBoundIPResponse: CreateBoundIPResponse,
9474
8380
  SpeedValue: SpeedValue,
9475
- SwitchWaterPrintConfigRequest: SwitchWaterPrintConfigRequest,
9476
8381
  DescribeListSchedulingDomainResponse: DescribeListSchedulingDomainResponse,
9477
8382
  ModifyCCPrecisionPolicyRequest: ModifyCCPrecisionPolicyRequest,
9478
8383
  CCThresholdPolicy: CCThresholdPolicy,
9479
8384
  DescribeCCTrendResponse: DescribeCCTrendResponse,
9480
8385
  CreateSchedulingDomainResponse: CreateSchedulingDomainResponse,
9481
- EipProductInfo: EipProductInfo,
8386
+ PortSegment: PortSegment,
9482
8387
  DeleteCcBlackWhiteIpListRequest: DeleteCcBlackWhiteIpListRequest,
9483
- DescribeCcGeoIPBlockConfigListResponse: DescribeCcGeoIPBlockConfigListResponse,
9484
8388
  CreateDDoSAIResponse: CreateDDoSAIResponse,
9485
8389
  DDoSGeoIPBlockConfigRelation: DDoSGeoIPBlockConfigRelation,
9486
8390
  DescribeListProtocolBlockConfigRequest: DescribeListProtocolBlockConfigRequest,
9487
- DescribeListBGPInstancesResponse: DescribeListBGPInstancesResponse,
8391
+ RegionInfo: RegionInfo,
9488
8392
  DescribeDDoSTrendRequest: DescribeDDoSTrendRequest,
9489
8393
  ModifyDDoSGeoIPBlockConfigResponse: ModifyDDoSGeoIPBlockConfigResponse,
9490
8394
  CreateCcBlackWhiteIpListRequest: CreateCcBlackWhiteIpListRequest,
9491
- BGPInstance: BGPInstance,
9492
8395
  CCPrecisionPlyRecord: CCPrecisionPlyRecord,
9493
- DescribeCCPrecisionPlyListResponse: DescribeCCPrecisionPlyListResponse,
9494
8396
  DescribeBizTrendRequest: DescribeBizTrendRequest,
9495
8397
  DescribeCCLevelPolicyResponse: DescribeCCLevelPolicyResponse,
9496
8398
  DescribeListWaterPrintConfigResponse: DescribeListWaterPrintConfigResponse,
9497
- BGPInstanceUsages: BGPInstanceUsages,
9498
8399
  DeleteDDoSSpeedLimitConfigResponse: DeleteDDoSSpeedLimitConfigResponse,
9499
8400
  DeleteCCThresholdPolicyRequest: DeleteCCThresholdPolicyRequest,
9500
8401
  DescribeListListenerRequest: DescribeListListenerRequest,
@@ -9507,7 +8408,6 @@ module.exports = {
9507
8408
  SchedulingDomainInfo: SchedulingDomainInfo,
9508
8409
  DescribeDefaultAlarmThresholdRequest: DescribeDefaultAlarmThresholdRequest,
9509
8410
  WaterPrintKey: WaterPrintKey,
9510
- DescribeCcGeoIPBlockConfigListRequest: DescribeCcGeoIPBlockConfigListRequest,
9511
8411
  PacketFilterRelation: PacketFilterRelation,
9512
8412
  CreatePacketFilterConfigRequest: CreatePacketFilterConfigRequest,
9513
8413
  DescribeCCTrendRequest: DescribeCCTrendRequest,