tencentcloud-sdk-python-vcube 3.1.19__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.19 → tencentcloud_sdk_python_vcube-3.1.76}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/setup.py +1 -1
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/models.py +540 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → 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.19/tencentcloud_sdk_python_vcube.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/README.rst +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/setup.cfg +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/__init__.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/__init__.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/errorcodes.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/vcube_client.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud/vcube/v20220410/vcube_client_async.py +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud_sdk_python_vcube.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → tencentcloud_sdk_python_vcube-3.1.76}/tencentcloud_sdk_python_vcube.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_vcube-3.1.19 → 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,11 +2115,67 @@ class DescribeLicenseListResponse(AbstractModel):
|
|
|
2055
2115
|
|
|
2056
2116
|
def __init__(self):
|
|
2057
2117
|
r"""
|
|
2118
|
+
:param _Count: <p>临期license数量</p>
|
|
2119
|
+
:type Count: int
|
|
2120
|
+
:param _Overview: <p>正式license总览统计数据</p>
|
|
2121
|
+
:type Overview: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2122
|
+
:param _LicenseList: <p>临期license列表</p>
|
|
2123
|
+
:type LicenseList: list of OverviewLicense
|
|
2124
|
+
:param _TrialOverview: <p>测试license总览统计数据</p>
|
|
2125
|
+
:type TrialOverview: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2058
2126
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2059
2127
|
:type RequestId: str
|
|
2060
2128
|
"""
|
|
2129
|
+
self._Count = None
|
|
2130
|
+
self._Overview = None
|
|
2131
|
+
self._LicenseList = None
|
|
2132
|
+
self._TrialOverview = None
|
|
2061
2133
|
self._RequestId = None
|
|
2062
2134
|
|
|
2135
|
+
@property
|
|
2136
|
+
def Count(self):
|
|
2137
|
+
r"""<p>临期license数量</p>
|
|
2138
|
+
:rtype: int
|
|
2139
|
+
"""
|
|
2140
|
+
return self._Count
|
|
2141
|
+
|
|
2142
|
+
@Count.setter
|
|
2143
|
+
def Count(self, Count):
|
|
2144
|
+
self._Count = Count
|
|
2145
|
+
|
|
2146
|
+
@property
|
|
2147
|
+
def Overview(self):
|
|
2148
|
+
r"""<p>正式license总览统计数据</p>
|
|
2149
|
+
:rtype: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2150
|
+
"""
|
|
2151
|
+
return self._Overview
|
|
2152
|
+
|
|
2153
|
+
@Overview.setter
|
|
2154
|
+
def Overview(self, Overview):
|
|
2155
|
+
self._Overview = Overview
|
|
2156
|
+
|
|
2157
|
+
@property
|
|
2158
|
+
def LicenseList(self):
|
|
2159
|
+
r"""<p>临期license列表</p>
|
|
2160
|
+
:rtype: list of OverviewLicense
|
|
2161
|
+
"""
|
|
2162
|
+
return self._LicenseList
|
|
2163
|
+
|
|
2164
|
+
@LicenseList.setter
|
|
2165
|
+
def LicenseList(self, LicenseList):
|
|
2166
|
+
self._LicenseList = LicenseList
|
|
2167
|
+
|
|
2168
|
+
@property
|
|
2169
|
+
def TrialOverview(self):
|
|
2170
|
+
r"""<p>测试license总览统计数据</p>
|
|
2171
|
+
:rtype: :class:`tencentcloud.vcube.v20220410.models.Overview`
|
|
2172
|
+
"""
|
|
2173
|
+
return self._TrialOverview
|
|
2174
|
+
|
|
2175
|
+
@TrialOverview.setter
|
|
2176
|
+
def TrialOverview(self, TrialOverview):
|
|
2177
|
+
self._TrialOverview = TrialOverview
|
|
2178
|
+
|
|
2063
2179
|
@property
|
|
2064
2180
|
def RequestId(self):
|
|
2065
2181
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2073,6 +2189,19 @@ class DescribeLicenseListResponse(AbstractModel):
|
|
|
2073
2189
|
|
|
2074
2190
|
|
|
2075
2191
|
def _deserialize(self, params):
|
|
2192
|
+
self._Count = params.get("Count")
|
|
2193
|
+
if params.get("Overview") is not None:
|
|
2194
|
+
self._Overview = Overview()
|
|
2195
|
+
self._Overview._deserialize(params.get("Overview"))
|
|
2196
|
+
if params.get("LicenseList") is not None:
|
|
2197
|
+
self._LicenseList = []
|
|
2198
|
+
for item in params.get("LicenseList"):
|
|
2199
|
+
obj = OverviewLicense()
|
|
2200
|
+
obj._deserialize(item)
|
|
2201
|
+
self._LicenseList.append(obj)
|
|
2202
|
+
if params.get("TrialOverview") is not None:
|
|
2203
|
+
self._TrialOverview = Overview()
|
|
2204
|
+
self._TrialOverview._deserialize(params.get("TrialOverview"))
|
|
2076
2205
|
self._RequestId = params.get("RequestId")
|
|
2077
2206
|
|
|
2078
2207
|
|
|
@@ -5260,6 +5389,417 @@ class NewsInfo(AbstractModel):
|
|
|
5260
5389
|
|
|
5261
5390
|
|
|
5262
5391
|
|
|
5392
|
+
class Overview(AbstractModel):
|
|
5393
|
+
r"""总览统计数据
|
|
5394
|
+
|
|
5395
|
+
"""
|
|
5396
|
+
|
|
5397
|
+
def __init__(self):
|
|
5398
|
+
r"""
|
|
5399
|
+
:param _Expired: 过期license数量
|
|
5400
|
+
:type Expired: int
|
|
5401
|
+
:param _Valid: 有效license数量
|
|
5402
|
+
:type Valid: int
|
|
5403
|
+
:param _Near: 临期license数量
|
|
5404
|
+
:type Near: int
|
|
5405
|
+
"""
|
|
5406
|
+
self._Expired = None
|
|
5407
|
+
self._Valid = None
|
|
5408
|
+
self._Near = None
|
|
5409
|
+
|
|
5410
|
+
@property
|
|
5411
|
+
def Expired(self):
|
|
5412
|
+
r"""过期license数量
|
|
5413
|
+
:rtype: int
|
|
5414
|
+
"""
|
|
5415
|
+
return self._Expired
|
|
5416
|
+
|
|
5417
|
+
@Expired.setter
|
|
5418
|
+
def Expired(self, Expired):
|
|
5419
|
+
self._Expired = Expired
|
|
5420
|
+
|
|
5421
|
+
@property
|
|
5422
|
+
def Valid(self):
|
|
5423
|
+
r"""有效license数量
|
|
5424
|
+
:rtype: int
|
|
5425
|
+
"""
|
|
5426
|
+
return self._Valid
|
|
5427
|
+
|
|
5428
|
+
@Valid.setter
|
|
5429
|
+
def Valid(self, Valid):
|
|
5430
|
+
self._Valid = Valid
|
|
5431
|
+
|
|
5432
|
+
@property
|
|
5433
|
+
def Near(self):
|
|
5434
|
+
r"""临期license数量
|
|
5435
|
+
:rtype: int
|
|
5436
|
+
"""
|
|
5437
|
+
return self._Near
|
|
5438
|
+
|
|
5439
|
+
@Near.setter
|
|
5440
|
+
def Near(self, Near):
|
|
5441
|
+
self._Near = Near
|
|
5442
|
+
|
|
5443
|
+
|
|
5444
|
+
def _deserialize(self, params):
|
|
5445
|
+
self._Expired = params.get("Expired")
|
|
5446
|
+
self._Valid = params.get("Valid")
|
|
5447
|
+
self._Near = params.get("Near")
|
|
5448
|
+
memeber_set = set(params.keys())
|
|
5449
|
+
for name, value in vars(self).items():
|
|
5450
|
+
property_name = name[1:]
|
|
5451
|
+
if property_name in memeber_set:
|
|
5452
|
+
memeber_set.remove(property_name)
|
|
5453
|
+
if len(memeber_set) > 0:
|
|
5454
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5455
|
+
|
|
5456
|
+
|
|
5457
|
+
|
|
5458
|
+
class OverviewAppInfo(AbstractModel):
|
|
5459
|
+
r"""应用包名信息
|
|
5460
|
+
|
|
5461
|
+
"""
|
|
5462
|
+
|
|
5463
|
+
def __init__(self):
|
|
5464
|
+
r"""
|
|
5465
|
+
:param _Id: 应用Id
|
|
5466
|
+
:type Id: int
|
|
5467
|
+
:param _AppName: 应用名称
|
|
5468
|
+
:type AppName: str
|
|
5469
|
+
:param _BundleId: Ios 包名
|
|
5470
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5471
|
+
:type BundleId: str
|
|
5472
|
+
:param _PackageName: Andorid 包名
|
|
5473
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5474
|
+
:type PackageName: str
|
|
5475
|
+
:param _MacBundleId: Mac 进程名
|
|
5476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5477
|
+
:type MacBundleId: str
|
|
5478
|
+
:param _WinProcessName: windows 进程名
|
|
5479
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5480
|
+
:type WinProcessName: str
|
|
5481
|
+
:param _DomainList: 域名列表
|
|
5482
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5483
|
+
:type DomainList: list of str
|
|
5484
|
+
"""
|
|
5485
|
+
self._Id = None
|
|
5486
|
+
self._AppName = None
|
|
5487
|
+
self._BundleId = None
|
|
5488
|
+
self._PackageName = None
|
|
5489
|
+
self._MacBundleId = None
|
|
5490
|
+
self._WinProcessName = None
|
|
5491
|
+
self._DomainList = None
|
|
5492
|
+
|
|
5493
|
+
@property
|
|
5494
|
+
def Id(self):
|
|
5495
|
+
r"""应用Id
|
|
5496
|
+
:rtype: int
|
|
5497
|
+
"""
|
|
5498
|
+
return self._Id
|
|
5499
|
+
|
|
5500
|
+
@Id.setter
|
|
5501
|
+
def Id(self, Id):
|
|
5502
|
+
self._Id = Id
|
|
5503
|
+
|
|
5504
|
+
@property
|
|
5505
|
+
def AppName(self):
|
|
5506
|
+
r"""应用名称
|
|
5507
|
+
:rtype: str
|
|
5508
|
+
"""
|
|
5509
|
+
return self._AppName
|
|
5510
|
+
|
|
5511
|
+
@AppName.setter
|
|
5512
|
+
def AppName(self, AppName):
|
|
5513
|
+
self._AppName = AppName
|
|
5514
|
+
|
|
5515
|
+
@property
|
|
5516
|
+
def BundleId(self):
|
|
5517
|
+
r"""Ios 包名
|
|
5518
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5519
|
+
:rtype: str
|
|
5520
|
+
"""
|
|
5521
|
+
return self._BundleId
|
|
5522
|
+
|
|
5523
|
+
@BundleId.setter
|
|
5524
|
+
def BundleId(self, BundleId):
|
|
5525
|
+
self._BundleId = BundleId
|
|
5526
|
+
|
|
5527
|
+
@property
|
|
5528
|
+
def PackageName(self):
|
|
5529
|
+
r"""Andorid 包名
|
|
5530
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5531
|
+
:rtype: str
|
|
5532
|
+
"""
|
|
5533
|
+
return self._PackageName
|
|
5534
|
+
|
|
5535
|
+
@PackageName.setter
|
|
5536
|
+
def PackageName(self, PackageName):
|
|
5537
|
+
self._PackageName = PackageName
|
|
5538
|
+
|
|
5539
|
+
@property
|
|
5540
|
+
def MacBundleId(self):
|
|
5541
|
+
r"""Mac 进程名
|
|
5542
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5543
|
+
:rtype: str
|
|
5544
|
+
"""
|
|
5545
|
+
return self._MacBundleId
|
|
5546
|
+
|
|
5547
|
+
@MacBundleId.setter
|
|
5548
|
+
def MacBundleId(self, MacBundleId):
|
|
5549
|
+
self._MacBundleId = MacBundleId
|
|
5550
|
+
|
|
5551
|
+
@property
|
|
5552
|
+
def WinProcessName(self):
|
|
5553
|
+
r"""windows 进程名
|
|
5554
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5555
|
+
:rtype: str
|
|
5556
|
+
"""
|
|
5557
|
+
return self._WinProcessName
|
|
5558
|
+
|
|
5559
|
+
@WinProcessName.setter
|
|
5560
|
+
def WinProcessName(self, WinProcessName):
|
|
5561
|
+
self._WinProcessName = WinProcessName
|
|
5562
|
+
|
|
5563
|
+
@property
|
|
5564
|
+
def DomainList(self):
|
|
5565
|
+
r"""域名列表
|
|
5566
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5567
|
+
:rtype: list of str
|
|
5568
|
+
"""
|
|
5569
|
+
return self._DomainList
|
|
5570
|
+
|
|
5571
|
+
@DomainList.setter
|
|
5572
|
+
def DomainList(self, DomainList):
|
|
5573
|
+
self._DomainList = DomainList
|
|
5574
|
+
|
|
5575
|
+
|
|
5576
|
+
def _deserialize(self, params):
|
|
5577
|
+
self._Id = params.get("Id")
|
|
5578
|
+
self._AppName = params.get("AppName")
|
|
5579
|
+
self._BundleId = params.get("BundleId")
|
|
5580
|
+
self._PackageName = params.get("PackageName")
|
|
5581
|
+
self._MacBundleId = params.get("MacBundleId")
|
|
5582
|
+
self._WinProcessName = params.get("WinProcessName")
|
|
5583
|
+
self._DomainList = params.get("DomainList")
|
|
5584
|
+
memeber_set = set(params.keys())
|
|
5585
|
+
for name, value in vars(self).items():
|
|
5586
|
+
property_name = name[1:]
|
|
5587
|
+
if property_name in memeber_set:
|
|
5588
|
+
memeber_set.remove(property_name)
|
|
5589
|
+
if len(memeber_set) > 0:
|
|
5590
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5591
|
+
|
|
5592
|
+
|
|
5593
|
+
|
|
5594
|
+
class OverviewLicense(AbstractModel):
|
|
5595
|
+
r"""视立方应用license
|
|
5596
|
+
|
|
5597
|
+
"""
|
|
5598
|
+
|
|
5599
|
+
def __init__(self):
|
|
5600
|
+
r"""
|
|
5601
|
+
:param _Application: 所属应用
|
|
5602
|
+
:type Application: :class:`tencentcloud.vcube.v20220410.models.OverviewAppInfo`
|
|
5603
|
+
:param _StartTime: license生效时间
|
|
5604
|
+
:type StartTime: str
|
|
5605
|
+
:param _EndTime: license失效时间
|
|
5606
|
+
:type EndTime: str
|
|
5607
|
+
:param _FeatureId: license对应的功能Id
|
|
5608
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5609
|
+
:type FeatureId: int
|
|
5610
|
+
:param _LicenseType: license是测试:test还是正式:formal
|
|
5611
|
+
:type LicenseType: str
|
|
5612
|
+
:param _LicenseId: license索引
|
|
5613
|
+
:type LicenseId: int
|
|
5614
|
+
:param _Name: license名称
|
|
5615
|
+
:type Name: str
|
|
5616
|
+
:param _RestTime: 返回还有多少秒过期,过期返回负值
|
|
5617
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5618
|
+
:type RestTime: int
|
|
5619
|
+
:param _CreatedAt: 创建时间
|
|
5620
|
+
:type CreatedAt: str
|
|
5621
|
+
:param _UpdatedAt: 更新时间
|
|
5622
|
+
:type UpdatedAt: str
|
|
5623
|
+
:param _Plan: 优图套餐名称
|
|
5624
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5625
|
+
:type Plan: str
|
|
5626
|
+
:param _Type: licenseType
|
|
5627
|
+
:type Type: str
|
|
5628
|
+
"""
|
|
5629
|
+
self._Application = None
|
|
5630
|
+
self._StartTime = None
|
|
5631
|
+
self._EndTime = None
|
|
5632
|
+
self._FeatureId = None
|
|
5633
|
+
self._LicenseType = None
|
|
5634
|
+
self._LicenseId = None
|
|
5635
|
+
self._Name = None
|
|
5636
|
+
self._RestTime = None
|
|
5637
|
+
self._CreatedAt = None
|
|
5638
|
+
self._UpdatedAt = None
|
|
5639
|
+
self._Plan = None
|
|
5640
|
+
self._Type = None
|
|
5641
|
+
|
|
5642
|
+
@property
|
|
5643
|
+
def Application(self):
|
|
5644
|
+
r"""所属应用
|
|
5645
|
+
:rtype: :class:`tencentcloud.vcube.v20220410.models.OverviewAppInfo`
|
|
5646
|
+
"""
|
|
5647
|
+
return self._Application
|
|
5648
|
+
|
|
5649
|
+
@Application.setter
|
|
5650
|
+
def Application(self, Application):
|
|
5651
|
+
self._Application = Application
|
|
5652
|
+
|
|
5653
|
+
@property
|
|
5654
|
+
def StartTime(self):
|
|
5655
|
+
r"""license生效时间
|
|
5656
|
+
:rtype: str
|
|
5657
|
+
"""
|
|
5658
|
+
return self._StartTime
|
|
5659
|
+
|
|
5660
|
+
@StartTime.setter
|
|
5661
|
+
def StartTime(self, StartTime):
|
|
5662
|
+
self._StartTime = StartTime
|
|
5663
|
+
|
|
5664
|
+
@property
|
|
5665
|
+
def EndTime(self):
|
|
5666
|
+
r"""license失效时间
|
|
5667
|
+
:rtype: str
|
|
5668
|
+
"""
|
|
5669
|
+
return self._EndTime
|
|
5670
|
+
|
|
5671
|
+
@EndTime.setter
|
|
5672
|
+
def EndTime(self, EndTime):
|
|
5673
|
+
self._EndTime = EndTime
|
|
5674
|
+
|
|
5675
|
+
@property
|
|
5676
|
+
def FeatureId(self):
|
|
5677
|
+
r"""license对应的功能Id
|
|
5678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5679
|
+
:rtype: int
|
|
5680
|
+
"""
|
|
5681
|
+
return self._FeatureId
|
|
5682
|
+
|
|
5683
|
+
@FeatureId.setter
|
|
5684
|
+
def FeatureId(self, FeatureId):
|
|
5685
|
+
self._FeatureId = FeatureId
|
|
5686
|
+
|
|
5687
|
+
@property
|
|
5688
|
+
def LicenseType(self):
|
|
5689
|
+
r"""license是测试:test还是正式:formal
|
|
5690
|
+
:rtype: str
|
|
5691
|
+
"""
|
|
5692
|
+
return self._LicenseType
|
|
5693
|
+
|
|
5694
|
+
@LicenseType.setter
|
|
5695
|
+
def LicenseType(self, LicenseType):
|
|
5696
|
+
self._LicenseType = LicenseType
|
|
5697
|
+
|
|
5698
|
+
@property
|
|
5699
|
+
def LicenseId(self):
|
|
5700
|
+
r"""license索引
|
|
5701
|
+
:rtype: int
|
|
5702
|
+
"""
|
|
5703
|
+
return self._LicenseId
|
|
5704
|
+
|
|
5705
|
+
@LicenseId.setter
|
|
5706
|
+
def LicenseId(self, LicenseId):
|
|
5707
|
+
self._LicenseId = LicenseId
|
|
5708
|
+
|
|
5709
|
+
@property
|
|
5710
|
+
def Name(self):
|
|
5711
|
+
r"""license名称
|
|
5712
|
+
:rtype: str
|
|
5713
|
+
"""
|
|
5714
|
+
return self._Name
|
|
5715
|
+
|
|
5716
|
+
@Name.setter
|
|
5717
|
+
def Name(self, Name):
|
|
5718
|
+
self._Name = Name
|
|
5719
|
+
|
|
5720
|
+
@property
|
|
5721
|
+
def RestTime(self):
|
|
5722
|
+
r"""返回还有多少秒过期,过期返回负值
|
|
5723
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5724
|
+
:rtype: int
|
|
5725
|
+
"""
|
|
5726
|
+
return self._RestTime
|
|
5727
|
+
|
|
5728
|
+
@RestTime.setter
|
|
5729
|
+
def RestTime(self, RestTime):
|
|
5730
|
+
self._RestTime = RestTime
|
|
5731
|
+
|
|
5732
|
+
@property
|
|
5733
|
+
def CreatedAt(self):
|
|
5734
|
+
r"""创建时间
|
|
5735
|
+
:rtype: str
|
|
5736
|
+
"""
|
|
5737
|
+
return self._CreatedAt
|
|
5738
|
+
|
|
5739
|
+
@CreatedAt.setter
|
|
5740
|
+
def CreatedAt(self, CreatedAt):
|
|
5741
|
+
self._CreatedAt = CreatedAt
|
|
5742
|
+
|
|
5743
|
+
@property
|
|
5744
|
+
def UpdatedAt(self):
|
|
5745
|
+
r"""更新时间
|
|
5746
|
+
:rtype: str
|
|
5747
|
+
"""
|
|
5748
|
+
return self._UpdatedAt
|
|
5749
|
+
|
|
5750
|
+
@UpdatedAt.setter
|
|
5751
|
+
def UpdatedAt(self, UpdatedAt):
|
|
5752
|
+
self._UpdatedAt = UpdatedAt
|
|
5753
|
+
|
|
5754
|
+
@property
|
|
5755
|
+
def Plan(self):
|
|
5756
|
+
r"""优图套餐名称
|
|
5757
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5758
|
+
:rtype: str
|
|
5759
|
+
"""
|
|
5760
|
+
return self._Plan
|
|
5761
|
+
|
|
5762
|
+
@Plan.setter
|
|
5763
|
+
def Plan(self, Plan):
|
|
5764
|
+
self._Plan = Plan
|
|
5765
|
+
|
|
5766
|
+
@property
|
|
5767
|
+
def Type(self):
|
|
5768
|
+
r"""licenseType
|
|
5769
|
+
:rtype: str
|
|
5770
|
+
"""
|
|
5771
|
+
return self._Type
|
|
5772
|
+
|
|
5773
|
+
@Type.setter
|
|
5774
|
+
def Type(self, Type):
|
|
5775
|
+
self._Type = Type
|
|
5776
|
+
|
|
5777
|
+
|
|
5778
|
+
def _deserialize(self, params):
|
|
5779
|
+
if params.get("Application") is not None:
|
|
5780
|
+
self._Application = OverviewAppInfo()
|
|
5781
|
+
self._Application._deserialize(params.get("Application"))
|
|
5782
|
+
self._StartTime = params.get("StartTime")
|
|
5783
|
+
self._EndTime = params.get("EndTime")
|
|
5784
|
+
self._FeatureId = params.get("FeatureId")
|
|
5785
|
+
self._LicenseType = params.get("LicenseType")
|
|
5786
|
+
self._LicenseId = params.get("LicenseId")
|
|
5787
|
+
self._Name = params.get("Name")
|
|
5788
|
+
self._RestTime = params.get("RestTime")
|
|
5789
|
+
self._CreatedAt = params.get("CreatedAt")
|
|
5790
|
+
self._UpdatedAt = params.get("UpdatedAt")
|
|
5791
|
+
self._Plan = params.get("Plan")
|
|
5792
|
+
self._Type = params.get("Type")
|
|
5793
|
+
memeber_set = set(params.keys())
|
|
5794
|
+
for name, value in vars(self).items():
|
|
5795
|
+
property_name = name[1:]
|
|
5796
|
+
if property_name in memeber_set:
|
|
5797
|
+
memeber_set.remove(property_name)
|
|
5798
|
+
if len(memeber_set) > 0:
|
|
5799
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5800
|
+
|
|
5801
|
+
|
|
5802
|
+
|
|
5263
5803
|
class Package(AbstractModel):
|
|
5264
5804
|
r"""资源包结构
|
|
5265
5805
|
|
|
@@ -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.19
|
|
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
|