tencentcloud-sdk-python 3.0.1374__py2.py3-none-any.whl → 3.0.1376__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/models.py +14 -0
- tencentcloud/apm/v20210622/models.py +60 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/asr/v20190614/models.py +8 -0
- tencentcloud/bh/v20230418/models.py +4 -8
- tencentcloud/cat/v20180409/cat_client.py +23 -0
- tencentcloud/cat/v20180409/models.py +161 -0
- tencentcloud/cfs/v20190719/models.py +19 -0
- tencentcloud/clb/v20180317/clb_client.py +17 -9
- tencentcloud/clb/v20180317/errorcodes.py +3 -0
- tencentcloud/clb/v20180317/models.py +232 -98
- tencentcloud/cloudaudit/v20190319/models.py +0 -64
- tencentcloud/config/v20220802/models.py +0 -150
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +113 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +23 -0
- tencentcloud/dsgc/v20190723/models.py +384 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +25 -0
- tencentcloud/hunyuan/v20230901/models.py +310 -0
- tencentcloud/mongodb/v20190725/models.py +4 -0
- tencentcloud/ocr/v20181119/models.py +20 -2
- tencentcloud/organization/v20210331/models.py +0 -12
- tencentcloud/partners/v20180321/models.py +266 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/postgres/v20170312/models.py +2 -2
- tencentcloud/tdmq/v20200217/models.py +185 -15
- tencentcloud/teo/v20220901/errorcodes.py +12 -0
- tencentcloud/teo/v20220901/models.py +4 -4
- tencentcloud/thpc/v20230321/errorcodes.py +9 -0
- tencentcloud/thpc/v20230321/models.py +2 -2
- tencentcloud/trocket/v20230308/models.py +190 -12
- tencentcloud/trocket/v20230308/trocket_client.py +0 -1
- tencentcloud/vpc/v20170312/models.py +136 -154
- tencentcloud/vpc/v20170312/vpc_client.py +4 -4
- tencentcloud/waf/v20180125/models.py +79 -0
- tencentcloud/waf/v20180125/waf_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +2018 -165
- tencentcloud/wedata/v20210820/wedata_client.py +144 -5
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1374.dist-info → tencentcloud_sdk_python-3.0.1376.dist-info}/top_level.txt +0 -0
@@ -685,9 +685,9 @@ class Address(AbstractModel):
|
|
685
685
|
:type InstanceId: str
|
686
686
|
:param _CreatedTime: 创建时间。按照`ISO8601`标准表示,并且使用`UTC`时间。格式为:`YYYY-MM-DDThh:mm:ssZ`。
|
687
687
|
:type CreatedTime: str
|
688
|
-
:param _NetworkInterfaceId: 绑定的弹性网卡ID
|
688
|
+
:param _NetworkInterfaceId: 绑定的弹性网卡ID,null表示没有绑定弹性网卡。
|
689
689
|
:type NetworkInterfaceId: str
|
690
|
-
:param _PrivateAddressIp: 绑定的资源内网ip
|
690
|
+
:param _PrivateAddressIp: 绑定的资源内网ip,null表示没有绑定资源内网ip。
|
691
691
|
:type PrivateAddressIp: str
|
692
692
|
:param _IsArrears: 资源隔离状态。true表示eip处于隔离状态,false表示资源处于未隔离状态
|
693
693
|
:type IsArrears: bool
|
@@ -701,9 +701,11 @@ class Address(AbstractModel):
|
|
701
701
|
:type CascadeRelease: bool
|
702
702
|
:param _EipAlgType: EIP ALG开启的协议类型。
|
703
703
|
:type EipAlgType: :class:`tencentcloud.vpc.v20170312.models.AlgType`
|
704
|
-
:param _InternetServiceProvider: 弹性公网IP的运营商信息,当前可能返回值包括"CMCC","CTCC","CUCC","BGP"
|
704
|
+
:param _InternetServiceProvider: 弹性公网IP的运营商信息,当前可能返回值包括"CMCC"(移动),"CTCC"(电信),"CUCC"(联通),"BGP"(常规BGP)。
|
705
705
|
:type InternetServiceProvider: str
|
706
|
-
:param _LocalBgp: 是否本地带宽EIP
|
706
|
+
:param _LocalBgp: 是否本地带宽EIP,可选值:
|
707
|
+
<li>true:本地带宽EIP</li>
|
708
|
+
<li>false:非本地带宽EIP</li>
|
707
709
|
:type LocalBgp: bool
|
708
710
|
:param _Bandwidth: 弹性公网IP的带宽值。注意,传统账户类型账户的弹性公网IP没有带宽属性,值为空。
|
709
711
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -723,10 +725,19 @@ class Address(AbstractModel):
|
|
723
725
|
:type InternetChargeType: str
|
724
726
|
:param _TagSet: 弹性公网IP关联的标签列表。
|
725
727
|
:type TagSet: list of Tag
|
726
|
-
:param _DeadlineDate: 到期时间。
|
728
|
+
:param _DeadlineDate: 预付费包月带宽IP到期时间。
|
729
|
+
时间格式:YYYY-MM-DDThh:mm:ssZ
|
727
730
|
注意:此字段可能返回 null,表示取不到有效值。
|
728
731
|
:type DeadlineDate: str
|
729
|
-
:param _InstanceType: EIP
|
732
|
+
:param _InstanceType: EIP绑定的实例类型。可选值:
|
733
|
+
<li>CVM:云服务器</li>
|
734
|
+
<li>NAT:NAT 网关</li>
|
735
|
+
<li>HAVIP:高可用虚拟IP</li>
|
736
|
+
<li>ENI:弹性网卡</li>
|
737
|
+
<li>CLB:内网CLB</li>
|
738
|
+
<li>DHCPIP:弹性内网IP</li>
|
739
|
+
|
740
|
+
|
730
741
|
注意:此字段可能返回 null,表示取不到有效值。
|
731
742
|
:type InstanceType: str
|
732
743
|
:param _Egress: 静态单线IP网络出口
|
@@ -842,7 +853,7 @@ class Address(AbstractModel):
|
|
842
853
|
|
843
854
|
@property
|
844
855
|
def NetworkInterfaceId(self):
|
845
|
-
"""绑定的弹性网卡ID
|
856
|
+
"""绑定的弹性网卡ID,null表示没有绑定弹性网卡。
|
846
857
|
:rtype: str
|
847
858
|
"""
|
848
859
|
return self._NetworkInterfaceId
|
@@ -853,7 +864,7 @@ class Address(AbstractModel):
|
|
853
864
|
|
854
865
|
@property
|
855
866
|
def PrivateAddressIp(self):
|
856
|
-
"""绑定的资源内网ip
|
867
|
+
"""绑定的资源内网ip,null表示没有绑定资源内网ip。
|
857
868
|
:rtype: str
|
858
869
|
"""
|
859
870
|
return self._PrivateAddressIp
|
@@ -930,7 +941,7 @@ class Address(AbstractModel):
|
|
930
941
|
|
931
942
|
@property
|
932
943
|
def InternetServiceProvider(self):
|
933
|
-
"""弹性公网IP的运营商信息,当前可能返回值包括"CMCC","CTCC","CUCC","BGP"
|
944
|
+
"""弹性公网IP的运营商信息,当前可能返回值包括"CMCC"(移动),"CTCC"(电信),"CUCC"(联通),"BGP"(常规BGP)。
|
934
945
|
:rtype: str
|
935
946
|
"""
|
936
947
|
return self._InternetServiceProvider
|
@@ -941,7 +952,9 @@ class Address(AbstractModel):
|
|
941
952
|
|
942
953
|
@property
|
943
954
|
def LocalBgp(self):
|
944
|
-
"""是否本地带宽EIP
|
955
|
+
"""是否本地带宽EIP,可选值:
|
956
|
+
<li>true:本地带宽EIP</li>
|
957
|
+
<li>false:非本地带宽EIP</li>
|
945
958
|
:rtype: bool
|
946
959
|
"""
|
947
960
|
return self._LocalBgp
|
@@ -997,7 +1010,8 @@ class Address(AbstractModel):
|
|
997
1010
|
|
998
1011
|
@property
|
999
1012
|
def DeadlineDate(self):
|
1000
|
-
"""到期时间。
|
1013
|
+
"""预付费包月带宽IP到期时间。
|
1014
|
+
时间格式:YYYY-MM-DDThh:mm:ssZ
|
1001
1015
|
注意:此字段可能返回 null,表示取不到有效值。
|
1002
1016
|
:rtype: str
|
1003
1017
|
"""
|
@@ -1009,7 +1023,15 @@ class Address(AbstractModel):
|
|
1009
1023
|
|
1010
1024
|
@property
|
1011
1025
|
def InstanceType(self):
|
1012
|
-
"""EIP
|
1026
|
+
"""EIP绑定的实例类型。可选值:
|
1027
|
+
<li>CVM:云服务器</li>
|
1028
|
+
<li>NAT:NAT 网关</li>
|
1029
|
+
<li>HAVIP:高可用虚拟IP</li>
|
1030
|
+
<li>ENI:弹性网卡</li>
|
1031
|
+
<li>CLB:内网CLB</li>
|
1032
|
+
<li>DHCPIP:弹性内网IP</li>
|
1033
|
+
|
1034
|
+
|
1013
1035
|
注意:此字段可能返回 null,表示取不到有效值。
|
1014
1036
|
:rtype: str
|
1015
1037
|
"""
|
@@ -1787,9 +1809,13 @@ class AlgType(AbstractModel):
|
|
1787
1809
|
|
1788
1810
|
def __init__(self):
|
1789
1811
|
r"""
|
1790
|
-
:param _Ftp: Ftp协议Alg
|
1812
|
+
:param _Ftp: Ftp协议Alg功能是否开启,可选值:
|
1813
|
+
<li>true:开启Ftp协议Alg功能</li>
|
1814
|
+
<li>false:不开启Ftp协议Alg功能</li>
|
1791
1815
|
:type Ftp: bool
|
1792
|
-
:param _Sip: Sip协议Alg
|
1816
|
+
:param _Sip: Sip协议Alg功能是否开启,可选值:
|
1817
|
+
<li>true:开启Sip协议Alg功能</li>
|
1818
|
+
<li>false:不开启Sip协议Alg功能</li>
|
1793
1819
|
:type Sip: bool
|
1794
1820
|
"""
|
1795
1821
|
self._Ftp = None
|
@@ -1797,7 +1823,9 @@ class AlgType(AbstractModel):
|
|
1797
1823
|
|
1798
1824
|
@property
|
1799
1825
|
def Ftp(self):
|
1800
|
-
"""Ftp协议Alg
|
1826
|
+
"""Ftp协议Alg功能是否开启,可选值:
|
1827
|
+
<li>true:开启Ftp协议Alg功能</li>
|
1828
|
+
<li>false:不开启Ftp协议Alg功能</li>
|
1801
1829
|
:rtype: bool
|
1802
1830
|
"""
|
1803
1831
|
return self._Ftp
|
@@ -1808,7 +1836,9 @@ class AlgType(AbstractModel):
|
|
1808
1836
|
|
1809
1837
|
@property
|
1810
1838
|
def Sip(self):
|
1811
|
-
"""Sip协议Alg
|
1839
|
+
"""Sip协议Alg功能是否开启,可选值:
|
1840
|
+
<li>true:开启Sip协议Alg功能</li>
|
1841
|
+
<li>false:不开启Sip协议Alg功能</li>
|
1812
1842
|
:rtype: bool
|
1813
1843
|
"""
|
1814
1844
|
return self._Sip
|
@@ -1865,10 +1895,9 @@ class AllocateAddressesRequest(AbstractModel):
|
|
1865
1895
|
:type AddressChargePrepaid: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
1866
1896
|
:param _AddressType: EIP类型。各种EIP类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:EIP。
|
1867
1897
|
<li>EIP:弹性公网 IP。 </li>
|
1868
|
-
<li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP。</li>
|
1869
|
-
<li>HighQualityEIP:精品 IP
|
1870
|
-
<li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP。</li>
|
1871
|
-
|
1898
|
+
<li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP,详情可见Anycast公网加速[购买指南](https://cloud.tencent.com/document/product/644/12617)。</li>
|
1899
|
+
<li>HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
|
1900
|
+
<li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见弹性公网IP[产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li>
|
1872
1901
|
:type AddressType: str
|
1873
1902
|
:param _AnycastZone: Anycast发布域。
|
1874
1903
|
<ul style="margin:0"><li>已开通Anycast公网加速白名单的用户,可选值:<ul><li>ANYCAST_ZONE_GLOBAL:全球发布域(需要额外开通Anycast全球加速白名单)</li><li>ANYCAST_ZONE_OVERSEAS:境外发布域</li><li><b>[已废弃]</b> ANYCAST_ZONE_A:发布域A(已更新为全球发布域)</li><li><b>[已废弃]</b> ANYCAST_ZONE_B:发布域B(已更新为全球发布域)</li></ul>默认值:ANYCAST_ZONE_OVERSEAS。</li></ul>
|
@@ -1993,10 +2022,9 @@ AnycastEIP是否用于绑定负载均衡。
|
|
1993
2022
|
def AddressType(self):
|
1994
2023
|
"""EIP类型。各种EIP类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:EIP。
|
1995
2024
|
<li>EIP:弹性公网 IP。 </li>
|
1996
|
-
<li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP。</li>
|
1997
|
-
<li>HighQualityEIP:精品 IP
|
1998
|
-
<li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP。</li>
|
1999
|
-
|
2025
|
+
<li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP,详情可见Anycast公网加速[购买指南](https://cloud.tencent.com/document/product/644/12617)。</li>
|
2026
|
+
<li>HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
|
2027
|
+
<li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见弹性公网IP[产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li>
|
2000
2028
|
:rtype: str
|
2001
2029
|
"""
|
2002
2030
|
return self._AddressType
|
@@ -3203,7 +3231,6 @@ class AssistantCidr(AbstractModel):
|
|
3203
3231
|
:param _AssistantType: 辅助CIDR类型(0:普通辅助CIDR,1:容器辅助CIDR),默认都是0。
|
3204
3232
|
:type AssistantType: int
|
3205
3233
|
:param _SubnetSet: 辅助CIDR拆分的子网。
|
3206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3207
3234
|
:type SubnetSet: list of Subnet
|
3208
3235
|
"""
|
3209
3236
|
self._VpcId = None
|
@@ -3247,7 +3274,6 @@ class AssistantCidr(AbstractModel):
|
|
3247
3274
|
@property
|
3248
3275
|
def SubnetSet(self):
|
3249
3276
|
"""辅助CIDR拆分的子网。
|
3250
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3251
3277
|
:rtype: list of Subnet
|
3252
3278
|
"""
|
3253
3279
|
return self._SubnetSet
|
@@ -3611,11 +3637,11 @@ class AssociateIPv6AddressRequest(AbstractModel):
|
|
3611
3637
|
|
3612
3638
|
def __init__(self):
|
3613
3639
|
r"""
|
3614
|
-
:param _IPv6AddressId: 弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。
|
3640
|
+
:param _IPv6AddressId: 弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
3615
3641
|
:type IPv6AddressId: str
|
3616
|
-
:param _NetworkInterfaceId: 要绑定的弹性网卡 ID。 弹性网卡 ID 形如:eni-11112222。NetworkInterfaceId 与 InstanceId 不可同时指定。弹性网卡 ID
|
3642
|
+
:param _NetworkInterfaceId: 要绑定的弹性网卡 ID。 弹性网卡 ID 形如:eni-11112222。NetworkInterfaceId 与 InstanceId 不可同时指定。弹性网卡 ID 可通过登录[控制台](https://console.cloud.tencent.com/vpc/eni?rid=1)查询,也可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/api/215/15817)接口返回值中的networkInterfaceId获取。
|
3617
3643
|
:type NetworkInterfaceId: str
|
3618
|
-
:param _PrivateIPv6Address: 要绑定的内网 IPv6。如果指定了 NetworkInterfaceId 则也必须指定 PrivateIPv6Address ,表示将 EIP 绑定到指定弹性网卡的指定内网 IP 上。同时要确保指定的 PrivateIPv6Address 是指定的 NetworkInterfaceId 上的一个内网 IPv6。指定弹性网卡的内网 IPv6
|
3644
|
+
:param _PrivateIPv6Address: 要绑定的内网 IPv6。如果指定了 NetworkInterfaceId 则也必须指定 PrivateIPv6Address ,表示将 EIP 绑定到指定弹性网卡的指定内网 IP 上。同时要确保指定的 PrivateIPv6Address 是指定的 NetworkInterfaceId 上的一个内网 IPv6。指定弹性网卡的内网 IPv6 可通过登录[控制台](https://console.cloud.tencent.com/vpc/eni?rid=1)查询,也可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/api/215/15817)接口返回值中的Ipv6AddressSet.Address获取。
|
3619
3645
|
:type PrivateIPv6Address: str
|
3620
3646
|
"""
|
3621
3647
|
self._IPv6AddressId = None
|
@@ -3624,7 +3650,7 @@ class AssociateIPv6AddressRequest(AbstractModel):
|
|
3624
3650
|
|
3625
3651
|
@property
|
3626
3652
|
def IPv6AddressId(self):
|
3627
|
-
"""弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。
|
3653
|
+
"""弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
3628
3654
|
:rtype: str
|
3629
3655
|
"""
|
3630
3656
|
return self._IPv6AddressId
|
@@ -3635,7 +3661,7 @@ class AssociateIPv6AddressRequest(AbstractModel):
|
|
3635
3661
|
|
3636
3662
|
@property
|
3637
3663
|
def NetworkInterfaceId(self):
|
3638
|
-
"""要绑定的弹性网卡 ID。 弹性网卡 ID 形如:eni-11112222。NetworkInterfaceId 与 InstanceId 不可同时指定。弹性网卡 ID
|
3664
|
+
"""要绑定的弹性网卡 ID。 弹性网卡 ID 形如:eni-11112222。NetworkInterfaceId 与 InstanceId 不可同时指定。弹性网卡 ID 可通过登录[控制台](https://console.cloud.tencent.com/vpc/eni?rid=1)查询,也可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/api/215/15817)接口返回值中的networkInterfaceId获取。
|
3639
3665
|
:rtype: str
|
3640
3666
|
"""
|
3641
3667
|
return self._NetworkInterfaceId
|
@@ -3646,7 +3672,7 @@ class AssociateIPv6AddressRequest(AbstractModel):
|
|
3646
3672
|
|
3647
3673
|
@property
|
3648
3674
|
def PrivateIPv6Address(self):
|
3649
|
-
"""要绑定的内网 IPv6。如果指定了 NetworkInterfaceId 则也必须指定 PrivateIPv6Address ,表示将 EIP 绑定到指定弹性网卡的指定内网 IP 上。同时要确保指定的 PrivateIPv6Address 是指定的 NetworkInterfaceId 上的一个内网 IPv6。指定弹性网卡的内网 IPv6
|
3675
|
+
"""要绑定的内网 IPv6。如果指定了 NetworkInterfaceId 则也必须指定 PrivateIPv6Address ,表示将 EIP 绑定到指定弹性网卡的指定内网 IP 上。同时要确保指定的 PrivateIPv6Address 是指定的 NetworkInterfaceId 上的一个内网 IPv6。指定弹性网卡的内网 IPv6 可通过登录[控制台](https://console.cloud.tencent.com/vpc/eni?rid=1)查询,也可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/api/215/15817)接口返回值中的Ipv6AddressSet.Address获取。
|
3650
3676
|
:rtype: str
|
3651
3677
|
"""
|
3652
3678
|
return self._PrivateIPv6Address
|
@@ -22236,14 +22262,14 @@ class DescribeAddressBandwidthRangeRequest(AbstractModel):
|
|
22236
22262
|
|
22237
22263
|
def __init__(self):
|
22238
22264
|
r"""
|
22239
|
-
:param _AddressIds: EIP资源ID列表,单次查询上限20。
|
22265
|
+
:param _AddressIds: EIP资源ID列表,单次查询上限20,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
22240
22266
|
:type AddressIds: list of str
|
22241
22267
|
"""
|
22242
22268
|
self._AddressIds = None
|
22243
22269
|
|
22244
22270
|
@property
|
22245
22271
|
def AddressIds(self):
|
22246
|
-
"""EIP资源ID列表,单次查询上限20。
|
22272
|
+
"""EIP资源ID列表,单次查询上限20,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
22247
22273
|
:rtype: list of str
|
22248
22274
|
"""
|
22249
22275
|
return self._AddressIds
|
@@ -27787,7 +27813,7 @@ class DescribeIPv6AddressesRequest(AbstractModel):
|
|
27787
27813
|
|
27788
27814
|
def __init__(self):
|
27789
27815
|
r"""
|
27790
|
-
:param _IPv6AddressIds: 标识 IPv6 的唯一 ID
|
27816
|
+
:param _IPv6AddressIds: 标识 IPv6 的唯一 ID 列。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
27791
27817
|
|
27792
27818
|
- 传统弹性公网 IPv6 唯一 ID 形如:`eip-11112222`
|
27793
27819
|
- 弹性公网 IPv6 唯一 ID 形如:`eipv6-11112222`
|
@@ -27803,15 +27829,18 @@ class DescribeIPv6AddressesRequest(AbstractModel):
|
|
27803
27829
|
- charge-type - String - 是否必填:否 - (过滤条件)按照计费类型过滤。
|
27804
27830
|
- private-ipv6-address - String - 是否必填:否 - (过滤条件)按照绑定的内网 IPv6 地址过滤。
|
27805
27831
|
- egress - String - 是否必填:否 - (过滤条件)按照出口过滤。
|
27806
|
-
- address-type - String - 是否必填:否 - (过滤条件)按照IPv6类型 进行过滤。可选值:'EIP6','EIPv6','WanIPv6','HighQualityEIPv6'。默认值是'EIPv6'。
|
27807
|
-
- address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC'
|
27808
|
-
- address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING'
|
27832
|
+
- address-type - String - 是否必填:否 - (过滤条件)按照IPv6类型 进行过滤。可选值:'EIP6':传统弹性公网 IPv6,'EIPv6':弹性公网 IPv6,'WanIPv6':普通公网 IPv6,'HighQualityEIPv6':精品弹性公网 IPv6。默认值是'EIPv6'。
|
27833
|
+
- address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP':常规BGP,'CMCC':移动,'CUCC':联通, 'CTCC':电信。
|
27834
|
+
- address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING':创建中,'BINDING':绑定中,'BIND':已绑,'UNBINDING':解绑中,'UNBIND':未绑定,'OFFLINING':下线中,'BIND_ENI':绑定了ENI,'PRIVATE':仅开通内网的IPv6。
|
27809
27835
|
- address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。
|
27810
27836
|
- tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。
|
27811
27837
|
- tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。
|
27812
27838
|
- tag:tag-key - String - 是否必填:否 - (过滤条件)按照标签键值对进行过滤。tag-key使用具体的标签键进行替换。
|
27813
27839
|
:type Filters: list of Filter
|
27814
|
-
:param _Traditional: 是否查询传统型IPv6
|
27840
|
+
:param _Traditional: 是否查询传统型IPv6地址信息。可选值:
|
27841
|
+
<li>True:查询传统型IPv6地址信息</li>
|
27842
|
+
<li>False:不查询传统型IPv6地址信息</li>
|
27843
|
+
默认值:False
|
27815
27844
|
:type Traditional: bool
|
27816
27845
|
:param _Offset: 偏移量,默认为0。关于Offset的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/11646)中的相关小节。
|
27817
27846
|
:type Offset: int
|
@@ -27826,7 +27855,7 @@ class DescribeIPv6AddressesRequest(AbstractModel):
|
|
27826
27855
|
|
27827
27856
|
@property
|
27828
27857
|
def IPv6AddressIds(self):
|
27829
|
-
"""标识 IPv6 的唯一 ID
|
27858
|
+
"""标识 IPv6 的唯一 ID 列。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
27830
27859
|
|
27831
27860
|
- 传统弹性公网 IPv6 唯一 ID 形如:`eip-11112222`
|
27832
27861
|
- 弹性公网 IPv6 唯一 ID 形如:`eipv6-11112222`
|
@@ -27851,9 +27880,9 @@ class DescribeIPv6AddressesRequest(AbstractModel):
|
|
27851
27880
|
- charge-type - String - 是否必填:否 - (过滤条件)按照计费类型过滤。
|
27852
27881
|
- private-ipv6-address - String - 是否必填:否 - (过滤条件)按照绑定的内网 IPv6 地址过滤。
|
27853
27882
|
- egress - String - 是否必填:否 - (过滤条件)按照出口过滤。
|
27854
|
-
- address-type - String - 是否必填:否 - (过滤条件)按照IPv6类型 进行过滤。可选值:'EIP6','EIPv6','WanIPv6','HighQualityEIPv6'。默认值是'EIPv6'。
|
27855
|
-
- address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC'
|
27856
|
-
- address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING'
|
27883
|
+
- address-type - String - 是否必填:否 - (过滤条件)按照IPv6类型 进行过滤。可选值:'EIP6':传统弹性公网 IPv6,'EIPv6':弹性公网 IPv6,'WanIPv6':普通公网 IPv6,'HighQualityEIPv6':精品弹性公网 IPv6。默认值是'EIPv6'。
|
27884
|
+
- address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP':常规BGP,'CMCC':移动,'CUCC':联通, 'CTCC':电信。
|
27885
|
+
- address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING':创建中,'BINDING':绑定中,'BIND':已绑,'UNBINDING':解绑中,'UNBIND':未绑定,'OFFLINING':下线中,'BIND_ENI':绑定了ENI,'PRIVATE':仅开通内网的IPv6。
|
27857
27886
|
- address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。
|
27858
27887
|
- tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。
|
27859
27888
|
- tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。
|
@@ -27868,7 +27897,10 @@ class DescribeIPv6AddressesRequest(AbstractModel):
|
|
27868
27897
|
|
27869
27898
|
@property
|
27870
27899
|
def Traditional(self):
|
27871
|
-
"""是否查询传统型IPv6
|
27900
|
+
"""是否查询传统型IPv6地址信息。可选值:
|
27901
|
+
<li>True:查询传统型IPv6地址信息</li>
|
27902
|
+
<li>False:不查询传统型IPv6地址信息</li>
|
27903
|
+
默认值:False
|
27872
27904
|
:rtype: bool
|
27873
27905
|
"""
|
27874
27906
|
return self._Traditional
|
@@ -40334,9 +40366,10 @@ class DisassociateIPv6AddressRequest(AbstractModel):
|
|
40334
40366
|
|
40335
40367
|
def __init__(self):
|
40336
40368
|
r"""
|
40337
|
-
:param _IPv6AddressId: 弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。
|
40369
|
+
:param _IPv6AddressId: 弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
40338
40370
|
:type IPv6AddressId: str
|
40339
|
-
:param _KeepBindWithEni:
|
40371
|
+
:param _KeepBindWithEni: 解绑时是否保持绑定弹性网卡。可选值:true、false。
|
40372
|
+
默认值:false
|
40340
40373
|
:type KeepBindWithEni: bool
|
40341
40374
|
"""
|
40342
40375
|
self._IPv6AddressId = None
|
@@ -40344,7 +40377,7 @@ class DisassociateIPv6AddressRequest(AbstractModel):
|
|
40344
40377
|
|
40345
40378
|
@property
|
40346
40379
|
def IPv6AddressId(self):
|
40347
|
-
"""弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。
|
40380
|
+
"""弹性公网IPv6唯一ID,EIPv6 唯一 ID 形如:eipv6-11112222。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
40348
40381
|
:rtype: str
|
40349
40382
|
"""
|
40350
40383
|
return self._IPv6AddressId
|
@@ -40355,7 +40388,8 @@ class DisassociateIPv6AddressRequest(AbstractModel):
|
|
40355
40388
|
|
40356
40389
|
@property
|
40357
40390
|
def KeepBindWithEni(self):
|
40358
|
-
"""
|
40391
|
+
"""解绑时是否保持绑定弹性网卡。可选值:true、false。
|
40392
|
+
默认值:false
|
40359
40393
|
:rtype: bool
|
40360
40394
|
"""
|
40361
40395
|
return self._KeepBindWithEni
|
@@ -41594,7 +41628,7 @@ class EndPoint(AbstractModel):
|
|
41594
41628
|
r"""
|
41595
41629
|
:param _EndPointId: 终端节点ID。
|
41596
41630
|
:type EndPointId: str
|
41597
|
-
:param _VpcId:
|
41631
|
+
:param _VpcId: VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
41598
41632
|
:type VpcId: str
|
41599
41633
|
:param _SubnetId: 子网ID。
|
41600
41634
|
:type SubnetId: str
|
@@ -41612,18 +41646,15 @@ class EndPoint(AbstractModel):
|
|
41612
41646
|
:type EndPointVip: str
|
41613
41647
|
:param _State: 终端节点状态,ACTIVE:可用,PENDING:待接受,ACCEPTING:接受中,REJECTED:已拒绝,FAILED:失败。
|
41614
41648
|
:type State: str
|
41615
|
-
:param _CreateTime:
|
41649
|
+
:param _CreateTime: 创建时间。格式:YYYY-MM-DD HH:MM:SS。
|
41616
41650
|
:type CreateTime: str
|
41617
41651
|
:param _GroupSet: 终端节点绑定的安全组实例ID列表。
|
41618
41652
|
:type GroupSet: list of str
|
41619
41653
|
:param _ServiceName: 终端节点服务名称。
|
41620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41621
41654
|
:type ServiceName: str
|
41622
41655
|
:param _CdcId: CDC 集群唯一 ID
|
41623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41624
41656
|
:type CdcId: str
|
41625
41657
|
:param _TagSet: 标签键值对。
|
41626
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41627
41658
|
:type TagSet: list of Tag
|
41628
41659
|
"""
|
41629
41660
|
self._EndPointId = None
|
@@ -41655,7 +41686,7 @@ class EndPoint(AbstractModel):
|
|
41655
41686
|
|
41656
41687
|
@property
|
41657
41688
|
def VpcId(self):
|
41658
|
-
"""
|
41689
|
+
"""VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
41659
41690
|
:rtype: str
|
41660
41691
|
"""
|
41661
41692
|
return self._VpcId
|
@@ -41754,7 +41785,7 @@ class EndPoint(AbstractModel):
|
|
41754
41785
|
|
41755
41786
|
@property
|
41756
41787
|
def CreateTime(self):
|
41757
|
-
"""
|
41788
|
+
"""创建时间。格式:YYYY-MM-DD HH:MM:SS。
|
41758
41789
|
:rtype: str
|
41759
41790
|
"""
|
41760
41791
|
return self._CreateTime
|
@@ -41777,7 +41808,6 @@ class EndPoint(AbstractModel):
|
|
41777
41808
|
@property
|
41778
41809
|
def ServiceName(self):
|
41779
41810
|
"""终端节点服务名称。
|
41780
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41781
41811
|
:rtype: str
|
41782
41812
|
"""
|
41783
41813
|
return self._ServiceName
|
@@ -41789,7 +41819,6 @@ class EndPoint(AbstractModel):
|
|
41789
41819
|
@property
|
41790
41820
|
def CdcId(self):
|
41791
41821
|
"""CDC 集群唯一 ID
|
41792
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41793
41822
|
:rtype: str
|
41794
41823
|
"""
|
41795
41824
|
return self._CdcId
|
@@ -41801,7 +41830,6 @@ class EndPoint(AbstractModel):
|
|
41801
41830
|
@property
|
41802
41831
|
def TagSet(self):
|
41803
41832
|
"""标签键值对。
|
41804
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41805
41833
|
:rtype: list of Tag
|
41806
41834
|
"""
|
41807
41835
|
return self._TagSet
|
@@ -41859,31 +41887,25 @@ class EndPointService(AbstractModel):
|
|
41859
41887
|
:type ServiceName: str
|
41860
41888
|
:param _ServiceVip: 后端服务的VIP。
|
41861
41889
|
:type ServiceVip: str
|
41862
|
-
:param _ServiceInstanceId: 后端服务的ID,比如lb-
|
41890
|
+
:param _ServiceInstanceId: 后端服务的ID,比如lb-lip4e6bp。
|
41863
41891
|
:type ServiceInstanceId: str
|
41864
41892
|
:param _AutoAcceptFlag: 是否自动接受。
|
41865
41893
|
:type AutoAcceptFlag: bool
|
41866
41894
|
:param _EndPointCount: 关联的终端节点个数。
|
41867
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41868
41895
|
:type EndPointCount: int
|
41869
41896
|
:param _EndPointSet: 终端节点对象数组。
|
41870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41871
41897
|
:type EndPointSet: list of EndPoint
|
41872
|
-
:param _CreateTime:
|
41898
|
+
:param _CreateTime: 创建时间。格式为YYYY-MM-DD HH:MM:SS字符串。
|
41873
41899
|
:type CreateTime: str
|
41874
|
-
:param _ServiceType: 挂载的PAAS服务类型,CLB
|
41900
|
+
:param _ServiceType: 挂载的PAAS服务类型,CLB(负载均衡),CDB(云数据库 MySQL),CRS(云数据库 Redis),GWLB(网关负载均衡)。
|
41875
41901
|
:type ServiceType: str
|
41876
41902
|
:param _CdcId: CDC 集群唯一 ID
|
41877
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41878
41903
|
:type CdcId: str
|
41879
|
-
:param _ServiceUin: Uin
|
41880
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41904
|
+
:param _ServiceUin: 终端节点服务Uin。
|
41881
41905
|
:type ServiceUin: str
|
41882
41906
|
:param _BusinessIpType: 服务IP类型
|
41883
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41884
41907
|
:type BusinessIpType: int
|
41885
41908
|
:param _TagSet: 标签键值对。
|
41886
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41887
41909
|
:type TagSet: list of Tag
|
41888
41910
|
"""
|
41889
41911
|
self._EndPointServiceId = None
|
@@ -41959,7 +41981,7 @@ class EndPointService(AbstractModel):
|
|
41959
41981
|
|
41960
41982
|
@property
|
41961
41983
|
def ServiceInstanceId(self):
|
41962
|
-
"""后端服务的ID,比如lb-
|
41984
|
+
"""后端服务的ID,比如lb-lip4e6bp。
|
41963
41985
|
:rtype: str
|
41964
41986
|
"""
|
41965
41987
|
return self._ServiceInstanceId
|
@@ -41982,7 +42004,6 @@ class EndPointService(AbstractModel):
|
|
41982
42004
|
@property
|
41983
42005
|
def EndPointCount(self):
|
41984
42006
|
"""关联的终端节点个数。
|
41985
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41986
42007
|
:rtype: int
|
41987
42008
|
"""
|
41988
42009
|
return self._EndPointCount
|
@@ -41994,7 +42015,6 @@ class EndPointService(AbstractModel):
|
|
41994
42015
|
@property
|
41995
42016
|
def EndPointSet(self):
|
41996
42017
|
"""终端节点对象数组。
|
41997
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41998
42018
|
:rtype: list of EndPoint
|
41999
42019
|
"""
|
42000
42020
|
return self._EndPointSet
|
@@ -42005,7 +42025,7 @@ class EndPointService(AbstractModel):
|
|
42005
42025
|
|
42006
42026
|
@property
|
42007
42027
|
def CreateTime(self):
|
42008
|
-
"""
|
42028
|
+
"""创建时间。格式为YYYY-MM-DD HH:MM:SS字符串。
|
42009
42029
|
:rtype: str
|
42010
42030
|
"""
|
42011
42031
|
return self._CreateTime
|
@@ -42016,7 +42036,7 @@ class EndPointService(AbstractModel):
|
|
42016
42036
|
|
42017
42037
|
@property
|
42018
42038
|
def ServiceType(self):
|
42019
|
-
"""挂载的PAAS服务类型,CLB
|
42039
|
+
"""挂载的PAAS服务类型,CLB(负载均衡),CDB(云数据库 MySQL),CRS(云数据库 Redis),GWLB(网关负载均衡)。
|
42020
42040
|
:rtype: str
|
42021
42041
|
"""
|
42022
42042
|
return self._ServiceType
|
@@ -42028,7 +42048,6 @@ class EndPointService(AbstractModel):
|
|
42028
42048
|
@property
|
42029
42049
|
def CdcId(self):
|
42030
42050
|
"""CDC 集群唯一 ID
|
42031
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42032
42051
|
:rtype: str
|
42033
42052
|
"""
|
42034
42053
|
return self._CdcId
|
@@ -42039,8 +42058,7 @@ class EndPointService(AbstractModel):
|
|
42039
42058
|
|
42040
42059
|
@property
|
42041
42060
|
def ServiceUin(self):
|
42042
|
-
"""Uin
|
42043
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42061
|
+
"""终端节点服务Uin。
|
42044
42062
|
:rtype: str
|
42045
42063
|
"""
|
42046
42064
|
return self._ServiceUin
|
@@ -42052,7 +42070,6 @@ class EndPointService(AbstractModel):
|
|
42052
42070
|
@property
|
42053
42071
|
def BusinessIpType(self):
|
42054
42072
|
"""服务IP类型
|
42055
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42056
42073
|
:rtype: int
|
42057
42074
|
"""
|
42058
42075
|
return self._BusinessIpType
|
@@ -42064,7 +42081,6 @@ class EndPointService(AbstractModel):
|
|
42064
42081
|
@property
|
42065
42082
|
def TagSet(self):
|
42066
42083
|
"""标签键值对。
|
42067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42068
42084
|
:rtype: list of Tag
|
42069
42085
|
"""
|
42070
42086
|
return self._TagSet
|
@@ -44513,7 +44529,8 @@ class InquiryPriceAllocateAddressesRequest(AbstractModel):
|
|
44513
44529
|
<ul style="margin:0"><li>账号为标准账户类型的用户,可选值:<ul>
|
44514
44530
|
<li>BANDWIDTH_POSTPAID_BY_HOUR:带宽按小时后付费</li>
|
44515
44531
|
<li>BANDWIDTH_PREPAID_BY_MONTH:包月按带宽预付费</li>
|
44516
|
-
<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li
|
44532
|
+
<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li>
|
44533
|
+
</ul></li>
|
44517
44534
|
</ul>
|
44518
44535
|
:type InternetChargeType: str
|
44519
44536
|
:param _InternetMaxBandwidthOut: EIP出带宽上限,单位:Mbps。
|
@@ -44522,17 +44539,14 @@ class InquiryPriceAllocateAddressesRequest(AbstractModel):
|
|
44522
44539
|
<li>BANDWIDTH_PREPAID_BY_MONTH:1 Mbps 至 200 Mbps</li>
|
44523
44540
|
<li>TRAFFIC_POSTPAID_BY_HOUR:1 Mbps 至 100 Mbps</li></ul>默认值:1 Mbps。</li>
|
44524
44541
|
<li>账号为传统账户类型的用户,EIP出带宽上限取决于与其绑定的实例的公网出带宽上限,无需传递此参数。</li></ul>
|
44542
|
+
|
44525
44543
|
:type InternetMaxBandwidthOut: int
|
44526
44544
|
:param _AddressChargePrepaid: 包月按带宽预付费EIP的计费参数。EIP为包月按带宽预付费时,该参数必传,其余场景不需传递
|
44527
44545
|
:type AddressChargePrepaid: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
44528
44546
|
:param _AddressType: EIP类型。默认值:EIP。
|
44529
|
-
|
44530
|
-
<ul style="margin:0"><li>精品IP,可选值:<ul><li>HighQualityEIP:精品IP</li></ul
|
44531
|
-
|
44532
|
-
<li>AntiDDoSEIP:高防IP</li>
|
44533
|
-
</ul>
|
44534
|
-
</li>
|
44535
|
-
</ul>
|
44547
|
+
<ul style="margin:0"><li>弹性公网IP,可选值:<ul><li>EIP:弹性公网IP</li></ul></li></ul>
|
44548
|
+
<ul style="margin:0"><li>精品IP,可选值:<ul><li>HighQualityEIP:精品IP</li></ul>注意:仅新加坡和中国香港支持精品IP。</li></ul>
|
44549
|
+
<ul style="margin:0"><li>高防IP,可选值:<ul><li>AntiDDoSEIP:高防IP</li></ul>注意:仅部分地域支持高防IP,详情可见弹性公网IP[产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li></ul>
|
44536
44550
|
:type AddressType: str
|
44537
44551
|
"""
|
44538
44552
|
self._InternetChargeType = None
|
@@ -44546,7 +44560,8 @@ class InquiryPriceAllocateAddressesRequest(AbstractModel):
|
|
44546
44560
|
<ul style="margin:0"><li>账号为标准账户类型的用户,可选值:<ul>
|
44547
44561
|
<li>BANDWIDTH_POSTPAID_BY_HOUR:带宽按小时后付费</li>
|
44548
44562
|
<li>BANDWIDTH_PREPAID_BY_MONTH:包月按带宽预付费</li>
|
44549
|
-
<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li
|
44563
|
+
<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li>
|
44564
|
+
</ul></li>
|
44550
44565
|
</ul>
|
44551
44566
|
:rtype: str
|
44552
44567
|
"""
|
@@ -44564,6 +44579,7 @@ class InquiryPriceAllocateAddressesRequest(AbstractModel):
|
|
44564
44579
|
<li>BANDWIDTH_PREPAID_BY_MONTH:1 Mbps 至 200 Mbps</li>
|
44565
44580
|
<li>TRAFFIC_POSTPAID_BY_HOUR:1 Mbps 至 100 Mbps</li></ul>默认值:1 Mbps。</li>
|
44566
44581
|
<li>账号为传统账户类型的用户,EIP出带宽上限取决于与其绑定的实例的公网出带宽上限,无需传递此参数。</li></ul>
|
44582
|
+
|
44567
44583
|
:rtype: int
|
44568
44584
|
"""
|
44569
44585
|
return self._InternetMaxBandwidthOut
|
@@ -44586,13 +44602,9 @@ class InquiryPriceAllocateAddressesRequest(AbstractModel):
|
|
44586
44602
|
@property
|
44587
44603
|
def AddressType(self):
|
44588
44604
|
"""EIP类型。默认值:EIP。
|
44589
|
-
|
44590
|
-
<ul style="margin:0"><li>精品IP,可选值:<ul><li>HighQualityEIP:精品IP</li></ul
|
44591
|
-
|
44592
|
-
<li>AntiDDoSEIP:高防IP</li>
|
44593
|
-
</ul>
|
44594
|
-
</li>
|
44595
|
-
</ul>
|
44605
|
+
<ul style="margin:0"><li>弹性公网IP,可选值:<ul><li>EIP:弹性公网IP</li></ul></li></ul>
|
44606
|
+
<ul style="margin:0"><li>精品IP,可选值:<ul><li>HighQualityEIP:精品IP</li></ul>注意:仅新加坡和中国香港支持精品IP。</li></ul>
|
44607
|
+
<ul style="margin:0"><li>高防IP,可选值:<ul><li>AntiDDoSEIP:高防IP</li></ul>注意:仅部分地域支持高防IP,详情可见弹性公网IP[产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li></ul>
|
44596
44608
|
:rtype: str
|
44597
44609
|
"""
|
44598
44610
|
return self._AddressType
|
@@ -44814,9 +44826,9 @@ class InquiryPriceModifyAddressesBandwidthRequest(AbstractModel):
|
|
44814
44826
|
|
44815
44827
|
def __init__(self):
|
44816
44828
|
r"""
|
44817
|
-
:param _AddressIds: EIP唯一ID
|
44829
|
+
:param _AddressIds: EIP唯一ID,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
44818
44830
|
:type AddressIds: list of str
|
44819
|
-
:param _InternetMaxBandwidthOut:
|
44831
|
+
:param _InternetMaxBandwidthOut: 新带宽值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
|
44820
44832
|
:type InternetMaxBandwidthOut: int
|
44821
44833
|
"""
|
44822
44834
|
self._AddressIds = None
|
@@ -44824,7 +44836,7 @@ class InquiryPriceModifyAddressesBandwidthRequest(AbstractModel):
|
|
44824
44836
|
|
44825
44837
|
@property
|
44826
44838
|
def AddressIds(self):
|
44827
|
-
"""EIP唯一ID
|
44839
|
+
"""EIP唯一ID,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
44828
44840
|
:rtype: list of str
|
44829
44841
|
"""
|
44830
44842
|
return self._AddressIds
|
@@ -44835,7 +44847,7 @@ class InquiryPriceModifyAddressesBandwidthRequest(AbstractModel):
|
|
44835
44847
|
|
44836
44848
|
@property
|
44837
44849
|
def InternetMaxBandwidthOut(self):
|
44838
|
-
"""
|
44850
|
+
"""新带宽值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
|
44839
44851
|
:rtype: int
|
44840
44852
|
"""
|
44841
44853
|
return self._InternetMaxBandwidthOut
|
@@ -44910,9 +44922,9 @@ class InquiryPriceRenewAddressesRequest(AbstractModel):
|
|
44910
44922
|
|
44911
44923
|
def __init__(self):
|
44912
44924
|
r"""
|
44913
|
-
:param _AddressIds: 续费资源实例ID。
|
44925
|
+
:param _AddressIds: 续费资源实例ID。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
44914
44926
|
:type AddressIds: list of str
|
44915
|
-
:param _AddressChargePrepaid: 包月按带宽预付费EIP的计费参数。EIP
|
44927
|
+
:param _AddressChargePrepaid: 包月按带宽预付费EIP的计费参数。EIP为包月按带宽预付费时,该参数必传,不支持其他计费模式。
|
44916
44928
|
:type AddressChargePrepaid: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
44917
44929
|
"""
|
44918
44930
|
self._AddressIds = None
|
@@ -44920,7 +44932,7 @@ class InquiryPriceRenewAddressesRequest(AbstractModel):
|
|
44920
44932
|
|
44921
44933
|
@property
|
44922
44934
|
def AddressIds(self):
|
44923
|
-
"""续费资源实例ID。
|
44935
|
+
"""续费资源实例ID。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
44924
44936
|
:rtype: list of str
|
44925
44937
|
"""
|
44926
44938
|
return self._AddressIds
|
@@ -44931,7 +44943,7 @@ class InquiryPriceRenewAddressesRequest(AbstractModel):
|
|
44931
44943
|
|
44932
44944
|
@property
|
44933
44945
|
def AddressChargePrepaid(self):
|
44934
|
-
"""包月按带宽预付费EIP的计费参数。EIP
|
44946
|
+
"""包月按带宽预付费EIP的计费参数。EIP为包月按带宽预付费时,该参数必传,不支持其他计费模式。
|
44935
44947
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
44936
44948
|
"""
|
44937
44949
|
return self._AddressChargePrepaid
|
@@ -45571,7 +45583,7 @@ class InternetPriceDetail(AbstractModel):
|
|
45571
45583
|
:type UnitPrice: float
|
45572
45584
|
:param _DiscountPrice: 折扣后的价格,单位:元。
|
45573
45585
|
:type DiscountPrice: float
|
45574
|
-
:param _ChargeUnit: 计价单元,可取值范围:<ul> <li>HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR)。</li></ul>
|
45586
|
+
:param _ChargeUnit: 计价单元,可取值范围:<ul> <li>HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR)。</li><li> MONTH :表示计价单元是按月来计算。当前涉及该计价单元的场景有:包月按带宽预付费(BANDWIDTH_PREPAID_BY_MONTH)。</li></ul>
|
45575
45587
|
:type ChargeUnit: str
|
45576
45588
|
:param _OriginalPrice: 原价,单位:元,仅预付费价格查询返回。
|
45577
45589
|
:type OriginalPrice: float
|
@@ -45605,7 +45617,7 @@ class InternetPriceDetail(AbstractModel):
|
|
45605
45617
|
|
45606
45618
|
@property
|
45607
45619
|
def ChargeUnit(self):
|
45608
|
-
"""计价单元,可取值范围:<ul> <li>HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR)。</li></ul>
|
45620
|
+
"""计价单元,可取值范围:<ul> <li>HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR)。</li><li> MONTH :表示计价单元是按月来计算。当前涉及该计价单元的场景有:包月按带宽预付费(BANDWIDTH_PREPAID_BY_MONTH)。</li></ul>
|
45609
45621
|
:rtype: str
|
45610
45622
|
"""
|
45611
45623
|
return self._ChargeUnit
|
@@ -47970,7 +47982,7 @@ class ModifyAddressesRenewFlagRequest(AbstractModel):
|
|
47970
47982
|
|
47971
47983
|
def __init__(self):
|
47972
47984
|
r"""
|
47973
|
-
:param _AddressIds: EIP唯一标识ID列表,形如'eip-xxxx'
|
47985
|
+
:param _AddressIds: EIP唯一标识ID列表,形如'eip-xxxx',可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47974
47986
|
:type AddressIds: list of str
|
47975
47987
|
:param _RenewFlag: 自动续费标识。取值范围: NOTIFY_AND_AUTO_RENEW:通知过期且自动续费 NOTIFY_AND_MANUAL_RENEW:通知过期不自动续费 DISABLE_NOTIFY_AND_MANUAL_RENEW:不通知过期不自动续费 若该参数指定为NOTIFY_AND_AUTO_RENEW,在账户余额充足的情况下,实例到期后将按月自动续费。 示例值:NOTIFY_AND_AUTO_RENEW
|
47976
47988
|
:type RenewFlag: str
|
@@ -47980,7 +47992,7 @@ class ModifyAddressesRenewFlagRequest(AbstractModel):
|
|
47980
47992
|
|
47981
47993
|
@property
|
47982
47994
|
def AddressIds(self):
|
47983
|
-
"""EIP唯一标识ID列表,形如'eip-xxxx'
|
47995
|
+
"""EIP唯一标识ID列表,形如'eip-xxxx',可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47984
47996
|
:rtype: list of str
|
47985
47997
|
"""
|
47986
47998
|
return self._AddressIds
|
@@ -49861,9 +49873,9 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
|
|
49861
49873
|
|
49862
49874
|
def __init__(self):
|
49863
49875
|
r"""
|
49864
|
-
:param _IPv6AddressIds: 弹性公网IPv6地址唯一ID
|
49876
|
+
:param _IPv6AddressIds: 弹性公网IPv6地址唯一ID,可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
49865
49877
|
:type IPv6AddressIds: list of str
|
49866
|
-
:param _InternetMaxBandwidthOut: 弹性公网IPv6
|
49878
|
+
:param _InternetMaxBandwidthOut: 弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
|
49867
49879
|
:type InternetMaxBandwidthOut: int
|
49868
49880
|
"""
|
49869
49881
|
self._IPv6AddressIds = None
|
@@ -49871,7 +49883,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
|
|
49871
49883
|
|
49872
49884
|
@property
|
49873
49885
|
def IPv6AddressIds(self):
|
49874
|
-
"""弹性公网IPv6地址唯一ID
|
49886
|
+
"""弹性公网IPv6地址唯一ID,可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
49875
49887
|
:rtype: list of str
|
49876
49888
|
"""
|
49877
49889
|
return self._IPv6AddressIds
|
@@ -49882,7 +49894,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
|
|
49882
49894
|
|
49883
49895
|
@property
|
49884
49896
|
def InternetMaxBandwidthOut(self):
|
49885
|
-
"""弹性公网IPv6
|
49897
|
+
"""弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
|
49886
49898
|
:rtype: int
|
49887
49899
|
"""
|
49888
49900
|
return self._InternetMaxBandwidthOut
|
@@ -55392,10 +55404,8 @@ NONEXTHOP:无下一跳;
|
|
55392
55404
|
下一跳类型为NONEXTHOP,指定网络探测为无下一跳的网络探测,添加和修改时,不需要指定值,查询时值为空字符串;
|
55393
55405
|
:type NextHopDestination: str
|
55394
55406
|
:param _NextHopName: 下一跳网关名称。
|
55395
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55396
55407
|
:type NextHopName: str
|
55397
55408
|
:param _NetDetectDescription: 网络探测描述。
|
55398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55399
55409
|
:type NetDetectDescription: str
|
55400
55410
|
:param _CreateTime: 创建时间。
|
55401
55411
|
:type CreateTime: str
|
@@ -55544,7 +55554,6 @@ NONEXTHOP:无下一跳;
|
|
55544
55554
|
@property
|
55545
55555
|
def NextHopName(self):
|
55546
55556
|
"""下一跳网关名称。
|
55547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55548
55557
|
:rtype: str
|
55549
55558
|
"""
|
55550
55559
|
return self._NextHopName
|
@@ -55556,7 +55565,6 @@ NONEXTHOP:无下一跳;
|
|
55556
55565
|
@property
|
55557
55566
|
def NetDetectDescription(self):
|
55558
55567
|
"""网络探测描述。
|
55559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55560
55568
|
:rtype: str
|
55561
55569
|
"""
|
55562
55570
|
return self._NetDetectDescription
|
@@ -56474,23 +56482,18 @@ class NetworkInterface(AbstractModel):
|
|
56474
56482
|
:param _EniType: 网卡类型。“0”-辅助网卡,“1”-主网卡,“2”:中继网卡
|
56475
56483
|
:type EniType: int
|
56476
56484
|
:param _Business: 网卡绑定的子机类型:cvm(普通CVM子机),eks(弹性容器服务Elastic Kubernetes Service), hai(高性能应用服务Hyper Application Inventor)。
|
56477
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56478
56485
|
:type Business: str
|
56479
56486
|
:param _CdcId: 网卡所关联的CDC实例ID。
|
56480
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56481
56487
|
:type CdcId: str
|
56482
56488
|
:param _AttachType: 弹性网卡类型:0:标准型/1:扩展型。默认值为0。
|
56483
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56484
56489
|
:type AttachType: int
|
56485
56490
|
:param _ResourceId: 用于保留网卡主IP的资源ID用于保留网卡主IP的资源ID。用于删除网卡时作为入参数。
|
56486
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56487
56491
|
:type ResourceId: str
|
56488
56492
|
:param _QosLevel: 服务质量级别:
|
56489
56493
|
PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
56490
56494
|
|
56491
56495
|
可选值:PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
56492
56496
|
|
56493
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56494
56497
|
:type QosLevel: str
|
56495
56498
|
"""
|
56496
56499
|
self._NetworkInterfaceId = None
|
@@ -56718,7 +56721,6 @@ PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
|
56718
56721
|
@property
|
56719
56722
|
def Business(self):
|
56720
56723
|
"""网卡绑定的子机类型:cvm(普通CVM子机),eks(弹性容器服务Elastic Kubernetes Service), hai(高性能应用服务Hyper Application Inventor)。
|
56721
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56722
56724
|
:rtype: str
|
56723
56725
|
"""
|
56724
56726
|
return self._Business
|
@@ -56730,7 +56732,6 @@ PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
|
56730
56732
|
@property
|
56731
56733
|
def CdcId(self):
|
56732
56734
|
"""网卡所关联的CDC实例ID。
|
56733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56734
56735
|
:rtype: str
|
56735
56736
|
"""
|
56736
56737
|
return self._CdcId
|
@@ -56742,7 +56743,6 @@ PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
|
56742
56743
|
@property
|
56743
56744
|
def AttachType(self):
|
56744
56745
|
"""弹性网卡类型:0:标准型/1:扩展型。默认值为0。
|
56745
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56746
56746
|
:rtype: int
|
56747
56747
|
"""
|
56748
56748
|
return self._AttachType
|
@@ -56754,7 +56754,6 @@ PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
|
56754
56754
|
@property
|
56755
56755
|
def ResourceId(self):
|
56756
56756
|
"""用于保留网卡主IP的资源ID用于保留网卡主IP的资源ID。用于删除网卡时作为入参数。
|
56757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56758
56757
|
:rtype: str
|
56759
56758
|
"""
|
56760
56759
|
return self._ResourceId
|
@@ -56770,7 +56769,6 @@ PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
|
56770
56769
|
|
56771
56770
|
可选值:PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。
|
56772
56771
|
|
56773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56774
56772
|
:rtype: str
|
56775
56773
|
"""
|
56776
56774
|
return self._QosLevel
|
@@ -58673,14 +58671,14 @@ class ReleaseIPv6AddressesRequest(AbstractModel):
|
|
58673
58671
|
|
58674
58672
|
def __init__(self):
|
58675
58673
|
r"""
|
58676
|
-
:param _IPv6AddressIds: IPv6地址唯一ID。
|
58674
|
+
:param _IPv6AddressIds: IPv6地址唯一ID。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
58677
58675
|
:type IPv6AddressIds: list of str
|
58678
58676
|
"""
|
58679
58677
|
self._IPv6AddressIds = None
|
58680
58678
|
|
58681
58679
|
@property
|
58682
58680
|
def IPv6AddressIds(self):
|
58683
|
-
"""IPv6地址唯一ID。
|
58681
|
+
"""IPv6地址唯一ID。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
58684
58682
|
:rtype: list of str
|
58685
58683
|
"""
|
58686
58684
|
return self._IPv6AddressIds
|
@@ -62031,14 +62029,14 @@ class ReturnNormalAddressesRequest(AbstractModel):
|
|
62031
62029
|
|
62032
62030
|
def __init__(self):
|
62033
62031
|
r"""
|
62034
|
-
:param _AddressIps: 普通公网IP 的 IP
|
62032
|
+
:param _AddressIps: 普通公网IP 的 IP 地址,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressIps。
|
62035
62033
|
:type AddressIps: list of str
|
62036
62034
|
"""
|
62037
62035
|
self._AddressIps = None
|
62038
62036
|
|
62039
62037
|
@property
|
62040
62038
|
def AddressIps(self):
|
62041
|
-
"""普通公网IP 的 IP
|
62039
|
+
"""普通公网IP 的 IP 地址,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressIps。
|
62042
62040
|
:rtype: list of str
|
62043
62041
|
"""
|
62044
62042
|
return self._AddressIps
|
@@ -62132,17 +62130,14 @@ CCN:云联网路由,系统默认下发,不可编辑与删除。
|
|
62132
62130
|
:param _RouteTableId: 路由表实例ID,例如:rtb-azd4dt1c。
|
62133
62131
|
:type RouteTableId: str
|
62134
62132
|
:param _DestinationIpv6CidrBlock: 创建IPv6目的网段,取值不能在私有网络网段内,例如:2402:4e00:1000:810b::/64。
|
62135
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62136
62133
|
:type DestinationIpv6CidrBlock: str
|
62137
62134
|
:param _RouteItemId: 路由唯一策略ID。
|
62138
62135
|
:type RouteItemId: str
|
62139
62136
|
:param _PublishedToVbc: 路由策略是否发布到云联网。该字段仅做出参使用,作为入参字段时此参数不生效。
|
62140
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62141
62137
|
:type PublishedToVbc: bool
|
62142
62138
|
:param _CreatedTime: 路由策略创建时间
|
62143
62139
|
:type CreatedTime: str
|
62144
62140
|
:param _CdcId: CDC 集群唯一 ID。
|
62145
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62146
62141
|
:type CdcId: str
|
62147
62142
|
"""
|
62148
62143
|
self._DestinationCidrBlock = None
|
@@ -62270,7 +62265,6 @@ CCN:云联网路由,系统默认下发,不可编辑与删除。
|
|
62270
62265
|
@property
|
62271
62266
|
def DestinationIpv6CidrBlock(self):
|
62272
62267
|
"""创建IPv6目的网段,取值不能在私有网络网段内,例如:2402:4e00:1000:810b::/64。
|
62273
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62274
62268
|
:rtype: str
|
62275
62269
|
"""
|
62276
62270
|
return self._DestinationIpv6CidrBlock
|
@@ -62293,7 +62287,6 @@ CCN:云联网路由,系统默认下发,不可编辑与删除。
|
|
62293
62287
|
@property
|
62294
62288
|
def PublishedToVbc(self):
|
62295
62289
|
"""路由策略是否发布到云联网。该字段仅做出参使用,作为入参字段时此参数不生效。
|
62296
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62297
62290
|
:rtype: bool
|
62298
62291
|
"""
|
62299
62292
|
return self._PublishedToVbc
|
@@ -62316,7 +62309,6 @@ CCN:云联网路由,系统默认下发,不可编辑与删除。
|
|
62316
62309
|
@property
|
62317
62310
|
def CdcId(self):
|
62318
62311
|
"""CDC 集群唯一 ID。
|
62319
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62320
62312
|
:rtype: str
|
62321
62313
|
"""
|
62322
62314
|
return self._CdcId
|
@@ -64414,7 +64406,6 @@ class SnapshotPolicy(AbstractModel):
|
|
64414
64406
|
:param _KeepTime: 保留时间,支持1~365天。
|
64415
64407
|
:type KeepTime: int
|
64416
64408
|
:param _CreateNewCos: 是否创建新的cos桶,默认为False。
|
64417
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64418
64409
|
:type CreateNewCos: bool
|
64419
64410
|
:param _CosRegion: cos桶所在地域。
|
64420
64411
|
:type CosRegion: str
|
@@ -64423,15 +64414,12 @@ class SnapshotPolicy(AbstractModel):
|
|
64423
64414
|
:param _SnapshotPolicyId: 快照策略Id。
|
64424
64415
|
:type SnapshotPolicyId: str
|
64425
64416
|
:param _BackupPolicies: 时间备份策略。
|
64426
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64427
64417
|
:type BackupPolicies: list of BackupPolicy
|
64428
64418
|
:param _Enable: 启用状态,True-启用,False-停用,默认为True。
|
64429
64419
|
:type Enable: bool
|
64430
64420
|
:param _CreateTime: 创建时间。
|
64431
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64432
64421
|
:type CreateTime: str
|
64433
64422
|
:param _TagSet: 标签键值对。
|
64434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64435
64423
|
:type TagSet: list of Tag
|
64436
64424
|
"""
|
64437
64425
|
self._SnapshotPolicyName = None
|
@@ -64482,7 +64470,6 @@ class SnapshotPolicy(AbstractModel):
|
|
64482
64470
|
@property
|
64483
64471
|
def CreateNewCos(self):
|
64484
64472
|
"""是否创建新的cos桶,默认为False。
|
64485
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64486
64473
|
:rtype: bool
|
64487
64474
|
"""
|
64488
64475
|
return self._CreateNewCos
|
@@ -64527,7 +64514,6 @@ class SnapshotPolicy(AbstractModel):
|
|
64527
64514
|
@property
|
64528
64515
|
def BackupPolicies(self):
|
64529
64516
|
"""时间备份策略。
|
64530
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64531
64517
|
:rtype: list of BackupPolicy
|
64532
64518
|
"""
|
64533
64519
|
return self._BackupPolicies
|
@@ -64550,7 +64536,6 @@ class SnapshotPolicy(AbstractModel):
|
|
64550
64536
|
@property
|
64551
64537
|
def CreateTime(self):
|
64552
64538
|
"""创建时间。
|
64553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64554
64539
|
:rtype: str
|
64555
64540
|
"""
|
64556
64541
|
return self._CreateTime
|
@@ -64562,7 +64547,6 @@ class SnapshotPolicy(AbstractModel):
|
|
64562
64547
|
@property
|
64563
64548
|
def TagSet(self):
|
64564
64549
|
"""标签键值对。
|
64565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64566
64550
|
:rtype: list of Tag
|
64567
64551
|
"""
|
64568
64552
|
return self._TagSet
|
@@ -68319,10 +68303,8 @@ class Vpc(AbstractModel):
|
|
68319
68303
|
:param _TagSet: 标签键值对
|
68320
68304
|
:type TagSet: list of Tag
|
68321
68305
|
:param _AssistantCidrSet: 辅助CIDR
|
68322
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
68323
68306
|
:type AssistantCidrSet: list of AssistantCidr
|
68324
68307
|
:param _Ipv6CidrBlockSet: 返回多运营商IPv6 Cidr Block
|
68325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
68326
68308
|
:type Ipv6CidrBlockSet: list of ISPIPv6CidrBlock
|
68327
68309
|
"""
|
68328
68310
|
self._VpcName = None
|
@@ -68475,7 +68457,6 @@ class Vpc(AbstractModel):
|
|
68475
68457
|
@property
|
68476
68458
|
def AssistantCidrSet(self):
|
68477
68459
|
"""辅助CIDR
|
68478
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
68479
68460
|
:rtype: list of AssistantCidr
|
68480
68461
|
"""
|
68481
68462
|
return self._AssistantCidrSet
|
@@ -68487,7 +68468,6 @@ class Vpc(AbstractModel):
|
|
68487
68468
|
@property
|
68488
68469
|
def Ipv6CidrBlockSet(self):
|
68489
68470
|
"""返回多运营商IPv6 Cidr Block
|
68490
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
68491
68471
|
:rtype: list of ISPIPv6CidrBlock
|
68492
68472
|
"""
|
68493
68473
|
return self._Ipv6CidrBlockSet
|
@@ -68544,15 +68524,16 @@ class VpcEndPointServiceUser(AbstractModel):
|
|
68544
68524
|
|
68545
68525
|
def __init__(self):
|
68546
68526
|
r"""
|
68547
|
-
:param _Owner: AppId
|
68527
|
+
:param _Owner: AppId。可通过登录 腾讯云账号中心控制台 获取。
|
68548
68528
|
:type Owner: int
|
68549
|
-
:param _UserUin: Uin
|
68529
|
+
:param _UserUin: 用户Uin。可通过登录 腾讯云账号中心控制台 获取。
|
68550
68530
|
:type UserUin: str
|
68551
68531
|
:param _Description: 描述信息。
|
68552
68532
|
:type Description: str
|
68553
|
-
:param _CreateTime:
|
68533
|
+
:param _CreateTime: 创建时间。格式为字符串YYYY-MM-DD HH:MM:SS。
|
68554
68534
|
:type CreateTime: str
|
68555
|
-
:param _EndPointServiceId: 终端节点服务ID
|
68535
|
+
:param _EndPointServiceId: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
68536
|
+
|
68556
68537
|
:type EndPointServiceId: str
|
68557
68538
|
"""
|
68558
68539
|
self._Owner = None
|
@@ -68563,7 +68544,7 @@ class VpcEndPointServiceUser(AbstractModel):
|
|
68563
68544
|
|
68564
68545
|
@property
|
68565
68546
|
def Owner(self):
|
68566
|
-
"""AppId
|
68547
|
+
"""AppId。可通过登录 腾讯云账号中心控制台 获取。
|
68567
68548
|
:rtype: int
|
68568
68549
|
"""
|
68569
68550
|
return self._Owner
|
@@ -68574,7 +68555,7 @@ class VpcEndPointServiceUser(AbstractModel):
|
|
68574
68555
|
|
68575
68556
|
@property
|
68576
68557
|
def UserUin(self):
|
68577
|
-
"""Uin
|
68558
|
+
"""用户Uin。可通过登录 腾讯云账号中心控制台 获取。
|
68578
68559
|
:rtype: str
|
68579
68560
|
"""
|
68580
68561
|
return self._UserUin
|
@@ -68596,7 +68577,7 @@ class VpcEndPointServiceUser(AbstractModel):
|
|
68596
68577
|
|
68597
68578
|
@property
|
68598
68579
|
def CreateTime(self):
|
68599
|
-
"""
|
68580
|
+
"""创建时间。格式为字符串YYYY-MM-DD HH:MM:SS。
|
68600
68581
|
:rtype: str
|
68601
68582
|
"""
|
68602
68583
|
return self._CreateTime
|
@@ -68607,7 +68588,8 @@ class VpcEndPointServiceUser(AbstractModel):
|
|
68607
68588
|
|
68608
68589
|
@property
|
68609
68590
|
def EndPointServiceId(self):
|
68610
|
-
"""终端节点服务ID
|
68591
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
68592
|
+
|
68611
68593
|
:rtype: str
|
68612
68594
|
"""
|
68613
68595
|
return self._EndPointServiceId
|