tencentcloud-sdk-python-emr 3.0.1482__tar.gz → 3.0.1488__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.
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/setup.py +1 -1
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/models.py +30 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_emr-3.0.1488/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_emr-3.0.1482/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/README.rst +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/setup.cfg +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/emr_client.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_emr-3.0.1482 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud_sdk_python_emr.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-emr
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1488
|
|
4
4
|
Summary: Tencent Cloud Emr 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1488
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-emr',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1488,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Emr SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -23854,6 +23854,8 @@ class ModifyUserGroupRequest(AbstractModel):
|
|
|
23854
23854
|
|
|
23855
23855
|
def __init__(self):
|
|
23856
23856
|
r"""
|
|
23857
|
+
:param _InstanceId: 集群字符串ID
|
|
23858
|
+
:type InstanceId: str
|
|
23857
23859
|
:param _Users: 用户信息列表
|
|
23858
23860
|
:type Users: list of str
|
|
23859
23861
|
:param _UserGroup: 用户主组,cvm集群为必填参数,tke集群选填
|
|
@@ -23863,11 +23865,23 @@ class ModifyUserGroupRequest(AbstractModel):
|
|
|
23863
23865
|
:param _Remark: 备注
|
|
23864
23866
|
:type Remark: str
|
|
23865
23867
|
"""
|
|
23868
|
+
self._InstanceId = None
|
|
23866
23869
|
self._Users = None
|
|
23867
23870
|
self._UserGroup = None
|
|
23868
23871
|
self._Groups = None
|
|
23869
23872
|
self._Remark = None
|
|
23870
23873
|
|
|
23874
|
+
@property
|
|
23875
|
+
def InstanceId(self):
|
|
23876
|
+
r"""集群字符串ID
|
|
23877
|
+
:rtype: str
|
|
23878
|
+
"""
|
|
23879
|
+
return self._InstanceId
|
|
23880
|
+
|
|
23881
|
+
@InstanceId.setter
|
|
23882
|
+
def InstanceId(self, InstanceId):
|
|
23883
|
+
self._InstanceId = InstanceId
|
|
23884
|
+
|
|
23871
23885
|
@property
|
|
23872
23886
|
def Users(self):
|
|
23873
23887
|
r"""用户信息列表
|
|
@@ -23914,6 +23928,7 @@ class ModifyUserGroupRequest(AbstractModel):
|
|
|
23914
23928
|
|
|
23915
23929
|
|
|
23916
23930
|
def _deserialize(self, params):
|
|
23931
|
+
self._InstanceId = params.get("InstanceId")
|
|
23917
23932
|
self._Users = params.get("Users")
|
|
23918
23933
|
self._UserGroup = params.get("UserGroup")
|
|
23919
23934
|
self._Groups = params.get("Groups")
|
|
@@ -26619,11 +26634,14 @@ class NodeSpecDisk(AbstractModel):
|
|
|
26619
26634
|
:type DiskType: str
|
|
26620
26635
|
:param _DefaultDiskSize: 指定磁盘大小
|
|
26621
26636
|
:type DefaultDiskSize: int
|
|
26637
|
+
:param _IsSpecialDisk: 是否为特殊的数据盘,如:单副本盘
|
|
26638
|
+
:type IsSpecialDisk: bool
|
|
26622
26639
|
"""
|
|
26623
26640
|
self._Count = None
|
|
26624
26641
|
self._Name = None
|
|
26625
26642
|
self._DiskType = None
|
|
26626
26643
|
self._DefaultDiskSize = None
|
|
26644
|
+
self._IsSpecialDisk = None
|
|
26627
26645
|
|
|
26628
26646
|
@property
|
|
26629
26647
|
def Count(self):
|
|
@@ -26669,12 +26687,24 @@ class NodeSpecDisk(AbstractModel):
|
|
|
26669
26687
|
def DefaultDiskSize(self, DefaultDiskSize):
|
|
26670
26688
|
self._DefaultDiskSize = DefaultDiskSize
|
|
26671
26689
|
|
|
26690
|
+
@property
|
|
26691
|
+
def IsSpecialDisk(self):
|
|
26692
|
+
r"""是否为特殊的数据盘,如:单副本盘
|
|
26693
|
+
:rtype: bool
|
|
26694
|
+
"""
|
|
26695
|
+
return self._IsSpecialDisk
|
|
26696
|
+
|
|
26697
|
+
@IsSpecialDisk.setter
|
|
26698
|
+
def IsSpecialDisk(self, IsSpecialDisk):
|
|
26699
|
+
self._IsSpecialDisk = IsSpecialDisk
|
|
26700
|
+
|
|
26672
26701
|
|
|
26673
26702
|
def _deserialize(self, params):
|
|
26674
26703
|
self._Count = params.get("Count")
|
|
26675
26704
|
self._Name = params.get("Name")
|
|
26676
26705
|
self._DiskType = params.get("DiskType")
|
|
26677
26706
|
self._DefaultDiskSize = params.get("DefaultDiskSize")
|
|
26707
|
+
self._IsSpecialDisk = params.get("IsSpecialDisk")
|
|
26678
26708
|
memeber_set = set(params.keys())
|
|
26679
26709
|
for name, value in vars(self).items():
|
|
26680
26710
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-emr
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1488
|
|
4
4
|
Summary: Tencent Cloud Emr 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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.0.1488
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1488
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1482
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|