tencentcloud-sdk-python-gs 3.0.1382__tar.gz → 3.0.1384__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.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/setup.py +1 -1
  3. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud/gs/v20191118/models.py +30 -0
  5. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-gs-3.0.1384/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-gs-3.0.1382/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/README.rst +0 -0
  9. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud/gs/__init__.py +0 -0
  11. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud/gs/v20191118/__init__.py +0 -0
  12. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud/gs/v20191118/gs_client.py +0 -0
  14. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-gs-3.0.1382 → tencentcloud-sdk-python-gs-3.0.1384}/tencentcloud_sdk_python_gs.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1382
3
+ Version: 3.0.1384
4
4
  Summary: Tencent Cloud Gs SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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.1382"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1384"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Gs SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1382'
17
+ __version__ = '3.0.1384'
@@ -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:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1382
3
+ Version: 3.0.1384
4
4
  Summary: Tencent Cloud Gs SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1384
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1382