tencentcloud-sdk-python-intl-en 3.0.1136__py2.py3-none-any.whl → 3.0.1137__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/trro/__init__.py +0 -0
- tencentcloud/trro/v20220325/__init__.py +0 -0
- tencentcloud/trro/v20220325/errorcodes.py +36 -0
- tencentcloud/trro/v20220325/models.py +3235 -0
- tencentcloud/trro/v20220325/trro_client.py +463 -0
- tencentcloud/vpc/v20170312/errorcodes.py +30 -0
- tencentcloud/vpc/v20170312/models.py +1647 -208
- tencentcloud/vpc/v20170312/vpc_client.py +280 -0
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/RECORD +13 -8
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/top_level.txt +0 -0
|
@@ -306,7 +306,7 @@ class Address(AbstractModel):
|
|
|
306
306
|
:type IsBlocked: bool
|
|
307
307
|
:param _IsEipDirectConnection: Whether the EIP supports direct connection mode. `True` indicates the EIP supports direct connection. `False` indicates that the resource does not support direct connection.
|
|
308
308
|
:type IsEipDirectConnection: bool
|
|
309
|
-
:param _AddressType:
|
|
309
|
+
:param _AddressType: EIP resource type. Valid values: `CalcIP` (device IP), `WanIP` (public IP), `EIP` (elastic IP), `AnycastEIP` (accelerated EIP), and `AntiDDoSEIP` (anti-DDoS EIP).
|
|
310
310
|
:type AddressType: str
|
|
311
311
|
:param _CascadeRelease: Whether the EIP is automatically released after being unbound. `True` indicates the EIP will be automatically released after being unbound. `False` indicates the EIP will not be automatically released after being unbound.
|
|
312
312
|
:type CascadeRelease: bool
|
|
@@ -341,14 +341,24 @@ Note: this field may return `null`, indicating that no valid values can be obtai
|
|
|
341
341
|
:param _InstanceType: The type of instance bound with the EIP
|
|
342
342
|
Note: this field may return `null`, indicating that no valid value was found.
|
|
343
343
|
:type InstanceType: str
|
|
344
|
-
:param _Egress:
|
|
344
|
+
:param _Egress: Static single-line IP network egress
|
|
345
|
+
Note: This field may return null, indicating that no valid value was found.
|
|
345
346
|
:type Egress: str
|
|
346
347
|
:param _AntiDDoSPackageId: ID of the Anti-DDoS service package. It is returned if the EIP is an Anti-DDoS EIP.
|
|
347
348
|
:type AntiDDoSPackageId: str
|
|
348
|
-
:param _RenewFlag:
|
|
349
|
+
:param _RenewFlag: Indicates whether the current EIP is auto-renewed. This field is displayed only for EIPs with monthly prepaid bandwidth. Valid values are as follows:
|
|
350
|
+
<li>NOTIFY_AND_MANUAL_RENEW: Normal renewal</li><li>NOTIFY_AND_AUTO_RENEW: Automatic renewal</li><li>DISABLE_NOTIFY_AND_MANUAL_RENEW: No renewal upon expiration</li>
|
|
351
|
+
|
|
349
352
|
:type RenewFlag: str
|
|
350
|
-
:param _BandwidthPackageId:
|
|
353
|
+
:param _BandwidthPackageId: Indicates the ID of the Bandwidth Package associated with the current public IP. If the public IP is not billed by Bandwidth Package, this field is empty.
|
|
354
|
+
Note: This field may return null, indicating that no valid value was found.
|
|
351
355
|
:type BandwidthPackageId: str
|
|
356
|
+
:param _UnVpcId: Indicates the unique ID of the VPC to which the traditional EIPv6 belongs.
|
|
357
|
+
Note: This field may return null, indicating that no valid value was found.
|
|
358
|
+
:type UnVpcId: str
|
|
359
|
+
:param _DedicatedClusterId: Indicates the unique ID of the CDC.
|
|
360
|
+
Note: This field may return 'null', indicating that no valid value was found.
|
|
361
|
+
:type DedicatedClusterId: str
|
|
352
362
|
"""
|
|
353
363
|
self._AddressId = None
|
|
354
364
|
self._AddressName = None
|
|
@@ -375,6 +385,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
375
385
|
self._AntiDDoSPackageId = None
|
|
376
386
|
self._RenewFlag = None
|
|
377
387
|
self._BandwidthPackageId = None
|
|
388
|
+
self._UnVpcId = None
|
|
389
|
+
self._DedicatedClusterId = None
|
|
378
390
|
|
|
379
391
|
@property
|
|
380
392
|
def AddressId(self):
|
|
@@ -499,7 +511,7 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
499
511
|
|
|
500
512
|
@property
|
|
501
513
|
def AddressType(self):
|
|
502
|
-
"""
|
|
514
|
+
"""EIP resource type. Valid values: `CalcIP` (device IP), `WanIP` (public IP), `EIP` (elastic IP), `AnycastEIP` (accelerated EIP), and `AntiDDoSEIP` (anti-DDoS EIP).
|
|
503
515
|
:rtype: str
|
|
504
516
|
"""
|
|
505
517
|
return self._AddressType
|
|
@@ -624,7 +636,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
624
636
|
|
|
625
637
|
@property
|
|
626
638
|
def Egress(self):
|
|
627
|
-
"""
|
|
639
|
+
"""Static single-line IP network egress
|
|
640
|
+
Note: This field may return null, indicating that no valid value was found.
|
|
628
641
|
:rtype: str
|
|
629
642
|
"""
|
|
630
643
|
return self._Egress
|
|
@@ -646,7 +659,9 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
646
659
|
|
|
647
660
|
@property
|
|
648
661
|
def RenewFlag(self):
|
|
649
|
-
"""
|
|
662
|
+
"""Indicates whether the current EIP is auto-renewed. This field is displayed only for EIPs with monthly prepaid bandwidth. Valid values are as follows:
|
|
663
|
+
<li>NOTIFY_AND_MANUAL_RENEW: Normal renewal</li><li>NOTIFY_AND_AUTO_RENEW: Automatic renewal</li><li>DISABLE_NOTIFY_AND_MANUAL_RENEW: No renewal upon expiration</li>
|
|
664
|
+
|
|
650
665
|
:rtype: str
|
|
651
666
|
"""
|
|
652
667
|
return self._RenewFlag
|
|
@@ -657,7 +672,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
657
672
|
|
|
658
673
|
@property
|
|
659
674
|
def BandwidthPackageId(self):
|
|
660
|
-
"""
|
|
675
|
+
"""Indicates the ID of the Bandwidth Package associated with the current public IP. If the public IP is not billed by Bandwidth Package, this field is empty.
|
|
676
|
+
Note: This field may return null, indicating that no valid value was found.
|
|
661
677
|
:rtype: str
|
|
662
678
|
"""
|
|
663
679
|
return self._BandwidthPackageId
|
|
@@ -666,6 +682,30 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
666
682
|
def BandwidthPackageId(self, BandwidthPackageId):
|
|
667
683
|
self._BandwidthPackageId = BandwidthPackageId
|
|
668
684
|
|
|
685
|
+
@property
|
|
686
|
+
def UnVpcId(self):
|
|
687
|
+
"""Indicates the unique ID of the VPC to which the traditional EIPv6 belongs.
|
|
688
|
+
Note: This field may return null, indicating that no valid value was found.
|
|
689
|
+
:rtype: str
|
|
690
|
+
"""
|
|
691
|
+
return self._UnVpcId
|
|
692
|
+
|
|
693
|
+
@UnVpcId.setter
|
|
694
|
+
def UnVpcId(self, UnVpcId):
|
|
695
|
+
self._UnVpcId = UnVpcId
|
|
696
|
+
|
|
697
|
+
@property
|
|
698
|
+
def DedicatedClusterId(self):
|
|
699
|
+
"""Indicates the unique ID of the CDC.
|
|
700
|
+
Note: This field may return 'null', indicating that no valid value was found.
|
|
701
|
+
:rtype: str
|
|
702
|
+
"""
|
|
703
|
+
return self._DedicatedClusterId
|
|
704
|
+
|
|
705
|
+
@DedicatedClusterId.setter
|
|
706
|
+
def DedicatedClusterId(self, DedicatedClusterId):
|
|
707
|
+
self._DedicatedClusterId = DedicatedClusterId
|
|
708
|
+
|
|
669
709
|
|
|
670
710
|
def _deserialize(self, params):
|
|
671
711
|
self._AddressId = params.get("AddressId")
|
|
@@ -700,6 +740,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
700
740
|
self._AntiDDoSPackageId = params.get("AntiDDoSPackageId")
|
|
701
741
|
self._RenewFlag = params.get("RenewFlag")
|
|
702
742
|
self._BandwidthPackageId = params.get("BandwidthPackageId")
|
|
743
|
+
self._UnVpcId = params.get("UnVpcId")
|
|
744
|
+
self._DedicatedClusterId = params.get("DedicatedClusterId")
|
|
703
745
|
memeber_set = set(params.keys())
|
|
704
746
|
for name, value in vars(self).items():
|
|
705
747
|
property_name = name[1:]
|
|
@@ -1661,6 +1703,448 @@ class AllocateAddressesResponse(AbstractModel):
|
|
|
1661
1703
|
self._RequestId = params.get("RequestId")
|
|
1662
1704
|
|
|
1663
1705
|
|
|
1706
|
+
class AllocateIPv6AddressesRequest(AbstractModel):
|
|
1707
|
+
"""AllocateIPv6Addresses request structure.
|
|
1708
|
+
|
|
1709
|
+
"""
|
|
1710
|
+
|
|
1711
|
+
def __init__(self):
|
|
1712
|
+
r"""
|
|
1713
|
+
:param _AddressName: EIPv6 name, which is the custom EIPv6 name given by the user when the user applies for the EIPv6. Default: not named.
|
|
1714
|
+
:type AddressName: str
|
|
1715
|
+
:param _AddressType: Indicates the type of EIPv6. Valid values:
|
|
1716
|
+
|
|
1717
|
+
- EIPv6: common IPv6
|
|
1718
|
+
- HighQualityEIPv6: dedicated IPv6
|
|
1719
|
+
Note: Contact the product team to enable the dedicated IPv6 allowlist. The dedicated IPv6 is only supported in some regions.
|
|
1720
|
+
|
|
1721
|
+
Default: EIPv6.
|
|
1722
|
+
:type AddressType: str
|
|
1723
|
+
:param _AddressCount: Number of applied EIPv6 addresses. Default: 1.
|
|
1724
|
+
:type AddressCount: int
|
|
1725
|
+
:param _InternetChargeType: Indicates the billing method of EIPv6. Valid values:
|
|
1726
|
+
|
|
1727
|
+
- BANDWIDTH_PACKAGE: billed by [Bandwidth Package](https://intl.cloud.tencent.com/document/product/684/15255?from_cn_redirect=1)
|
|
1728
|
+
- TRAFFIC_POSTPAID_BY_HOUR: postpaid by traffic on an hourly basis
|
|
1729
|
+
|
|
1730
|
+
Default: TRAFFIC_POSTPAID_BY_HOUR.
|
|
1731
|
+
:type InternetChargeType: str
|
|
1732
|
+
:param _InternetServiceProvider: Indicates the type of EIPv6 line. Default: BGP.
|
|
1733
|
+
|
|
1734
|
+
For a user who has enabled the static single-line IP allowlist, valid values include:
|
|
1735
|
+
- CMCC: China Mobile
|
|
1736
|
+
- CTCC: China Telecom
|
|
1737
|
+
- CUCC: China Unicom
|
|
1738
|
+
Note: The static single-line IP is only supported in some regions.
|
|
1739
|
+
:type InternetServiceProvider: str
|
|
1740
|
+
:param _InternetMaxBandwidthOut: EIPv6 bandwidth cap, in Mbps.
|
|
1741
|
+
|
|
1742
|
+
Valid values depend on the EIP billing method:
|
|
1743
|
+
|
|
1744
|
+
- BANDWIDTH_PACKAGE: 1 Mbps to 2000 Mbps
|
|
1745
|
+
- TRAFFIC_POSTPAID_BY_HOUR: 1 Mbps to 100 Mbps
|
|
1746
|
+
|
|
1747
|
+
Default: 1 Mbps.
|
|
1748
|
+
:type InternetMaxBandwidthOut: int
|
|
1749
|
+
:param _BandwidthPackageId: Unique ID of the bandwidth package.
|
|
1750
|
+
Setting this parameter and having InternetChargeType as BANDWIDTH_PACKAGE indicate that the created EIP will join this BGP bandwidth package and the billing method of bandwidth package will be adopted.
|
|
1751
|
+
:type BandwidthPackageId: str
|
|
1752
|
+
:param _Tags: List of tags to be associated.
|
|
1753
|
+
:type Tags: list of Tag
|
|
1754
|
+
:param _Egress: EIPv6 network egress. Valid values:
|
|
1755
|
+
|
|
1756
|
+
- CENTER_EGRESS_1: Central egress point 1
|
|
1757
|
+
- CENTER_EGRESS_2: Central egress point 2
|
|
1758
|
+
- CENTER_EGRESS_3: Central egress point 3
|
|
1759
|
+
Note: The network egress for different Internet Service Providers (ISPs) or resource types requires contacting the product team for enablement.
|
|
1760
|
+
|
|
1761
|
+
Default: CENTER_EGRESS_1.
|
|
1762
|
+
:type Egress: str
|
|
1763
|
+
"""
|
|
1764
|
+
self._AddressName = None
|
|
1765
|
+
self._AddressType = None
|
|
1766
|
+
self._AddressCount = None
|
|
1767
|
+
self._InternetChargeType = None
|
|
1768
|
+
self._InternetServiceProvider = None
|
|
1769
|
+
self._InternetMaxBandwidthOut = None
|
|
1770
|
+
self._BandwidthPackageId = None
|
|
1771
|
+
self._Tags = None
|
|
1772
|
+
self._Egress = None
|
|
1773
|
+
|
|
1774
|
+
@property
|
|
1775
|
+
def AddressName(self):
|
|
1776
|
+
"""EIPv6 name, which is the custom EIPv6 name given by the user when the user applies for the EIPv6. Default: not named.
|
|
1777
|
+
:rtype: str
|
|
1778
|
+
"""
|
|
1779
|
+
return self._AddressName
|
|
1780
|
+
|
|
1781
|
+
@AddressName.setter
|
|
1782
|
+
def AddressName(self, AddressName):
|
|
1783
|
+
self._AddressName = AddressName
|
|
1784
|
+
|
|
1785
|
+
@property
|
|
1786
|
+
def AddressType(self):
|
|
1787
|
+
"""Indicates the type of EIPv6. Valid values:
|
|
1788
|
+
|
|
1789
|
+
- EIPv6: common IPv6
|
|
1790
|
+
- HighQualityEIPv6: dedicated IPv6
|
|
1791
|
+
Note: Contact the product team to enable the dedicated IPv6 allowlist. The dedicated IPv6 is only supported in some regions.
|
|
1792
|
+
|
|
1793
|
+
Default: EIPv6.
|
|
1794
|
+
:rtype: str
|
|
1795
|
+
"""
|
|
1796
|
+
return self._AddressType
|
|
1797
|
+
|
|
1798
|
+
@AddressType.setter
|
|
1799
|
+
def AddressType(self, AddressType):
|
|
1800
|
+
self._AddressType = AddressType
|
|
1801
|
+
|
|
1802
|
+
@property
|
|
1803
|
+
def AddressCount(self):
|
|
1804
|
+
"""Number of applied EIPv6 addresses. Default: 1.
|
|
1805
|
+
:rtype: int
|
|
1806
|
+
"""
|
|
1807
|
+
return self._AddressCount
|
|
1808
|
+
|
|
1809
|
+
@AddressCount.setter
|
|
1810
|
+
def AddressCount(self, AddressCount):
|
|
1811
|
+
self._AddressCount = AddressCount
|
|
1812
|
+
|
|
1813
|
+
@property
|
|
1814
|
+
def InternetChargeType(self):
|
|
1815
|
+
"""Indicates the billing method of EIPv6. Valid values:
|
|
1816
|
+
|
|
1817
|
+
- BANDWIDTH_PACKAGE: billed by [Bandwidth Package](https://intl.cloud.tencent.com/document/product/684/15255?from_cn_redirect=1)
|
|
1818
|
+
- TRAFFIC_POSTPAID_BY_HOUR: postpaid by traffic on an hourly basis
|
|
1819
|
+
|
|
1820
|
+
Default: TRAFFIC_POSTPAID_BY_HOUR.
|
|
1821
|
+
:rtype: str
|
|
1822
|
+
"""
|
|
1823
|
+
return self._InternetChargeType
|
|
1824
|
+
|
|
1825
|
+
@InternetChargeType.setter
|
|
1826
|
+
def InternetChargeType(self, InternetChargeType):
|
|
1827
|
+
self._InternetChargeType = InternetChargeType
|
|
1828
|
+
|
|
1829
|
+
@property
|
|
1830
|
+
def InternetServiceProvider(self):
|
|
1831
|
+
"""Indicates the type of EIPv6 line. Default: BGP.
|
|
1832
|
+
|
|
1833
|
+
For a user who has enabled the static single-line IP allowlist, valid values include:
|
|
1834
|
+
- CMCC: China Mobile
|
|
1835
|
+
- CTCC: China Telecom
|
|
1836
|
+
- CUCC: China Unicom
|
|
1837
|
+
Note: The static single-line IP is only supported in some regions.
|
|
1838
|
+
:rtype: str
|
|
1839
|
+
"""
|
|
1840
|
+
return self._InternetServiceProvider
|
|
1841
|
+
|
|
1842
|
+
@InternetServiceProvider.setter
|
|
1843
|
+
def InternetServiceProvider(self, InternetServiceProvider):
|
|
1844
|
+
self._InternetServiceProvider = InternetServiceProvider
|
|
1845
|
+
|
|
1846
|
+
@property
|
|
1847
|
+
def InternetMaxBandwidthOut(self):
|
|
1848
|
+
"""EIPv6 bandwidth cap, in Mbps.
|
|
1849
|
+
|
|
1850
|
+
Valid values depend on the EIP billing method:
|
|
1851
|
+
|
|
1852
|
+
- BANDWIDTH_PACKAGE: 1 Mbps to 2000 Mbps
|
|
1853
|
+
- TRAFFIC_POSTPAID_BY_HOUR: 1 Mbps to 100 Mbps
|
|
1854
|
+
|
|
1855
|
+
Default: 1 Mbps.
|
|
1856
|
+
:rtype: int
|
|
1857
|
+
"""
|
|
1858
|
+
return self._InternetMaxBandwidthOut
|
|
1859
|
+
|
|
1860
|
+
@InternetMaxBandwidthOut.setter
|
|
1861
|
+
def InternetMaxBandwidthOut(self, InternetMaxBandwidthOut):
|
|
1862
|
+
self._InternetMaxBandwidthOut = InternetMaxBandwidthOut
|
|
1863
|
+
|
|
1864
|
+
@property
|
|
1865
|
+
def BandwidthPackageId(self):
|
|
1866
|
+
"""Unique ID of the bandwidth package.
|
|
1867
|
+
Setting this parameter and having InternetChargeType as BANDWIDTH_PACKAGE indicate that the created EIP will join this BGP bandwidth package and the billing method of bandwidth package will be adopted.
|
|
1868
|
+
:rtype: str
|
|
1869
|
+
"""
|
|
1870
|
+
return self._BandwidthPackageId
|
|
1871
|
+
|
|
1872
|
+
@BandwidthPackageId.setter
|
|
1873
|
+
def BandwidthPackageId(self, BandwidthPackageId):
|
|
1874
|
+
self._BandwidthPackageId = BandwidthPackageId
|
|
1875
|
+
|
|
1876
|
+
@property
|
|
1877
|
+
def Tags(self):
|
|
1878
|
+
"""List of tags to be associated.
|
|
1879
|
+
:rtype: list of Tag
|
|
1880
|
+
"""
|
|
1881
|
+
return self._Tags
|
|
1882
|
+
|
|
1883
|
+
@Tags.setter
|
|
1884
|
+
def Tags(self, Tags):
|
|
1885
|
+
self._Tags = Tags
|
|
1886
|
+
|
|
1887
|
+
@property
|
|
1888
|
+
def Egress(self):
|
|
1889
|
+
"""EIPv6 network egress. Valid values:
|
|
1890
|
+
|
|
1891
|
+
- CENTER_EGRESS_1: Central egress point 1
|
|
1892
|
+
- CENTER_EGRESS_2: Central egress point 2
|
|
1893
|
+
- CENTER_EGRESS_3: Central egress point 3
|
|
1894
|
+
Note: The network egress for different Internet Service Providers (ISPs) or resource types requires contacting the product team for enablement.
|
|
1895
|
+
|
|
1896
|
+
Default: CENTER_EGRESS_1.
|
|
1897
|
+
:rtype: str
|
|
1898
|
+
"""
|
|
1899
|
+
return self._Egress
|
|
1900
|
+
|
|
1901
|
+
@Egress.setter
|
|
1902
|
+
def Egress(self, Egress):
|
|
1903
|
+
self._Egress = Egress
|
|
1904
|
+
|
|
1905
|
+
|
|
1906
|
+
def _deserialize(self, params):
|
|
1907
|
+
self._AddressName = params.get("AddressName")
|
|
1908
|
+
self._AddressType = params.get("AddressType")
|
|
1909
|
+
self._AddressCount = params.get("AddressCount")
|
|
1910
|
+
self._InternetChargeType = params.get("InternetChargeType")
|
|
1911
|
+
self._InternetServiceProvider = params.get("InternetServiceProvider")
|
|
1912
|
+
self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
|
|
1913
|
+
self._BandwidthPackageId = params.get("BandwidthPackageId")
|
|
1914
|
+
if params.get("Tags") is not None:
|
|
1915
|
+
self._Tags = []
|
|
1916
|
+
for item in params.get("Tags"):
|
|
1917
|
+
obj = Tag()
|
|
1918
|
+
obj._deserialize(item)
|
|
1919
|
+
self._Tags.append(obj)
|
|
1920
|
+
self._Egress = params.get("Egress")
|
|
1921
|
+
memeber_set = set(params.keys())
|
|
1922
|
+
for name, value in vars(self).items():
|
|
1923
|
+
property_name = name[1:]
|
|
1924
|
+
if property_name in memeber_set:
|
|
1925
|
+
memeber_set.remove(property_name)
|
|
1926
|
+
if len(memeber_set) > 0:
|
|
1927
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1928
|
+
|
|
1929
|
+
|
|
1930
|
+
|
|
1931
|
+
class AllocateIPv6AddressesResponse(AbstractModel):
|
|
1932
|
+
"""AllocateIPv6Addresses response structure.
|
|
1933
|
+
|
|
1934
|
+
"""
|
|
1935
|
+
|
|
1936
|
+
def __init__(self):
|
|
1937
|
+
r"""
|
|
1938
|
+
:param _AddressSet: List of unique IDs of applied EIPv6 addresses.
|
|
1939
|
+
:type AddressSet: list of str
|
|
1940
|
+
:param _TaskId: Async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
1941
|
+
:type TaskId: str
|
|
1942
|
+
:param _RequestId: 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.
|
|
1943
|
+
:type RequestId: str
|
|
1944
|
+
"""
|
|
1945
|
+
self._AddressSet = None
|
|
1946
|
+
self._TaskId = None
|
|
1947
|
+
self._RequestId = None
|
|
1948
|
+
|
|
1949
|
+
@property
|
|
1950
|
+
def AddressSet(self):
|
|
1951
|
+
"""List of unique IDs of applied EIPv6 addresses.
|
|
1952
|
+
:rtype: list of str
|
|
1953
|
+
"""
|
|
1954
|
+
return self._AddressSet
|
|
1955
|
+
|
|
1956
|
+
@AddressSet.setter
|
|
1957
|
+
def AddressSet(self, AddressSet):
|
|
1958
|
+
self._AddressSet = AddressSet
|
|
1959
|
+
|
|
1960
|
+
@property
|
|
1961
|
+
def TaskId(self):
|
|
1962
|
+
"""Async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
1963
|
+
:rtype: str
|
|
1964
|
+
"""
|
|
1965
|
+
return self._TaskId
|
|
1966
|
+
|
|
1967
|
+
@TaskId.setter
|
|
1968
|
+
def TaskId(self, TaskId):
|
|
1969
|
+
self._TaskId = TaskId
|
|
1970
|
+
|
|
1971
|
+
@property
|
|
1972
|
+
def RequestId(self):
|
|
1973
|
+
"""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.
|
|
1974
|
+
:rtype: str
|
|
1975
|
+
"""
|
|
1976
|
+
return self._RequestId
|
|
1977
|
+
|
|
1978
|
+
@RequestId.setter
|
|
1979
|
+
def RequestId(self, RequestId):
|
|
1980
|
+
self._RequestId = RequestId
|
|
1981
|
+
|
|
1982
|
+
|
|
1983
|
+
def _deserialize(self, params):
|
|
1984
|
+
self._AddressSet = params.get("AddressSet")
|
|
1985
|
+
self._TaskId = params.get("TaskId")
|
|
1986
|
+
self._RequestId = params.get("RequestId")
|
|
1987
|
+
|
|
1988
|
+
|
|
1989
|
+
class AllocateIp6AddressesBandwidthRequest(AbstractModel):
|
|
1990
|
+
"""AllocateIp6AddressesBandwidth request structure.
|
|
1991
|
+
|
|
1992
|
+
"""
|
|
1993
|
+
|
|
1994
|
+
def __init__(self):
|
|
1995
|
+
r"""
|
|
1996
|
+
:param _Ip6Addresses: IPv6 addresses that require the public network access capability.
|
|
1997
|
+
:type Ip6Addresses: list of str
|
|
1998
|
+
:param _InternetMaxBandwidthOut: Bandwidth, in Mbps. The default value is 1 Mbps.
|
|
1999
|
+
:type InternetMaxBandwidthOut: int
|
|
2000
|
+
:param _InternetChargeType: Network billing mode. IPv6 addresses currently support "TRAFFIC_POSTPAID_BY_HOUR" and "BANDWIDTH_PACKAGE". The default network billing mode is "TRAFFIC_POSTPAID_BY_HOUR".
|
|
2001
|
+
:type InternetChargeType: str
|
|
2002
|
+
:param _BandwidthPackageId: Bandwidth package ID. This ID is required for standard accounts to add the IPv6 addresses to the bandwidth package, thus using the billing mode.
|
|
2003
|
+
:type BandwidthPackageId: str
|
|
2004
|
+
:param _Tags: List of tags to be associated.
|
|
2005
|
+
:type Tags: list of Tag
|
|
2006
|
+
"""
|
|
2007
|
+
self._Ip6Addresses = None
|
|
2008
|
+
self._InternetMaxBandwidthOut = None
|
|
2009
|
+
self._InternetChargeType = None
|
|
2010
|
+
self._BandwidthPackageId = None
|
|
2011
|
+
self._Tags = None
|
|
2012
|
+
|
|
2013
|
+
@property
|
|
2014
|
+
def Ip6Addresses(self):
|
|
2015
|
+
"""IPv6 addresses that require the public network access capability.
|
|
2016
|
+
:rtype: list of str
|
|
2017
|
+
"""
|
|
2018
|
+
return self._Ip6Addresses
|
|
2019
|
+
|
|
2020
|
+
@Ip6Addresses.setter
|
|
2021
|
+
def Ip6Addresses(self, Ip6Addresses):
|
|
2022
|
+
self._Ip6Addresses = Ip6Addresses
|
|
2023
|
+
|
|
2024
|
+
@property
|
|
2025
|
+
def InternetMaxBandwidthOut(self):
|
|
2026
|
+
"""Bandwidth, in Mbps. The default value is 1 Mbps.
|
|
2027
|
+
:rtype: int
|
|
2028
|
+
"""
|
|
2029
|
+
return self._InternetMaxBandwidthOut
|
|
2030
|
+
|
|
2031
|
+
@InternetMaxBandwidthOut.setter
|
|
2032
|
+
def InternetMaxBandwidthOut(self, InternetMaxBandwidthOut):
|
|
2033
|
+
self._InternetMaxBandwidthOut = InternetMaxBandwidthOut
|
|
2034
|
+
|
|
2035
|
+
@property
|
|
2036
|
+
def InternetChargeType(self):
|
|
2037
|
+
"""Network billing mode. IPv6 addresses currently support "TRAFFIC_POSTPAID_BY_HOUR" and "BANDWIDTH_PACKAGE". The default network billing mode is "TRAFFIC_POSTPAID_BY_HOUR".
|
|
2038
|
+
:rtype: str
|
|
2039
|
+
"""
|
|
2040
|
+
return self._InternetChargeType
|
|
2041
|
+
|
|
2042
|
+
@InternetChargeType.setter
|
|
2043
|
+
def InternetChargeType(self, InternetChargeType):
|
|
2044
|
+
self._InternetChargeType = InternetChargeType
|
|
2045
|
+
|
|
2046
|
+
@property
|
|
2047
|
+
def BandwidthPackageId(self):
|
|
2048
|
+
"""Bandwidth package ID. This ID is required for standard accounts to add the IPv6 addresses to the bandwidth package, thus using the billing mode.
|
|
2049
|
+
:rtype: str
|
|
2050
|
+
"""
|
|
2051
|
+
return self._BandwidthPackageId
|
|
2052
|
+
|
|
2053
|
+
@BandwidthPackageId.setter
|
|
2054
|
+
def BandwidthPackageId(self, BandwidthPackageId):
|
|
2055
|
+
self._BandwidthPackageId = BandwidthPackageId
|
|
2056
|
+
|
|
2057
|
+
@property
|
|
2058
|
+
def Tags(self):
|
|
2059
|
+
"""List of tags to be associated.
|
|
2060
|
+
:rtype: list of Tag
|
|
2061
|
+
"""
|
|
2062
|
+
return self._Tags
|
|
2063
|
+
|
|
2064
|
+
@Tags.setter
|
|
2065
|
+
def Tags(self, Tags):
|
|
2066
|
+
self._Tags = Tags
|
|
2067
|
+
|
|
2068
|
+
|
|
2069
|
+
def _deserialize(self, params):
|
|
2070
|
+
self._Ip6Addresses = params.get("Ip6Addresses")
|
|
2071
|
+
self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
|
|
2072
|
+
self._InternetChargeType = params.get("InternetChargeType")
|
|
2073
|
+
self._BandwidthPackageId = params.get("BandwidthPackageId")
|
|
2074
|
+
if params.get("Tags") is not None:
|
|
2075
|
+
self._Tags = []
|
|
2076
|
+
for item in params.get("Tags"):
|
|
2077
|
+
obj = Tag()
|
|
2078
|
+
obj._deserialize(item)
|
|
2079
|
+
self._Tags.append(obj)
|
|
2080
|
+
memeber_set = set(params.keys())
|
|
2081
|
+
for name, value in vars(self).items():
|
|
2082
|
+
property_name = name[1:]
|
|
2083
|
+
if property_name in memeber_set:
|
|
2084
|
+
memeber_set.remove(property_name)
|
|
2085
|
+
if len(memeber_set) > 0:
|
|
2086
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2087
|
+
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
class AllocateIp6AddressesBandwidthResponse(AbstractModel):
|
|
2091
|
+
"""AllocateIp6AddressesBandwidth response structure.
|
|
2092
|
+
|
|
2093
|
+
"""
|
|
2094
|
+
|
|
2095
|
+
def __init__(self):
|
|
2096
|
+
r"""
|
|
2097
|
+
:param _AddressSet: List of unique IDs of Classic elastic Public IPv6 instances.
|
|
2098
|
+
:type AddressSet: list of str
|
|
2099
|
+
:param _TaskId: Asynchronous task ID. You can call the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
2100
|
+
:type TaskId: str
|
|
2101
|
+
:param _RequestId: 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.
|
|
2102
|
+
:type RequestId: str
|
|
2103
|
+
"""
|
|
2104
|
+
self._AddressSet = None
|
|
2105
|
+
self._TaskId = None
|
|
2106
|
+
self._RequestId = None
|
|
2107
|
+
|
|
2108
|
+
@property
|
|
2109
|
+
def AddressSet(self):
|
|
2110
|
+
"""List of unique IDs of Classic elastic Public IPv6 instances.
|
|
2111
|
+
:rtype: list of str
|
|
2112
|
+
"""
|
|
2113
|
+
return self._AddressSet
|
|
2114
|
+
|
|
2115
|
+
@AddressSet.setter
|
|
2116
|
+
def AddressSet(self, AddressSet):
|
|
2117
|
+
self._AddressSet = AddressSet
|
|
2118
|
+
|
|
2119
|
+
@property
|
|
2120
|
+
def TaskId(self):
|
|
2121
|
+
"""Asynchronous task ID. You can call the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
2122
|
+
:rtype: str
|
|
2123
|
+
"""
|
|
2124
|
+
return self._TaskId
|
|
2125
|
+
|
|
2126
|
+
@TaskId.setter
|
|
2127
|
+
def TaskId(self, TaskId):
|
|
2128
|
+
self._TaskId = TaskId
|
|
2129
|
+
|
|
2130
|
+
@property
|
|
2131
|
+
def RequestId(self):
|
|
2132
|
+
"""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.
|
|
2133
|
+
:rtype: str
|
|
2134
|
+
"""
|
|
2135
|
+
return self._RequestId
|
|
2136
|
+
|
|
2137
|
+
@RequestId.setter
|
|
2138
|
+
def RequestId(self, RequestId):
|
|
2139
|
+
self._RequestId = RequestId
|
|
2140
|
+
|
|
2141
|
+
|
|
2142
|
+
def _deserialize(self, params):
|
|
2143
|
+
self._AddressSet = params.get("AddressSet")
|
|
2144
|
+
self._TaskId = params.get("TaskId")
|
|
2145
|
+
self._RequestId = params.get("RequestId")
|
|
2146
|
+
|
|
2147
|
+
|
|
1664
2148
|
class AssignIpv6AddressesRequest(AbstractModel):
|
|
1665
2149
|
"""AssignIpv6Addresses request structure.
|
|
1666
2150
|
|
|
@@ -2433,6 +2917,100 @@ class AssociateDirectConnectGatewayNatGatewayResponse(AbstractModel):
|
|
|
2433
2917
|
self._RequestId = params.get("RequestId")
|
|
2434
2918
|
|
|
2435
2919
|
|
|
2920
|
+
class AssociateIPv6AddressRequest(AbstractModel):
|
|
2921
|
+
"""AssociateIPv6Address request structure.
|
|
2922
|
+
|
|
2923
|
+
"""
|
|
2924
|
+
|
|
2925
|
+
def __init__(self):
|
|
2926
|
+
r"""
|
|
2927
|
+
:param _IPv6AddressId: Unique ID of the EIPv6, such as eipv6-11112222.
|
|
2928
|
+
:type IPv6AddressId: str
|
|
2929
|
+
:param _NetworkInterfaceId: ID of the ENI to be bound, such as eni-11112222. NetworkInterfaceId and InstanceId cannot be specified at the same time. The ENI ID can be queried by logging in to the console or obtained from the networkInterfaceId field in the returned value of the DescribeNetworkInterfaces API.
|
|
2930
|
+
:type NetworkInterfaceId: str
|
|
2931
|
+
:param _PrivateIPv6Address: Private IPv6 to be bound. If NetworkInterfaceId is specified, PrivateIPv6Address must also be specified, which indicates that the EIP will be bound to the specified private IPv6 of the specified ENI. At the same time, it shall be ensured that the specified PrivateIPv6Address is a private IPv6 on the specified NetworkInterfaceId. The specified ENI's private IPv6 can be queried by logging in to the console or obtained from the Ipv6AddressSet.Address field in the returned value of the DescribeNetworkInterfaces API.
|
|
2932
|
+
:type PrivateIPv6Address: str
|
|
2933
|
+
"""
|
|
2934
|
+
self._IPv6AddressId = None
|
|
2935
|
+
self._NetworkInterfaceId = None
|
|
2936
|
+
self._PrivateIPv6Address = None
|
|
2937
|
+
|
|
2938
|
+
@property
|
|
2939
|
+
def IPv6AddressId(self):
|
|
2940
|
+
"""Unique ID of the EIPv6, such as eipv6-11112222.
|
|
2941
|
+
:rtype: str
|
|
2942
|
+
"""
|
|
2943
|
+
return self._IPv6AddressId
|
|
2944
|
+
|
|
2945
|
+
@IPv6AddressId.setter
|
|
2946
|
+
def IPv6AddressId(self, IPv6AddressId):
|
|
2947
|
+
self._IPv6AddressId = IPv6AddressId
|
|
2948
|
+
|
|
2949
|
+
@property
|
|
2950
|
+
def NetworkInterfaceId(self):
|
|
2951
|
+
"""ID of the ENI to be bound, such as eni-11112222. NetworkInterfaceId and InstanceId cannot be specified at the same time. The ENI ID can be queried by logging in to the console or obtained from the networkInterfaceId field in the returned value of the DescribeNetworkInterfaces API.
|
|
2952
|
+
:rtype: str
|
|
2953
|
+
"""
|
|
2954
|
+
return self._NetworkInterfaceId
|
|
2955
|
+
|
|
2956
|
+
@NetworkInterfaceId.setter
|
|
2957
|
+
def NetworkInterfaceId(self, NetworkInterfaceId):
|
|
2958
|
+
self._NetworkInterfaceId = NetworkInterfaceId
|
|
2959
|
+
|
|
2960
|
+
@property
|
|
2961
|
+
def PrivateIPv6Address(self):
|
|
2962
|
+
"""Private IPv6 to be bound. If NetworkInterfaceId is specified, PrivateIPv6Address must also be specified, which indicates that the EIP will be bound to the specified private IPv6 of the specified ENI. At the same time, it shall be ensured that the specified PrivateIPv6Address is a private IPv6 on the specified NetworkInterfaceId. The specified ENI's private IPv6 can be queried by logging in to the console or obtained from the Ipv6AddressSet.Address field in the returned value of the DescribeNetworkInterfaces API.
|
|
2963
|
+
:rtype: str
|
|
2964
|
+
"""
|
|
2965
|
+
return self._PrivateIPv6Address
|
|
2966
|
+
|
|
2967
|
+
@PrivateIPv6Address.setter
|
|
2968
|
+
def PrivateIPv6Address(self, PrivateIPv6Address):
|
|
2969
|
+
self._PrivateIPv6Address = PrivateIPv6Address
|
|
2970
|
+
|
|
2971
|
+
|
|
2972
|
+
def _deserialize(self, params):
|
|
2973
|
+
self._IPv6AddressId = params.get("IPv6AddressId")
|
|
2974
|
+
self._NetworkInterfaceId = params.get("NetworkInterfaceId")
|
|
2975
|
+
self._PrivateIPv6Address = params.get("PrivateIPv6Address")
|
|
2976
|
+
memeber_set = set(params.keys())
|
|
2977
|
+
for name, value in vars(self).items():
|
|
2978
|
+
property_name = name[1:]
|
|
2979
|
+
if property_name in memeber_set:
|
|
2980
|
+
memeber_set.remove(property_name)
|
|
2981
|
+
if len(memeber_set) > 0:
|
|
2982
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2983
|
+
|
|
2984
|
+
|
|
2985
|
+
|
|
2986
|
+
class AssociateIPv6AddressResponse(AbstractModel):
|
|
2987
|
+
"""AssociateIPv6Address response structure.
|
|
2988
|
+
|
|
2989
|
+
"""
|
|
2990
|
+
|
|
2991
|
+
def __init__(self):
|
|
2992
|
+
r"""
|
|
2993
|
+
:param _RequestId: 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.
|
|
2994
|
+
:type RequestId: str
|
|
2995
|
+
"""
|
|
2996
|
+
self._RequestId = None
|
|
2997
|
+
|
|
2998
|
+
@property
|
|
2999
|
+
def RequestId(self):
|
|
3000
|
+
"""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.
|
|
3001
|
+
:rtype: str
|
|
3002
|
+
"""
|
|
3003
|
+
return self._RequestId
|
|
3004
|
+
|
|
3005
|
+
@RequestId.setter
|
|
3006
|
+
def RequestId(self, RequestId):
|
|
3007
|
+
self._RequestId = RequestId
|
|
3008
|
+
|
|
3009
|
+
|
|
3010
|
+
def _deserialize(self, params):
|
|
3011
|
+
self._RequestId = params.get("RequestId")
|
|
3012
|
+
|
|
3013
|
+
|
|
2436
3014
|
class AssociateNatGatewayAddressRequest(AbstractModel):
|
|
2437
3015
|
"""AssociateNatGatewayAddress request structure.
|
|
2438
3016
|
|
|
@@ -17982,6 +18560,363 @@ class DescribeHaVipsResponse(AbstractModel):
|
|
|
17982
18560
|
self._RequestId = params.get("RequestId")
|
|
17983
18561
|
|
|
17984
18562
|
|
|
18563
|
+
class DescribeIPv6AddressesRequest(AbstractModel):
|
|
18564
|
+
"""DescribeIPv6Addresses request structure.
|
|
18565
|
+
|
|
18566
|
+
"""
|
|
18567
|
+
|
|
18568
|
+
def __init__(self):
|
|
18569
|
+
r"""
|
|
18570
|
+
:param _IPv6AddressIds: Unique ID column identifying IPv6.
|
|
18571
|
+
|
|
18572
|
+
- Unique ID of the traditional EIPv6, such as `eip-11112222`
|
|
18573
|
+
- Unique ID of the EIPv6, such as `eipv6-11112222`
|
|
18574
|
+
|
|
18575
|
+
Note: `IPv6AddressIds` and `Filters` cannot be specified at the same time.
|
|
18576
|
+
:type IPv6AddressIds: list of str
|
|
18577
|
+
:param _Filters: Each request can have up to 10 `Filters` and 100 `Filter.Values`. `IPv6AddressIds` and `Filters` cannot be specified at the same time. The detailed filter conditions are as follows:
|
|
18578
|
+
|
|
18579
|
+
- address-id - String - Required: No - (Filter condition) Filter by the unique ID of the EIPv6.
|
|
18580
|
+
- public-ipv6-address - String - Required: No - (Filter condition) Filter by the public IPv6 address.
|
|
18581
|
+
- network-interface-id - String - Required: No - (Filter condition) Filter by the unique ID of the ENI.
|
|
18582
|
+
- instance-id - String - Required: No - (Filter condition) Filter by the unique ID of the bound instance.
|
|
18583
|
+
- charge-type - String - Required: No - (Filter condition) Filter by the billing type.
|
|
18584
|
+
- private-ipv6-address - String - Required: No - (Filter condition) Filter by the bound private IPv6 address.
|
|
18585
|
+
- egress - String - Required: No - (Filter condition) Filter by the egress.
|
|
18586
|
+
- address-type - String - Required: No - (Filter condition) Filter by the IPv6 type. Valid values: 'EIP6', 'EIPv6', 'WanIPv6', and 'HighQualityEIPv6'. Default: 'EIPv6'.
|
|
18587
|
+
- address-isp - String - Required: No - (Filter condition) Filter by the ISP type. Valid values: 'BGP', 'CMCC', 'CUCC', and 'CTCC'.
|
|
18588
|
+
- address-status - String - Required: No - (Filter condition) Filter by the EIP status. Valid values: 'CREATING', 'BINDING', 'BIND', 'UNBINDING', 'UNBIND', 'OFFLINING', 'BIND_ENI', and 'PRIVATE'.
|
|
18589
|
+
- address-name - String - Required: No - (Filter condition) Filter by the EIP name. Fuzzy filtering is not supported.
|
|
18590
|
+
- tag-key - String - Required: No - (Filter condition) Filter by the tag key.
|
|
18591
|
+
- tag-value - String - Required: No - (Filter condition) Filter by the tag value.
|
|
18592
|
+
- tag:tag-key - String - Required: No - (Filter condition) Filter by the tag-key - value pair. Replace tag-key with a specific tag key.
|
|
18593
|
+
:type Filters: list of Filter
|
|
18594
|
+
:param _Traditional: Indicates whether to query the traditional IPv6 address information.
|
|
18595
|
+
:type Traditional: bool
|
|
18596
|
+
:param _Offset: Offset. Default: 0. For more information on Offset, see the relevant section in the API [Overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18597
|
+
:type Offset: int
|
|
18598
|
+
:param _Limit: Number of returned results. Default: 20. Maximum: 100. For more information on Limit, see the relevant section in the API [Overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18599
|
+
:type Limit: int
|
|
18600
|
+
"""
|
|
18601
|
+
self._IPv6AddressIds = None
|
|
18602
|
+
self._Filters = None
|
|
18603
|
+
self._Traditional = None
|
|
18604
|
+
self._Offset = None
|
|
18605
|
+
self._Limit = None
|
|
18606
|
+
|
|
18607
|
+
@property
|
|
18608
|
+
def IPv6AddressIds(self):
|
|
18609
|
+
"""Unique ID column identifying IPv6.
|
|
18610
|
+
|
|
18611
|
+
- Unique ID of the traditional EIPv6, such as `eip-11112222`
|
|
18612
|
+
- Unique ID of the EIPv6, such as `eipv6-11112222`
|
|
18613
|
+
|
|
18614
|
+
Note: `IPv6AddressIds` and `Filters` cannot be specified at the same time.
|
|
18615
|
+
:rtype: list of str
|
|
18616
|
+
"""
|
|
18617
|
+
return self._IPv6AddressIds
|
|
18618
|
+
|
|
18619
|
+
@IPv6AddressIds.setter
|
|
18620
|
+
def IPv6AddressIds(self, IPv6AddressIds):
|
|
18621
|
+
self._IPv6AddressIds = IPv6AddressIds
|
|
18622
|
+
|
|
18623
|
+
@property
|
|
18624
|
+
def Filters(self):
|
|
18625
|
+
"""Each request can have up to 10 `Filters` and 100 `Filter.Values`. `IPv6AddressIds` and `Filters` cannot be specified at the same time. The detailed filter conditions are as follows:
|
|
18626
|
+
|
|
18627
|
+
- address-id - String - Required: No - (Filter condition) Filter by the unique ID of the EIPv6.
|
|
18628
|
+
- public-ipv6-address - String - Required: No - (Filter condition) Filter by the public IPv6 address.
|
|
18629
|
+
- network-interface-id - String - Required: No - (Filter condition) Filter by the unique ID of the ENI.
|
|
18630
|
+
- instance-id - String - Required: No - (Filter condition) Filter by the unique ID of the bound instance.
|
|
18631
|
+
- charge-type - String - Required: No - (Filter condition) Filter by the billing type.
|
|
18632
|
+
- private-ipv6-address - String - Required: No - (Filter condition) Filter by the bound private IPv6 address.
|
|
18633
|
+
- egress - String - Required: No - (Filter condition) Filter by the egress.
|
|
18634
|
+
- address-type - String - Required: No - (Filter condition) Filter by the IPv6 type. Valid values: 'EIP6', 'EIPv6', 'WanIPv6', and 'HighQualityEIPv6'. Default: 'EIPv6'.
|
|
18635
|
+
- address-isp - String - Required: No - (Filter condition) Filter by the ISP type. Valid values: 'BGP', 'CMCC', 'CUCC', and 'CTCC'.
|
|
18636
|
+
- address-status - String - Required: No - (Filter condition) Filter by the EIP status. Valid values: 'CREATING', 'BINDING', 'BIND', 'UNBINDING', 'UNBIND', 'OFFLINING', 'BIND_ENI', and 'PRIVATE'.
|
|
18637
|
+
- address-name - String - Required: No - (Filter condition) Filter by the EIP name. Fuzzy filtering is not supported.
|
|
18638
|
+
- tag-key - String - Required: No - (Filter condition) Filter by the tag key.
|
|
18639
|
+
- tag-value - String - Required: No - (Filter condition) Filter by the tag value.
|
|
18640
|
+
- tag:tag-key - String - Required: No - (Filter condition) Filter by the tag-key - value pair. Replace tag-key with a specific tag key.
|
|
18641
|
+
:rtype: list of Filter
|
|
18642
|
+
"""
|
|
18643
|
+
return self._Filters
|
|
18644
|
+
|
|
18645
|
+
@Filters.setter
|
|
18646
|
+
def Filters(self, Filters):
|
|
18647
|
+
self._Filters = Filters
|
|
18648
|
+
|
|
18649
|
+
@property
|
|
18650
|
+
def Traditional(self):
|
|
18651
|
+
"""Indicates whether to query the traditional IPv6 address information.
|
|
18652
|
+
:rtype: bool
|
|
18653
|
+
"""
|
|
18654
|
+
return self._Traditional
|
|
18655
|
+
|
|
18656
|
+
@Traditional.setter
|
|
18657
|
+
def Traditional(self, Traditional):
|
|
18658
|
+
self._Traditional = Traditional
|
|
18659
|
+
|
|
18660
|
+
@property
|
|
18661
|
+
def Offset(self):
|
|
18662
|
+
"""Offset. Default: 0. For more information on Offset, see the relevant section in the API [Overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18663
|
+
:rtype: int
|
|
18664
|
+
"""
|
|
18665
|
+
return self._Offset
|
|
18666
|
+
|
|
18667
|
+
@Offset.setter
|
|
18668
|
+
def Offset(self, Offset):
|
|
18669
|
+
self._Offset = Offset
|
|
18670
|
+
|
|
18671
|
+
@property
|
|
18672
|
+
def Limit(self):
|
|
18673
|
+
"""Number of returned results. Default: 20. Maximum: 100. For more information on Limit, see the relevant section in the API [Overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18674
|
+
:rtype: int
|
|
18675
|
+
"""
|
|
18676
|
+
return self._Limit
|
|
18677
|
+
|
|
18678
|
+
@Limit.setter
|
|
18679
|
+
def Limit(self, Limit):
|
|
18680
|
+
self._Limit = Limit
|
|
18681
|
+
|
|
18682
|
+
|
|
18683
|
+
def _deserialize(self, params):
|
|
18684
|
+
self._IPv6AddressIds = params.get("IPv6AddressIds")
|
|
18685
|
+
if params.get("Filters") is not None:
|
|
18686
|
+
self._Filters = []
|
|
18687
|
+
for item in params.get("Filters"):
|
|
18688
|
+
obj = Filter()
|
|
18689
|
+
obj._deserialize(item)
|
|
18690
|
+
self._Filters.append(obj)
|
|
18691
|
+
self._Traditional = params.get("Traditional")
|
|
18692
|
+
self._Offset = params.get("Offset")
|
|
18693
|
+
self._Limit = params.get("Limit")
|
|
18694
|
+
memeber_set = set(params.keys())
|
|
18695
|
+
for name, value in vars(self).items():
|
|
18696
|
+
property_name = name[1:]
|
|
18697
|
+
if property_name in memeber_set:
|
|
18698
|
+
memeber_set.remove(property_name)
|
|
18699
|
+
if len(memeber_set) > 0:
|
|
18700
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
18701
|
+
|
|
18702
|
+
|
|
18703
|
+
|
|
18704
|
+
class DescribeIPv6AddressesResponse(AbstractModel):
|
|
18705
|
+
"""DescribeIPv6Addresses response structure.
|
|
18706
|
+
|
|
18707
|
+
"""
|
|
18708
|
+
|
|
18709
|
+
def __init__(self):
|
|
18710
|
+
r"""
|
|
18711
|
+
:param _TotalCount: Number of IPv6 meeting conditions.
|
|
18712
|
+
:type TotalCount: int
|
|
18713
|
+
:param _AddressSet: IPv6 detailed information list.
|
|
18714
|
+
:type AddressSet: list of Address
|
|
18715
|
+
:param _RequestId: 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.
|
|
18716
|
+
:type RequestId: str
|
|
18717
|
+
"""
|
|
18718
|
+
self._TotalCount = None
|
|
18719
|
+
self._AddressSet = None
|
|
18720
|
+
self._RequestId = None
|
|
18721
|
+
|
|
18722
|
+
@property
|
|
18723
|
+
def TotalCount(self):
|
|
18724
|
+
"""Number of IPv6 meeting conditions.
|
|
18725
|
+
:rtype: int
|
|
18726
|
+
"""
|
|
18727
|
+
return self._TotalCount
|
|
18728
|
+
|
|
18729
|
+
@TotalCount.setter
|
|
18730
|
+
def TotalCount(self, TotalCount):
|
|
18731
|
+
self._TotalCount = TotalCount
|
|
18732
|
+
|
|
18733
|
+
@property
|
|
18734
|
+
def AddressSet(self):
|
|
18735
|
+
"""IPv6 detailed information list.
|
|
18736
|
+
:rtype: list of Address
|
|
18737
|
+
"""
|
|
18738
|
+
return self._AddressSet
|
|
18739
|
+
|
|
18740
|
+
@AddressSet.setter
|
|
18741
|
+
def AddressSet(self, AddressSet):
|
|
18742
|
+
self._AddressSet = AddressSet
|
|
18743
|
+
|
|
18744
|
+
@property
|
|
18745
|
+
def RequestId(self):
|
|
18746
|
+
"""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.
|
|
18747
|
+
:rtype: str
|
|
18748
|
+
"""
|
|
18749
|
+
return self._RequestId
|
|
18750
|
+
|
|
18751
|
+
@RequestId.setter
|
|
18752
|
+
def RequestId(self, RequestId):
|
|
18753
|
+
self._RequestId = RequestId
|
|
18754
|
+
|
|
18755
|
+
|
|
18756
|
+
def _deserialize(self, params):
|
|
18757
|
+
self._TotalCount = params.get("TotalCount")
|
|
18758
|
+
if params.get("AddressSet") is not None:
|
|
18759
|
+
self._AddressSet = []
|
|
18760
|
+
for item in params.get("AddressSet"):
|
|
18761
|
+
obj = Address()
|
|
18762
|
+
obj._deserialize(item)
|
|
18763
|
+
self._AddressSet.append(obj)
|
|
18764
|
+
self._RequestId = params.get("RequestId")
|
|
18765
|
+
|
|
18766
|
+
|
|
18767
|
+
class DescribeIp6AddressesRequest(AbstractModel):
|
|
18768
|
+
"""DescribeIp6Addresses request structure.
|
|
18769
|
+
|
|
18770
|
+
"""
|
|
18771
|
+
|
|
18772
|
+
def __init__(self):
|
|
18773
|
+
r"""
|
|
18774
|
+
:param _Ip6AddressIds: List of unique IDs that identify IPv6 instances. The unique ID of an IPv6 instance is in the format of `eip-11112222`. Parameters `Ip6AddressIds` and `Filters` cannot be specified at the same time.
|
|
18775
|
+
:type Ip6AddressIds: list of str
|
|
18776
|
+
:param _Filters: Each request can have up to 10 `Filters` values and 100 `Filter.Values` values. Parameters `AddressIds` and `Filters` cannot be specified at the same time. The specific filter conditions are as follows:
|
|
18777
|
+
<li>address-ip - String - Required: No - (Filter condition) Filter by the IP address of IPv6 instances.</li>
|
|
18778
|
+
<li>network-interface-id - String - Required: No - (Filter condition) Filter by the unique ID of ENIs.</li>
|
|
18779
|
+
:type Filters: list of Filter
|
|
18780
|
+
:param _Offset: Offset. Default value: 0. For more information on `Offset`, see the relevant section in the API [overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18781
|
+
:type Offset: int
|
|
18782
|
+
:param _Limit: Number of returned results. Default value: 20. Maximum value: 100. For more information on `Limit`, see the relevant section in the API [overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18783
|
+
:type Limit: int
|
|
18784
|
+
"""
|
|
18785
|
+
self._Ip6AddressIds = None
|
|
18786
|
+
self._Filters = None
|
|
18787
|
+
self._Offset = None
|
|
18788
|
+
self._Limit = None
|
|
18789
|
+
|
|
18790
|
+
@property
|
|
18791
|
+
def Ip6AddressIds(self):
|
|
18792
|
+
"""List of unique IDs that identify IPv6 instances. The unique ID of an IPv6 instance is in the format of `eip-11112222`. Parameters `Ip6AddressIds` and `Filters` cannot be specified at the same time.
|
|
18793
|
+
:rtype: list of str
|
|
18794
|
+
"""
|
|
18795
|
+
return self._Ip6AddressIds
|
|
18796
|
+
|
|
18797
|
+
@Ip6AddressIds.setter
|
|
18798
|
+
def Ip6AddressIds(self, Ip6AddressIds):
|
|
18799
|
+
self._Ip6AddressIds = Ip6AddressIds
|
|
18800
|
+
|
|
18801
|
+
@property
|
|
18802
|
+
def Filters(self):
|
|
18803
|
+
"""Each request can have up to 10 `Filters` values and 100 `Filter.Values` values. Parameters `AddressIds` and `Filters` cannot be specified at the same time. The specific filter conditions are as follows:
|
|
18804
|
+
<li>address-ip - String - Required: No - (Filter condition) Filter by the IP address of IPv6 instances.</li>
|
|
18805
|
+
<li>network-interface-id - String - Required: No - (Filter condition) Filter by the unique ID of ENIs.</li>
|
|
18806
|
+
:rtype: list of Filter
|
|
18807
|
+
"""
|
|
18808
|
+
return self._Filters
|
|
18809
|
+
|
|
18810
|
+
@Filters.setter
|
|
18811
|
+
def Filters(self, Filters):
|
|
18812
|
+
self._Filters = Filters
|
|
18813
|
+
|
|
18814
|
+
@property
|
|
18815
|
+
def Offset(self):
|
|
18816
|
+
"""Offset. Default value: 0. For more information on `Offset`, see the relevant section in the API [overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18817
|
+
:rtype: int
|
|
18818
|
+
"""
|
|
18819
|
+
return self._Offset
|
|
18820
|
+
|
|
18821
|
+
@Offset.setter
|
|
18822
|
+
def Offset(self, Offset):
|
|
18823
|
+
self._Offset = Offset
|
|
18824
|
+
|
|
18825
|
+
@property
|
|
18826
|
+
def Limit(self):
|
|
18827
|
+
"""Number of returned results. Default value: 20. Maximum value: 100. For more information on `Limit`, see the relevant section in the API [overview](https://intl.cloud.tencent.com/document/api/213/11646?from_cn_redirect=1).
|
|
18828
|
+
:rtype: int
|
|
18829
|
+
"""
|
|
18830
|
+
return self._Limit
|
|
18831
|
+
|
|
18832
|
+
@Limit.setter
|
|
18833
|
+
def Limit(self, Limit):
|
|
18834
|
+
self._Limit = Limit
|
|
18835
|
+
|
|
18836
|
+
|
|
18837
|
+
def _deserialize(self, params):
|
|
18838
|
+
self._Ip6AddressIds = params.get("Ip6AddressIds")
|
|
18839
|
+
if params.get("Filters") is not None:
|
|
18840
|
+
self._Filters = []
|
|
18841
|
+
for item in params.get("Filters"):
|
|
18842
|
+
obj = Filter()
|
|
18843
|
+
obj._deserialize(item)
|
|
18844
|
+
self._Filters.append(obj)
|
|
18845
|
+
self._Offset = params.get("Offset")
|
|
18846
|
+
self._Limit = params.get("Limit")
|
|
18847
|
+
memeber_set = set(params.keys())
|
|
18848
|
+
for name, value in vars(self).items():
|
|
18849
|
+
property_name = name[1:]
|
|
18850
|
+
if property_name in memeber_set:
|
|
18851
|
+
memeber_set.remove(property_name)
|
|
18852
|
+
if len(memeber_set) > 0:
|
|
18853
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
18854
|
+
|
|
18855
|
+
|
|
18856
|
+
|
|
18857
|
+
class DescribeIp6AddressesResponse(AbstractModel):
|
|
18858
|
+
"""DescribeIp6Addresses response structure.
|
|
18859
|
+
|
|
18860
|
+
"""
|
|
18861
|
+
|
|
18862
|
+
def __init__(self):
|
|
18863
|
+
r"""
|
|
18864
|
+
:param _TotalCount: Number of IPv6 meeting conditions.
|
|
18865
|
+
:type TotalCount: int
|
|
18866
|
+
:param _AddressSet: IPv6 detailed information list.
|
|
18867
|
+
:type AddressSet: list of Address
|
|
18868
|
+
:param _RequestId: 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.
|
|
18869
|
+
:type RequestId: str
|
|
18870
|
+
"""
|
|
18871
|
+
self._TotalCount = None
|
|
18872
|
+
self._AddressSet = None
|
|
18873
|
+
self._RequestId = None
|
|
18874
|
+
|
|
18875
|
+
@property
|
|
18876
|
+
def TotalCount(self):
|
|
18877
|
+
"""Number of IPv6 meeting conditions.
|
|
18878
|
+
:rtype: int
|
|
18879
|
+
"""
|
|
18880
|
+
return self._TotalCount
|
|
18881
|
+
|
|
18882
|
+
@TotalCount.setter
|
|
18883
|
+
def TotalCount(self, TotalCount):
|
|
18884
|
+
self._TotalCount = TotalCount
|
|
18885
|
+
|
|
18886
|
+
@property
|
|
18887
|
+
def AddressSet(self):
|
|
18888
|
+
"""IPv6 detailed information list.
|
|
18889
|
+
:rtype: list of Address
|
|
18890
|
+
"""
|
|
18891
|
+
return self._AddressSet
|
|
18892
|
+
|
|
18893
|
+
@AddressSet.setter
|
|
18894
|
+
def AddressSet(self, AddressSet):
|
|
18895
|
+
self._AddressSet = AddressSet
|
|
18896
|
+
|
|
18897
|
+
@property
|
|
18898
|
+
def RequestId(self):
|
|
18899
|
+
"""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.
|
|
18900
|
+
:rtype: str
|
|
18901
|
+
"""
|
|
18902
|
+
return self._RequestId
|
|
18903
|
+
|
|
18904
|
+
@RequestId.setter
|
|
18905
|
+
def RequestId(self, RequestId):
|
|
18906
|
+
self._RequestId = RequestId
|
|
18907
|
+
|
|
18908
|
+
|
|
18909
|
+
def _deserialize(self, params):
|
|
18910
|
+
self._TotalCount = params.get("TotalCount")
|
|
18911
|
+
if params.get("AddressSet") is not None:
|
|
18912
|
+
self._AddressSet = []
|
|
18913
|
+
for item in params.get("AddressSet"):
|
|
18914
|
+
obj = Address()
|
|
18915
|
+
obj._deserialize(item)
|
|
18916
|
+
self._AddressSet.append(obj)
|
|
18917
|
+
self._RequestId = params.get("RequestId")
|
|
18918
|
+
|
|
18919
|
+
|
|
17985
18920
|
class DescribeIpGeolocationDatabaseUrlRequest(AbstractModel):
|
|
17986
18921
|
"""DescribeIpGeolocationDatabaseUrl request structure.
|
|
17987
18922
|
|
|
@@ -25487,156 +26422,235 @@ class DisableSnapshotPoliciesResponse(AbstractModel):
|
|
|
25487
26422
|
self._RequestId = params.get("RequestId")
|
|
25488
26423
|
|
|
25489
26424
|
|
|
25490
|
-
class DisassociateAddressRequest(AbstractModel):
|
|
25491
|
-
"""DisassociateAddress request structure.
|
|
26425
|
+
class DisassociateAddressRequest(AbstractModel):
|
|
26426
|
+
"""DisassociateAddress request structure.
|
|
26427
|
+
|
|
26428
|
+
"""
|
|
26429
|
+
|
|
26430
|
+
def __init__(self):
|
|
26431
|
+
r"""
|
|
26432
|
+
:param _AddressId: The unique ID of the EIP, such as `eip-11112222`.
|
|
26433
|
+
:type AddressId: str
|
|
26434
|
+
:param _ReallocateNormalPublicIp: Whether a common public IP is assigned after the EIP is unbound. Value range:<br><li>TRUE: Indicates that after the EIP is unbound, a common public IP is assigned.<br><li>FALSE: Indicates that after the EIP is unbound, a common public IP is not assigned.<br>Default value: FALSE.<br><br>The parameter can be specified only under the following conditions:<br><li>It can only be specified when you unbind an EIP from the primary private IP of the primary ENI.<br><li>After an EIP is unbound, you can assign public IPs to an account up to 10 times per day. For more information, use the [DescribeAddressQuota] (https://intl.cloud.tencent.com/document/api/213/1378?from_cn_redirect=1) API.
|
|
26435
|
+
:type ReallocateNormalPublicIp: bool
|
|
26436
|
+
"""
|
|
26437
|
+
self._AddressId = None
|
|
26438
|
+
self._ReallocateNormalPublicIp = None
|
|
26439
|
+
|
|
26440
|
+
@property
|
|
26441
|
+
def AddressId(self):
|
|
26442
|
+
"""The unique ID of the EIP, such as `eip-11112222`.
|
|
26443
|
+
:rtype: str
|
|
26444
|
+
"""
|
|
26445
|
+
return self._AddressId
|
|
26446
|
+
|
|
26447
|
+
@AddressId.setter
|
|
26448
|
+
def AddressId(self, AddressId):
|
|
26449
|
+
self._AddressId = AddressId
|
|
26450
|
+
|
|
26451
|
+
@property
|
|
26452
|
+
def ReallocateNormalPublicIp(self):
|
|
26453
|
+
"""Whether a common public IP is assigned after the EIP is unbound. Value range:<br><li>TRUE: Indicates that after the EIP is unbound, a common public IP is assigned.<br><li>FALSE: Indicates that after the EIP is unbound, a common public IP is not assigned.<br>Default value: FALSE.<br><br>The parameter can be specified only under the following conditions:<br><li>It can only be specified when you unbind an EIP from the primary private IP of the primary ENI.<br><li>After an EIP is unbound, you can assign public IPs to an account up to 10 times per day. For more information, use the [DescribeAddressQuota] (https://intl.cloud.tencent.com/document/api/213/1378?from_cn_redirect=1) API.
|
|
26454
|
+
:rtype: bool
|
|
26455
|
+
"""
|
|
26456
|
+
return self._ReallocateNormalPublicIp
|
|
26457
|
+
|
|
26458
|
+
@ReallocateNormalPublicIp.setter
|
|
26459
|
+
def ReallocateNormalPublicIp(self, ReallocateNormalPublicIp):
|
|
26460
|
+
self._ReallocateNormalPublicIp = ReallocateNormalPublicIp
|
|
26461
|
+
|
|
26462
|
+
|
|
26463
|
+
def _deserialize(self, params):
|
|
26464
|
+
self._AddressId = params.get("AddressId")
|
|
26465
|
+
self._ReallocateNormalPublicIp = params.get("ReallocateNormalPublicIp")
|
|
26466
|
+
memeber_set = set(params.keys())
|
|
26467
|
+
for name, value in vars(self).items():
|
|
26468
|
+
property_name = name[1:]
|
|
26469
|
+
if property_name in memeber_set:
|
|
26470
|
+
memeber_set.remove(property_name)
|
|
26471
|
+
if len(memeber_set) > 0:
|
|
26472
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
26473
|
+
|
|
26474
|
+
|
|
26475
|
+
|
|
26476
|
+
class DisassociateAddressResponse(AbstractModel):
|
|
26477
|
+
"""DisassociateAddress response structure.
|
|
26478
|
+
|
|
26479
|
+
"""
|
|
26480
|
+
|
|
26481
|
+
def __init__(self):
|
|
26482
|
+
r"""
|
|
26483
|
+
:param _TaskId: The async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
26484
|
+
:type TaskId: str
|
|
26485
|
+
:param _RequestId: 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.
|
|
26486
|
+
:type RequestId: str
|
|
26487
|
+
"""
|
|
26488
|
+
self._TaskId = None
|
|
26489
|
+
self._RequestId = None
|
|
26490
|
+
|
|
26491
|
+
@property
|
|
26492
|
+
def TaskId(self):
|
|
26493
|
+
"""The async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
26494
|
+
:rtype: str
|
|
26495
|
+
"""
|
|
26496
|
+
return self._TaskId
|
|
26497
|
+
|
|
26498
|
+
@TaskId.setter
|
|
26499
|
+
def TaskId(self, TaskId):
|
|
26500
|
+
self._TaskId = TaskId
|
|
26501
|
+
|
|
26502
|
+
@property
|
|
26503
|
+
def RequestId(self):
|
|
26504
|
+
"""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.
|
|
26505
|
+
:rtype: str
|
|
26506
|
+
"""
|
|
26507
|
+
return self._RequestId
|
|
26508
|
+
|
|
26509
|
+
@RequestId.setter
|
|
26510
|
+
def RequestId(self, RequestId):
|
|
26511
|
+
self._RequestId = RequestId
|
|
26512
|
+
|
|
26513
|
+
|
|
26514
|
+
def _deserialize(self, params):
|
|
26515
|
+
self._TaskId = params.get("TaskId")
|
|
26516
|
+
self._RequestId = params.get("RequestId")
|
|
26517
|
+
|
|
26518
|
+
|
|
26519
|
+
class DisassociateDirectConnectGatewayNatGatewayRequest(AbstractModel):
|
|
26520
|
+
"""DisassociateDirectConnectGatewayNatGateway request structure.
|
|
26521
|
+
|
|
26522
|
+
"""
|
|
26523
|
+
|
|
26524
|
+
def __init__(self):
|
|
26525
|
+
r"""
|
|
26526
|
+
:param _VpcId: The direct connect gateway ID.
|
|
26527
|
+
:type VpcId: str
|
|
26528
|
+
:param _NatGatewayId: The NAT Gateway ID.
|
|
26529
|
+
:type NatGatewayId: str
|
|
26530
|
+
:param _DirectConnectGatewayId: The ID of the VPC instance, which can be obtained from the `VpcId` field in response of the `DescribeVpcs` API.
|
|
26531
|
+
:type DirectConnectGatewayId: str
|
|
26532
|
+
"""
|
|
26533
|
+
self._VpcId = None
|
|
26534
|
+
self._NatGatewayId = None
|
|
26535
|
+
self._DirectConnectGatewayId = None
|
|
26536
|
+
|
|
26537
|
+
@property
|
|
26538
|
+
def VpcId(self):
|
|
26539
|
+
"""The direct connect gateway ID.
|
|
26540
|
+
:rtype: str
|
|
26541
|
+
"""
|
|
26542
|
+
return self._VpcId
|
|
26543
|
+
|
|
26544
|
+
@VpcId.setter
|
|
26545
|
+
def VpcId(self, VpcId):
|
|
26546
|
+
self._VpcId = VpcId
|
|
26547
|
+
|
|
26548
|
+
@property
|
|
26549
|
+
def NatGatewayId(self):
|
|
26550
|
+
"""The NAT Gateway ID.
|
|
26551
|
+
:rtype: str
|
|
26552
|
+
"""
|
|
26553
|
+
return self._NatGatewayId
|
|
26554
|
+
|
|
26555
|
+
@NatGatewayId.setter
|
|
26556
|
+
def NatGatewayId(self, NatGatewayId):
|
|
26557
|
+
self._NatGatewayId = NatGatewayId
|
|
26558
|
+
|
|
26559
|
+
@property
|
|
26560
|
+
def DirectConnectGatewayId(self):
|
|
26561
|
+
"""The ID of the VPC instance, which can be obtained from the `VpcId` field in response of the `DescribeVpcs` API.
|
|
26562
|
+
:rtype: str
|
|
26563
|
+
"""
|
|
26564
|
+
return self._DirectConnectGatewayId
|
|
26565
|
+
|
|
26566
|
+
@DirectConnectGatewayId.setter
|
|
26567
|
+
def DirectConnectGatewayId(self, DirectConnectGatewayId):
|
|
26568
|
+
self._DirectConnectGatewayId = DirectConnectGatewayId
|
|
26569
|
+
|
|
26570
|
+
|
|
26571
|
+
def _deserialize(self, params):
|
|
26572
|
+
self._VpcId = params.get("VpcId")
|
|
26573
|
+
self._NatGatewayId = params.get("NatGatewayId")
|
|
26574
|
+
self._DirectConnectGatewayId = params.get("DirectConnectGatewayId")
|
|
26575
|
+
memeber_set = set(params.keys())
|
|
26576
|
+
for name, value in vars(self).items():
|
|
26577
|
+
property_name = name[1:]
|
|
26578
|
+
if property_name in memeber_set:
|
|
26579
|
+
memeber_set.remove(property_name)
|
|
26580
|
+
if len(memeber_set) > 0:
|
|
26581
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
26582
|
+
|
|
26583
|
+
|
|
26584
|
+
|
|
26585
|
+
class DisassociateDirectConnectGatewayNatGatewayResponse(AbstractModel):
|
|
26586
|
+
"""DisassociateDirectConnectGatewayNatGateway response structure.
|
|
26587
|
+
|
|
26588
|
+
"""
|
|
26589
|
+
|
|
26590
|
+
def __init__(self):
|
|
26591
|
+
r"""
|
|
26592
|
+
:param _RequestId: 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.
|
|
26593
|
+
:type RequestId: str
|
|
26594
|
+
"""
|
|
26595
|
+
self._RequestId = None
|
|
26596
|
+
|
|
26597
|
+
@property
|
|
26598
|
+
def RequestId(self):
|
|
26599
|
+
"""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.
|
|
26600
|
+
:rtype: str
|
|
26601
|
+
"""
|
|
26602
|
+
return self._RequestId
|
|
26603
|
+
|
|
26604
|
+
@RequestId.setter
|
|
26605
|
+
def RequestId(self, RequestId):
|
|
26606
|
+
self._RequestId = RequestId
|
|
26607
|
+
|
|
26608
|
+
|
|
26609
|
+
def _deserialize(self, params):
|
|
26610
|
+
self._RequestId = params.get("RequestId")
|
|
26611
|
+
|
|
26612
|
+
|
|
26613
|
+
class DisassociateIPv6AddressRequest(AbstractModel):
|
|
26614
|
+
"""DisassociateIPv6Address request structure.
|
|
25492
26615
|
|
|
25493
26616
|
"""
|
|
25494
26617
|
|
|
25495
26618
|
def __init__(self):
|
|
25496
26619
|
r"""
|
|
25497
|
-
:param
|
|
25498
|
-
:type
|
|
25499
|
-
:param
|
|
25500
|
-
:type
|
|
26620
|
+
:param _IPv6AddressId: Indicates the unique ID of the EIPv6, such as eipv6-11112222.
|
|
26621
|
+
:type IPv6AddressId: str
|
|
26622
|
+
:param _KeepBindWithEni: Indicates whether to keep the ENI bound when unbinding.
|
|
26623
|
+
:type KeepBindWithEni: bool
|
|
25501
26624
|
"""
|
|
25502
|
-
self.
|
|
25503
|
-
self.
|
|
26625
|
+
self._IPv6AddressId = None
|
|
26626
|
+
self._KeepBindWithEni = None
|
|
25504
26627
|
|
|
25505
26628
|
@property
|
|
25506
|
-
def
|
|
25507
|
-
"""
|
|
26629
|
+
def IPv6AddressId(self):
|
|
26630
|
+
"""Indicates the unique ID of the EIPv6, such as eipv6-11112222.
|
|
25508
26631
|
:rtype: str
|
|
25509
26632
|
"""
|
|
25510
|
-
return self.
|
|
26633
|
+
return self._IPv6AddressId
|
|
25511
26634
|
|
|
25512
|
-
@
|
|
25513
|
-
def
|
|
25514
|
-
self.
|
|
26635
|
+
@IPv6AddressId.setter
|
|
26636
|
+
def IPv6AddressId(self, IPv6AddressId):
|
|
26637
|
+
self._IPv6AddressId = IPv6AddressId
|
|
25515
26638
|
|
|
25516
26639
|
@property
|
|
25517
|
-
def
|
|
25518
|
-
"""
|
|
26640
|
+
def KeepBindWithEni(self):
|
|
26641
|
+
"""Indicates whether to keep the ENI bound when unbinding.
|
|
25519
26642
|
:rtype: bool
|
|
25520
26643
|
"""
|
|
25521
|
-
return self.
|
|
25522
|
-
|
|
25523
|
-
@ReallocateNormalPublicIp.setter
|
|
25524
|
-
def ReallocateNormalPublicIp(self, ReallocateNormalPublicIp):
|
|
25525
|
-
self._ReallocateNormalPublicIp = ReallocateNormalPublicIp
|
|
25526
|
-
|
|
25527
|
-
|
|
25528
|
-
def _deserialize(self, params):
|
|
25529
|
-
self._AddressId = params.get("AddressId")
|
|
25530
|
-
self._ReallocateNormalPublicIp = params.get("ReallocateNormalPublicIp")
|
|
25531
|
-
memeber_set = set(params.keys())
|
|
25532
|
-
for name, value in vars(self).items():
|
|
25533
|
-
property_name = name[1:]
|
|
25534
|
-
if property_name in memeber_set:
|
|
25535
|
-
memeber_set.remove(property_name)
|
|
25536
|
-
if len(memeber_set) > 0:
|
|
25537
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
25538
|
-
|
|
25539
|
-
|
|
25540
|
-
|
|
25541
|
-
class DisassociateAddressResponse(AbstractModel):
|
|
25542
|
-
"""DisassociateAddress response structure.
|
|
25543
|
-
|
|
25544
|
-
"""
|
|
25545
|
-
|
|
25546
|
-
def __init__(self):
|
|
25547
|
-
r"""
|
|
25548
|
-
:param _TaskId: The async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
25549
|
-
:type TaskId: str
|
|
25550
|
-
:param _RequestId: 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.
|
|
25551
|
-
:type RequestId: str
|
|
25552
|
-
"""
|
|
25553
|
-
self._TaskId = None
|
|
25554
|
-
self._RequestId = None
|
|
25555
|
-
|
|
25556
|
-
@property
|
|
25557
|
-
def TaskId(self):
|
|
25558
|
-
"""The async task ID. You can use the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
25559
|
-
:rtype: str
|
|
25560
|
-
"""
|
|
25561
|
-
return self._TaskId
|
|
25562
|
-
|
|
25563
|
-
@TaskId.setter
|
|
25564
|
-
def TaskId(self, TaskId):
|
|
25565
|
-
self._TaskId = TaskId
|
|
25566
|
-
|
|
25567
|
-
@property
|
|
25568
|
-
def RequestId(self):
|
|
25569
|
-
"""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.
|
|
25570
|
-
:rtype: str
|
|
25571
|
-
"""
|
|
25572
|
-
return self._RequestId
|
|
25573
|
-
|
|
25574
|
-
@RequestId.setter
|
|
25575
|
-
def RequestId(self, RequestId):
|
|
25576
|
-
self._RequestId = RequestId
|
|
25577
|
-
|
|
25578
|
-
|
|
25579
|
-
def _deserialize(self, params):
|
|
25580
|
-
self._TaskId = params.get("TaskId")
|
|
25581
|
-
self._RequestId = params.get("RequestId")
|
|
25582
|
-
|
|
25583
|
-
|
|
25584
|
-
class DisassociateDirectConnectGatewayNatGatewayRequest(AbstractModel):
|
|
25585
|
-
"""DisassociateDirectConnectGatewayNatGateway request structure.
|
|
25586
|
-
|
|
25587
|
-
"""
|
|
25588
|
-
|
|
25589
|
-
def __init__(self):
|
|
25590
|
-
r"""
|
|
25591
|
-
:param _VpcId: The direct connect gateway ID.
|
|
25592
|
-
:type VpcId: str
|
|
25593
|
-
:param _NatGatewayId: The NAT Gateway ID.
|
|
25594
|
-
:type NatGatewayId: str
|
|
25595
|
-
:param _DirectConnectGatewayId: The ID of the VPC instance, which can be obtained from the `VpcId` field in response of the `DescribeVpcs` API.
|
|
25596
|
-
:type DirectConnectGatewayId: str
|
|
25597
|
-
"""
|
|
25598
|
-
self._VpcId = None
|
|
25599
|
-
self._NatGatewayId = None
|
|
25600
|
-
self._DirectConnectGatewayId = None
|
|
25601
|
-
|
|
25602
|
-
@property
|
|
25603
|
-
def VpcId(self):
|
|
25604
|
-
"""The direct connect gateway ID.
|
|
25605
|
-
:rtype: str
|
|
25606
|
-
"""
|
|
25607
|
-
return self._VpcId
|
|
25608
|
-
|
|
25609
|
-
@VpcId.setter
|
|
25610
|
-
def VpcId(self, VpcId):
|
|
25611
|
-
self._VpcId = VpcId
|
|
25612
|
-
|
|
25613
|
-
@property
|
|
25614
|
-
def NatGatewayId(self):
|
|
25615
|
-
"""The NAT Gateway ID.
|
|
25616
|
-
:rtype: str
|
|
25617
|
-
"""
|
|
25618
|
-
return self._NatGatewayId
|
|
25619
|
-
|
|
25620
|
-
@NatGatewayId.setter
|
|
25621
|
-
def NatGatewayId(self, NatGatewayId):
|
|
25622
|
-
self._NatGatewayId = NatGatewayId
|
|
25623
|
-
|
|
25624
|
-
@property
|
|
25625
|
-
def DirectConnectGatewayId(self):
|
|
25626
|
-
"""The ID of the VPC instance, which can be obtained from the `VpcId` field in response of the `DescribeVpcs` API.
|
|
25627
|
-
:rtype: str
|
|
25628
|
-
"""
|
|
25629
|
-
return self._DirectConnectGatewayId
|
|
26644
|
+
return self._KeepBindWithEni
|
|
25630
26645
|
|
|
25631
|
-
@
|
|
25632
|
-
def
|
|
25633
|
-
self.
|
|
26646
|
+
@KeepBindWithEni.setter
|
|
26647
|
+
def KeepBindWithEni(self, KeepBindWithEni):
|
|
26648
|
+
self._KeepBindWithEni = KeepBindWithEni
|
|
25634
26649
|
|
|
25635
26650
|
|
|
25636
26651
|
def _deserialize(self, params):
|
|
25637
|
-
self.
|
|
25638
|
-
self.
|
|
25639
|
-
self._DirectConnectGatewayId = params.get("DirectConnectGatewayId")
|
|
26652
|
+
self._IPv6AddressId = params.get("IPv6AddressId")
|
|
26653
|
+
self._KeepBindWithEni = params.get("KeepBindWithEni")
|
|
25640
26654
|
memeber_set = set(params.keys())
|
|
25641
26655
|
for name, value in vars(self).items():
|
|
25642
26656
|
property_name = name[1:]
|
|
@@ -25647,8 +26661,8 @@ class DisassociateDirectConnectGatewayNatGatewayRequest(AbstractModel):
|
|
|
25647
26661
|
|
|
25648
26662
|
|
|
25649
26663
|
|
|
25650
|
-
class
|
|
25651
|
-
"""
|
|
26664
|
+
class DisassociateIPv6AddressResponse(AbstractModel):
|
|
26665
|
+
"""DisassociateIPv6Address response structure.
|
|
25652
26666
|
|
|
25653
26667
|
"""
|
|
25654
26668
|
|
|
@@ -31707,68 +32721,305 @@ class ModifyFlowLogAttributeResponse(AbstractModel):
|
|
|
31707
32721
|
self._RequestId = params.get("RequestId")
|
|
31708
32722
|
|
|
31709
32723
|
|
|
31710
|
-
class ModifyGatewayFlowQosRequest(AbstractModel):
|
|
31711
|
-
"""ModifyGatewayFlowQos request structure.
|
|
32724
|
+
class ModifyGatewayFlowQosRequest(AbstractModel):
|
|
32725
|
+
"""ModifyGatewayFlowQos request structure.
|
|
32726
|
+
|
|
32727
|
+
"""
|
|
32728
|
+
|
|
32729
|
+
def __init__(self):
|
|
32730
|
+
r"""
|
|
32731
|
+
:param _GatewayId: Gateway instance ID. Supported types:
|
|
32732
|
+
Direct connect gateway instance, such as `dcg-ltjahce6`;
|
|
32733
|
+
NAT gateway instance, such as `nat-ltjahce6`;
|
|
32734
|
+
VPN gateway instance, such as `vpn-ltjahce6`.
|
|
32735
|
+
:type GatewayId: str
|
|
32736
|
+
:param _Bandwidth: Bandwidth limit value in Mbps. Valid values: >0: Set the limit to the specified value. 0: Block all traffic. -1: No bandwidth limit.
|
|
32737
|
+
:type Bandwidth: int
|
|
32738
|
+
:param _IpAddresses: CVM private IP addresses with limited bandwidth.
|
|
32739
|
+
:type IpAddresses: list of str
|
|
32740
|
+
"""
|
|
32741
|
+
self._GatewayId = None
|
|
32742
|
+
self._Bandwidth = None
|
|
32743
|
+
self._IpAddresses = None
|
|
32744
|
+
|
|
32745
|
+
@property
|
|
32746
|
+
def GatewayId(self):
|
|
32747
|
+
"""Gateway instance ID. Supported types:
|
|
32748
|
+
Direct connect gateway instance, such as `dcg-ltjahce6`;
|
|
32749
|
+
NAT gateway instance, such as `nat-ltjahce6`;
|
|
32750
|
+
VPN gateway instance, such as `vpn-ltjahce6`.
|
|
32751
|
+
:rtype: str
|
|
32752
|
+
"""
|
|
32753
|
+
return self._GatewayId
|
|
32754
|
+
|
|
32755
|
+
@GatewayId.setter
|
|
32756
|
+
def GatewayId(self, GatewayId):
|
|
32757
|
+
self._GatewayId = GatewayId
|
|
32758
|
+
|
|
32759
|
+
@property
|
|
32760
|
+
def Bandwidth(self):
|
|
32761
|
+
"""Bandwidth limit value in Mbps. Valid values: >0: Set the limit to the specified value. 0: Block all traffic. -1: No bandwidth limit.
|
|
32762
|
+
:rtype: int
|
|
32763
|
+
"""
|
|
32764
|
+
return self._Bandwidth
|
|
32765
|
+
|
|
32766
|
+
@Bandwidth.setter
|
|
32767
|
+
def Bandwidth(self, Bandwidth):
|
|
32768
|
+
self._Bandwidth = Bandwidth
|
|
32769
|
+
|
|
32770
|
+
@property
|
|
32771
|
+
def IpAddresses(self):
|
|
32772
|
+
"""CVM private IP addresses with limited bandwidth.
|
|
32773
|
+
:rtype: list of str
|
|
32774
|
+
"""
|
|
32775
|
+
return self._IpAddresses
|
|
32776
|
+
|
|
32777
|
+
@IpAddresses.setter
|
|
32778
|
+
def IpAddresses(self, IpAddresses):
|
|
32779
|
+
self._IpAddresses = IpAddresses
|
|
32780
|
+
|
|
32781
|
+
|
|
32782
|
+
def _deserialize(self, params):
|
|
32783
|
+
self._GatewayId = params.get("GatewayId")
|
|
32784
|
+
self._Bandwidth = params.get("Bandwidth")
|
|
32785
|
+
self._IpAddresses = params.get("IpAddresses")
|
|
32786
|
+
memeber_set = set(params.keys())
|
|
32787
|
+
for name, value in vars(self).items():
|
|
32788
|
+
property_name = name[1:]
|
|
32789
|
+
if property_name in memeber_set:
|
|
32790
|
+
memeber_set.remove(property_name)
|
|
32791
|
+
if len(memeber_set) > 0:
|
|
32792
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
32793
|
+
|
|
32794
|
+
|
|
32795
|
+
|
|
32796
|
+
class ModifyGatewayFlowQosResponse(AbstractModel):
|
|
32797
|
+
"""ModifyGatewayFlowQos response structure.
|
|
32798
|
+
|
|
32799
|
+
"""
|
|
32800
|
+
|
|
32801
|
+
def __init__(self):
|
|
32802
|
+
r"""
|
|
32803
|
+
:param _RequestId: 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.
|
|
32804
|
+
:type RequestId: str
|
|
32805
|
+
"""
|
|
32806
|
+
self._RequestId = None
|
|
32807
|
+
|
|
32808
|
+
@property
|
|
32809
|
+
def RequestId(self):
|
|
32810
|
+
"""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.
|
|
32811
|
+
:rtype: str
|
|
32812
|
+
"""
|
|
32813
|
+
return self._RequestId
|
|
32814
|
+
|
|
32815
|
+
@RequestId.setter
|
|
32816
|
+
def RequestId(self, RequestId):
|
|
32817
|
+
self._RequestId = RequestId
|
|
32818
|
+
|
|
32819
|
+
|
|
32820
|
+
def _deserialize(self, params):
|
|
32821
|
+
self._RequestId = params.get("RequestId")
|
|
32822
|
+
|
|
32823
|
+
|
|
32824
|
+
class ModifyHaVipAttributeRequest(AbstractModel):
|
|
32825
|
+
"""ModifyHaVipAttribute request structure.
|
|
32826
|
+
|
|
32827
|
+
"""
|
|
32828
|
+
|
|
32829
|
+
def __init__(self):
|
|
32830
|
+
r"""
|
|
32831
|
+
:param _HaVipId: The unique `ID` of the `HAVIP`, such as `havip-9o233uri`.
|
|
32832
|
+
:type HaVipId: str
|
|
32833
|
+
:param _HaVipName: `HAVIP` can be named freely, but the maximum length is 60 characters.
|
|
32834
|
+
:type HaVipName: str
|
|
32835
|
+
"""
|
|
32836
|
+
self._HaVipId = None
|
|
32837
|
+
self._HaVipName = None
|
|
32838
|
+
|
|
32839
|
+
@property
|
|
32840
|
+
def HaVipId(self):
|
|
32841
|
+
"""The unique `ID` of the `HAVIP`, such as `havip-9o233uri`.
|
|
32842
|
+
:rtype: str
|
|
32843
|
+
"""
|
|
32844
|
+
return self._HaVipId
|
|
32845
|
+
|
|
32846
|
+
@HaVipId.setter
|
|
32847
|
+
def HaVipId(self, HaVipId):
|
|
32848
|
+
self._HaVipId = HaVipId
|
|
32849
|
+
|
|
32850
|
+
@property
|
|
32851
|
+
def HaVipName(self):
|
|
32852
|
+
"""`HAVIP` can be named freely, but the maximum length is 60 characters.
|
|
32853
|
+
:rtype: str
|
|
32854
|
+
"""
|
|
32855
|
+
return self._HaVipName
|
|
32856
|
+
|
|
32857
|
+
@HaVipName.setter
|
|
32858
|
+
def HaVipName(self, HaVipName):
|
|
32859
|
+
self._HaVipName = HaVipName
|
|
32860
|
+
|
|
32861
|
+
|
|
32862
|
+
def _deserialize(self, params):
|
|
32863
|
+
self._HaVipId = params.get("HaVipId")
|
|
32864
|
+
self._HaVipName = params.get("HaVipName")
|
|
32865
|
+
memeber_set = set(params.keys())
|
|
32866
|
+
for name, value in vars(self).items():
|
|
32867
|
+
property_name = name[1:]
|
|
32868
|
+
if property_name in memeber_set:
|
|
32869
|
+
memeber_set.remove(property_name)
|
|
32870
|
+
if len(memeber_set) > 0:
|
|
32871
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
32872
|
+
|
|
32873
|
+
|
|
32874
|
+
|
|
32875
|
+
class ModifyHaVipAttributeResponse(AbstractModel):
|
|
32876
|
+
"""ModifyHaVipAttribute response structure.
|
|
32877
|
+
|
|
32878
|
+
"""
|
|
32879
|
+
|
|
32880
|
+
def __init__(self):
|
|
32881
|
+
r"""
|
|
32882
|
+
:param _RequestId: 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.
|
|
32883
|
+
:type RequestId: str
|
|
32884
|
+
"""
|
|
32885
|
+
self._RequestId = None
|
|
32886
|
+
|
|
32887
|
+
@property
|
|
32888
|
+
def RequestId(self):
|
|
32889
|
+
"""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.
|
|
32890
|
+
:rtype: str
|
|
32891
|
+
"""
|
|
32892
|
+
return self._RequestId
|
|
32893
|
+
|
|
32894
|
+
@RequestId.setter
|
|
32895
|
+
def RequestId(self, RequestId):
|
|
32896
|
+
self._RequestId = RequestId
|
|
32897
|
+
|
|
32898
|
+
|
|
32899
|
+
def _deserialize(self, params):
|
|
32900
|
+
self._RequestId = params.get("RequestId")
|
|
32901
|
+
|
|
32902
|
+
|
|
32903
|
+
class ModifyIPv6AddressesAttributesRequest(AbstractModel):
|
|
32904
|
+
"""ModifyIPv6AddressesAttributes request structure.
|
|
31712
32905
|
|
|
31713
32906
|
"""
|
|
31714
32907
|
|
|
31715
32908
|
def __init__(self):
|
|
31716
32909
|
r"""
|
|
31717
|
-
:param
|
|
31718
|
-
|
|
31719
|
-
|
|
31720
|
-
|
|
31721
|
-
:type GatewayId: str
|
|
31722
|
-
:param _Bandwidth: Bandwidth limit value in Mbps. Valid values: >0: Set the limit to the specified value. 0: Block all traffic. -1: No bandwidth limit.
|
|
31723
|
-
:type Bandwidth: int
|
|
31724
|
-
:param _IpAddresses: CVM private IP addresses with limited bandwidth.
|
|
31725
|
-
:type IpAddresses: list of str
|
|
32910
|
+
:param _IPv6AddressIds: List of unique IDs of EIPv6.
|
|
32911
|
+
:type IPv6AddressIds: list of str
|
|
32912
|
+
:param _IPv6AddressName: Name of the EIPv6 address
|
|
32913
|
+
:type IPv6AddressName: str
|
|
31726
32914
|
"""
|
|
31727
|
-
self.
|
|
31728
|
-
self.
|
|
31729
|
-
self._IpAddresses = None
|
|
32915
|
+
self._IPv6AddressIds = None
|
|
32916
|
+
self._IPv6AddressName = None
|
|
31730
32917
|
|
|
31731
32918
|
@property
|
|
31732
|
-
def
|
|
31733
|
-
"""
|
|
31734
|
-
|
|
31735
|
-
|
|
31736
|
-
|
|
32919
|
+
def IPv6AddressIds(self):
|
|
32920
|
+
"""List of unique IDs of EIPv6.
|
|
32921
|
+
:rtype: list of str
|
|
32922
|
+
"""
|
|
32923
|
+
return self._IPv6AddressIds
|
|
32924
|
+
|
|
32925
|
+
@IPv6AddressIds.setter
|
|
32926
|
+
def IPv6AddressIds(self, IPv6AddressIds):
|
|
32927
|
+
self._IPv6AddressIds = IPv6AddressIds
|
|
32928
|
+
|
|
32929
|
+
@property
|
|
32930
|
+
def IPv6AddressName(self):
|
|
32931
|
+
"""Name of the EIPv6 address
|
|
31737
32932
|
:rtype: str
|
|
31738
32933
|
"""
|
|
31739
|
-
return self.
|
|
32934
|
+
return self._IPv6AddressName
|
|
31740
32935
|
|
|
31741
|
-
@
|
|
31742
|
-
def
|
|
31743
|
-
self.
|
|
32936
|
+
@IPv6AddressName.setter
|
|
32937
|
+
def IPv6AddressName(self, IPv6AddressName):
|
|
32938
|
+
self._IPv6AddressName = IPv6AddressName
|
|
32939
|
+
|
|
32940
|
+
|
|
32941
|
+
def _deserialize(self, params):
|
|
32942
|
+
self._IPv6AddressIds = params.get("IPv6AddressIds")
|
|
32943
|
+
self._IPv6AddressName = params.get("IPv6AddressName")
|
|
32944
|
+
memeber_set = set(params.keys())
|
|
32945
|
+
for name, value in vars(self).items():
|
|
32946
|
+
property_name = name[1:]
|
|
32947
|
+
if property_name in memeber_set:
|
|
32948
|
+
memeber_set.remove(property_name)
|
|
32949
|
+
if len(memeber_set) > 0:
|
|
32950
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
32951
|
+
|
|
32952
|
+
|
|
32953
|
+
|
|
32954
|
+
class ModifyIPv6AddressesAttributesResponse(AbstractModel):
|
|
32955
|
+
"""ModifyIPv6AddressesAttributes response structure.
|
|
32956
|
+
|
|
32957
|
+
"""
|
|
32958
|
+
|
|
32959
|
+
def __init__(self):
|
|
32960
|
+
r"""
|
|
32961
|
+
:param _RequestId: 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.
|
|
32962
|
+
:type RequestId: str
|
|
32963
|
+
"""
|
|
32964
|
+
self._RequestId = None
|
|
31744
32965
|
|
|
31745
32966
|
@property
|
|
31746
|
-
def
|
|
31747
|
-
"""
|
|
31748
|
-
:rtype:
|
|
32967
|
+
def RequestId(self):
|
|
32968
|
+
"""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.
|
|
32969
|
+
:rtype: str
|
|
31749
32970
|
"""
|
|
31750
|
-
return self.
|
|
32971
|
+
return self._RequestId
|
|
31751
32972
|
|
|
31752
|
-
@
|
|
31753
|
-
def
|
|
31754
|
-
self.
|
|
32973
|
+
@RequestId.setter
|
|
32974
|
+
def RequestId(self, RequestId):
|
|
32975
|
+
self._RequestId = RequestId
|
|
32976
|
+
|
|
32977
|
+
|
|
32978
|
+
def _deserialize(self, params):
|
|
32979
|
+
self._RequestId = params.get("RequestId")
|
|
32980
|
+
|
|
32981
|
+
|
|
32982
|
+
class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
|
|
32983
|
+
"""ModifyIPv6AddressesBandwidth request structure.
|
|
32984
|
+
|
|
32985
|
+
"""
|
|
32986
|
+
|
|
32987
|
+
def __init__(self):
|
|
32988
|
+
r"""
|
|
32989
|
+
:param _IPv6AddressIds: Unique ID of the EIPv6 address
|
|
32990
|
+
:type IPv6AddressIds: list of str
|
|
32991
|
+
:param _InternetMaxBandwidthOut: Network bandwidth of the EIPv6 address
|
|
32992
|
+
:type InternetMaxBandwidthOut: int
|
|
32993
|
+
"""
|
|
32994
|
+
self._IPv6AddressIds = None
|
|
32995
|
+
self._InternetMaxBandwidthOut = None
|
|
31755
32996
|
|
|
31756
32997
|
@property
|
|
31757
|
-
def
|
|
31758
|
-
"""
|
|
32998
|
+
def IPv6AddressIds(self):
|
|
32999
|
+
"""Unique ID of the EIPv6 address
|
|
31759
33000
|
:rtype: list of str
|
|
31760
33001
|
"""
|
|
31761
|
-
return self.
|
|
33002
|
+
return self._IPv6AddressIds
|
|
31762
33003
|
|
|
31763
|
-
@
|
|
31764
|
-
def
|
|
31765
|
-
self.
|
|
33004
|
+
@IPv6AddressIds.setter
|
|
33005
|
+
def IPv6AddressIds(self, IPv6AddressIds):
|
|
33006
|
+
self._IPv6AddressIds = IPv6AddressIds
|
|
33007
|
+
|
|
33008
|
+
@property
|
|
33009
|
+
def InternetMaxBandwidthOut(self):
|
|
33010
|
+
"""Network bandwidth of the EIPv6 address
|
|
33011
|
+
:rtype: int
|
|
33012
|
+
"""
|
|
33013
|
+
return self._InternetMaxBandwidthOut
|
|
33014
|
+
|
|
33015
|
+
@InternetMaxBandwidthOut.setter
|
|
33016
|
+
def InternetMaxBandwidthOut(self, InternetMaxBandwidthOut):
|
|
33017
|
+
self._InternetMaxBandwidthOut = InternetMaxBandwidthOut
|
|
31766
33018
|
|
|
31767
33019
|
|
|
31768
33020
|
def _deserialize(self, params):
|
|
31769
|
-
self.
|
|
31770
|
-
self.
|
|
31771
|
-
self._IpAddresses = params.get("IpAddresses")
|
|
33021
|
+
self._IPv6AddressIds = params.get("IPv6AddressIds")
|
|
33022
|
+
self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
|
|
31772
33023
|
memeber_set = set(params.keys())
|
|
31773
33024
|
for name, value in vars(self).items():
|
|
31774
33025
|
property_name = name[1:]
|
|
@@ -31779,8 +33030,8 @@ VPN gateway instance, such as `vpn-ltjahce6`.
|
|
|
31779
33030
|
|
|
31780
33031
|
|
|
31781
33032
|
|
|
31782
|
-
class
|
|
31783
|
-
"""
|
|
33033
|
+
class ModifyIPv6AddressesBandwidthResponse(AbstractModel):
|
|
33034
|
+
"""ModifyIPv6AddressesBandwidth response structure.
|
|
31784
33035
|
|
|
31785
33036
|
"""
|
|
31786
33037
|
|
|
@@ -31807,47 +33058,62 @@ class ModifyGatewayFlowQosResponse(AbstractModel):
|
|
|
31807
33058
|
self._RequestId = params.get("RequestId")
|
|
31808
33059
|
|
|
31809
33060
|
|
|
31810
|
-
class
|
|
31811
|
-
"""
|
|
33061
|
+
class ModifyIp6AddressesBandwidthRequest(AbstractModel):
|
|
33062
|
+
"""ModifyIp6AddressesBandwidth request structure.
|
|
31812
33063
|
|
|
31813
33064
|
"""
|
|
31814
33065
|
|
|
31815
33066
|
def __init__(self):
|
|
31816
33067
|
r"""
|
|
31817
|
-
:param
|
|
31818
|
-
:type
|
|
31819
|
-
:param
|
|
31820
|
-
:type
|
|
33068
|
+
:param _InternetMaxBandwidthOut: Modified target bandwidth, in Mbps.
|
|
33069
|
+
:type InternetMaxBandwidthOut: int
|
|
33070
|
+
:param _Ip6Addresses: IPv6 addresses. Both Ip6Addresses and Ip6AddressId are required, but they cannot be specified at the same time.
|
|
33071
|
+
:type Ip6Addresses: list of str
|
|
33072
|
+
:param _Ip6AddressIds: Unique IDs corresponding to the IPv6 addresses. Format: eip-xxxxxxxx. Both Ip6Addresses and Ip6AddressId are required, but they cannot be specified at the same time.
|
|
33073
|
+
:type Ip6AddressIds: list of str
|
|
31821
33074
|
"""
|
|
31822
|
-
self.
|
|
31823
|
-
self.
|
|
33075
|
+
self._InternetMaxBandwidthOut = None
|
|
33076
|
+
self._Ip6Addresses = None
|
|
33077
|
+
self._Ip6AddressIds = None
|
|
31824
33078
|
|
|
31825
33079
|
@property
|
|
31826
|
-
def
|
|
31827
|
-
"""
|
|
31828
|
-
:rtype:
|
|
33080
|
+
def InternetMaxBandwidthOut(self):
|
|
33081
|
+
"""Modified target bandwidth, in Mbps.
|
|
33082
|
+
:rtype: int
|
|
31829
33083
|
"""
|
|
31830
|
-
return self.
|
|
33084
|
+
return self._InternetMaxBandwidthOut
|
|
31831
33085
|
|
|
31832
|
-
@
|
|
31833
|
-
def
|
|
31834
|
-
self.
|
|
33086
|
+
@InternetMaxBandwidthOut.setter
|
|
33087
|
+
def InternetMaxBandwidthOut(self, InternetMaxBandwidthOut):
|
|
33088
|
+
self._InternetMaxBandwidthOut = InternetMaxBandwidthOut
|
|
31835
33089
|
|
|
31836
33090
|
@property
|
|
31837
|
-
def
|
|
31838
|
-
"""
|
|
31839
|
-
:rtype: str
|
|
33091
|
+
def Ip6Addresses(self):
|
|
33092
|
+
"""IPv6 addresses. Both Ip6Addresses and Ip6AddressId are required, but they cannot be specified at the same time.
|
|
33093
|
+
:rtype: list of str
|
|
31840
33094
|
"""
|
|
31841
|
-
return self.
|
|
33095
|
+
return self._Ip6Addresses
|
|
31842
33096
|
|
|
31843
|
-
@
|
|
31844
|
-
def
|
|
31845
|
-
self.
|
|
33097
|
+
@Ip6Addresses.setter
|
|
33098
|
+
def Ip6Addresses(self, Ip6Addresses):
|
|
33099
|
+
self._Ip6Addresses = Ip6Addresses
|
|
33100
|
+
|
|
33101
|
+
@property
|
|
33102
|
+
def Ip6AddressIds(self):
|
|
33103
|
+
"""Unique IDs corresponding to the IPv6 addresses. Format: eip-xxxxxxxx. Both Ip6Addresses and Ip6AddressId are required, but they cannot be specified at the same time.
|
|
33104
|
+
:rtype: list of str
|
|
33105
|
+
"""
|
|
33106
|
+
return self._Ip6AddressIds
|
|
33107
|
+
|
|
33108
|
+
@Ip6AddressIds.setter
|
|
33109
|
+
def Ip6AddressIds(self, Ip6AddressIds):
|
|
33110
|
+
self._Ip6AddressIds = Ip6AddressIds
|
|
31846
33111
|
|
|
31847
33112
|
|
|
31848
33113
|
def _deserialize(self, params):
|
|
31849
|
-
self.
|
|
31850
|
-
self.
|
|
33114
|
+
self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
|
|
33115
|
+
self._Ip6Addresses = params.get("Ip6Addresses")
|
|
33116
|
+
self._Ip6AddressIds = params.get("Ip6AddressIds")
|
|
31851
33117
|
memeber_set = set(params.keys())
|
|
31852
33118
|
for name, value in vars(self).items():
|
|
31853
33119
|
property_name = name[1:]
|
|
@@ -31858,18 +33124,32 @@ class ModifyHaVipAttributeRequest(AbstractModel):
|
|
|
31858
33124
|
|
|
31859
33125
|
|
|
31860
33126
|
|
|
31861
|
-
class
|
|
31862
|
-
"""
|
|
33127
|
+
class ModifyIp6AddressesBandwidthResponse(AbstractModel):
|
|
33128
|
+
"""ModifyIp6AddressesBandwidth response structure.
|
|
31863
33129
|
|
|
31864
33130
|
"""
|
|
31865
33131
|
|
|
31866
33132
|
def __init__(self):
|
|
31867
33133
|
r"""
|
|
33134
|
+
:param _TaskId: Task ID.
|
|
33135
|
+
:type TaskId: str
|
|
31868
33136
|
:param _RequestId: 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.
|
|
31869
33137
|
:type RequestId: str
|
|
31870
33138
|
"""
|
|
33139
|
+
self._TaskId = None
|
|
31871
33140
|
self._RequestId = None
|
|
31872
33141
|
|
|
33142
|
+
@property
|
|
33143
|
+
def TaskId(self):
|
|
33144
|
+
"""Task ID.
|
|
33145
|
+
:rtype: str
|
|
33146
|
+
"""
|
|
33147
|
+
return self._TaskId
|
|
33148
|
+
|
|
33149
|
+
@TaskId.setter
|
|
33150
|
+
def TaskId(self, TaskId):
|
|
33151
|
+
self._TaskId = TaskId
|
|
33152
|
+
|
|
31873
33153
|
@property
|
|
31874
33154
|
def RequestId(self):
|
|
31875
33155
|
"""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.
|
|
@@ -31883,6 +33163,7 @@ class ModifyHaVipAttributeResponse(AbstractModel):
|
|
|
31883
33163
|
|
|
31884
33164
|
|
|
31885
33165
|
def _deserialize(self, params):
|
|
33166
|
+
self._TaskId = params.get("TaskId")
|
|
31886
33167
|
self._RequestId = params.get("RequestId")
|
|
31887
33168
|
|
|
31888
33169
|
|
|
@@ -37617,6 +38898,164 @@ class ReleaseAddressesResponse(AbstractModel):
|
|
|
37617
38898
|
self._RequestId = params.get("RequestId")
|
|
37618
38899
|
|
|
37619
38900
|
|
|
38901
|
+
class ReleaseIPv6AddressesRequest(AbstractModel):
|
|
38902
|
+
"""ReleaseIPv6Addresses request structure.
|
|
38903
|
+
|
|
38904
|
+
"""
|
|
38905
|
+
|
|
38906
|
+
def __init__(self):
|
|
38907
|
+
r"""
|
|
38908
|
+
:param _IPv6AddressIds: Unique ID of the IPv6 address.
|
|
38909
|
+
:type IPv6AddressIds: list of str
|
|
38910
|
+
"""
|
|
38911
|
+
self._IPv6AddressIds = None
|
|
38912
|
+
|
|
38913
|
+
@property
|
|
38914
|
+
def IPv6AddressIds(self):
|
|
38915
|
+
"""Unique ID of the IPv6 address.
|
|
38916
|
+
:rtype: list of str
|
|
38917
|
+
"""
|
|
38918
|
+
return self._IPv6AddressIds
|
|
38919
|
+
|
|
38920
|
+
@IPv6AddressIds.setter
|
|
38921
|
+
def IPv6AddressIds(self, IPv6AddressIds):
|
|
38922
|
+
self._IPv6AddressIds = IPv6AddressIds
|
|
38923
|
+
|
|
38924
|
+
|
|
38925
|
+
def _deserialize(self, params):
|
|
38926
|
+
self._IPv6AddressIds = params.get("IPv6AddressIds")
|
|
38927
|
+
memeber_set = set(params.keys())
|
|
38928
|
+
for name, value in vars(self).items():
|
|
38929
|
+
property_name = name[1:]
|
|
38930
|
+
if property_name in memeber_set:
|
|
38931
|
+
memeber_set.remove(property_name)
|
|
38932
|
+
if len(memeber_set) > 0:
|
|
38933
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
38934
|
+
|
|
38935
|
+
|
|
38936
|
+
|
|
38937
|
+
class ReleaseIPv6AddressesResponse(AbstractModel):
|
|
38938
|
+
"""ReleaseIPv6Addresses response structure.
|
|
38939
|
+
|
|
38940
|
+
"""
|
|
38941
|
+
|
|
38942
|
+
def __init__(self):
|
|
38943
|
+
r"""
|
|
38944
|
+
:param _RequestId: 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.
|
|
38945
|
+
:type RequestId: str
|
|
38946
|
+
"""
|
|
38947
|
+
self._RequestId = None
|
|
38948
|
+
|
|
38949
|
+
@property
|
|
38950
|
+
def RequestId(self):
|
|
38951
|
+
"""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.
|
|
38952
|
+
:rtype: str
|
|
38953
|
+
"""
|
|
38954
|
+
return self._RequestId
|
|
38955
|
+
|
|
38956
|
+
@RequestId.setter
|
|
38957
|
+
def RequestId(self, RequestId):
|
|
38958
|
+
self._RequestId = RequestId
|
|
38959
|
+
|
|
38960
|
+
|
|
38961
|
+
def _deserialize(self, params):
|
|
38962
|
+
self._RequestId = params.get("RequestId")
|
|
38963
|
+
|
|
38964
|
+
|
|
38965
|
+
class ReleaseIp6AddressesBandwidthRequest(AbstractModel):
|
|
38966
|
+
"""ReleaseIp6AddressesBandwidth request structure.
|
|
38967
|
+
|
|
38968
|
+
"""
|
|
38969
|
+
|
|
38970
|
+
def __init__(self):
|
|
38971
|
+
r"""
|
|
38972
|
+
:param _Ip6Addresses: IPv6 addresses. Both Ip6Addresses and Ip6AddressIds are required, but they cannot be specified at the same time.
|
|
38973
|
+
:type Ip6Addresses: list of str
|
|
38974
|
+
:param _Ip6AddressIds: Unique IDs corresponding to the IPv6 addresses. Format: eip-xxxxxxxx. Both Ip6Addresses and Ip6AddressIds are required, but they cannot be specified at the same time.
|
|
38975
|
+
:type Ip6AddressIds: list of str
|
|
38976
|
+
"""
|
|
38977
|
+
self._Ip6Addresses = None
|
|
38978
|
+
self._Ip6AddressIds = None
|
|
38979
|
+
|
|
38980
|
+
@property
|
|
38981
|
+
def Ip6Addresses(self):
|
|
38982
|
+
"""IPv6 addresses. Both Ip6Addresses and Ip6AddressIds are required, but they cannot be specified at the same time.
|
|
38983
|
+
:rtype: list of str
|
|
38984
|
+
"""
|
|
38985
|
+
return self._Ip6Addresses
|
|
38986
|
+
|
|
38987
|
+
@Ip6Addresses.setter
|
|
38988
|
+
def Ip6Addresses(self, Ip6Addresses):
|
|
38989
|
+
self._Ip6Addresses = Ip6Addresses
|
|
38990
|
+
|
|
38991
|
+
@property
|
|
38992
|
+
def Ip6AddressIds(self):
|
|
38993
|
+
"""Unique IDs corresponding to the IPv6 addresses. Format: eip-xxxxxxxx. Both Ip6Addresses and Ip6AddressIds are required, but they cannot be specified at the same time.
|
|
38994
|
+
:rtype: list of str
|
|
38995
|
+
"""
|
|
38996
|
+
return self._Ip6AddressIds
|
|
38997
|
+
|
|
38998
|
+
@Ip6AddressIds.setter
|
|
38999
|
+
def Ip6AddressIds(self, Ip6AddressIds):
|
|
39000
|
+
self._Ip6AddressIds = Ip6AddressIds
|
|
39001
|
+
|
|
39002
|
+
|
|
39003
|
+
def _deserialize(self, params):
|
|
39004
|
+
self._Ip6Addresses = params.get("Ip6Addresses")
|
|
39005
|
+
self._Ip6AddressIds = params.get("Ip6AddressIds")
|
|
39006
|
+
memeber_set = set(params.keys())
|
|
39007
|
+
for name, value in vars(self).items():
|
|
39008
|
+
property_name = name[1:]
|
|
39009
|
+
if property_name in memeber_set:
|
|
39010
|
+
memeber_set.remove(property_name)
|
|
39011
|
+
if len(memeber_set) > 0:
|
|
39012
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
39013
|
+
|
|
39014
|
+
|
|
39015
|
+
|
|
39016
|
+
class ReleaseIp6AddressesBandwidthResponse(AbstractModel):
|
|
39017
|
+
"""ReleaseIp6AddressesBandwidth response structure.
|
|
39018
|
+
|
|
39019
|
+
"""
|
|
39020
|
+
|
|
39021
|
+
def __init__(self):
|
|
39022
|
+
r"""
|
|
39023
|
+
:param _TaskId: Asynchronous task ID. You can call the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
39024
|
+
:type TaskId: str
|
|
39025
|
+
:param _RequestId: 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.
|
|
39026
|
+
:type RequestId: str
|
|
39027
|
+
"""
|
|
39028
|
+
self._TaskId = None
|
|
39029
|
+
self._RequestId = None
|
|
39030
|
+
|
|
39031
|
+
@property
|
|
39032
|
+
def TaskId(self):
|
|
39033
|
+
"""Asynchronous task ID. You can call the [DescribeTaskResult](https://intl.cloud.tencent.com/document/api/215/36271?from_cn_redirect=1) API to query the task status.
|
|
39034
|
+
:rtype: str
|
|
39035
|
+
"""
|
|
39036
|
+
return self._TaskId
|
|
39037
|
+
|
|
39038
|
+
@TaskId.setter
|
|
39039
|
+
def TaskId(self, TaskId):
|
|
39040
|
+
self._TaskId = TaskId
|
|
39041
|
+
|
|
39042
|
+
@property
|
|
39043
|
+
def RequestId(self):
|
|
39044
|
+
"""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.
|
|
39045
|
+
:rtype: str
|
|
39046
|
+
"""
|
|
39047
|
+
return self._RequestId
|
|
39048
|
+
|
|
39049
|
+
@RequestId.setter
|
|
39050
|
+
def RequestId(self, RequestId):
|
|
39051
|
+
self._RequestId = RequestId
|
|
39052
|
+
|
|
39053
|
+
|
|
39054
|
+
def _deserialize(self, params):
|
|
39055
|
+
self._TaskId = params.get("TaskId")
|
|
39056
|
+
self._RequestId = params.get("RequestId")
|
|
39057
|
+
|
|
39058
|
+
|
|
37620
39059
|
class RemoveBandwidthPackageResourcesRequest(AbstractModel):
|
|
37621
39060
|
"""RemoveBandwidthPackageResources request structure.
|
|
37622
39061
|
|