tencentcloud-sdk-python-gs 3.0.1452__py2.py3-none-any.whl → 3.0.1458__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.1452'
17
+ __version__ = '3.0.1458'
@@ -766,6 +766,29 @@ class GsClient(AbstractClient):
766
766
  raise TencentCloudSDKException(type(e).__name__, str(e))
767
767
 
768
768
 
769
+ def DisconnectAndroidInstance(self, request):
770
+ """断开安卓实例
771
+
772
+ :param request: Request instance for DisconnectAndroidInstance.
773
+ :type request: :class:`tencentcloud.gs.v20191118.models.DisconnectAndroidInstanceRequest`
774
+ :rtype: :class:`tencentcloud.gs.v20191118.models.DisconnectAndroidInstanceResponse`
775
+
776
+ """
777
+ try:
778
+ params = request._serialize()
779
+ headers = request.headers
780
+ body = self.call("DisconnectAndroidInstance", params, headers=headers)
781
+ response = json.loads(body)
782
+ model = models.DisconnectAndroidInstanceResponse()
783
+ model._deserialize(response["Response"])
784
+ return model
785
+ except Exception as e:
786
+ if isinstance(e, TencentCloudSDKException):
787
+ raise
788
+ else:
789
+ raise TencentCloudSDKException(type(e).__name__, str(e))
790
+
791
+
769
792
  def DistributeFileToAndroidInstances(self, request):
770
793
  """将一个文件批量分发到多个实例,一次接口调用触发一次文件分发,一次文件分发只会从公网下载一次,然后文件会走内网分发到实例列表中的实例。
771
794
 
@@ -5905,6 +5905,70 @@ class DisableAndroidInstancesAppResponse(AbstractModel):
5905
5905
  self._RequestId = params.get("RequestId")
5906
5906
 
5907
5907
 
5908
+ class DisconnectAndroidInstanceRequest(AbstractModel):
5909
+ """DisconnectAndroidInstance请求参数结构体
5910
+
5911
+ """
5912
+
5913
+ def __init__(self):
5914
+ r"""
5915
+ :param _AndroidInstanceId: 实例ID
5916
+ :type AndroidInstanceId: str
5917
+ """
5918
+ self._AndroidInstanceId = None
5919
+
5920
+ @property
5921
+ def AndroidInstanceId(self):
5922
+ """实例ID
5923
+ :rtype: str
5924
+ """
5925
+ return self._AndroidInstanceId
5926
+
5927
+ @AndroidInstanceId.setter
5928
+ def AndroidInstanceId(self, AndroidInstanceId):
5929
+ self._AndroidInstanceId = AndroidInstanceId
5930
+
5931
+
5932
+ def _deserialize(self, params):
5933
+ self._AndroidInstanceId = params.get("AndroidInstanceId")
5934
+ memeber_set = set(params.keys())
5935
+ for name, value in vars(self).items():
5936
+ property_name = name[1:]
5937
+ if property_name in memeber_set:
5938
+ memeber_set.remove(property_name)
5939
+ if len(memeber_set) > 0:
5940
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5941
+
5942
+
5943
+
5944
+ class DisconnectAndroidInstanceResponse(AbstractModel):
5945
+ """DisconnectAndroidInstance返回参数结构体
5946
+
5947
+ """
5948
+
5949
+ def __init__(self):
5950
+ r"""
5951
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5952
+ :type RequestId: str
5953
+ """
5954
+ self._RequestId = None
5955
+
5956
+ @property
5957
+ def RequestId(self):
5958
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5959
+ :rtype: str
5960
+ """
5961
+ return self._RequestId
5962
+
5963
+ @RequestId.setter
5964
+ def RequestId(self, RequestId):
5965
+ self._RequestId = RequestId
5966
+
5967
+
5968
+ def _deserialize(self, params):
5969
+ self._RequestId = params.get("RequestId")
5970
+
5971
+
5908
5972
  class DistributeFileToAndroidInstancesRequest(AbstractModel):
5909
5973
  """DistributeFileToAndroidInstances请求参数结构体
5910
5974
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1452
3
+ Version: 3.0.1458
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 (<4.0.0,>=3.0.1452)
18
+ Requires-Dist: tencentcloud-sdk-python-common (<4.0.0,>=3.0.1458)
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1,10 @@
1
+ tencentcloud/__init__.py,sha256=h5Hby4bvALXKG32YKjikPeeRTwOm9JylcBCO9rFsXkg,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=-dnux9oX7ak2LRpORaevmrDFu5bQFaJA7zDxln-wLgY,3076
5
+ tencentcloud/gs/v20191118/gs_client.py,sha256=iR74NJA8DVJhnoi9Ev0DwnfV51hgTZw4eTkVd3FLumI,75283
6
+ tencentcloud/gs/v20191118/models.py,sha256=yuaTAFaFKbn4_ubrVlrz2bfFU-1Zrbs8lSpYkyQOUWI,338776
7
+ tencentcloud_sdk_python_gs-3.0.1458.dist-info/METADATA,sha256=pt3UucNmNoEXmvLWnv7VaKYYikLxInrHCQ1NPRZkNZ0,1498
8
+ tencentcloud_sdk_python_gs-3.0.1458.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
+ tencentcloud_sdk_python_gs-3.0.1458.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
+ tencentcloud_sdk_python_gs-3.0.1458.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- tencentcloud/__init__.py,sha256=Tbos1JpCp5FNnGherxW2mFiEn32SG1Ai4l4VaMfreG8,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=-dnux9oX7ak2LRpORaevmrDFu5bQFaJA7zDxln-wLgY,3076
5
- tencentcloud/gs/v20191118/gs_client.py,sha256=C7Fg2Htz2IA6eIwo2-8PzJhWyn-aPl6LQ1D1ZbhqMas,74368
6
- tencentcloud/gs/v20191118/models.py,sha256=tbFHLFdeqU8EkzuyFwanQp3GmJfva_cjy_4OQledIU8,336789
7
- tencentcloud_sdk_python_gs-3.0.1452.dist-info/METADATA,sha256=TZG6qWm0Z7kNFCplbG4tc35VxVdr74UMhNfByOhbysQ,1498
8
- tencentcloud_sdk_python_gs-3.0.1452.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
9
- tencentcloud_sdk_python_gs-3.0.1452.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
10
- tencentcloud_sdk_python_gs-3.0.1452.dist-info/RECORD,,