tencentcloud-sdk-python-gs 3.0.1403__py2.py3-none-any.whl → 3.0.1409__py2.py3-none-any.whl

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/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1403'
17
+ __version__ = '3.0.1409'
@@ -39,6 +39,8 @@ class AndroidApp(AbstractModel):
39
39
  :type UserId: str
40
40
  :param _AppMode: 应用模式(NORMAL : 普通模式;ADVANCED : 高级模式)
41
41
  :type AppMode: str
42
+ :param _UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
43
+ :type UpdateState: str
42
44
  """
43
45
  self._AndroidAppId = None
44
46
  self._Name = None
@@ -47,6 +49,7 @@ class AndroidApp(AbstractModel):
47
49
  self._CreateTime = None
48
50
  self._UserId = None
49
51
  self._AppMode = None
52
+ self._UpdateState = None
50
53
 
51
54
  @property
52
55
  def AndroidAppId(self):
@@ -125,6 +128,17 @@ class AndroidApp(AbstractModel):
125
128
  def AppMode(self, AppMode):
126
129
  self._AppMode = AppMode
127
130
 
131
+ @property
132
+ def UpdateState(self):
133
+ """应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
134
+ :rtype: str
135
+ """
136
+ return self._UpdateState
137
+
138
+ @UpdateState.setter
139
+ def UpdateState(self, UpdateState):
140
+ self._UpdateState = UpdateState
141
+
128
142
 
129
143
  def _deserialize(self, params):
130
144
  self._AndroidAppId = params.get("AndroidAppId")
@@ -139,6 +153,7 @@ class AndroidApp(AbstractModel):
139
153
  self._CreateTime = params.get("CreateTime")
140
154
  self._UserId = params.get("UserId")
141
155
  self._AppMode = params.get("AppMode")
156
+ self._UpdateState = params.get("UpdateState")
142
157
  memeber_set = set(params.keys())
143
158
  for name, value in vars(self).items():
144
159
  property_name = name[1:]
@@ -4120,7 +4135,7 @@ class DescribeAndroidAppsRequest(AbstractModel):
4120
4135
  :type Limit: int
4121
4136
  :param _AndroidAppIds: 应用ID数组
4122
4137
  :type AndroidAppIds: list of str
4123
- :param _Filters: 过滤条件,支持过滤的字段有:UserId
4138
+ :param _Filters: 过滤条件,支持过滤的字段有:UserId、State、UpdateState、Name、AppMode 。其中 Name 为模糊匹配,其他参数为精确匹配。
4124
4139
  :type Filters: list of Filter
4125
4140
  """
4126
4141
  self._Offset = None
@@ -4163,7 +4178,7 @@ class DescribeAndroidAppsRequest(AbstractModel):
4163
4178
 
4164
4179
  @property
4165
4180
  def Filters(self):
4166
- """过滤条件,支持过滤的字段有:UserId
4181
+ """过滤条件,支持过滤的字段有:UserId、State、UpdateState、Name、AppMode 。其中 Name 为模糊匹配,其他参数为精确匹配。
4167
4182
  :rtype: list of Filter
4168
4183
  """
4169
4184
  return self._Filters
@@ -4349,12 +4364,15 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4349
4364
  r"""
4350
4365
  :param _AndroidInstanceImageIds: 镜像 ID 列表
4351
4366
  :type AndroidInstanceImageIds: list of str
4367
+ :param _AndroidInstanceImageZones: 镜像可用区列表
4368
+ :type AndroidInstanceImageZones: list of str
4352
4369
  :param _Offset: 偏移量,默认为0
4353
4370
  :type Offset: int
4354
4371
  :param _Limit: 限制量,默认为20,最大值为100
4355
4372
  :type Limit: int
4356
4373
  """
4357
4374
  self._AndroidInstanceImageIds = None
4375
+ self._AndroidInstanceImageZones = None
4358
4376
  self._Offset = None
4359
4377
  self._Limit = None
4360
4378
 
@@ -4369,6 +4387,17 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4369
4387
  def AndroidInstanceImageIds(self, AndroidInstanceImageIds):
4370
4388
  self._AndroidInstanceImageIds = AndroidInstanceImageIds
4371
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
+
4372
4401
  @property
4373
4402
  def Offset(self):
4374
4403
  """偏移量,默认为0
@@ -4394,6 +4423,7 @@ class DescribeAndroidInstanceImagesRequest(AbstractModel):
4394
4423
 
4395
4424
  def _deserialize(self, params):
4396
4425
  self._AndroidInstanceImageIds = params.get("AndroidInstanceImageIds")
4426
+ self._AndroidInstanceImageZones = params.get("AndroidInstanceImageZones")
4397
4427
  self._Offset = params.get("Offset")
4398
4428
  self._Limit = params.get("Limit")
4399
4429
  memeber_set = set(params.keys())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1403
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
@@ -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 (==3.0.1403)
18
+ Requires-Dist: tencentcloud-sdk-python-common (==3.0.1409)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=Xd0hvGKwfvxjEjwWjGrl0P1hEncpIhi1xeJloO0iFLQ,631
2
+ tencentcloud/gs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ tencentcloud/gs/v20191118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ tencentcloud/gs/v20191118/errorcodes.py,sha256=oIAmPdpRJO6FvvrKyCQBHDlMEJl-9DgtfUrhgQVtXIs,3103
5
+ tencentcloud/gs/v20191118/gs_client.py,sha256=u5GtGFPzZaRzZyBYEutqip68qwvr_2JQ5iEyEjlS82o,74389
6
+ tencentcloud/gs/v20191118/models.py,sha256=uRdzgaJgUWB-J98GqAv1pS8mbiqSP8LbRcoGo3NnI0I,321813
7
+ tencentcloud_sdk_python_gs-3.0.1409.dist-info/METADATA,sha256=hthitRvrpe0Rx_qXgi1X4ew3U6-Xkx0wTm7Cm9lJEa0,1491
8
+ tencentcloud_sdk_python_gs-3.0.1409.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_gs-3.0.1409.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_gs-3.0.1409.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=ZxAi3eYDSE-Ya-J2xN-iQ0Qz-gDYkmqwcscgPCltHcE,631
2
- tencentcloud/gs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- tencentcloud/gs/v20191118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- tencentcloud/gs/v20191118/errorcodes.py,sha256=oIAmPdpRJO6FvvrKyCQBHDlMEJl-9DgtfUrhgQVtXIs,3103
5
- tencentcloud/gs/v20191118/gs_client.py,sha256=u5GtGFPzZaRzZyBYEutqip68qwvr_2JQ5iEyEjlS82o,74389
6
- tencentcloud/gs/v20191118/models.py,sha256=29Pujnq7cywddirWGbuq-5IGvYrq4nzCXzq1xdBWEQQ,320339
7
- tencentcloud_sdk_python_gs-3.0.1403.dist-info/METADATA,sha256=NFbxTPHfULKT3qEd7NTHwtkuHbBztvPiM8EMPqQ9pmY,1491
8
- tencentcloud_sdk_python_gs-3.0.1403.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_gs-3.0.1403.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_gs-3.0.1403.dist-info/RECORD,,