tencentcloud-sdk-python-gs 3.0.1417__tar.gz → 3.0.1421__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.1417 → tencentcloud-sdk-python-gs-3.0.1421}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/setup.py +1 -1
  3. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud/gs/v20191118/models.py +71 -0
  5. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-gs-3.0.1421/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-gs-3.0.1417/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/README.rst +0 -0
  9. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud/gs/__init__.py +0 -0
  11. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud/gs/v20191118/__init__.py +0 -0
  12. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud/gs/v20191118/gs_client.py +0 -0
  14. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-gs-3.0.1417 → tencentcloud-sdk-python-gs-3.0.1421}/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.1417
3
+ Version: 3.0.1421
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.1417"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1421,<4.0.0"],
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.1417'
17
+ __version__ = '3.0.1421'
@@ -958,14 +958,20 @@ class AndroidInstanceImage(AbstractModel):
958
958
  :type AndroidInstanceImageState: str
959
959
  :param _AndroidInstanceImageZone: 镜像可用区
960
960
  :type AndroidInstanceImageZone: str
961
+ :param _AndroidInstanceImageDescription: 镜像描述
962
+ :type AndroidInstanceImageDescription: str
961
963
  :param _AndroidVersion: 安卓10
962
964
  :type AndroidVersion: str
965
+ :param _CreateTime: 创建时间
966
+ :type CreateTime: str
963
967
  """
964
968
  self._AndroidInstanceImageId = None
965
969
  self._AndroidInstanceImageName = None
966
970
  self._AndroidInstanceImageState = None
967
971
  self._AndroidInstanceImageZone = None
972
+ self._AndroidInstanceImageDescription = None
968
973
  self._AndroidVersion = None
974
+ self._CreateTime = None
969
975
 
970
976
  @property
971
977
  def AndroidInstanceImageId(self):
@@ -1011,6 +1017,17 @@ class AndroidInstanceImage(AbstractModel):
1011
1017
  def AndroidInstanceImageZone(self, AndroidInstanceImageZone):
1012
1018
  self._AndroidInstanceImageZone = AndroidInstanceImageZone
1013
1019
 
1020
+ @property
1021
+ def AndroidInstanceImageDescription(self):
1022
+ """镜像描述
1023
+ :rtype: str
1024
+ """
1025
+ return self._AndroidInstanceImageDescription
1026
+
1027
+ @AndroidInstanceImageDescription.setter
1028
+ def AndroidInstanceImageDescription(self, AndroidInstanceImageDescription):
1029
+ self._AndroidInstanceImageDescription = AndroidInstanceImageDescription
1030
+
1014
1031
  @property
1015
1032
  def AndroidVersion(self):
1016
1033
  """安卓10
@@ -1022,13 +1039,26 @@ class AndroidInstanceImage(AbstractModel):
1022
1039
  def AndroidVersion(self, AndroidVersion):
1023
1040
  self._AndroidVersion = AndroidVersion
1024
1041
 
1042
+ @property
1043
+ def CreateTime(self):
1044
+ """创建时间
1045
+ :rtype: str
1046
+ """
1047
+ return self._CreateTime
1048
+
1049
+ @CreateTime.setter
1050
+ def CreateTime(self, CreateTime):
1051
+ self._CreateTime = CreateTime
1052
+
1025
1053
 
1026
1054
  def _deserialize(self, params):
1027
1055
  self._AndroidInstanceImageId = params.get("AndroidInstanceImageId")
1028
1056
  self._AndroidInstanceImageName = params.get("AndroidInstanceImageName")
1029
1057
  self._AndroidInstanceImageState = params.get("AndroidInstanceImageState")
1030
1058
  self._AndroidInstanceImageZone = params.get("AndroidInstanceImageZone")
1059
+ self._AndroidInstanceImageDescription = params.get("AndroidInstanceImageDescription")
1031
1060
  self._AndroidVersion = params.get("AndroidVersion")
1061
+ self._CreateTime = params.get("CreateTime")
1032
1062
  memeber_set = set(params.keys())
1033
1063
  for name, value in vars(self).items():
1034
1064
  property_name = name[1:]
