tencentcloud-sdk-python-vcube 3.1.2__tar.gz → 3.1.19__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_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/setup.py +1 -1
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud/vcube/v20220410/models.py +30 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud_sdk_python_vcube.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_vcube-3.1.19/tencentcloud_sdk_python_vcube.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_vcube-3.1.2/tencentcloud_sdk_python_vcube.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/README.rst +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/setup.cfg +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud/vcube/__init__.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud/vcube/v20220410/__init__.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud/vcube/v20220410/errorcodes.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud/vcube/v20220410/vcube_client.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud/vcube/v20220410/vcube_client_async.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud_sdk_python_vcube.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud_sdk_python_vcube.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_vcube-3.1.2 → tencentcloud_sdk_python_vcube-3.1.19}/tencentcloud_sdk_python_vcube.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-vcube
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.19
|
|
4
4
|
Summary: Tencent Cloud Vcube 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.19
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-vcube',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.19,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Vcube SDK for Python',
|
|
@@ -1845,6 +1845,36 @@ class DeleteApplicationAndVideoLicenseRequest(AbstractModel):
|
|
|
1845
1845
|
|
|
1846
1846
|
"""
|
|
1847
1847
|
|
|
1848
|
+
def __init__(self):
|
|
1849
|
+
r"""
|
|
1850
|
+
:param _LicenseId: license唯一标识
|
|
1851
|
+
:type LicenseId: int
|
|
1852
|
+
"""
|
|
1853
|
+
self._LicenseId = None
|
|
1854
|
+
|
|
1855
|
+
@property
|
|
1856
|
+
def LicenseId(self):
|
|
1857
|
+
r"""license唯一标识
|
|
1858
|
+
:rtype: int
|
|
1859
|
+
"""
|
|
1860
|
+
return self._LicenseId
|
|
1861
|
+
|
|
1862
|
+
@LicenseId.setter
|
|
1863
|
+
def LicenseId(self, LicenseId):
|
|
1864
|
+
self._LicenseId = LicenseId
|
|
1865
|
+
|
|
1866
|
+
|
|
1867
|
+
def _deserialize(self, params):
|
|
1868
|
+
self._LicenseId = params.get("LicenseId")
|
|
1869
|
+
memeber_set = set(params.keys())
|
|
1870
|
+
for name, value in vars(self).items():
|
|
1871
|
+
property_name = name[1:]
|
|
1872
|
+
if property_name in memeber_set:
|
|
1873
|
+
memeber_set.remove(property_name)
|
|
1874
|
+
if len(memeber_set) > 0:
|
|
1875
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1876
|
+
|
|
1877
|
+
|
|
1848
1878
|
|
|
1849
1879
|
class DeleteApplicationAndVideoLicenseResponse(AbstractModel):
|
|
1850
1880
|
r"""DeleteApplicationAndVideoLicense返回参数结构体
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-vcube
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.19
|
|
4
4
|
Summary: Tencent Cloud Vcube 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.19
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.19
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.2
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|