tencentcloud-sdk-python-emr 3.0.1488__tar.gz → 3.1.3__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.1488 → tencentcloud_sdk_python_emr-3.1.3}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/setup.py +2 -1
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud_sdk_python_emr-3.1.3/tencentcloud/emr/v20190103/emr_client_async.py +1659 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud/emr/v20190103/models.py +395 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +1 -0
- tencentcloud_sdk_python_emr-3.1.3/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_emr-3.0.1488/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/README.rst +0 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/setup.cfg +0 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud/emr/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud/emr/v20190103/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_emr-3.0.1488 → tencentcloud_sdk_python_emr-3.1.3}/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.
|
|
3
|
+
Version: 3.1.3
|
|
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.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.3
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,8 @@ 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.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.3,<4.0.0"],
|
|
12
|
+
|
|
12
13
|
version=tencentcloud.__version__,
|
|
13
14
|
description='Tencent Cloud Emr SDK for Python',
|
|
14
15
|
long_description=open('README.rst').read(),
|
|
@@ -765,6 +765,29 @@ class EmrClient(AbstractClient):
|
|
|
765
765
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
766
766
|
|
|
767
767
|
|
|
768
|
+
def DescribeInstanceOplog(self, request):
|
|
769
|
+
r"""获取实例操作日志
|
|
770
|
+
|
|
771
|
+
:param request: Request instance for DescribeInstanceOplog.
|
|
772
|
+
:type request: :class:`tencentcloud.emr.v20190103.models.DescribeInstanceOplogRequest`
|
|
773
|
+
:rtype: :class:`tencentcloud.emr.v20190103.models.DescribeInstanceOplogResponse`
|
|
774
|
+
|
|
775
|
+
"""
|
|
776
|
+
try:
|
|
777
|
+
params = request._serialize()
|
|
778
|
+
headers = request.headers
|
|
779
|
+
body = self.call("DescribeInstanceOplog", params, headers=headers)
|
|
780
|
+
response = json.loads(body)
|
|
781
|
+
model = models.DescribeInstanceOplogResponse()
|
|
782
|
+
model._deserialize(response["Response"])
|
|
783
|
+
return model
|
|
784
|
+
except Exception as e:
|
|
785
|
+
if isinstance(e, TencentCloudSDKException):
|
|
786
|
+
raise
|
|
787
|
+
else:
|
|
788
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
789
|
+
|
|
790
|
+
|
|
768
791
|
def DescribeInstanceRenewNodes(self, request):
|
|
769
792
|
r"""查询待续费节点信息
|
|
770
793
|
|