tencentcloud-sdk-python-gs 3.0.1402__tar.gz → 3.0.1406__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.1402 → tencentcloud-sdk-python-gs-3.0.1406}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/setup.py +1 -1
  3. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/models.py +32 -2
  5. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-gs-3.0.1406/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-gs-3.0.1402/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/README.rst +0 -0
  9. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/__init__.py +0 -0
  11. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/__init__.py +0 -0
  12. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/gs_client.py +0 -0
  14. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-gs-3.0.1402 → tencentcloud-sdk-python-gs-3.0.1406}/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.1402
3
+ Version: 3.0.1406
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.1402"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1406"],
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.1402'
17
+ __version__ = '3.0.1406'
@@ -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:]
@@ -221,6 +236,8 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
221
236
  :type UninstallCommand: str
222
237
  :param _CleanupMode: 应用资源清理模式(实例安装应用所用资源),取值:CLEANUP_ON_UNINSTALL(默认值),卸载 App 时清理;CLEANUP_AFTER_INSTALL,安装 App 后立即清理。普通应用只有 CLEANUP_AFTER_INSTALL 模式。
223
238
  :type CleanupMode: str
239
+ :param _AndroidAppVersionName: 安卓应用版本名称
240
+ :type AndroidAppVersionName: str
224
241
  """
225
242
  self._AndroidAppVersion = None
226
243
  self._State = None
@@ -228,6 +245,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
228
245
  self._Command = None
229
246
  self._UninstallCommand = None
230
247
  self._CleanupMode = None
248
+ self._AndroidAppVersionName = None
231
249
 
232
250
  @property
233
251
  def AndroidAppVersion(self):
@@ -297,6 +315,17 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
297
315
  def CleanupMode(self, CleanupMode):
298
316
  self._CleanupMode = CleanupMode
299
317
 
318
+ @property
319
+ def AndroidAppVersionName(self):
320
+ """安卓应用版本名称
321
+ :rtype: str
322
+ """
323
+ return self._AndroidAppVersionName
324
+
325
+ @AndroidAppVersionName.setter
326
+ def AndroidAppVersionName(self, AndroidAppVersionName):
327
+ self._AndroidAppVersionName = AndroidAppVersionName
328
+
300
329
 
301
330
  def _deserialize(self, params):
302
331
  self._AndroidAppVersion = params.get("AndroidAppVersion")
@@ -305,6 +334,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
305
334
  self._Command = params.get("Command")
306
335
  self._UninstallCommand = params.get("UninstallCommand")
307
336
  self._CleanupMode = params.get("CleanupMode")
337
+ self._AndroidAppVersionName = params.get("AndroidAppVersionName")
308
338
  memeber_set = set(params.keys())
309
339
  for name, value in vars(self).items():
310
340
  property_name = name[1:]
@@ -4105,7 +4135,7 @@ class DescribeAndroidAppsRequest(AbstractModel):
4105
4135
  :type Limit: int
4106
4136
  :param _AndroidAppIds: 应用ID数组
4107
4137
  :type AndroidAppIds: list of str
4108
- :param _Filters: 过滤条件
4138
+ :param _Filters: 过滤条件,支持过滤的字段有:UserId、State、UpdateState、Name、AppMode 。其中 Name 为模糊匹配,其他参数为精确匹配。
4109
4139
  :type Filters: list of Filter
4110
4140
  """
4111
4141
  self._Offset = None
@@ -4148,7 +4178,7 @@ class DescribeAndroidAppsRequest(AbstractModel):
4148
4178
 
4149
4179
  @property
4150
4180
  def Filters(self):
4151
- """过滤条件
4181
+ """过滤条件,支持过滤的字段有:UserId、State、UpdateState、Name、AppMode 。其中 Name 为模糊匹配,其他参数为精确匹配。
4152
4182
  :rtype: list of Filter
4153
4183
  """
4154
4184
  return self._Filters
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1402
3
+ Version: 3.0.1406
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.1406
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1402