tencentcloud-sdk-python-gs 3.0.1431__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.
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/setup.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/models.py +45 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud_sdk_python_gs.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-gs-3.0.1452/tencentcloud_sdk_python_gs.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-gs-3.0.1431/tencentcloud_sdk_python_gs.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/README.rst +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/setup.cfg +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/__init__.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/errorcodes.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud/gs/v20191118/gs_client.py +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud_sdk_python_gs.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud_sdk_python_gs.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-gs-3.0.1431 → tencentcloud-sdk-python-gs-3.0.1452}/tencentcloud_sdk_python_gs.egg-info/top_level.txt +0 -0
|
@@ -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.
|
|
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(),
|
|
@@ -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:]
|
|
@@ -5903,10 +5918,13 @@ class DistributeFileToAndroidInstancesRequest(AbstractModel):
|
|
|
5903
5918
|
:type FileURL: str
|
|
5904
5919
|
:param _DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
|
|
5905
5920
|
:type DestinationDirectory: str
|
|
5921
|
+
:param _DestinationFileName: 目标文件名
|
|
5922
|
+
:type DestinationFileName: str
|
|
5906
5923
|
"""
|
|
5907
5924
|
self._AndroidInstanceIds = None
|
|
5908
5925
|
self._FileURL = None
|
|
5909
5926
|
self._DestinationDirectory = None
|
|
5927
|
+
self._DestinationFileName = None
|
|
5910
5928
|
|
|
5911
5929
|
@property
|
|
5912
5930
|
def AndroidInstanceIds(self):
|
|
@@ -5941,11 +5959,23 @@ class DistributeFileToAndroidInstancesRequest(AbstractModel):
|
|
|
5941
5959
|
def DestinationDirectory(self, DestinationDirectory):
|
|
5942
5960
|
self._DestinationDirectory = DestinationDirectory
|
|
5943
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
|
+
|
|
5944
5973
|
|
|
5945
5974
|
def _deserialize(self, params):
|
|
5946
5975
|
self._AndroidInstanceIds = params.get("AndroidInstanceIds")
|
|
5947
5976
|
self._FileURL = params.get("FileURL")
|
|
5948
5977
|
self._DestinationDirectory = params.get("DestinationDirectory")
|
|
5978
|
+
self._DestinationFileName = params.get("DestinationFileName")
|
|
5949
5979
|
memeber_set = set(params.keys())
|
|
5950
5980
|
for name, value in vars(self).items():
|
|
5951
5981
|
property_name = name[1:]
|
|
@@ -10537,10 +10567,13 @@ class UploadFileToAndroidInstancesRequest(AbstractModel):
|
|
|
10537
10567
|
:type FileURL: str
|
|
10538
10568
|
:param _DestinationDirectory: 上传目标目录,只能上传到 /sdcard/ 目录或其子目录下
|
|
10539
10569
|
:type DestinationDirectory: str
|
|
10570
|
+
:param _DestinationFileName: 目标文件名
|
|
10571
|
+
:type DestinationFileName: str
|
|
10540
10572
|
"""
|
|
10541
10573
|
self._AndroidInstanceIds = None
|
|
10542
10574
|
self._FileURL = None
|
|
10543
10575
|
self._DestinationDirectory = None
|
|
10576
|
+
self._DestinationFileName = None
|
|
10544
10577
|
|
|
10545
10578
|
@property
|
|
10546
10579
|
def AndroidInstanceIds(self):
|
|
@@ -10575,11 +10608,23 @@ class UploadFileToAndroidInstancesRequest(AbstractModel):
|
|
|
10575
10608
|
def DestinationDirectory(self, DestinationDirectory):
|
|
10576
10609
|
self._DestinationDirectory = DestinationDirectory
|
|
10577
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
|
+
|
|
10578
10622
|
|
|
10579
10623
|
def _deserialize(self, params):
|
|
10580
10624
|
self._AndroidInstanceIds = params.get("AndroidInstanceIds")
|
|
10581
10625
|
self._FileURL = params.get("FileURL")
|
|
10582
10626
|
self._DestinationDirectory = params.get("DestinationDirectory")
|
|
10627
|
+
self._DestinationFileName = params.get("DestinationFileName")
|
|
10583
10628
|
memeber_set = set(params.keys())
|
|
10584
10629
|
for name, value in vars(self).items():
|
|
10585
10630
|
property_name = name[1:]
|
|
@@ -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.1431
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|