tencentcloud-sdk-python-vcube 3.1.67__tar.gz → 3.1.76__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.67 → tencentcloud_sdk_python_vcube-3.1.76}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/setup.py +1 -1
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/models.py +68 -8
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud_sdk_python_vcube.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_vcube-3.1.76/tencentcloud_sdk_python_vcube.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_vcube-3.1.67/tencentcloud_sdk_python_vcube.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/README.rst +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/setup.cfg +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/__init__.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/__init__.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/errorcodes.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/vcube_client.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/vcube_client_async.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud_sdk_python_vcube.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud_sdk_python_vcube.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_vcube-3.1.67 → tencentcloud_sdk_python_vcube-3.1.76}/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.76
|
|
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.76
|
|
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.76,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Vcube SDK for Python',
|
|
@@ -2047,6 +2047,66 @@ class DescribeLicenseListRequest(AbstractModel):
|
|
|
2047
2047
|
|
|
2048
2048
|
"""
|
|
2049
2049
|
|
|
2050
|
+
def __init__(self):
|
|
2051
|
+
r"""
|
|
2052
|
+
:param _PageNumber: <p>页码,从0开始</p>
|
|
2053
|
+
:type PageNumber: int
|
|
2054
|
+
:param _PageSize: <p>每页数据量</p>
|
|
2055
|
+
:type PageSize: int
|
|
2056
|
+
:param _Platform: <p>pc端还是mobile端</p>
|
|
2057
|
+
:type Platform: str
|
|
2058
|
+
"""
|
|
2059
|
+
self._PageNumber = None
|
|
2060
|
+
self._PageSize = None
|
|
2061
|
+
self._Platform = None
|
|
2062
|
+
|
|
2063
|
+
@property
|
|
2064
|
+
def PageNumber(self):
|
|
2065
|
+
r"""<p>页码,从0开始</p>
|
|
2066
|
+
:rtype: int
|
|
2067
|
+
"""
|
|
2068
|
+
return self._PageNumber
|
|
2069
|
+
|
|
2070
|
+
@PageNumber.setter
|
|
2071
|
+
def PageNumber(self, PageNumber):
|
|
2072
|
+
self._PageNumber = PageNumber
|
|
2073
|
+
|
|
2074
|
+
@property
|
|
2075
|
+
def PageSize(self):
|
|
2076
|
+
r"""<p>每页数据量</p>
|
|
2077
|
+
:rtype: int
|
|
2078
|
+
"""
|
|
2079
|
+
return self._PageSize
|
|
2080
|
+
|
|
2081
|
+
@PageSize.setter
|
|
2082
|
+
def PageSize(self, PageSize):
|
|
2083
|
+
self._PageSize = PageSize
|
|
2084
|
+
|
|
2085
|
+
@property
|
|
2086
|
+
def Platform(self):
|
|
2087
|
+
r"""<p>pc端还是mobile端</p>
|
|
2088
|
+
:rtype: str
|
|
2089
|
+
"""
|
|
2090
|
+
return self._Platform
|
|
2091
|
+
|
|
2092
|
+
@Platform.setter
|
|
2093
|
+
def Platform(self, Platform):
|
|
2094
|
+
self._Platform = Platform
|
|
2095
|
+
|
|
2096
|
+
|
|
2097
|
+
def _deserialize(self, params):
|
|
2098
|
+
self._PageNumber = params.get("PageNumber")
|
|
2099
|
+
self._PageSize = params.get("PageSize")
|
|
2100
|
+
self._Platform = params.get("Platform")
|
|
2101
|
+
memeber_set = set(params.keys())
|
|
2102
|
+
for name, value in vars(self).items():
|
|
2103
|
+
property_name = name[1:]
|
|
2104
|
+
if property_name in memeber_set:
|
|
2105
|
+
memeber_set.remove(property_name)
|
|
2106
|
+
if len(memeber_set) > 0:
|
|
2107
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2108
|
+
|
|
2109
|
+
|
|
2050
2110
|
|
|
2051
2111
|
class DescribeLicenseListResponse(AbstractModel):
|
|
2052
2112
|
r"""DescribeLicenseList返回参数结构体
|
|
@@ -2055,13 +2115,13 @@ class DescribeLicenseListResponse(AbstractModel):
|
|
|
2055
2115
|
|
|
2056
2116
|
def __init__(self):
|
|
2057
2117
|
r"""
|
|
2058
|
-
:param _Count:
|
|
2118
|
+
:param _Count: <p>临期license数量</p>
|
|
2059
2119
|
:type Count: int
|
|
2060
|
-
:param _Overview:
|
|
2120
|
+
:param _Overview: <p>正式license总览统计数据</p>
|
|
2061
2121
|
:type Overview: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2062
|
-
:param _LicenseList:
|
|
2122
|
+
:param _LicenseList: <p>临期license列表</p>
|
|
2063
2123
|
:type LicenseList: list of OverviewLicense
|
|
2064
|
-
:param _TrialOverview:
|
|
2124
|
+
:param _TrialOverview: <p>测试license总览统计数据</p>
|
|
2065
2125
|
:type TrialOverview: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2066
2126
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2067
2127
|
:type RequestId: str
|
|
@@ -2074,7 +2134,7 @@ class DescribeLicenseListResponse(AbstractModel):
|
|
|
2074
2134
|
|
|
2075
2135
|
@property
|
|
2076
2136
|
def Count(self):
|
|
2077
|
-
r"""
|
|
2137
|
+
r"""<p>临期license数量</p>
|
|
2078
2138
|
:rtype: int
|
|
2079
2139
|
"""
|
|
2080
2140
|
return self._Count
|
|
@@ -2085,7 +2145,7 @@ class DescribeLicenseListResponse(AbstractModel):
|
|
|
2085
2145
|
|
|
2086
2146
|
@property
|
|
2087
2147
|
def Overview(self):
|
|
2088
|
-
r"""
|
|
2148
|
+
r"""<p>正式license总览统计数据</p>
|
|
2089
2149
|
:rtype: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2090
2150
|
"""
|
|
2091
2151
|
return self._Overview
|
|
@@ -2096,7 +2156,7 @@ class DescribeLicenseListResponse(AbstractModel):
|
|
|
2096
2156
|
|
|
2097
2157
|
@property
|
|
2098
2158
|
def LicenseList(self):
|
|
2099
|
-
r"""
|
|
2159
|
+
r"""<p>临期license列表</p>
|
|
2100
2160
|
:rtype: list of OverviewLicense
|
|
2101
2161
|
"""
|
|
2102
2162
|
return self._LicenseList
|
|
@@ -2107,7 +2167,7 @@ class DescribeLicenseListResponse(AbstractModel):
|
|
|
2107
2167
|
|
|
2108
2168
|
@property
|
|
2109
2169
|
def TrialOverview(self):
|
|
2110
|
-
r"""
|
|
2170
|
+
r"""<p>测试license总览统计数据</p>
|
|
2111
2171
|
:rtype: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2112
2172
|
"""
|
|
2113
2173
|
return self._TrialOverview
|
|
@@ -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.76
|
|
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.76
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.76
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.67
|
|
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
|