tencentcloud-sdk-python-vpc 3.0.1393__py2.py3-none-any.whl → 3.0.1395__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tencentcloud-sdk-python-vpc might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/vpc/v20170312/models.py +31 -8
- {tencentcloud_sdk_python_vpc-3.0.1393.dist-info → tencentcloud_sdk_python_vpc-3.0.1395.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_vpc-3.0.1395.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_vpc-3.0.1393.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vpc-3.0.1393.dist-info → tencentcloud_sdk_python_vpc-3.0.1395.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vpc-3.0.1393.dist-info → tencentcloud_sdk_python_vpc-3.0.1395.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -10783,8 +10783,7 @@ class CreateFlowLogRequest(AbstractModel):
|
|
|
10783
10783
|
:param _FlowLogDescription: 流日志实例描述。长度不超过512个字符。
|
|
10784
10784
|
:type FlowLogDescription: str
|
|
10785
10785
|
:param _CloudLogId: 流日志存储ID(cls的日志主题ID,
|
|
10786
|
-
可通过[DescribeTopics](https://cloud.tencent.com/document/product/614/56454)
|
|
10787
|
-
)。当StorageType为cls时,CloudLogId为必选。
|
|
10786
|
+
可通过[DescribeTopics](https://cloud.tencent.com/document/product/614/56454)接口获取)。当StorageType为cls时,CloudLogId为必选。
|
|
10788
10787
|
:type CloudLogId: str
|
|
10789
10788
|
:param _Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
|
10790
10789
|
:type Tags: list of Tag
|
|
@@ -10876,8 +10875,7 @@ class CreateFlowLogRequest(AbstractModel):
|
|
|
10876
10875
|
@property
|
|
10877
10876
|
def CloudLogId(self):
|
|
10878
10877
|
"""流日志存储ID(cls的日志主题ID,
|
|
10879
|
-
可通过[DescribeTopics](https://cloud.tencent.com/document/product/614/56454)
|
|
10880
|
-
)。当StorageType为cls时,CloudLogId为必选。
|
|
10878
|
+
可通过[DescribeTopics](https://cloud.tencent.com/document/product/614/56454)接口获取)。当StorageType为cls时,CloudLogId为必选。
|
|
10881
10879
|
:rtype: str
|
|
10882
10880
|
"""
|
|
10883
10881
|
return self._CloudLogId
|
|
@@ -15258,7 +15256,6 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15258
15256
|
<li>51200: 50TB流量,有效期一个月</li>
|
|
15259
15257
|
<li>60: 60GB流量,有效期半年</li>
|
|
15260
15258
|
<li>300: 300GB流量,有效期半年</li>
|
|
15261
|
-
<li>600: 600GB流量,有效期半年</li>
|
|
15262
15259
|
<li>3072: 3TB流量,有效期半年</li>
|
|
15263
15260
|
<li>6144: 6TB流量,有效期半年</li>
|
|
15264
15261
|
<li>30720: 30TB流量,有效期半年</li>
|
|
@@ -15267,9 +15264,14 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15267
15264
|
:type TrafficAmount: int
|
|
15268
15265
|
:param _TrafficPackageCount: 流量包数量,可选范围 1~20。
|
|
15269
15266
|
:type TrafficPackageCount: int
|
|
15267
|
+
:param _DeductType: 抵扣类型,默认为 FULL_TIME,可选值:
|
|
15268
|
+
<li>FULL_TIME: 全时流量包</li>
|
|
15269
|
+
<li>IDLE_TIME: 闲时流量包</li>
|
|
15270
|
+
:type DeductType: str
|
|
15270
15271
|
"""
|
|
15271
15272
|
self._TrafficAmount = None
|
|
15272
15273
|
self._TrafficPackageCount = None
|
|
15274
|
+
self._DeductType = None
|
|
15273
15275
|
|
|
15274
15276
|
@property
|
|
15275
15277
|
def TrafficAmount(self):
|
|
@@ -15282,7 +15284,6 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15282
15284
|
<li>51200: 50TB流量,有效期一个月</li>
|
|
15283
15285
|
<li>60: 60GB流量,有效期半年</li>
|
|
15284
15286
|
<li>300: 300GB流量,有效期半年</li>
|
|
15285
|
-
<li>600: 600GB流量,有效期半年</li>
|
|
15286
15287
|
<li>3072: 3TB流量,有效期半年</li>
|
|
15287
15288
|
<li>6144: 6TB流量,有效期半年</li>
|
|
15288
15289
|
<li>30720: 30TB流量,有效期半年</li>
|
|
@@ -15307,10 +15308,24 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15307
15308
|
def TrafficPackageCount(self, TrafficPackageCount):
|
|
15308
15309
|
self._TrafficPackageCount = TrafficPackageCount
|
|
15309
15310
|
|
|
15311
|
+
@property
|
|
15312
|
+
def DeductType(self):
|
|
15313
|
+
"""抵扣类型,默认为 FULL_TIME,可选值:
|
|
15314
|
+
<li>FULL_TIME: 全时流量包</li>
|
|
15315
|
+
<li>IDLE_TIME: 闲时流量包</li>
|
|
15316
|
+
:rtype: str
|
|
15317
|
+
"""
|
|
15318
|
+
return self._DeductType
|
|
15319
|
+
|
|
15320
|
+
@DeductType.setter
|
|
15321
|
+
def DeductType(self, DeductType):
|
|
15322
|
+
self._DeductType = DeductType
|
|
15323
|
+
|
|
15310
15324
|
|
|
15311
15325
|
def _deserialize(self, params):
|
|
15312
15326
|
self._TrafficAmount = params.get("TrafficAmount")
|
|
15313
15327
|
self._TrafficPackageCount = params.get("TrafficPackageCount")
|
|
15328
|
+
self._DeductType = params.get("DeductType")
|
|
15314
15329
|
memeber_set = set(params.keys())
|
|
15315
15330
|
for name, value in vars(self).items():
|
|
15316
15331
|
property_name = name[1:]
|
|
@@ -28767,7 +28782,11 @@ class DescribeLocalGatewayRequest(AbstractModel):
|
|
|
28767
28782
|
|
|
28768
28783
|
def __init__(self):
|
|
28769
28784
|
r"""
|
|
28770
|
-
:param _Filters:
|
|
28785
|
+
:param _Filters: 支持的过滤条件如下:
|
|
28786
|
+
<li>vpc-id:按照VPCID过滤。</li>
|
|
28787
|
+
<li>local-gateway-name:本地网关名称,支持模糊查询。</li>
|
|
28788
|
+
<li>local-gateway-id:本地网关实例ID。</li>
|
|
28789
|
+
<li>cdc-id:cdc实例ID。</li>
|
|
28771
28790
|
:type Filters: list of Filter
|
|
28772
28791
|
:param _Offset: 偏移量,默认为0。关于`Offset`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/11646)中的相关小节。
|
|
28773
28792
|
:type Offset: int
|
|
@@ -28780,7 +28799,11 @@ class DescribeLocalGatewayRequest(AbstractModel):
|
|
|
28780
28799
|
|
|
28781
28800
|
@property
|
|
28782
28801
|
def Filters(self):
|
|
28783
|
-
"""
|
|
28802
|
+
"""支持的过滤条件如下:
|
|
28803
|
+
<li>vpc-id:按照VPCID过滤。</li>
|
|
28804
|
+
<li>local-gateway-name:本地网关名称,支持模糊查询。</li>
|
|
28805
|
+
<li>local-gateway-id:本地网关实例ID。</li>
|
|
28806
|
+
<li>cdc-id:cdc实例ID。</li>
|
|
28784
28807
|
:rtype: list of Filter
|
|
28785
28808
|
"""
|
|
28786
28809
|
return self._Filters
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-vpc
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1395
|
|
4
4
|
Summary: Tencent Cloud Vpc SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1395)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=9e4QQrlAwDuyTfX8q_uyzdLgfF87dQ6sPReNva7SAWg,631
|
|
2
|
+
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/vpc/v20170312/errorcodes.py,sha256=rhnkWknlezYcNSLXuV22r0GiGxp2ZMEnx1F4XnvPo8w,60541
|
|
5
|
+
tencentcloud/vpc/v20170312/models.py,sha256=IElTTAleBQgEgUtH_FsTV07rpp8rEFa0P0Hb4KxmZmw,2338024
|
|
6
|
+
tencentcloud/vpc/v20170312/vpc_client.py,sha256=Uu2ejyYUJ3_iVCMYy7l9y5tBw4-L_FIvkVHlgcNd2w4,448258
|
|
7
|
+
tencentcloud_sdk_python_vpc-3.0.1395.dist-info/METADATA,sha256=-3Y1uDPyZ77LqUq6ysAEl4LIMTKp9VbQgw-gBS0vgfQ,1496
|
|
8
|
+
tencentcloud_sdk_python_vpc-3.0.1395.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_vpc-3.0.1395.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_vpc-3.0.1395.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=FhGkBbbjue_Jyac_f6O5BZ9tU8juDIwaExa-t4BSURc,631
|
|
2
|
-
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/vpc/v20170312/errorcodes.py,sha256=rhnkWknlezYcNSLXuV22r0GiGxp2ZMEnx1F4XnvPo8w,60541
|
|
5
|
-
tencentcloud/vpc/v20170312/models.py,sha256=gtZInkqdO7KakeZEVGR0HD0lhveaejjj-ODRglG5Szo,2337528
|
|
6
|
-
tencentcloud/vpc/v20170312/vpc_client.py,sha256=Uu2ejyYUJ3_iVCMYy7l9y5tBw4-L_FIvkVHlgcNd2w4,448258
|
|
7
|
-
tencentcloud_sdk_python_vpc-3.0.1393.dist-info/METADATA,sha256=boK081h5qoQzG1n22txO8S4weW7i7gImARSWSwwbgIY,1496
|
|
8
|
-
tencentcloud_sdk_python_vpc-3.0.1393.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_vpc-3.0.1393.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_vpc-3.0.1393.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|