tencentcloud-sdk-python-gs 3.0.1428__tar.gz → 3.0.1452__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.1428 → tencentcloud-sdk-python-gs-3.0.1452}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/setup.py +1 -1
  3. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/models.py +102 -4
  5. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-gs-3.0.1452/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-gs-3.0.1428/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/README.rst +0 -0
  9. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/__init__.py +0 -0
  11. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/__init__.py +0 -0
  12. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/gs_client.py +0 -0
  14. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-gs-3.0.1428 → tencentcloud-sdk-python-gs-3.0.1452}/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.1428
3
+ Version: 3.0.1452
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.1428,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.0.1452,<4.0.0"],
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.1428'
17
+ __version__ = '3.0.1452'
@@ -1521,10 +1521,13 @@ class AndroidInstanceUploadFile(AbstractModel):
1521
1521
  :type FileURL: str
1522
1522
  :param _DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
1523
1523
  :type DestinationDirectory: str
1524
+ :param _DestinationFileName: 目标文件名
1525
+ :type DestinationFileName: str
1524
1526
  """
1525
1527
  self._AndroidInstanceId = None
1526
1528
  self._FileURL = None
1527
1529
  self._DestinationDirectory = None
1530
+ self._DestinationFileName = None
1528
1531
 
1529
1532
  @property
1530
1533
  def AndroidInstanceId(self):
@@ -1559,11 +1562,23 @@ class AndroidInstanceUploadFile(AbstractModel):
1559
1562
  def DestinationDirectory(self, DestinationDirectory):
1560
1563
  self._DestinationDirectory = DestinationDirectory
1561
1564
 
1565
+ @property
1566
+ def DestinationFileName(self):
1567
+ """目标文件名
1568
+ :rtype: str
1569
+ """
1570
+ return self._DestinationFileName
1571
+
1572
+ @DestinationFileName.setter
1573
+ def DestinationFileName(self, DestinationFileName):
1574
+ self._DestinationFileName = DestinationFileName
1575
+
1562
1576
 
1563
1577
  def _deserialize(self, params):
1564
1578
  self._AndroidInstanceId = params.get("AndroidInstanceId")
1565
1579
  self._FileURL = params.get("FileURL")
1566
1580
  self._DestinationDirectory = params.get("DestinationDirectory")
1581
+ self._DestinationFileName = params.get("DestinationFileName")
1567
1582
  memeber_set = set(params.keys())
1568
1583
  for name, value in vars(self).items():
1569
1584
  property_name = name[1:]
@@ -3399,17 +3414,20 @@ class CreateCosCredentialRequest(AbstractModel):
3399
3414
 
3400
3415
  def __init__(self):
3401
3416
  r"""
3402
- :param _CosType: Cos 密钥类型, Mobile 移动端, PC 桌面, AndroidApp 安卓应用
3417
+ :param _CosType: Cos 密钥类型,取值: Mobile 云手游、PC 云端游、AndroidApp 云手机应用管理、AndroidAppFile 云手机文件管理、AndroidAppBackup 云手机备份还原
3403
3418
  :type CosType: str
3404
- :param _AndroidAppCosInfo: 云手机 Cos 数据
3419
+ :param _AndroidAppCosInfo: 云手机应用管理 Cos 数据
3405
3420
  :type AndroidAppCosInfo: :class:`tencentcloud.gs.v20191118.models.AndroidAppCosInfo`
3421
+ :param _AndroidAppFileCosInfo: 云手机文件管理 Cos 数据
3422
+ :type AndroidAppFileCosInfo: :class:`tencentcloud.gs.v20191118.models.FileCosInfo`
3406
3423
  """
3407
3424
  self._CosType = None
3408
3425
  self._AndroidAppCosInfo = None
3426
+ self._AndroidAppFileCosInfo = None
3409
3427
 
3410
3428
  @property
3411
3429
  def CosType(self):
3412
- """Cos 密钥类型, Mobile 移动端, PC 桌面, AndroidApp 安卓应用
3430
+ """Cos 密钥类型,取值: Mobile 云手游、PC 云端游、AndroidApp 云手机应用管理、AndroidAppFile 云手机文件管理、AndroidAppBackup 云手机备份还原
3413
3431
  :rtype: str
3414
3432
  """
3415
3433
  return self._CosType
@@ -3420,7 +3438,7 @@ class CreateCosCredentialRequest(AbstractModel):
3420
3438
 
3421
3439
  @property
3422
3440
  def AndroidAppCosInfo(self):
3423
- """云手机 Cos 数据
3441
+ """云手机应用管理 Cos 数据
3424
3442
  :rtype: :class:`tencentcloud.gs.v20191118.models.AndroidAppCosInfo`
3425
3443
  """
3426
3444
  return self._AndroidAppCosInfo
@@ -3429,12 +3447,26 @@ class CreateCosCredentialRequest(AbstractModel):
3429
3447
  def AndroidAppCosInfo(self, AndroidAppCosInfo):
3430
3448
  self._AndroidAppCosInfo = AndroidAppCosInfo
3431
3449
 
3450
+ @property
3451
+ def AndroidAppFileCosInfo(self):
3452
+ """云手机文件管理 Cos 数据
3453
+ :rtype: :class:`tencentcloud.gs.v20191118.models.FileCosInfo`
3454
+ """
3455
+ return self._AndroidAppFileCosInfo
3456
+
3457
+ @AndroidAppFileCosInfo.setter
3458
+ def AndroidAppFileCosInfo(self, AndroidAppFileCosInfo):
3459
+ self._AndroidAppFileCosInfo = AndroidAppFileCosInfo
3460
+
3432
3461
 
3433
3462
  def _deserialize(self, params):
3434
3463
  self._CosType = params.get("CosType")
3435
3464
  if params.get("AndroidAppCosInfo") is not None:
3436
3465
  self._AndroidAppCosInfo = AndroidAppCosInfo()
3437
3466
  self._AndroidAppCosInfo._deserialize(params.get("AndroidAppCosInfo"))
3467
+ if params.get("AndroidAppFileCosInfo") is not None:
3468
+ self._AndroidAppFileCosInfo = FileCosInfo()
3469
+ self._AndroidAppFileCosInfo._deserialize(params.get("AndroidAppFileCosInfo"))
3438
3470
  memeber_set = set(params.keys())
3439
3471
  for name, value in vars(self).items():
3440
3472
  property_name = name[1:]
@@ -5886,10 +5918,13 @@ class DistributeFileToAndroidInstancesRequest(AbstractModel):
5886
5918
  :type FileURL: str
5887
5919
  :param _DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
5888
5920
  :type DestinationDirectory: str
5921
+ :param _DestinationFileName: 目标文件名
5922
+ :type DestinationFileName: str
5889
5923
  """
