tencentcloud-sdk-python-gs 3.0.1381__tar.gz → 3.0.1383__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-gs might be problematic. Click here for more details.
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/setup.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud/gs/v20191118/models.py +30 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-gs-3.0.1383/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-gs-3.0.1381/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/README.rst +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/setup.cfg +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud/gs/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud/gs/v20191118/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud/gs/v20191118/gs_client.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1381 → tencentcloud-sdk-python-gs-3.0.1383}/tencentcloud_sdk_python_gs.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-gs',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1383"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Gs SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -335,6 +335,10 @@ class AndroidInstance(AbstractModel):
|
|
|
335
335
|
:type UserId: str
|
|
336
336
|
:param _PrivateIP: 内网 IP
|
|
337
337
|
:type PrivateIP: str
|
|
338
|
+
:param _CreateTime: 创建时间
|
|
339
|
+
:type CreateTime: str
|
|
340
|
+
:param _HostServerSerialNumber: 机箱 ID
|
|
341
|
+
:type HostServerSerialNumber: str
|
|
338
342
|
"""
|
|
339
343
|
self._AndroidInstanceId = None
|
|
340
344
|
self._AndroidInstanceRegion = None
|
|
@@ -350,6 +354,8 @@ class AndroidInstance(AbstractModel):
|
|
|
350
354
|
self._Name = None
|
|
351
355
|
self._UserId = None
|
|
352
356
|
self._PrivateIP = None
|
|
357
|
+
self._CreateTime = None
|
|
358
|
+
self._HostServerSerialNumber = None
|
|
353
359
|
|
|
354
360
|
@property
|
|
355
361
|
def AndroidInstanceId(self):
|
|
@@ -505,6 +511,28 @@ class AndroidInstance(AbstractModel):
|
|
|
505
511
|
def PrivateIP(self, PrivateIP):
|
|
506
512
|
self._PrivateIP = PrivateIP
|
|
507
513
|
|
|
514
|
+
@property
|
|
515
|
+
def CreateTime(self):
|
|
516
|
+
"""创建时间
|
|
517
|
+
:rtype: str
|
|
518
|
+
"""
|
|
519
|
+
return self._CreateTime
|
|
520
|
+
|
|
521
|
+
@CreateTime.setter
|
|
522
|
+
def CreateTime(self, CreateTime):
|
|
523
|
+
self._CreateTime = CreateTime
|
|
524
|
+
|
|
525
|
+
@property
|
|
526
|
+
def HostServerSerialNumber(self):
|
|
527
|
+
"""机箱 ID
|
|
528
|
+
:rtype: str
|
|
529
|
+
"""
|
|
530
|
+
return self._HostServerSerialNumber
|
|
531
|
+
|
|
532
|
+
@HostServerSerialNumber.setter
|
|
533
|
+
def HostServerSerialNumber(self, HostServerSerialNumber):
|
|
534
|
+
self._HostServerSerialNumber = HostServerSerialNumber
|
|
535
|
+
|
|
508
536
|
|
|
509
537
|
def _deserialize(self, params):
|
|
510
538
|
self._AndroidInstanceId = params.get("AndroidInstanceId")
|
|
@@ -526,6 +554,8 @@ class AndroidInstance(AbstractModel):
|
|
|
526
554
|
self._Name = params.get("Name")
|
|
527
555
|
self._UserId = params.get("UserId")
|
|
528
556
|
self._PrivateIP = params.get("PrivateIP")
|
|
557
|
+
self._CreateTime = params.get("CreateTime")
|
|
558
|
+
self._HostServerSerialNumber = params.get("HostServerSerialNumber")
|
|
529
559
|
memeber_set = set(params.keys())
|
|
530
560
|
for name, value in vars(self).items():
|
|
531
561
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1383
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1381
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|