tencentcloud-sdk-python-cloudapp 3.1.33__tar.gz → 3.1.40__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.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/setup.py +1 -1
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud/cloudapp/v20220530/models.py +30 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud_sdk_python_cloudapp.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cloudapp-3.1.40/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cloudapp-3.1.33/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/README.rst +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud/cloudapp/__init__.py +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud/cloudapp/v20220530/__init__.py +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud/cloudapp/v20220530/cloudapp_client.py +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud/cloudapp/v20220530/cloudapp_client_async.py +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud/cloudapp/v20220530/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud_sdk_python_cloudapp.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud_sdk_python_cloudapp.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/tencentcloud_sdk_python_cloudapp.egg-info/top_level.txt +0 -0
{tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cloudapp
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.40
|
|
4
4
|
Summary: Tencent Cloud Cloudapp 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<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.40
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
{tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.40,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cloudapp SDK for Python',
|
|
@@ -256,6 +256,10 @@ class License(AbstractModel):
|
|
|
256
256
|
:type LicenseData: :class:`tencentcloud.cloudapp.v20220530.models.LicenseData`
|
|
257
257
|
:param _IssueURL: <p>License 颁发地址</p>
|
|
258
258
|
:type IssueURL: str
|
|
259
|
+
:param _ProviderUin: <p>商品供应商 UIN</p>
|
|
260
|
+
:type ProviderUin: str
|
|
261
|
+
:param _CreateSource: <p>License 创建来源 ID</p>
|
|
262
|
+
:type CreateSource: str
|
|
259
263
|
"""
|
|
260
264
|
self._LicenseId = None
|
|
261
265
|
self._LicenseMode = None
|
|
@@ -277,6 +281,8 @@ class License(AbstractModel):
|
|
|
277
281
|
self._LicenseLevel = None
|
|
278
282
|
self._LicenseData = None
|
|
279
283
|
self._IssueURL = None
|
|
284
|
+
self._ProviderUin = None
|
|
285
|
+
self._CreateSource = None
|
|
280
286
|
|
|
281
287
|
@property
|
|
282
288
|
def LicenseId(self):
|
|
@@ -500,6 +506,28 @@ class License(AbstractModel):
|
|
|
500
506
|
def IssueURL(self, IssueURL):
|
|
501
507
|
self._IssueURL = IssueURL
|
|
502
508
|
|
|
509
|
+
@property
|
|
510
|
+
def ProviderUin(self):
|
|
511
|
+
r"""<p>商品供应商 UIN</p>
|
|
512
|
+
:rtype: str
|
|
513
|
+
"""
|
|
514
|
+
return self._ProviderUin
|
|
515
|
+
|
|
516
|
+
@ProviderUin.setter
|
|
517
|
+
def ProviderUin(self, ProviderUin):
|
|
518
|
+
self._ProviderUin = ProviderUin
|
|
519
|
+
|
|
520
|
+
@property
|
|
521
|
+
def CreateSource(self):
|
|
522
|
+
r"""<p>License 创建来源 ID</p>
|
|
523
|
+
:rtype: str
|
|
524
|
+
"""
|
|
525
|
+
return self._CreateSource
|
|
526
|
+
|
|
527
|
+
@CreateSource.setter
|
|
528
|
+
def CreateSource(self, CreateSource):
|
|
529
|
+
self._CreateSource = CreateSource
|
|
530
|
+
|
|
503
531
|
|
|
504
532
|
def _deserialize(self, params):
|
|
505
533
|
self._LicenseId = params.get("LicenseId")
|
|
@@ -529,6 +557,8 @@ class License(AbstractModel):
|
|
|
529
557
|
self._LicenseData = LicenseData()
|
|
530
558
|
self._LicenseData._deserialize(params.get("LicenseData"))
|
|
531
559
|
self._IssueURL = params.get("IssueURL")
|
|
560
|
+
self._ProviderUin = params.get("ProviderUin")
|
|
561
|
+
self._CreateSource = params.get("CreateSource")
|
|
532
562
|
memeber_set = set(params.keys())
|
|
533
563
|
for name, value in vars(self).items():
|
|
534
564
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cloudapp
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.40
|
|
4
4
|
Summary: Tencent Cloud Cloudapp 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<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.40
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
tencentcloud_sdk_python_cloudapp-3.1.40/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.40
|
tencentcloud_sdk_python_cloudapp-3.1.33/tencentcloud_sdk_python_cloudapp.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.33
|
{tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/README.rst
RENAMED
|
File without changes
|
{tencentcloud_sdk_python_cloudapp-3.1.33 → tencentcloud_sdk_python_cloudapp-3.1.40}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|