@@ -2457,9 +2487,12 @@ class CreateAndroidInstanceImageRequest(AbstractModel):
2457
2487
  :type AndroidInstanceImageName: str
2458
2488
  :param _AndroidInstanceId: 安卓实例 ID
2459
2489
  :type AndroidInstanceId: str
2490
+ :param _AndroidInstanceImageDescription: 安卓实例镜像描述
2491
+ :type AndroidInstanceImageDescription: str
2460
2492
  """
2461
2493
  self._AndroidInstanceImageName = None
2462
2494
  self._AndroidInstanceId = None
2495
+ self._AndroidInstanceImageDescription = None
2463
2496
 
2464
2497
  @property
2465
2498
  def AndroidInstanceImageName(self):
@@ -2483,10 +2516,22 @@ class CreateAndroidInstanceImageRequest(AbstractModel):
2483
2516
  def AndroidInstanceId(self, AndroidInstanceId):
2484
2517
  self._AndroidInstanceId = AndroidInstanceId
2485
2518
 
2519
+ @property
2520
+ def AndroidInstanceImageDescription(self):
2521
+ """安卓实例镜像描述
2522
+ :rtype: str
2523
+ """
2524
+ return self._AndroidInstanceImageDescription
2525
+
2526
+ @AndroidInstanceImageDescription.setter
2527
+ def AndroidInstanceImageDescription(self, AndroidInstanceImageDescription):
2528
+ self._AndroidInstanceImageDescription = AndroidInstanceImageDescription
2529
+
2486
2530
 
2487
2531
  def _deserialize(self, params):
2488
2532
  self._AndroidInstanceImageName = params.get("AndroidInstanceImageName")
2489
2533
  self._AndroidInstanceId = params.get("AndroidInstanceId")
2534
+ self._AndroidInstanceImageDescription = params.get("AndroidInstanceImageDescription")
2490
2535
  memeber_set = set(params.keys())
2491
2536
  for name, value in vars(self).items():
2492
2537
  property_name = name[1:]
@@ -4537,11 +4582,17 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4537
4582
  :type Offset: int
4538
4583
  :param _Limit: 限制量,默认为20,最大值为100
4539
4584
  :type Limit: int
4585
+ :param _Filters: 字段过滤器。Filter 的 Name 有以下值:
4586
+ ImageName:镜像名称
4587
+ ImageState:镜像状态
4588
+ AndroidVersion:安卓版本
4589
+ :type Filters: list of Filter
4540
4590
  """
4541
4591
  self._AndroidInstanceImageIds = None
4542
4592
  self._AndroidInstanceImageZones = None
4543
4593
  self._Offset = None
4544
4594
  self._Limit = None
4595
+ self._Filters = None
4545
4596
 
4546
4597
  @property
4547
4598
  def AndroidInstanceImageIds(self):
@@ -4587,12 +4638,32 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4587
4638
  def Limit(self, Limit):
4588
4639
  self._Limit = Limit
4589
4640
 
4641
+ @property
4642
+ def Filters(self):
4643
+ """字段过滤器。Filter 的 Name 有以下值:
4644
+ ImageName:镜像名称
4645
+ ImageState:镜像状态
4646
+ AndroidVersion:安卓版本
4647
+ :rtype: list of Filter
4648
+ """
4649
+ return self._Filters
4650
+
4651
+ @Filters.setter
4652
+ def Filters(self, Filters):
4653
+ self._Filters = Filters
4654
+
4590
4655
 
4591
4656
  def _deserialize(self, params):
4592
4657
  self._AndroidInstanceImageIds = params.get("AndroidInstanceImageIds")
4593
4658
  self._AndroidInstanceImageZones = params.get("AndroidInstanceImageZones")
4594
4659
  self._Offset = params.get("Offset")
4595
4660
  self._Limit = params.get("Limit")
4661
+ if params.get("Filters") is not None:
4662
+ self._Filters = []
4663
+ for item in params.get("Filters"):
4664
+ obj = Filter()
4665
+ obj._deserialize(item)
4666
+ self._Filters.append(obj)
4596
4667
  memeber_set = set(params.keys())
4597
4668
  for name, value in vars(self).items():
4598
4669
  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.1417
3
+ Version: 3.0.1421
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<4.0.0,>=3.0.1421
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1417