alibabacloud-emr-serverless-spark20230808 1.4.2__py3-none-any.whl → 1.4.3__py3-none-any.whl
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 alibabacloud-emr-serverless-spark20230808 might be problematic. Click here for more details.
- alibabacloud_emr_serverless_spark20230808/__init__.py +1 -1
- alibabacloud_emr_serverless_spark20230808/models.py +16 -4
- {alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info → alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info}/METADATA +1 -1
- alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info/RECORD +8 -0
- alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info/RECORD +0 -8
- {alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info → alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info}/LICENSE +0 -0
- {alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info → alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info}/WHEEL +0 -0
- {alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info → alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.4.
|
|
1
|
+
__version__ = '1.4.3'
|
|
@@ -1549,7 +1549,7 @@ class CreateSqlStatementRequest(TeaModel):
|
|
|
1549
1549
|
self.default_database = default_database
|
|
1550
1550
|
# The maximum number of entries to return. Valid values: 1 to 10000.
|
|
1551
1551
|
self.limit = limit
|
|
1552
|
-
# The SQL
|
|
1552
|
+
# The SQL compute ID. You can create an SQL compute in the workspace created in EMR Serverless Spark.
|
|
1553
1553
|
self.sql_compute_id = sql_compute_id
|
|
1554
1554
|
# The region ID.
|
|
1555
1555
|
self.region_id = region_id
|
|
@@ -1804,8 +1804,10 @@ class GetJobRunResponseBodyJobRun(TeaModel):
|
|
|
1804
1804
|
self,
|
|
1805
1805
|
code_type: str = None,
|
|
1806
1806
|
configuration_overrides: GetJobRunResponseBodyJobRunConfigurationOverrides = None,
|
|
1807
|
+
display_release_version: str = None,
|
|
1807
1808
|
end_time: int = None,
|
|
1808
1809
|
execution_timeout_seconds: int = None,
|
|
1810
|
+
fusion: bool = None,
|
|
1809
1811
|
job_driver: JobDriver = None,
|
|
1810
1812
|
job_run_id: str = None,
|
|
1811
1813
|
log: RunLog = None,
|
|
@@ -1826,12 +1828,14 @@ class GetJobRunResponseBodyJobRun(TeaModel):
|
|
|
1826
1828
|
# * JAR
|
|
1827
1829
|
# * PYTHON
|
|
1828
1830
|
self.code_type = code_type
|
|
1829
|
-
# The
|
|
1831
|
+
# The job configurations of Spark.
|
|
1830
1832
|
self.configuration_overrides = configuration_overrides
|
|
1833
|
+
self.display_release_version = display_release_version
|
|
1831
1834
|
# The end time of the job.
|
|
1832
1835
|
self.end_time = end_time
|
|
1833
1836
|
# The timeout period of the job.
|
|
1834
1837
|
self.execution_timeout_seconds = execution_timeout_seconds
|
|
1838
|
+
self.fusion = fusion
|
|
1835
1839
|
# The information about Spark Driver.
|
|
1836
1840
|
self.job_driver = job_driver
|
|
1837
1841
|
# The job ID.
|
|
@@ -1883,10 +1887,14 @@ class GetJobRunResponseBodyJobRun(TeaModel):
|
|
|
1883
1887
|
result['codeType'] = self.code_type
|
|
1884
1888
|
if self.configuration_overrides is not None:
|
|
1885
1889
|
result['configurationOverrides'] = self.configuration_overrides.to_map()
|
|
1890
|
+
if self.display_release_version is not None:
|
|
1891
|
+
result['displayReleaseVersion'] = self.display_release_version
|
|
1886
1892
|
if self.end_time is not None:
|
|
1887
1893
|
result['endTime'] = self.end_time
|
|
1888
1894
|
if self.execution_timeout_seconds is not None:
|
|
1889
1895
|
result['executionTimeoutSeconds'] = self.execution_timeout_seconds
|
|
1896
|
+
if self.fusion is not None:
|
|
1897
|
+
result['fusion'] = self.fusion
|
|
1890
1898
|
if self.job_driver is not None:
|
|
1891
1899
|
result['jobDriver'] = self.job_driver.to_map()
|
|
1892
1900
|
if self.job_run_id is not None:
|
|
@@ -1924,10 +1932,14 @@ class GetJobRunResponseBodyJobRun(TeaModel):
|
|
|
1924
1932
|
if m.get('configurationOverrides') is not None:
|
|
1925
1933
|
temp_model = GetJobRunResponseBodyJobRunConfigurationOverrides()
|
|
1926
1934
|
self.configuration_overrides = temp_model.from_map(m['configurationOverrides'])
|
|
1935
|
+
if m.get('displayReleaseVersion') is not None:
|
|
1936
|
+
self.display_release_version = m.get('displayReleaseVersion')
|
|
1927
1937
|
if m.get('endTime') is not None:
|
|
1928
1938
|
self.end_time = m.get('endTime')
|
|
1929
1939
|
if m.get('executionTimeoutSeconds') is not None:
|
|
1930
1940
|
self.execution_timeout_seconds = m.get('executionTimeoutSeconds')
|
|
1941
|
+
if m.get('fusion') is not None:
|
|
1942
|
+
self.fusion = m.get('fusion')
|
|
1931
1943
|
if m.get('jobDriver') is not None:
|
|
1932
1944
|
temp_model = JobDriver()
|
|
1933
1945
|
self.job_driver = temp_model.from_map(m['jobDriver'])
|
|
@@ -2189,7 +2201,7 @@ class GetSqlStatementResponseBody(TeaModel):
|
|
|
2189
2201
|
data: GetSqlStatementResponseBodyData = None,
|
|
2190
2202
|
request_id: str = None,
|
|
2191
2203
|
):
|
|
2192
|
-
# The returned
|
|
2204
|
+
# The data returned.
|
|
2193
2205
|
self.data = data
|
|
2194
2206
|
# The request ID.
|
|
2195
2207
|
self.request_id = request_id
|
|
@@ -3672,7 +3684,7 @@ class ListSessionClustersResponseBody(TeaModel):
|
|
|
3672
3684
|
self.next_token = next_token
|
|
3673
3685
|
# The request ID.
|
|
3674
3686
|
self.request_id = request_id
|
|
3675
|
-
# The SQL
|
|
3687
|
+
# The SQL computes.
|
|
3676
3688
|
self.session_clusters = session_clusters
|
|
3677
3689
|
# The total number of entries returned.
|
|
3678
3690
|
self.total_count = total_count
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-emr-serverless-spark20230808
|
|
3
|
-
Version: 1.4.
|
|
3
|
+
Version: 1.4.3
|
|
4
4
|
Summary: Alibaba Cloud emr-serverless-spark (20230808) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_emr_serverless_spark20230808/__init__.py,sha256=8GxctUF7mujoMUZ3gMXpRtjgoKhTw0a8ydqBtoMNCSs,21
|
|
2
|
+
alibabacloud_emr_serverless_spark20230808/client.py,sha256=AEzwWD2JZjD5hoEHP5t8ApnpRlscIblnHEvm6ppoHu4,66290
|
|
3
|
+
alibabacloud_emr_serverless_spark20230808/models.py,sha256=c8R-tYDb7CRtCp7v71q4ldZEblaIXOmlJ7HFiDTyFC8,163566
|
|
4
|
+
alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info/METADATA,sha256=jTYVe3koAsZUefWkAHsozXCl20wUH0CxzZEuMXAl8_c,2431
|
|
6
|
+
alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info/top_level.txt,sha256=8b6upnqVMtrToMFachj1i07ccsHHbzRruHP9NynLR-A,42
|
|
8
|
+
alibabacloud_emr_serverless_spark20230808-1.4.3.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_emr_serverless_spark20230808/__init__.py,sha256=HqzWxczJhe3AeVF8I9zJTVAwLz7QaCk7tA6q5CwpM6M,21
|
|
2
|
-
alibabacloud_emr_serverless_spark20230808/client.py,sha256=AEzwWD2JZjD5hoEHP5t8ApnpRlscIblnHEvm6ppoHu4,66290
|
|
3
|
-
alibabacloud_emr_serverless_spark20230808/models.py,sha256=MDXMa9I2_cAm3YgB-snMsqctxAujpA1CP5thtPHVoew,162983
|
|
4
|
-
alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info/METADATA,sha256=92BzjaQQv7TrnhLDDohDxzydud9QsaxKWS5TpQKvfQY,2431
|
|
6
|
-
alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info/top_level.txt,sha256=8b6upnqVMtrToMFachj1i07ccsHHbzRruHP9NynLR-A,42
|
|
8
|
-
alibabacloud_emr_serverless_spark20230808-1.4.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|