5890
5924
  self._AndroidInstanceIds = None
5891
5925
  self._FileURL = None
5892
5926
  self._DestinationDirectory = None
5927
+ self._DestinationFileName = None
5893
5928
 
5894
5929
  @property
5895
5930
  def AndroidInstanceIds(self):
@@ -5924,11 +5959,23 @@ class DistributeFileToAndroidInstancesRequest(AbstractModel):
5924
5959
  def DestinationDirectory(self, DestinationDirectory):
5925
5960
  self._DestinationDirectory = DestinationDirectory
5926
5961
 
5962
+ @property
5963
+ def DestinationFileName(self):
5964
+ """目标文件名
5965
+ :rtype: str
5966
+ """
5967
+ return self._DestinationFileName
5968
+
5969
+ @DestinationFileName.setter
5970
+ def DestinationFileName(self, DestinationFileName):
5971
+ self._DestinationFileName = DestinationFileName
5972
+
5927
5973
 
5928
5974
  def _deserialize(self, params):
5929
5975
  self._AndroidInstanceIds = params.get("AndroidInstanceIds")
5930
5976
  self._FileURL = params.get("FileURL")
5931
5977
  self._DestinationDirectory = params.get("DestinationDirectory")
5978
+ self._DestinationFileName = params.get("DestinationFileName")
5932
5979
  memeber_set = set(params.keys())
5933
5980
  for name, value in vars(self).items():
5934
5981
  property_name = name[1:]
@@ -6459,6 +6506,42 @@ class FetchAndroidInstancesLogsResponse(AbstractModel):
6459
6506
  self._RequestId = params.get("RequestId")
6460
6507
 
6461
6508
 
6509
+ class FileCosInfo(AbstractModel):
6510
+ """应用文件 Cos 信息
6511
+
6512
+ """
6513
+
6514
+ def __init__(self):
6515
+ r"""
6516
+ :param _FileId: 文件 Id
6517
+ :type FileId: str
6518
+ """
6519
+ self._FileId = None
6520
+
6521
+ @property
6522
+ def FileId(self):
6523
+ """文件 Id
6524
+ :rtype: str
6525
+ """
6526
+ return self._FileId
6527
+
6528
+ @FileId.setter
6529
+ def FileId(self, FileId):
6530
+ self._FileId = FileId
6531
+
6532
+
6533
+ def _deserialize(self, params):
6534
+ self._FileId = params.get("FileId")
6535
+ memeber_set = set(params.keys())
6536
+ for name, value in vars(self).items():
6537
+ property_name = name[1:]
6538
+ if property_name in memeber_set:
6539
+ memeber_set.remove(property_name)
6540
+ if len(memeber_set) > 0:
6541
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
6542
+
6543
+
6544
+
6462
6545
  class Filter(AbstractModel):
6463
6546
  """过滤
6464
6547
 
@@ -10484,10 +10567,13 @@ class UploadFileToAndroidInstancesRequest(AbstractModel):
10484
10567
  :type FileURL: str
10485
10568
  :param _DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
10486
10569
  :type DestinationDirectory: str
10570
+ :param _DestinationFileName: 目标文件名
10571
+ :type DestinationFileName: str
10487
10572
  """
10488
10573
  self._AndroidInstanceIds = None
10489
10574
  self._FileURL = None
10490
10575
  self._DestinationDirectory = None
10576
+ self._DestinationFileName = None
10491
10577
 
10492
10578
  @property
10493
10579
  def AndroidInstanceIds(self):
@@ -10522,11 +10608,23 @@ class UploadFileToAndroidInstancesRequest(AbstractModel):
10522
10608
  def DestinationDirectory(self, DestinationDirectory):
10523
10609
  self._DestinationDirectory = DestinationDirectory
10524
10610
 
10611
+ @property
10612
+ def DestinationFileName(self):
10613
+ """目标文件名
10614
+ :rtype: str
10615
+ """
10616
+ return self._DestinationFileName
10617
+
10618
+ @DestinationFileName.setter
10619
+ def DestinationFileName(self, DestinationFileName):
10620
+ self._DestinationFileName = DestinationFileName
10621
+
10525
10622
 
10526
10623
  def _deserialize(self, params):
10527
10624
  self._AndroidInstanceIds = params.get("AndroidInstanceIds")
10528
10625
  self._FileURL = params.get("FileURL")
10529
10626
  self._DestinationDirectory = params.get("DestinationDirectory")
10627
+ self._DestinationFileName = params.get("DestinationFileName")
10530
10628
  memeber_set = set(params.keys())
10531
10629
  for name, value in vars(self).items():
10532
10630
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-gs
3
- Version: 3.0.1428
3
+ Version: 3.0.1452
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<4.0.0,>=3.0.1452
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.0.1428