tencentcloud-sdk-python-emr 3.1.22__tar.gz → 3.1.29__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.1.22 → tencentcloud_sdk_python_emr-3.1.29}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/setup.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud/emr/v20190103/models.py +30 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud_sdk_python_emr.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_emr-3.1.29/tencentcloud_sdk_python_emr.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_emr-3.1.22/tencentcloud_sdk_python_emr.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/README.rst +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/setup.cfg +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud/emr/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud/emr/v20190103/__init__.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud/emr/v20190103/emr_client.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud/emr/v20190103/emr_client_async.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud/emr/v20190103/errorcodes.py +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud_sdk_python_emr.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/tencentcloud_sdk_python_emr.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_emr-3.1.22 → tencentcloud_sdk_python_emr-3.1.29}/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.1.
|
|
3
|
+
Version: 3.1.29
|
|
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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.29
|
|
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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.29,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Emr SDK for Python',
|
|
@@ -36623,6 +36623,8 @@ class StarRocksQueryInfo(AbstractModel):
|
|
|
36623
36623
|
:type ExecutionStatement: str
|
|
36624
36624
|
:param _User: 用户
|
|
36625
36625
|
:type User: str
|
|
36626
|
+
:param _ErrorCode: 错误码
|
|
36627
|
+
:type ErrorCode: str
|
|
36626
36628
|
"""
|
|
36627
36629
|
self._ClientIP = None
|
|
36628
36630
|
self._CPUCost = None
|
|
@@ -36643,6 +36645,7 @@ class StarRocksQueryInfo(AbstractModel):
|
|
|
36643
36645
|
self._ExecutionState = None
|
|
36644
36646
|
self._ExecutionStatement = None
|
|
36645
36647
|
self._User = None
|
|
36648
|
+
self._ErrorCode = None
|
|
36646
36649
|
|
|
36647
36650
|
@property
|
|
36648
36651
|
def ClientIP(self):
|
|
@@ -36853,6 +36856,17 @@ class StarRocksQueryInfo(AbstractModel):
|
|
|
36853
36856
|
def User(self, User):
|
|
36854
36857
|
self._User = User
|
|
36855
36858
|
|
|
36859
|
+
@property
|
|
36860
|
+
def ErrorCode(self):
|
|
36861
|
+
r"""错误码
|
|
36862
|
+
:rtype: str
|
|
36863
|
+
"""
|
|
36864
|
+
return self._ErrorCode
|
|
36865
|
+
|
|
36866
|
+
@ErrorCode.setter
|
|
36867
|
+
def ErrorCode(self, ErrorCode):
|
|
36868
|
+
self._ErrorCode = ErrorCode
|
|
36869
|
+
|
|
36856
36870
|
|
|
36857
36871
|
def _deserialize(self, params):
|
|
36858
36872
|
self._ClientIP = params.get("ClientIP")
|
|
@@ -36874,6 +36888,7 @@ class StarRocksQueryInfo(AbstractModel):
|
|
|
36874
36888
|
self._ExecutionState = params.get("ExecutionState")
|
|
36875
36889
|
self._ExecutionStatement = params.get("ExecutionStatement")
|
|
36876
36890
|
self._User = params.get("User")
|
|
36891
|
+
self._ErrorCode = params.get("ErrorCode")
|
|
36877
36892
|
memeber_set = set(params.keys())
|
|
36878
36893
|
for name, value in vars(self).items():
|
|
36879
36894
|
property_name = name[1:]
|
|
@@ -38956,6 +38971,8 @@ class TrinoQueryInfo(AbstractModel):
|
|
|
38956
38971
|
:type User: str
|
|
38957
38972
|
:param _WrittenBytes: 写入字节数
|
|
38958
38973
|
:type WrittenBytes: int
|
|
38974
|
+
:param _ErrorMessage: Error日志
|
|
38975
|
+
:type ErrorMessage: str
|
|
38959
38976
|
"""
|
|
38960
38977
|
self._Catalog = None
|
|
38961
38978
|
self._ClientIpAddr = None
|
|
@@ -38976,6 +38993,7 @@ class TrinoQueryInfo(AbstractModel):
|
|
|
38976
38993
|
self._Statement = None
|
|
38977
38994
|
self._User = None
|
|
38978
38995
|
self._WrittenBytes = None
|
|
38996
|
+
self._ErrorMessage = None
|
|
38979
38997
|
|
|
38980
38998
|
@property
|
|
38981
38999
|
def Catalog(self):
|
|
@@ -39186,6 +39204,17 @@ class TrinoQueryInfo(AbstractModel):
|
|
|
39186
39204
|
def WrittenBytes(self, WrittenBytes):
|
|
39187
39205
|
self._WrittenBytes = WrittenBytes
|
|
39188
39206
|
|
|
39207
|
+
@property
|
|
39208
|
+
def ErrorMessage(self):
|
|
39209
|
+
r"""Error日志
|
|
39210
|
+
:rtype: str
|
|
39211
|
+
"""
|
|
39212
|
+
return self._ErrorMessage
|
|
39213
|
+
|
|
39214
|
+
@ErrorMessage.setter
|
|
39215
|
+
def ErrorMessage(self, ErrorMessage):
|
|
39216
|
+
self._ErrorMessage = ErrorMessage
|
|
39217
|
+
|
|
39189
39218
|
|
|
39190
39219
|
def _deserialize(self, params):
|
|
39191
39220
|
self._Catalog = params.get("Catalog")
|
|
@@ -39207,6 +39236,7 @@ class TrinoQueryInfo(AbstractModel):
|
|
|
39207
39236
|
self._Statement = params.get("Statement")
|
|
39208
39237
|
self._User = params.get("User")
|
|
39209
39238
|
self._WrittenBytes = params.get("WrittenBytes")
|
|
39239
|
+
self._ErrorMessage = params.get("ErrorMessage")
|
|
39210
39240
|
memeber_set = set(params.keys())
|
|
39211
39241
|
for name, value in vars(self).items():
|
|
39212
39242
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-emr
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.29
|
|
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.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.29
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.29
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.22
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|