tencentcloud-sdk-python-vpc 3.0.1394__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 +19 -2
- {tencentcloud_sdk_python_vpc-3.0.1394.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.1394.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_vpc-3.0.1394.dist-info → tencentcloud_sdk_python_vpc-3.0.1395.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_vpc-3.0.1394.dist-info → tencentcloud_sdk_python_vpc-3.0.1395.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -15256,7 +15256,6 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15256
15256
|
<li>51200: 50TB流量,有效期一个月</li>
|
|
15257
15257
|
<li>60: 60GB流量,有效期半年</li>
|
|
15258
15258
|
<li>300: 300GB流量,有效期半年</li>
|
|
15259
|
-
<li>600: 600GB流量,有效期半年</li>
|
|
15260
15259
|
<li>3072: 3TB流量,有效期半年</li>
|
|
15261
15260
|
<li>6144: 6TB流量,有效期半年</li>
|
|
15262
15261
|
<li>30720: 30TB流量,有效期半年</li>
|
|
@@ -15265,9 +15264,14 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15265
15264
|
:type TrafficAmount: int
|
|
15266
15265
|
:param _TrafficPackageCount: 流量包数量,可选范围 1~20。
|
|
15267
15266
|
:type TrafficPackageCount: int
|
|
15267
|
+
:param _DeductType: 抵扣类型,默认为 FULL_TIME,可选值:
|
|
15268
|
+
<li>FULL_TIME: 全时流量包</li>
|
|
15269
|
+
<li>IDLE_TIME: 闲时流量包</li>
|
|
15270
|
+
:type DeductType: str
|
|
15268
15271
|
"""
|
|
15269
15272
|
self._TrafficAmount = None
|
|
15270
15273
|
self._TrafficPackageCount = None
|
|
15274
|
+
self._DeductType = None
|
|
15271
15275
|
|
|
15272
15276
|
@property
|
|
15273
15277
|
def TrafficAmount(self):
|
|
@@ -15280,7 +15284,6 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15280
15284
|
<li>51200: 50TB流量,有效期一个月</li>
|
|
15281
15285
|
<li>60: 60GB流量,有效期半年</li>
|
|
15282
15286
|
<li>300: 300GB流量,有效期半年</li>
|
|
15283
|
-
<li>600: 600GB流量,有效期半年</li>
|
|
15284
15287
|
<li>3072: 3TB流量,有效期半年</li>
|
|
15285
15288
|
<li>6144: 6TB流量,有效期半年</li>
|
|
15286
15289
|
<li>30720: 30TB流量,有效期半年</li>
|
|
@@ -15305,10 +15308,24 @@ class CreateTrafficPackagesRequest(AbstractModel):
|
|
|
15305
15308
|
def TrafficPackageCount(self, TrafficPackageCount):
|
|
15306
15309
|
self._TrafficPackageCount = TrafficPackageCount
|
|
15307
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
|
+
|
|
15308
15324
|
|
|
15309
15325
|
def _deserialize(self, params):
|
|
15310
15326
|
self._TrafficAmount = params.get("TrafficAmount")
|
|
15311
15327
|
self._TrafficPackageCount = params.get("TrafficPackageCount")
|
|
15328
|
+
self._DeductType = params.get("DeductType")
|
|
15312
15329
|
memeber_set = set(params.keys())
|
|
15313
15330
|
for name, value in vars(self).items():
|
|
15314
15331
|
property_name = name[1:]
|
|
@@ -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=5zO2lLZe1BHAXaibBkb5tZiMM5HPiQZRFL83ZVZxrU8,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=JM-JFr3FizkoDs3ttzNy2_eRHkoLhqLNUVmmvF-opGI,2337512
|
|
6
|
-
tencentcloud/vpc/v20170312/vpc_client.py,sha256=Uu2ejyYUJ3_iVCMYy7l9y5tBw4-L_FIvkVHlgcNd2w4,448258
|
|
7
|
-
tencentcloud_sdk_python_vpc-3.0.1394.dist-info/METADATA,sha256=tn04cwqUC7xmBZXDAtcr-RIF6IqW2gLOBLkcLnqpHhU,1496
|
|
8
|
-
tencentcloud_sdk_python_vpc-3.0.1394.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_vpc-3.0.1394.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_vpc-3.0.1394.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|