tencentcloud-sdk-python-cloudapp 3.0.1284__tar.gz → 3.0.1285__tar.gz
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-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/setup.py +1 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud/cloudapp/v20220530/models.py +15 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud_sdk_python_cloudapp.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cloudapp-3.0.1285/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cloudapp-3.0.1284/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/README.rst +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud/cloudapp/__init__.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud/cloudapp/v20220530/__init__.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud/cloudapp/v20220530/cloudapp_client.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud/cloudapp/v20220530/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud_sdk_python_cloudapp.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud_sdk_python_cloudapp.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/tencentcloud_sdk_python_cloudapp.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cloudapp',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1285"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cloudapp SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -59,6 +59,8 @@ class License(AbstractModel):
|
|
|
59
59
|
:type ExpirationDate: str
|
|
60
60
|
:param _LifeSpanUnit: 授权时长单位,枚举值有Y年/M月/D日三种
|
|
61
61
|
:type LifeSpanUnit: str
|
|
62
|
+
:param _LicenseType: 授权的类型:Standard正式版/Development开发版/Trial体验版
|
|
63
|
+
:type LicenseType: str
|
|
62
64
|
"""
|
|
63
65
|
self._LicenseId = None
|
|
64
66
|
self._LicenseMode = None
|
|
@@ -76,6 +78,7 @@ class License(AbstractModel):
|
|
|
76
78
|
self._ActivationDate = None
|
|
77
79
|
self._ExpirationDate = None
|
|
78
80
|
self._LifeSpanUnit = None
|
|
81
|
+
self._LicenseType = None
|
|
79
82
|
|
|
80
83
|
@property
|
|
81
84
|
def LicenseId(self):
|
|
@@ -255,6 +258,17 @@ class License(AbstractModel):
|
|
|
255
258
|
def LifeSpanUnit(self, LifeSpanUnit):
|
|
256
259
|
self._LifeSpanUnit = LifeSpanUnit
|
|
257
260
|
|
|
261
|
+
@property
|
|
262
|
+
def LicenseType(self):
|
|
263
|
+
"""授权的类型:Standard正式版/Development开发版/Trial体验版
|
|
264
|
+
:rtype: str
|
|
265
|
+
"""
|
|
266
|
+
return self._LicenseType
|
|
267
|
+
|
|
268
|
+
@LicenseType.setter
|
|
269
|
+
def LicenseType(self, LicenseType):
|
|
270
|
+
self._LicenseType = LicenseType
|
|
271
|
+
|
|
258
272
|
|
|
259
273
|
def _deserialize(self, params):
|
|
260
274
|
self._LicenseId = params.get("LicenseId")
|
|
@@ -278,6 +292,7 @@ class License(AbstractModel):
|
|
|
278
292
|
self._ActivationDate = params.get("ActivationDate")
|
|
279
293
|
self._ExpirationDate = params.get("ExpirationDate")
|
|
280
294
|
self._LifeSpanUnit = params.get("LifeSpanUnit")
|
|
295
|
+
self._LicenseType = params.get("LicenseType")
|
|
281
296
|
memeber_set = set(params.keys())
|
|
282
297
|
for name, value in vars(self).items():
|
|
283
298
|
property_name = name[1:]
|
tencentcloud-sdk-python-cloudapp-3.0.1285/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1285
|
tencentcloud-sdk-python-cloudapp-3.0.1284/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1284
|
{tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-cloudapp-3.0.1284 → tencentcloud-sdk-python-cloudapp-3.0.1285}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|