tencentcloud-sdk-python-gs 3.0.1403__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.1403 → tencentcloud-sdk-python-gs-3.0.1406}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/setup.py +1 -1
  3. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/models.py +17 -2
  5. {tencentcloud-sdk-python-gs-3.0.1403 → 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.1403/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/README.rst +0 -0
  9. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/__init__.py +0 -0
  11. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/__init__.py +0 -0
  12. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud/gs/v20191118/gs_client.py +0 -0
  14. {tencentcloud-sdk-python-gs-3.0.1403 → tencentcloud-sdk-python-gs-3.0.1406}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-gs-3.0.1403 → 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.1403 → 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.1403
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.1403"],
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.1403'
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:]
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1403
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.1403