tencentcloud-sdk-python-gs 3.0.1389__tar.gz → 3.0.1391__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.1389 → tencentcloud-sdk-python-gs-3.0.1391}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/setup.py +1 -1
  3. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud/gs/v20191118/models.py +15 -0
  5. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-gs-3.0.1391/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-gs-3.0.1389/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/README.rst +0 -0
  9. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud/gs/__init__.py +0 -0
  11. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud/gs/v20191118/__init__.py +0 -0
  12. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud/gs/v20191118/gs_client.py +0 -0
  14. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-gs-3.0.1389 → tencentcloud-sdk-python-gs-3.0.1391}/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.1389
3
+ Version: 3.0.1391
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.1389"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1391"],
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.1389'
17
+ __version__ = '3.0.1391'
@@ -2103,12 +2103,15 @@ class CreateAndroidInstanceWebShellResponse(AbstractModel):
2103
2103
  :type Address: str
2104
2104
  :param _Zone: 连接区域
2105
2105
  :type Zone: str
2106
+ :param _ConnectUrl: 访问链接,可以直接使用此链接访问 WebShell
2107
+ :type ConnectUrl: str
2106
2108
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2107
2109
  :type RequestId: str
2108
2110
  """
2109
2111
  self._Key = None
2110
2112
  self._Address = None
2111
2113
  self._Zone = None
2114
+ self._ConnectUrl = None
2112
2115
  self._RequestId = None
2113
2116
 
2114
2117
  @property
@@ -2144,6 +2147,17 @@ class CreateAndroidInstanceWebShellResponse(AbstractModel):
2144
2147
  def Zone(self, Zone):
2145
2148
  self._Zone = Zone
2146
2149
 
2150
+ @property
2151
+ def ConnectUrl(self):
2152
+ """访问链接,可以直接使用此链接访问 WebShell
2153
+ :rtype: str
2154
+ """
2155
+ return self._ConnectUrl
2156
+
2157
+ @ConnectUrl.setter
2158
+ def ConnectUrl(self, ConnectUrl):
2159
+ self._ConnectUrl = ConnectUrl
2160
+
2147
2161
  @property
2148
2162
  def RequestId(self):
2149
2163
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -2160,6 +2174,7 @@ class CreateAndroidInstanceWebShellResponse(AbstractModel):
2160
2174
  self._Key = params.get("Key")
2161
2175
  self._Address = params.get("Address")
2162
2176
  self._Zone = params.get("Zone")
2177
+ self._ConnectUrl = params.get("ConnectUrl")
2163
2178
  self._RequestId = params.get("RequestId")
2164
2179
 
2165
2180
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1389
3
+ Version: 3.0.1391
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.1391
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1389