tencentcloud-sdk-python 3.0.1373__py2.py3-none-any.whl → 3.0.1374__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 +2 -0
- tencentcloud/cbs/v20170312/models.py +27 -2
- tencentcloud/chc/v20230418/models.py +84 -2
- tencentcloud/ckafka/v20190819/models.py +0 -24
- tencentcloud/clb/v20180317/clb_client.py +14 -14
- tencentcloud/clb/v20180317/models.py +289 -164
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cynosdb/v20190107/models.py +15 -15
- tencentcloud/dlc/v20210125/models.py +30 -0
- tencentcloud/domain/v20180808/domain_client.py +4 -0
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +184 -78
- tencentcloud/es/v20250101/es_client.py +4 -2
- tencentcloud/es/v20250101/models.py +70 -70
- tencentcloud/iss/v20230517/models.py +0 -40
- tencentcloud/lowcode/v20210108/models.py +17 -2
- tencentcloud/tke/v20180525/models.py +72 -72
- tencentcloud/tsf/v20180326/errorcodes.py +3 -0
- tencentcloud/tsf/v20180326/models.py +2 -2
- tencentcloud/vod/v20180717/models.py +15 -0
- tencentcloud/vpc/v20170312/errorcodes.py +12 -0
- tencentcloud/vpc/v20170312/models.py +142 -118
- tencentcloud/vpc/v20170312/vpc_client.py +10 -10
- tencentcloud/wedata/v20210820/models.py +30 -0
- tencentcloud/wedata/v20210820/wedata_client.py +4 -4
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1374.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1374.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1374.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1374.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1374.dist-info}/top_level.txt +0 -0
@@ -722,7 +722,6 @@ class Address(AbstractModel):
|
|
722
722
|
注意:此字段可能返回 null,表示取不到有效值。
|
723
723
|
:type InternetChargeType: str
|
724
724
|
:param _TagSet: 弹性公网IP关联的标签列表。
|
725
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
726
725
|
:type TagSet: list of Tag
|
727
726
|
:param _DeadlineDate: 到期时间。
|
728
727
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -743,10 +742,8 @@ class Address(AbstractModel):
|
|
743
742
|
注意:此字段可能返回 null,表示取不到有效值。
|
744
743
|
:type BandwidthPackageId: str
|
745
744
|
:param _UnVpcId: 传统弹性公网IPv6所属vpc唯一ID
|
746
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
747
745
|
:type UnVpcId: str
|
748
746
|
:param _DedicatedClusterId: CDC唯一ID
|
749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
750
747
|
:type DedicatedClusterId: str
|
751
748
|
"""
|
752
749
|
self._AddressId = None
|
@@ -990,7 +987,6 @@ class Address(AbstractModel):
|
|
990
987
|
@property
|
991
988
|
def TagSet(self):
|
992
989
|
"""弹性公网IP关联的标签列表。
|
993
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
994
990
|
:rtype: list of Tag
|
995
991
|
"""
|
996
992
|
return self._TagSet
|
@@ -1074,7 +1070,6 @@ class Address(AbstractModel):
|
|
1074
1070
|
@property
|
1075
1071
|
def UnVpcId(self):
|
1076
1072
|
"""传统弹性公网IPv6所属vpc唯一ID
|
1077
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1078
1073
|
:rtype: str
|
1079
1074
|
"""
|
1080
1075
|
return self._UnVpcId
|
@@ -1086,7 +1081,6 @@ class Address(AbstractModel):
|
|
1086
1081
|
@property
|
1087
1082
|
def DedicatedClusterId(self):
|
1088
1083
|
"""CDC唯一ID
|
1089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1090
1084
|
:rtype: str
|
1091
1085
|
"""
|
1092
1086
|
return self._DedicatedClusterId
|
@@ -1844,33 +1838,37 @@ class AllocateAddressesRequest(AbstractModel):
|
|
1844
1838
|
|
1845
1839
|
def __init__(self):
|
1846
1840
|
r"""
|
1847
|
-
:param _AddressCount: EIP
|
1841
|
+
:param _AddressCount: EIP数量。可申请的数量限制参考:[EIP 配额限制](https://cloud.tencent.com/document/product/1199/41648)。默认值:1。
|
1848
1842
|
:type AddressCount: int
|
1849
|
-
:param _InternetServiceProvider: EIP
|
1850
|
-
<ul style="margin:0"><li
|
1843
|
+
:param _InternetServiceProvider: EIP线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
|
1844
|
+
<ul style="margin:0"><li>BGP:常规 BGP 线路</li>
|
1845
|
+
<li>已开通静态单线IP白名单的用户,可选值:<ul><li>CMCC:中国移动</li>
|
1851
1846
|
<li>CTCC:中国电信</li>
|
1852
|
-
<li>CUCC:中国联通</li></ul>注意:仅部分地域支持静态单线IP。</
|
1847
|
+
<li>CUCC:中国联通</li></ul></li>注意:仅部分地域支持静态单线IP。</ul>
|
1848
|
+
|
1853
1849
|
:type InternetServiceProvider: str
|
1854
1850
|
:param _InternetChargeType: EIP计费方式。
|
1855
|
-
<ul style="margin:0"><li
|
1851
|
+
<ul style="margin:0"><li>标准账户类型,可选值:<ul><li>BANDWIDTH_PACKAGE:[共享带宽包](https://cloud.tencent.com/document/product/684/15255)付费</li>
|
1856
1852
|
<li>BANDWIDTH_POSTPAID_BY_HOUR:带宽按小时后付费</li>
|
1857
1853
|
<li>BANDWIDTH_PREPAID_BY_MONTH:包月按带宽预付费</li>
|
1858
1854
|
<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li></ul>默认值:TRAFFIC_POSTPAID_BY_HOUR。</li>
|
1859
|
-
<li
|
1855
|
+
<li>传统账户类型,无需传递此参数,EIP计费方式与其绑定的实例的计费方式一致,无需传递此参数。</li></ul>
|
1860
1856
|
:type InternetChargeType: str
|
1861
1857
|
:param _InternetMaxBandwidthOut: EIP出带宽上限,单位:Mbps。
|
1862
|
-
<ul style="margin:0"><li
|
1858
|
+
<ul style="margin:0"><li>标准账户类型EIP出带宽上限,可选值范围取决于EIP计费方式:<ul><li>BANDWIDTH_PACKAGE:1 Mbps 至 2000 Mbps</li>
|
1863
1859
|
<li>BANDWIDTH_POSTPAID_BY_HOUR:1 Mbps 至 100 Mbps</li>
|
1864
1860
|
<li>BANDWIDTH_PREPAID_BY_MONTH:1 Mbps 至 200 Mbps</li>
|
1865
1861
|
<li>TRAFFIC_POSTPAID_BY_HOUR:1 Mbps 至 100 Mbps</li></ul>默认值:1 Mbps。</li>
|
1866
|
-
<li
|
1862
|
+
<li>传统账户类型无需传递此参数,EIP出带宽上限取决于与其绑定的实例的公网出带宽上限,无需传递此参数。</li></ul>
|
1867
1863
|
:type InternetMaxBandwidthOut: int
|
1868
1864
|
:param _AddressChargePrepaid: 包月按带宽预付费EIP的计费参数。EIP为包月按带宽预付费时,该参数必传,其余场景不需传递
|
1869
1865
|
:type AddressChargePrepaid: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
1870
|
-
:param _AddressType: EIP
|
1871
|
-
<
|
1872
|
-
<
|
1873
|
-
<
|
1866
|
+
:param _AddressType: EIP类型。各种EIP类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:EIP。
|
1867
|
+
<li>EIP:弹性公网 IP。 </li>
|
1868
|
+
<li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP。</li>
|
1869
|
+
<li>HighQualityEIP:精品 IP。仅部分地域支持精品IP。</li>
|
1870
|
+
<li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP。</li>
|
1871
|
+
|
1874
1872
|
:type AddressType: str
|
1875
1873
|
:param _AnycastZone: Anycast发布域。
|
1876
1874
|
<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>
|
@@ -1923,7 +1921,7 @@ AnycastEIP是否用于绑定负载均衡。
|
|
1923
1921
|
|
1924
1922
|
@property
|
1925
1923
|
def AddressCount(self):
|
1926
|
-
"""EIP
|
1924
|
+
"""EIP数量。可申请的数量限制参考:[EIP 配额限制](https://cloud.tencent.com/document/product/1199/41648)。默认值:1。
|
1927
1925
|
:rtype: int
|
1928
1926
|
"""
|
1929
1927
|
return self._AddressCount
|
@@ -1934,10 +1932,12 @@ AnycastEIP是否用于绑定负载均衡。
|
|
1934
1932
|
|
1935
1933
|
@property
|
1936
1934
|
def InternetServiceProvider(self):
|
1937
|
-
"""EIP
|
1938
|
-
<ul style="margin:0"><li
|
1935
|
+
"""EIP线路类型。各种线路类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
|
1936
|
+
<ul style="margin:0"><li>BGP:常规 BGP 线路</li>
|
1937
|
+
<li>已开通静态单线IP白名单的用户,可选值:<ul><li>CMCC:中国移动</li>
|
1939
1938
|
<li>CTCC:中国电信</li>
|
1940
|
-
<li>CUCC:中国联通</li></ul>注意:仅部分地域支持静态单线IP。</
|
1939
|
+
<li>CUCC:中国联通</li></ul></li>注意:仅部分地域支持静态单线IP。</ul>
|
1940
|
+
|
1941
1941
|
:rtype: str
|
1942
1942
|
"""
|
1943
1943
|
return self._InternetServiceProvider
|
@@ -1949,11 +1949,11 @@ AnycastEIP是否用于绑定负载均衡。
|
|
1949
1949
|
@property
|
1950
1950
|
def InternetChargeType(self):
|
1951
1951
|
"""EIP计费方式。
|
1952
|
-
<ul style="margin:0"><li
|
1952
|
+
<ul style="margin:0"><li>标准账户类型,可选值:<ul><li>BANDWIDTH_PACKAGE:[共享带宽包](https://cloud.tencent.com/document/product/684/15255)付费</li>
|
1953
1953
|
<li>BANDWIDTH_POSTPAID_BY_HOUR:带宽按小时后付费</li>
|
1954
1954
|
<li>BANDWIDTH_PREPAID_BY_MONTH:包月按带宽预付费</li>
|
1955
1955
|
<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li></ul>默认值:TRAFFIC_POSTPAID_BY_HOUR。</li>
|
1956
|
-
<li
|
1956
|
+
<li>传统账户类型,无需传递此参数,EIP计费方式与其绑定的实例的计费方式一致,无需传递此参数。</li></ul>
|
1957
1957
|
:rtype: str
|
1958
1958
|
"""
|
1959
1959
|
return self._InternetChargeType
|
@@ -1965,11 +1965,11 @@ AnycastEIP是否用于绑定负载均衡。
|
|
1965
1965
|
@property
|
1966
1966
|
def InternetMaxBandwidthOut(self):
|
1967
1967
|
"""EIP出带宽上限,单位:Mbps。
|
1968
|
-
<ul style="margin:0"><li
|
1968
|
+
<ul style="margin:0"><li>标准账户类型EIP出带宽上限,可选值范围取决于EIP计费方式:<ul><li>BANDWIDTH_PACKAGE:1 Mbps 至 2000 Mbps</li>
|
1969
1969
|
<li>BANDWIDTH_POSTPAID_BY_HOUR:1 Mbps 至 100 Mbps</li>
|
1970
1970
|
<li>BANDWIDTH_PREPAID_BY_MONTH:1 Mbps 至 200 Mbps</li>
|
1971
1971
|
<li>TRAFFIC_POSTPAID_BY_HOUR:1 Mbps 至 100 Mbps</li></ul>默认值:1 Mbps。</li>
|
1972
|
-
<li
|
1972
|
+
<li>传统账户类型无需传递此参数,EIP出带宽上限取决于与其绑定的实例的公网出带宽上限,无需传递此参数。</li></ul>
|
1973
1973
|
:rtype: int
|
1974
1974
|
"""
|
1975
1975
|
return self._InternetMaxBandwidthOut
|
@@ -1991,10 +1991,12 @@ AnycastEIP是否用于绑定负载均衡。
|
|
1991
1991
|
|
1992
1992
|
@property
|
1993
1993
|
def AddressType(self):
|
1994
|
-
"""EIP
|
1995
|
-
<
|
1996
|
-
<
|
1997
|
-
<
|
1994
|
+
"""EIP类型。各种EIP类型详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:EIP。
|
1995
|
+
<li>EIP:弹性公网 IP。 </li>
|
1996
|
+
<li>AnycastEIP:加速 IP,已开通 [Anycast 公网加速](https://cloud.tencent.com/document/product/644)白名单的用户可选。仅部分地域支持加速IP。</li>
|
1997
|
+
<li>HighQualityEIP:精品 IP。仅部分地域支持精品IP。</li>
|
1998
|
+
<li>AntiDDoSEIP:高防 IP。仅部分地域支持高防IP。</li>
|
1999
|
+
|
1998
2000
|
:rtype: str
|
1999
2001
|
"""
|
2000
2002
|
return self._AddressType
|
@@ -2233,24 +2235,27 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2233
2235
|
|
2234
2236
|
def __init__(self):
|
2235
2237
|
r"""
|
2236
|
-
:param _AddressName: EIP名称,用于申请EIP时用户自定义该EIP
|
2238
|
+
:param _AddressName: EIP名称,用于申请EIP时用户自定义该EIP的个性化名称。长度上限为128个字符,允许使用大小写字母、汉字、数字、连字符"-"和下划线"_",不能包含空格。
|
2239
|
+
默认值:未命名
|
2237
2240
|
:type AddressName: str
|
2238
2241
|
:param _AddressType: 弹性公网IPv6类型,可选值:
|
2239
2242
|
|
2240
|
-
- EIPv6
|
2241
|
-
- HighQualityEIPv6:精品IPv6
|
2242
|
-
|
2243
|
+
- EIPv6:弹性公网IPv6
|
2244
|
+
- HighQualityEIPv6:精品BGP线路弹性公网IPv6
|
2245
|
+
注意:弹性公网IPv6产品需开白才能使用,其中精品BGP线路仅在中国香港支持。
|
2243
2246
|
|
2244
|
-
默认值:EIPv6
|
2247
|
+
默认值:EIPv6
|
2245
2248
|
:type AddressType: str
|
2246
|
-
:param _AddressCount: 申请的弹性公网IPv6
|
2249
|
+
:param _AddressCount: 申请的弹性公网IPv6数量。单次最多可以申请20个弹性公网IPv6实例,总配额请参见[弹性公网 IPv6 配额说明](https://cloud.tencent.com/document/product/1142/38369)。
|
2250
|
+
|
2251
|
+
默认值:1
|
2247
2252
|
:type AddressCount: int
|
2248
2253
|
:param _InternetChargeType: 弹性公网IPv6计费方式,可选值:
|
2249
2254
|
|
2250
2255
|
- BANDWIDTH_PACKAGE:[共享带宽包](https://cloud.tencent.com/document/product/684/15255)付费
|
2251
2256
|
- TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费
|
2252
2257
|
|
2253
|
-
默认值:TRAFFIC_POSTPAID_BY_HOUR
|
2258
|
+
默认值:TRAFFIC_POSTPAID_BY_HOUR
|
2254
2259
|
:type InternetChargeType: str
|
2255
2260
|
:param _InternetServiceProvider: 弹性公网IPv6线路类型,默认值:BGP。
|
2256
2261
|
|
@@ -2258,18 +2263,18 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2258
2263
|
- CMCC:中国移动
|
2259
2264
|
- CTCC:中国电信
|
2260
2265
|
- CUCC:中国联通
|
2261
|
-
注意:仅部分地域支持静态单线IP
|
2266
|
+
注意:仅部分地域支持静态单线IP。具体请以控制台购买页展示为准。
|
2262
2267
|
:type InternetServiceProvider: str
|
2263
2268
|
:param _InternetMaxBandwidthOut: 弹性公网IPv6带宽上限,单位:Mbps。
|
2264
2269
|
|
2265
2270
|
可选值范围取决于EIP计费方式:
|
2266
2271
|
|
2267
|
-
- BANDWIDTH_PACKAGE
|
2268
|
-
- TRAFFIC_POSTPAID_BY_HOUR
|
2272
|
+
- BANDWIDTH_PACKAGE(共享带宽包付费):1 Mbps 至 2000 Mbps
|
2273
|
+
- TRAFFIC_POSTPAID_BY_HOUR(流量按小时后付费):1 Mbps 至 100 Mbps
|
2269
2274
|
|
2270
|
-
默认值:1
|
2275
|
+
默认值:1
|
2271
2276
|
:type InternetMaxBandwidthOut: int
|
2272
|
-
:param _BandwidthPackageId: 带宽包唯一ID
|
2277
|
+
:param _BandwidthPackageId: 带宽包唯一ID参数。可以使用[DescribeBandwidthPackages](https://cloud.tencent.com/document/product/215/19209)接口查询BandwidthPackageId。
|
2273
2278
|
设定该参数且InternetChargeType为BANDWIDTH_PACKAGE,则表示创建的EIP加入该BGP带宽包并采用带宽包计费。
|
2274
2279
|
:type BandwidthPackageId: str
|
2275
2280
|
:param _Tags: 需要关联的标签列表。
|
@@ -2278,10 +2283,9 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2278
2283
|
|
2279
2284
|
- CENTER_EGRESS_1:中心出口一
|
2280
2285
|
- CENTER_EGRESS_2:中心出口二
|
2281
|
-
|
2282
|
-
注意:不同运营商或资源类型对应的网络出口需要联系产品开白
|
2286
|
+
注意:不同地域支持的线路类型、网络出口略有差异,请以控制台展示为准。
|
2283
2287
|
|
2284
|
-
默认值:CENTER_EGRESS_1
|
2288
|
+
默认值:CENTER_EGRESS_1
|
2285
2289
|
:type Egress: str
|
2286
2290
|
"""
|
2287
2291
|
self._AddressName = None
|
@@ -2296,7 +2300,8 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2296
2300
|
|
2297
2301
|
@property
|
2298
2302
|
def AddressName(self):
|
2299
|
-
"""EIP名称,用于申请EIP时用户自定义该EIP
|
2303
|
+
"""EIP名称,用于申请EIP时用户自定义该EIP的个性化名称。长度上限为128个字符,允许使用大小写字母、汉字、数字、连字符"-"和下划线"_",不能包含空格。
|
2304
|
+
默认值:未命名
|
2300
2305
|
:rtype: str
|
2301
2306
|
"""
|
2302
2307
|
return self._AddressName
|
@@ -2309,11 +2314,11 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2309
2314
|
def AddressType(self):
|
2310
2315
|
"""弹性公网IPv6类型,可选值:
|
2311
2316
|
|
2312
|
-
- EIPv6
|
2313
|
-
- HighQualityEIPv6:精品IPv6
|
2314
|
-
|
2317
|
+
- EIPv6:弹性公网IPv6
|
2318
|
+
- HighQualityEIPv6:精品BGP线路弹性公网IPv6
|
2319
|
+
注意:弹性公网IPv6产品需开白才能使用,其中精品BGP线路仅在中国香港支持。
|
2315
2320
|
|
2316
|
-
默认值:EIPv6
|
2321
|
+
默认值:EIPv6
|
2317
2322
|
:rtype: str
|
2318
2323
|
"""
|
2319
2324
|
return self._AddressType
|
@@ -2324,7 +2329,9 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2324
2329
|
|
2325
2330
|
@property
|
2326
2331
|
def AddressCount(self):
|
2327
|
-
"""申请的弹性公网IPv6
|
2332
|
+
"""申请的弹性公网IPv6数量。单次最多可以申请20个弹性公网IPv6实例,总配额请参见[弹性公网 IPv6 配额说明](https://cloud.tencent.com/document/product/1142/38369)。
|
2333
|
+
|
2334
|
+
默认值:1
|
2328
2335
|
:rtype: int
|
2329
2336
|
"""
|
2330
2337
|
return self._AddressCount
|
@@ -2340,7 +2347,7 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2340
2347
|
- BANDWIDTH_PACKAGE:[共享带宽包](https://cloud.tencent.com/document/product/684/15255)付费
|
2341
2348
|
- TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费
|
2342
2349
|
|
2343
|
-
默认值:TRAFFIC_POSTPAID_BY_HOUR
|
2350
|
+
默认值:TRAFFIC_POSTPAID_BY_HOUR
|
2344
2351
|
:rtype: str
|
2345
2352
|
"""
|
2346
2353
|
return self._InternetChargeType
|
@@ -2357,7 +2364,7 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2357
2364
|
- CMCC:中国移动
|
2358
2365
|
- CTCC:中国电信
|
2359
2366
|
- CUCC:中国联通
|
2360
|
-
注意:仅部分地域支持静态单线IP
|
2367
|
+
注意:仅部分地域支持静态单线IP。具体请以控制台购买页展示为准。
|
2361
2368
|
:rtype: str
|
2362
2369
|
"""
|
2363
2370
|
return self._InternetServiceProvider
|
@@ -2372,10 +2379,10 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2372
2379
|
|
2373
2380
|
可选值范围取决于EIP计费方式:
|
2374
2381
|
|
2375
|
-
- BANDWIDTH_PACKAGE
|
2376
|
-
- TRAFFIC_POSTPAID_BY_HOUR
|
2382
|
+
- BANDWIDTH_PACKAGE(共享带宽包付费):1 Mbps 至 2000 Mbps
|
2383
|
+
- TRAFFIC_POSTPAID_BY_HOUR(流量按小时后付费):1 Mbps 至 100 Mbps
|
2377
2384
|
|
2378
|
-
默认值:1
|
2385
|
+
默认值:1
|
2379
2386
|
:rtype: int
|
2380
2387
|
"""
|
2381
2388
|
return self._InternetMaxBandwidthOut
|
@@ -2386,7 +2393,7 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2386
2393
|
|
2387
2394
|
@property
|
2388
2395
|
def BandwidthPackageId(self):
|
2389
|
-
"""带宽包唯一ID
|
2396
|
+
"""带宽包唯一ID参数。可以使用[DescribeBandwidthPackages](https://cloud.tencent.com/document/product/215/19209)接口查询BandwidthPackageId。
|
2390
2397
|
设定该参数且InternetChargeType为BANDWIDTH_PACKAGE,则表示创建的EIP加入该BGP带宽包并采用带宽包计费。
|
2391
2398
|
:rtype: str
|
2392
2399
|
"""
|
@@ -2413,10 +2420,9 @@ class AllocateIPv6AddressesRequest(AbstractModel):
|
|
2413
2420
|
|
2414
2421
|
- CENTER_EGRESS_1:中心出口一
|
2415
2422
|
- CENTER_EGRESS_2:中心出口二
|
2416
|
-
|
2417
|
-
注意:不同运营商或资源类型对应的网络出口需要联系产品开白
|
2423
|
+
注意:不同地域支持的线路类型、网络出口略有差异,请以控制台展示为准。
|
2418
2424
|
|
2419
|
-
默认值:CENTER_EGRESS_1
|
2425
|
+
默认值:CENTER_EGRESS_1
|
2420
2426
|
:rtype: str
|
2421
2427
|
"""
|
2422
2428
|
return self._Egress
|
@@ -3278,7 +3284,7 @@ class AssociateAddressRequest(AbstractModel):
|
|
3278
3284
|
|
3279
3285
|
def __init__(self):
|
3280
3286
|
r"""
|
3281
|
-
:param _AddressId: 标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222`。
|
3287
|
+
:param _AddressId: 标识 EIP 的唯一 ID。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。EIP 唯一 ID 形如:`eip-11112222`。
|
3282
3288
|
:type AddressId: str
|
3283
3289
|
:param _InstanceId: 要绑定的实例 ID。实例 ID 形如:`ins-11112222`、`lb-11112222`。可通过登录[控制台](https://console.cloud.tencent.com/cvm)查询,也可通过 [DescribeInstances](https://cloud.tencent.com/document/api/213/15728) 接口返回值中的`InstanceId`获取。
|
3284
3290
|
:type InstanceId: str
|
@@ -3300,7 +3306,7 @@ class AssociateAddressRequest(AbstractModel):
|
|
3300
3306
|
|
3301
3307
|
@property
|
3302
3308
|
def AddressId(self):
|
3303
|
-
"""标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222`。
|
3309
|
+
"""标识 EIP 的唯一 ID。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。EIP 唯一 ID 形如:`eip-11112222`。
|
3304
3310
|
:rtype: str
|
3305
3311
|
"""
|
3306
3312
|
return self._AddressId
|
@@ -4663,7 +4669,6 @@ class BandwidthPackage(AbstractModel):
|
|
4663
4669
|
:param _Bandwidth: 带宽包限速大小。单位:Mbps,-1表示不限速。
|
4664
4670
|
:type Bandwidth: int
|
4665
4671
|
:param _Egress: 网络出口
|
4666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4667
4672
|
:type Egress: str
|
4668
4673
|
:param _Deadline: 带宽包到期时间,只有预付费会返回,按量计费返回为null
|
4669
4674
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -4783,7 +4788,6 @@ class BandwidthPackage(AbstractModel):
|
|
4783
4788
|
@property
|
4784
4789
|
def Egress(self):
|
4785
4790
|
"""网络出口
|
4786
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4787
4791
|
:rtype: str
|
4788
4792
|
"""
|
4789
4793
|
return self._Egress
|
@@ -34381,17 +34385,22 @@ class DescribeSpecificTrafficPackageUsedDetailsRequest(AbstractModel):
|
|
34381
34385
|
|
34382
34386
|
def __init__(self):
|
34383
34387
|
r"""
|
34384
|
-
:param _TrafficPackageId: 共享流量包唯一ID
|
34388
|
+
:param _TrafficPackageId: 共享流量包唯一ID。可以使用[DescribeTrafficPackages](https://cloud.tencent.com/document/product/215/80090?locationSource=from%3Ddoc-search%26scope%3Dcurrent%26keyword%3D%E6%B5%81%E9%87%8F%E5%8C%85)接口获取TrafficPackageId。
|
34385
34389
|
:type TrafficPackageId: str
|
34386
|
-
:param _Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。详细的过滤条件如下:<
|
34390
|
+
:param _Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。详细的过滤条件如下:<ul style="margin:0"><li> resource-type - String - 是否必填:否 - (过滤条件)按照资源类型过滤,资源类型包括 EIP、BWP、LB。 </li>
|
34391
|
+
<li> resource-id - String - 是否必填:否 - (过滤条件)按照抵扣流量资源的唯一 ID 过滤。以下补充资源ID获取方式:<ul><li>EIP:可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取资源ID。</li>
|
34392
|
+
<li>BWP:可以使用[DescribeBandwidthPackages](https://cloud.tencent.com/document/product/215/19209)接口获取资源ID。</li>
|
34393
|
+
<li>LB:可以使用[DescribeLoadBalancers](https://cloud.tencent.com/document/product/214/30685)接口获取资源ID。</li></ul></li></ul>
|
34387
34394
|
:type Filters: list of Filter
|
34388
34395
|
:param _OrderField: 排序条件。该参数仅支持根据抵扣量排序,传值为 deduction
|
34389
34396
|
:type OrderField: str
|
34390
34397
|
:param _OrderType: 排序类型,仅支持0和1,0-降序,1-升序。不传默认为0
|
34391
34398
|
:type OrderType: int
|
34392
|
-
:param _StartTime:
|
34399
|
+
:param _StartTime: 开始时间。待查询的共享流量包用量开始时间。不传默认为当前时间往前推30天。
|
34400
|
+
时间格式:YYYY-MM-DD hh:mm:ss
|
34393
34401
|
:type StartTime: str
|
34394
|
-
:param _EndTime:
|
34402
|
+
:param _EndTime: 结束时间。待查询的共享流量包用量结束时间。不传默认为当前时间。
|
34403
|
+
时间格式:YYYY-MM-DD hh:mm:ss
|
34395
34404
|
:type EndTime: str
|
34396
34405
|
:param _Offset: 偏移量,默认为0。关于Offset的更进一步介绍请参考 API 中的相关小节
|
34397
34406
|
:type Offset: int
|
@@ -34409,7 +34418,7 @@ class DescribeSpecificTrafficPackageUsedDetailsRequest(AbstractModel):
|
|
34409
34418
|
|
34410
34419
|
@property
|
34411
34420
|
def TrafficPackageId(self):
|
34412
|
-
"""共享流量包唯一ID
|
34421
|
+
"""共享流量包唯一ID。可以使用[DescribeTrafficPackages](https://cloud.tencent.com/document/product/215/80090?locationSource=from%3Ddoc-search%26scope%3Dcurrent%26keyword%3D%E6%B5%81%E9%87%8F%E5%8C%85)接口获取TrafficPackageId。
|
34413
34422
|
:rtype: str
|
34414
34423
|
"""
|
34415
34424
|
return self._TrafficPackageId
|
@@ -34420,7 +34429,10 @@ class DescribeSpecificTrafficPackageUsedDetailsRequest(AbstractModel):
|
|
34420
34429
|
|
34421
34430
|
@property
|
34422
34431
|
def Filters(self):
|
34423
|
-
"""每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。详细的过滤条件如下:<
|
34432
|
+
"""每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。详细的过滤条件如下:<ul style="margin:0"><li> resource-type - String - 是否必填:否 - (过滤条件)按照资源类型过滤,资源类型包括 EIP、BWP、LB。 </li>
|
34433
|
+
<li> resource-id - String - 是否必填:否 - (过滤条件)按照抵扣流量资源的唯一 ID 过滤。以下补充资源ID获取方式:<ul><li>EIP:可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取资源ID。</li>
|
34434
|
+
<li>BWP:可以使用[DescribeBandwidthPackages](https://cloud.tencent.com/document/product/215/19209)接口获取资源ID。</li>
|
34435
|
+
<li>LB:可以使用[DescribeLoadBalancers](https://cloud.tencent.com/document/product/214/30685)接口获取资源ID。</li></ul></li></ul>
|
34424
34436
|
:rtype: list of Filter
|
34425
34437
|
"""
|
34426
34438
|
return self._Filters
|
@@ -34453,7 +34465,8 @@ class DescribeSpecificTrafficPackageUsedDetailsRequest(AbstractModel):
|
|
34453
34465
|
|
34454
34466
|
@property
|
34455
34467
|
def StartTime(self):
|
34456
|
-
"""
|
34468
|
+
"""开始时间。待查询的共享流量包用量开始时间。不传默认为当前时间往前推30天。
|
34469
|
+
时间格式:YYYY-MM-DD hh:mm:ss
|
34457
34470
|
:rtype: str
|
34458
34471
|
"""
|
34459
34472
|
return self._StartTime
|
@@ -34464,7 +34477,8 @@ class DescribeSpecificTrafficPackageUsedDetailsRequest(AbstractModel):
|
|
34464
34477
|
|
34465
34478
|
@property
|
34466
34479
|
def EndTime(self):
|
34467
|
-
"""
|
34480
|
+
"""结束时间。待查询的共享流量包用量结束时间。不传默认为当前时间。
|
34481
|
+
时间格式:YYYY-MM-DD hh:mm:ss
|
34468
34482
|
:rtype: str
|
34469
34483
|
"""
|
34470
34484
|
return self._EndTime
|
@@ -34851,9 +34865,9 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
34851
34865
|
|
34852
34866
|
def __init__(self):
|
34853
34867
|
r"""
|
34854
|
-
:param _TaskId: 异步任务ID
|
34868
|
+
:param _TaskId: 异步任务ID。从异步任务接口返回结果中查看。例如:[AllocateAddresses](https://cloud.tencent.com/document/product/215/16699)接口。TaskId和DealName必填一个参数。
|
34855
34869
|
:type TaskId: int
|
34856
|
-
:param _DealName:
|
34870
|
+
:param _DealName: 计费订单号。在控制台中的[费用中心-订单管理](https://console.cloud.tencent.com/expense/deal)中查看订单号。TaskId和DealName必填一个参数。
|
34857
34871
|
:type DealName: str
|
34858
34872
|
"""
|
34859
34873
|
self._TaskId = None
|
@@ -34861,7 +34875,7 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
34861
34875
|
|
34862
34876
|
@property
|
34863
34877
|
def TaskId(self):
|
34864
|
-
"""异步任务ID
|
34878
|
+
"""异步任务ID。从异步任务接口返回结果中查看。例如:[AllocateAddresses](https://cloud.tencent.com/document/product/215/16699)接口。TaskId和DealName必填一个参数。
|
34865
34879
|
:rtype: int
|
34866
34880
|
"""
|
34867
34881
|
return self._TaskId
|
@@ -34872,7 +34886,7 @@ class DescribeTaskResultRequest(AbstractModel):
|
|
34872
34886
|
|
34873
34887
|
@property
|
34874
34888
|
def DealName(self):
|
34875
|
-
"""
|
34889
|
+
"""计费订单号。在控制台中的[费用中心-订单管理](https://console.cloud.tencent.com/expense/deal)中查看订单号。TaskId和DealName必填一个参数。
|
34876
34890
|
:rtype: str
|
34877
34891
|
"""
|
34878
34892
|
return self._DealName
|
@@ -34904,7 +34918,7 @@ class DescribeTaskResultResponse(AbstractModel):
|
|
34904
34918
|
r"""
|
34905
34919
|
:param _TaskId: 任务ID
|
34906
34920
|
:type TaskId: int
|
34907
|
-
:param _Result: 执行结果,包括"SUCCESS"
|
34921
|
+
:param _Result: 执行结果,包括"SUCCESS":异步任务执行成功, "FAILED":异步任务执行失败, "RUNNING":异步任务执行中
|
34908
34922
|
:type Result: str
|
34909
34923
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
34910
34924
|
:type RequestId: str
|
@@ -34926,7 +34940,7 @@ class DescribeTaskResultResponse(AbstractModel):
|
|
34926
34940
|
|
34927
34941
|
@property
|
34928
34942
|
def Result(self):
|
34929
|
-
"""执行结果,包括"SUCCESS"
|
34943
|
+
"""执行结果,包括"SUCCESS":异步任务执行成功, "FAILED":异步任务执行失败, "RUNNING":异步任务执行中
|
34930
34944
|
:rtype: str
|
34931
34945
|
"""
|
34932
34946
|
return self._Result
|
@@ -40068,9 +40082,9 @@ class DisassociateAddressRequest(AbstractModel):
|
|
40068
40082
|
|
40069
40083
|
def __init__(self):
|
40070
40084
|
r"""
|
40071
|
-
:param _AddressId: 标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222
|
40085
|
+
:param _AddressId: 标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
40072
40086
|
:type AddressId: str
|
40073
|
-
:param _ReallocateNormalPublicIp: 表示解绑 EIP 之后是否分配普通公网 IP。取值范围:<
|
40087
|
+
:param _ReallocateNormalPublicIp: 表示解绑 EIP 之后是否分配普通公网 IP。取值范围:<li>TRUE:表示解绑 EIP 之后分配普通公网 IP。</li><li>FALSE:表示解绑 EIP 之后不分配普通公网 IP。</li>默认取值:FALSE。<br><br>只有满足以下条件时才能指定该参数:<li>只有在解绑主网卡的主内网 IP 上的 EIP 时才能指定该参数。</li><li>解绑 EIP 后重新分配普通公网 IP 操作一个账号每天最多操作 10 次;详情可通过 [DescribeAddressQuota](https://cloud.tencent.com/document/api/213/1378) 接口获取。</li>
|
40074
40088
|
:type ReallocateNormalPublicIp: bool
|
40075
40089
|
"""
|
40076
40090
|
self._AddressId = None
|
@@ -40078,7 +40092,7 @@ class DisassociateAddressRequest(AbstractModel):
|
|
40078
40092
|
|
40079
40093
|
@property
|
40080
40094
|
def AddressId(self):
|
40081
|
-
"""标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222
|
40095
|
+
"""标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
40082
40096
|
:rtype: str
|
40083
40097
|
"""
|
40084
40098
|
return self._AddressId
|
@@ -40089,7 +40103,7 @@ class DisassociateAddressRequest(AbstractModel):
|
|
40089
40103
|
|
40090
40104
|
@property
|
40091
40105
|
def ReallocateNormalPublicIp(self):
|
40092
|
-
"""表示解绑 EIP 之后是否分配普通公网 IP。取值范围:<
|
40106
|
+
"""表示解绑 EIP 之后是否分配普通公网 IP。取值范围:<li>TRUE:表示解绑 EIP 之后分配普通公网 IP。</li><li>FALSE:表示解绑 EIP 之后不分配普通公网 IP。</li>默认取值:FALSE。<br><br>只有满足以下条件时才能指定该参数:<li>只有在解绑主网卡的主内网 IP 上的 EIP 时才能指定该参数。</li><li>解绑 EIP 后重新分配普通公网 IP 操作一个账号每天最多操作 10 次;详情可通过 [DescribeAddressQuota](https://cloud.tencent.com/document/api/213/1378) 接口获取。</li>
|
40093
40107
|
:rtype: bool
|
40094
40108
|
"""
|
40095
40109
|
return self._ReallocateNormalPublicIp
|
@@ -47409,11 +47423,12 @@ class ModifyAddressAttributeRequest(AbstractModel):
|
|
47409
47423
|
|
47410
47424
|
def __init__(self):
|
47411
47425
|
r"""
|
47412
|
-
:param _AddressId: 标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222
|
47426
|
+
:param _AddressId: 标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47413
47427
|
:type AddressId: str
|
47414
|
-
:param _AddressName: 修改后的 EIP 名称。长度上限为128
|
47428
|
+
:param _AddressName: 修改后的 EIP 名称。长度上限为128个字符,允许使用大小写字母、汉字、数字、连字符"-"和下划线"\_",不能包含空格。
|
47415
47429
|
:type AddressName: str
|
47416
|
-
:param _EipDirectConnection: 设定EIP是否直通,"TRUE"表示直通,"FALSE"
|
47430
|
+
:param _EipDirectConnection: 设定EIP是否直通,"TRUE"表示直通,"FALSE"表示非直通。
|
47431
|
+
注意:该参数仅对 EIP 直通功能可见的用户可以设定,EIP 必须为绑定状态,绑定的对象为 CVM 。
|
47417
47432
|
:type EipDirectConnection: str
|
47418
47433
|
"""
|
47419
47434
|
self._AddressId = None
|
@@ -47422,7 +47437,7 @@ class ModifyAddressAttributeRequest(AbstractModel):
|
|
47422
47437
|
|
47423
47438
|
@property
|
47424
47439
|
def AddressId(self):
|
47425
|
-
"""标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222
|
47440
|
+
"""标识 EIP 的唯一 ID。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47426
47441
|
:rtype: str
|
47427
47442
|
"""
|
47428
47443
|
return self._AddressId
|
@@ -47433,7 +47448,7 @@ class ModifyAddressAttributeRequest(AbstractModel):
|
|
47433
47448
|
|
47434
47449
|
@property
|
47435
47450
|
def AddressName(self):
|
47436
|
-
"""修改后的 EIP 名称。长度上限为128
|
47451
|
+
"""修改后的 EIP 名称。长度上限为128个字符,允许使用大小写字母、汉字、数字、连字符"-"和下划线"\_",不能包含空格。
|
47437
47452
|
:rtype: str
|
47438
47453
|
"""
|
47439
47454
|
return self._AddressName
|
@@ -47444,7 +47459,8 @@ class ModifyAddressAttributeRequest(AbstractModel):
|
|
47444
47459
|
|
47445
47460
|
@property
|
47446
47461
|
def EipDirectConnection(self):
|
47447
|
-
"""设定EIP是否直通,"TRUE"表示直通,"FALSE"
|
47462
|
+
"""设定EIP是否直通,"TRUE"表示直通,"FALSE"表示非直通。
|
47463
|
+
注意:该参数仅对 EIP 直通功能可见的用户可以设定,EIP 必须为绑定状态,绑定的对象为 CVM 。
|
47448
47464
|
:rtype: str
|
47449
47465
|
"""
|
47450
47466
|
return self._EipDirectConnection
|
@@ -47503,13 +47519,16 @@ class ModifyAddressInternetChargeTypeRequest(AbstractModel):
|
|
47503
47519
|
|
47504
47520
|
def __init__(self):
|
47505
47521
|
r"""
|
47506
|
-
:param _AddressId: 弹性公网IP的唯一ID,形如eip-xxx
|
47522
|
+
:param _AddressId: 弹性公网IP的唯一ID,形如eip-xxx,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47507
47523
|
:type AddressId: str
|
47508
|
-
:param _InternetChargeType: 弹性公网IP
|
47524
|
+
:param _InternetChargeType: 弹性公网IP调整目标计费模式,支持:
|
47525
|
+
BANDWIDTH_PREPAID_BY_MONTH:包月按带宽预付费
|
47526
|
+
TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费
|
47527
|
+
BANDWIDTH_POSTPAID_BY_HOUR:带宽按小时后付费
|
47509
47528
|
:type InternetChargeType: str
|
47510
|
-
:param _InternetMaxBandwidthOut: 弹性公网IP
|
47529
|
+
:param _InternetMaxBandwidthOut: 弹性公网IP调整目标带宽值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
|
47511
47530
|
:type InternetMaxBandwidthOut: int
|
47512
|
-
:param _AddressChargePrepaid: 包月带宽网络计费模式参数。弹性公网IP的调整目标计费模式是
|
47531
|
+
:param _AddressChargePrepaid: 包月带宽网络计费模式参数。弹性公网IP的调整目标计费模式是 BANDWIDTH_PREPAID_BY_MONTH(包月按带宽预付费)时,必传该参数。
|
47513
47532
|
:type AddressChargePrepaid: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
47514
47533
|
"""
|
47515
47534
|
self._AddressId = None
|
@@ -47519,7 +47538,7 @@ class ModifyAddressInternetChargeTypeRequest(AbstractModel):
|
|
47519
47538
|
|
47520
47539
|
@property
|
47521
47540
|
def AddressId(self):
|
47522
|
-
"""弹性公网IP的唯一ID,形如eip-xxx
|
47541
|
+
"""弹性公网IP的唯一ID,形如eip-xxx,可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47523
47542
|
:rtype: str
|
47524
47543
|
"""
|
47525
47544
|
return self._AddressId
|
@@ -47530,7 +47549,10 @@ class ModifyAddressInternetChargeTypeRequest(AbstractModel):
|
|
47530
47549
|
|
47531
47550
|
@property
|
47532
47551
|
def InternetChargeType(self):
|
47533
|
-
"""弹性公网IP
|
47552
|
+
"""弹性公网IP调整目标计费模式,支持:
|
47553
|
+
BANDWIDTH_PREPAID_BY_MONTH:包月按带宽预付费
|
47554
|
+
TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费
|
47555
|
+
BANDWIDTH_POSTPAID_BY_HOUR:带宽按小时后付费
|
47534
47556
|
:rtype: str
|
47535
47557
|
"""
|
47536
47558
|
return self._InternetChargeType
|
@@ -47541,7 +47563,7 @@ class ModifyAddressInternetChargeTypeRequest(AbstractModel):
|
|
47541
47563
|
|
47542
47564
|
@property
|
47543
47565
|
def InternetMaxBandwidthOut(self):
|
47544
|
-
"""弹性公网IP
|
47566
|
+
"""弹性公网IP调整目标带宽值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
|
47545
47567
|
:rtype: int
|
47546
47568
|
"""
|
47547
47569
|
return self._InternetMaxBandwidthOut
|
@@ -47552,7 +47574,7 @@ class ModifyAddressInternetChargeTypeRequest(AbstractModel):
|
|
47552
47574
|
|
47553
47575
|
@property
|
47554
47576
|
def AddressChargePrepaid(self):
|
47555
|
-
"""包月带宽网络计费模式参数。弹性公网IP的调整目标计费模式是
|
47577
|
+
"""包月带宽网络计费模式参数。弹性公网IP的调整目标计费模式是 BANDWIDTH_PREPAID_BY_MONTH(包月按带宽预付费)时,必传该参数。
|
47556
47578
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
47557
47579
|
"""
|
47558
47580
|
return self._AddressChargePrepaid
|
@@ -47822,9 +47844,10 @@ class ModifyAddressesBandwidthRequest(AbstractModel):
|
|
47822
47844
|
|
47823
47845
|
def __init__(self):
|
47824
47846
|
r"""
|
47825
|
-
:param _AddressIds: EIP唯一标识ID列表,形如'eip-xxxx'
|
47847
|
+
:param _AddressIds: EIP唯一标识ID列表,形如'eip-xxxx',可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47848
|
+
|
47826
47849
|
:type AddressIds: list of str
|
47827
|
-
:param _InternetMaxBandwidthOut:
|
47850
|
+
:param _InternetMaxBandwidthOut: 调整带宽目标值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
|
47828
47851
|
:type InternetMaxBandwidthOut: int
|
47829
47852
|
:param _StartTime: 包月带宽起始时间(已废弃,输入无效)
|
47830
47853
|
:type StartTime: str
|
@@ -47838,7 +47861,8 @@ class ModifyAddressesBandwidthRequest(AbstractModel):
|
|
47838
47861
|
|
47839
47862
|
@property
|
47840
47863
|
def AddressIds(self):
|
47841
|
-
"""EIP唯一标识ID列表,形如'eip-xxxx'
|
47864
|
+
"""EIP唯一标识ID列表,形如'eip-xxxx',可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
47865
|
+
|
47842
47866
|
:rtype: list of str
|
47843
47867
|
"""
|
47844
47868
|
return self._AddressIds
|
@@ -47849,7 +47873,7 @@ class ModifyAddressesBandwidthRequest(AbstractModel):
|
|
47849
47873
|
|
47850
47874
|
@property
|
47851
47875
|
def InternetMaxBandwidthOut(self):
|
47852
|
-
"""
|
47876
|
+
"""调整带宽目标值,可调整的带宽上限值参考产品文档[带宽上限](https://cloud.tencent.com/document/product/1199/48333)。
|
47853
47877
|
:rtype: int
|
47854
47878
|
"""
|
47855
47879
|
return self._InternetMaxBandwidthOut
|
@@ -49758,9 +49782,9 @@ class ModifyIPv6AddressesAttributesRequest(AbstractModel):
|
|
49758
49782
|
|
49759
49783
|
def __init__(self):
|
49760
49784
|
r"""
|
49761
|
-
:param _IPv6AddressIds: 弹性公网IPv6唯一ID
|
49785
|
+
:param _IPv6AddressIds: 弹性公网IPv6唯一ID列表。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressIds。
|
49762
49786
|
:type IPv6AddressIds: list of str
|
49763
|
-
:param _IPv6AddressName: 弹性公网IPv6
|
49787
|
+
:param _IPv6AddressName: 弹性公网IPv6地址名称,长度上限为128个字符,允许使用大小写字母、汉字、数字、连字符"-"和下划线"_",不能包含空格。
|
49764
49788
|
:type IPv6AddressName: str
|
49765
49789
|
"""
|
49766
49790
|
self._IPv6AddressIds = None
|
@@ -49768,7 +49792,7 @@ class ModifyIPv6AddressesAttributesRequest(AbstractModel):
|
|
49768
49792
|
|
49769
49793
|
@property
|
49770
49794
|
def IPv6AddressIds(self):
|
49771
|
-
"""弹性公网IPv6唯一ID
|
49795
|
+
"""弹性公网IPv6唯一ID列表。可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressIds。
|
49772
49796
|
:rtype: list of str
|
49773
49797
|
"""
|
49774
49798
|
return self._IPv6AddressIds
|
@@ -49779,7 +49803,7 @@ class ModifyIPv6AddressesAttributesRequest(AbstractModel):
|
|
49779
49803
|
|
49780
49804
|
@property
|
49781
49805
|
def IPv6AddressName(self):
|
49782
|
-
"""弹性公网IPv6
|
49806
|
+
"""弹性公网IPv6地址名称,长度上限为128个字符,允许使用大小写字母、汉字、数字、连字符"-"和下划线"_",不能包含空格。
|
49783
49807
|
:rtype: str
|
49784
49808
|
"""
|
49785
49809
|
return self._IPv6AddressName
|
@@ -49916,11 +49940,11 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
|
|
49916
49940
|
|
49917
49941
|
def __init__(self):
|
49918
49942
|
r"""
|
49919
|
-
:param _InternetMaxBandwidthOut: 修改的目标带宽,单位Mbps
|
49943
|
+
:param _InternetMaxBandwidthOut: 修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
|
49920
49944
|
:type InternetMaxBandwidthOut: int
|
49921
|
-
:param _Ip6Addresses: IPv6
|
49945
|
+
:param _Ip6Addresses: IPv6地址。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
49922
49946
|
:type Ip6Addresses: list of str
|
49923
|
-
:param _Ip6AddressIds: IPv6地址对应的唯一ID,形如eip-xxxxxxxx。Ip6Addresses和
|
49947
|
+
:param _Ip6AddressIds: IPv6地址对应的唯一ID,形如eip-xxxxxxxx。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6AddressIds。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
49924
49948
|
:type Ip6AddressIds: list of str
|
49925
49949
|
"""
|
49926
49950
|
self._InternetMaxBandwidthOut = None
|
@@ -49929,7 +49953,7 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
|
|
49929
49953
|
|
49930
49954
|
@property
|
49931
49955
|
def InternetMaxBandwidthOut(self):
|
49932
|
-
"""修改的目标带宽,单位Mbps
|
49956
|
+
"""修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
|
49933
49957
|
:rtype: int
|
49934
49958
|
"""
|
49935
49959
|
return self._InternetMaxBandwidthOut
|
@@ -49940,7 +49964,7 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
|
|
49940
49964
|
|
49941
49965
|
@property
|
49942
49966
|
def Ip6Addresses(self):
|
49943
|
-
"""IPv6
|
49967
|
+
"""IPv6地址。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
49944
49968
|
:rtype: list of str
|
49945
49969
|
"""
|
49946
49970
|
return self._Ip6Addresses
|
@@ -49951,7 +49975,7 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
|
|
49951
49975
|
|
49952
49976
|
@property
|
49953
49977
|
def Ip6AddressIds(self):
|
49954
|
-
"""IPv6地址对应的唯一ID,形如eip-xxxxxxxx。Ip6Addresses和
|
49978
|
+
"""IPv6地址对应的唯一ID,形如eip-xxxxxxxx。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6AddressIds。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
49955
49979
|
:rtype: list of str
|
49956
49980
|
"""
|
49957
49981
|
return self._Ip6AddressIds
|
@@ -58570,14 +58594,14 @@ class ReleaseAddressesRequest(AbstractModel):
|
|
58570
58594
|
|
58571
58595
|
def __init__(self):
|
58572
58596
|
r"""
|
58573
|
-
:param _AddressIds: 标识 EIP 的唯一 ID
|
58597
|
+
:param _AddressIds: 标识 EIP 的唯一 ID 列表。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。EIP 唯一 ID 形如:`eip-11112222`。
|
58574
58598
|
:type AddressIds: list of str
|
58575
58599
|
"""
|
58576
58600
|
self._AddressIds = None
|
58577
58601
|
|
58578
58602
|
@property
|
58579
58603
|
def AddressIds(self):
|
58580
|
-
"""标识 EIP 的唯一 ID
|
58604
|
+
"""标识 EIP 的唯一 ID 列表。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。EIP 唯一 ID 形如:`eip-11112222`。
|
58581
58605
|
:rtype: list of str
|
58582
58606
|
"""
|
58583
58607
|
return self._AddressIds
|
@@ -58713,9 +58737,9 @@ class ReleaseIp6AddressesBandwidthRequest(AbstractModel):
|
|
58713
58737
|
|
58714
58738
|
def __init__(self):
|
58715
58739
|
r"""
|
58716
|
-
:param _Ip6Addresses: IPv6
|
58740
|
+
:param _Ip6Addresses: IPv6地址。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
58717
58741
|
:type Ip6Addresses: list of str
|
58718
|
-
:param _Ip6AddressIds: IPv6地址对应的唯一ID,形如eip-xxxxxxxx。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
58742
|
+
:param _Ip6AddressIds: IPv6地址对应的唯一ID,形如eip-xxxxxxxx。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6AddressIds。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
58719
58743
|
:type Ip6AddressIds: list of str
|
58720
58744
|
"""
|
58721
58745
|
self._Ip6Addresses = None
|
@@ -58723,7 +58747,7 @@ class ReleaseIp6AddressesBandwidthRequest(AbstractModel):
|
|
58723
58747
|
|
58724
58748
|
@property
|
58725
58749
|
def Ip6Addresses(self):
|
58726
|
-
"""IPv6
|
58750
|
+
"""IPv6地址。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
58727
58751
|
:rtype: list of str
|
58728
58752
|
"""
|
58729
58753
|
return self._Ip6Addresses
|
@@ -58734,7 +58758,7 @@ class ReleaseIp6AddressesBandwidthRequest(AbstractModel):
|
|
58734
58758
|
|
58735
58759
|
@property
|
58736
58760
|
def Ip6AddressIds(self):
|
58737
|
-
"""IPv6地址对应的唯一ID,形如eip-xxxxxxxx。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
58761
|
+
"""IPv6地址对应的唯一ID,形如eip-xxxxxxxx。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6AddressIds。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
58738
58762
|
:rtype: list of str
|
58739
58763
|
"""
|
58740
58764
|
return self._Ip6AddressIds
|
@@ -58984,7 +59008,7 @@ class RenewAddressesRequest(AbstractModel):
|
|
58984
59008
|
|
58985
59009
|
def __init__(self):
|
58986
59010
|
r"""
|
58987
|
-
:param _AddressIds: EIP唯一标识ID列表,形如'eip-xxxx'
|
59011
|
+
:param _AddressIds: EIP唯一标识ID列表,形如'eip-xxxx',可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
58988
59012
|
:type AddressIds: list of str
|
58989
59013
|
:param _AddressChargePrepaid: 续费参数
|
58990
59014
|
:type AddressChargePrepaid: :class:`tencentcloud.vpc.v20170312.models.AddressChargePrepaid`
|
@@ -58994,7 +59018,7 @@ class RenewAddressesRequest(AbstractModel):
|
|
58994
59018
|
|
58995
59019
|
@property
|
58996
59020
|
def AddressIds(self):
|
58997
|
-
"""EIP唯一标识ID列表,形如'eip-xxxx'
|
59021
|
+
"""EIP唯一标识ID列表,形如'eip-xxxx',可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。
|
58998
59022
|
:rtype: list of str
|
58999
59023
|
"""
|
59000
59024
|
return self._AddressIds
|