tencentcloud-sdk-python-gs 3.0.1406__tar.gz → 3.0.1409__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.1406 → tencentcloud-sdk-python-gs-3.0.1409}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/setup.py +1 -1
  3. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud/gs/v20191118/models.py +15 -0
  5. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-gs-3.0.1409/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-gs-3.0.1406/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/README.rst +0 -0
  9. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud/gs/__init__.py +0 -0
  11. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud/gs/v20191118/__init__.py +0 -0
  12. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud/gs/v20191118/gs_client.py +0 -0
  14. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-gs-3.0.1406 → tencentcloud-sdk-python-gs-3.0.1409}/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.1406
3
+ Version: 3.0.1409
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.1406"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1409"],
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.1406'
17
+ __version__ = '3.0.1409'
@@ -4364,12 +4364,15 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4364
4364
  r"""
4365
4365
  :param _AndroidInstanceImageIds: 镜像 ID 列表
4366
4366
  :type AndroidInstanceImageIds: list of str
4367
+ :param _AndroidInstanceImageZones: 镜像可用区列表
4368
+ :type AndroidInstanceImageZones: list of str
4367
4369
  :param _Offset: 偏移量,默认为0
4368
4370
  :type Offset: int
4369
4371
  :param _Limit: 限制量,默认为20,最大值为100
4370
4372
  :type Limit: int
4371
4373
  """
4372
4374
  self._AndroidInstanceImageIds = None
4375
+ self._AndroidInstanceImageZones = None
4373
4376
  self._Offset = None
4374
4377
  self._Limit = None
4375
4378
 
@@ -4384,6 +4387,17 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4384
4387
  def AndroidInstanceImageIds(self, AndroidInstanceImageIds):
4385
4388
  self._AndroidInstanceImageIds = AndroidInstanceImageIds
4386
4389
 
4390
+ @property
4391
+ def AndroidInstanceImageZones(self):
4392
+ """镜像可用区列表
4393
+ :rtype: list of str
4394
+ """
4395
+ return self._AndroidInstanceImageZones
4396
+
4397
+ @AndroidInstanceImageZones.setter
4398
+ def AndroidInstanceImageZones(self, AndroidInstanceImageZones):
4399
+ self._AndroidInstanceImageZones = AndroidInstanceImageZones
4400
+
4387
4401
  @property
4388
4402
  def Offset(self):
4389
4403
  """偏移量,默认为0
@@ -4409,6 +4423,7 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4409
4423
 
4410
4424
  def _deserialize(self, params):
4411
4425
  self._AndroidInstanceImageIds = params.get("AndroidInstanceImageIds")
4426
+ self._AndroidInstanceImageZones = params.get("AndroidInstanceImageZones")
4412
4427
  self._Offset = params.get("Offset")
4413
4428
  self._Limit = params.get("Limit")
4414
4429
  memeber_set = set(params.keys())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1406
3
+ Version: 3.0.1409
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.1409
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1406