tencentcloud-sdk-python-emr 3.0.1487__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.
Files changed (16) hide show
  1. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/setup.py +1 -1
  3. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/models.py +15 -0
  5. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_emr-3.0.1488/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_emr-3.0.1487/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/README.rst +0 -0
  9. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/__init__.py +0 -0
  11. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/__init__.py +0 -0
  12. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/emr_client.py +0 -0
  13. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
  14. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud_sdk_python_emr-3.0.1487 → tencentcloud_sdk_python_emr-3.0.1488}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud_sdk_python_emr-3.0.1487 → 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.1487
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.1487
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.1487,<4.0.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(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1487'
17
+ __version__ = '3.0.1488'
@@ -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")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-emr
3
- Version: 3.0.1487
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.1487
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.1487