alibabacloud-emr-serverless-spark20230808 1.13.0__tar.gz → 1.13.1__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.
Potentially problematic release.
This version of alibabacloud-emr-serverless-spark20230808 might be problematic. Click here for more details.
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/ChangeLog.md +4 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/PKG-INFO +1 -1
- alibabacloud_emr-serverless-spark20230808-1.13.1/alibabacloud_emr_serverless_spark20230808/__init__.py +1 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/alibabacloud_emr_serverless_spark20230808/client.py +12 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/alibabacloud_emr_serverless_spark20230808/models.py +54 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/alibabacloud_emr_serverless_spark20230808.egg-info/PKG-INFO +1 -1
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/setup.py +1 -1
- alibabacloud_emr-serverless-spark20230808-1.13.0/alibabacloud_emr_serverless_spark20230808/__init__.py +0 -1
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/LICENSE +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/MANIFEST.in +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/README-CN.md +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/README.md +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/alibabacloud_emr_serverless_spark20230808.egg-info/SOURCES.txt +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/alibabacloud_emr_serverless_spark20230808.egg-info/dependency_links.txt +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/alibabacloud_emr_serverless_spark20230808.egg-info/requires.txt +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/alibabacloud_emr_serverless_spark20230808.egg-info/top_level.txt +0 -0
- {alibabacloud_emr-serverless-spark20230808-1.13.0 → alibabacloud_emr-serverless-spark20230808-1.13.1}/setup.cfg +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
2025-08-15 Version: 1.13.0
|
|
2
|
+
- Support API ListSqlStatementContents.
|
|
3
|
+
|
|
4
|
+
|
|
1
5
|
2025-07-24 Version: 1.12.1
|
|
2
6
|
- Update API ListKyuubiSparkApplications: add response parameters Body.applications.$.latestSqlStatementStatus.
|
|
3
7
|
- Update API ListSessionClusters: add response parameters Body.sessionClusters.$.connectionToken.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud_emr-serverless-spark20230808
|
|
3
|
-
Version: 1.13.
|
|
3
|
+
Version: 1.13.1
|
|
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 @@
|
|
|
1
|
+
__version__ = '1.13.1'
|
|
@@ -791,6 +791,8 @@ class Client(OpenApiClient):
|
|
|
791
791
|
body['autoStartConfiguration'] = request.auto_start_configuration
|
|
792
792
|
if not UtilClient.is_unset(request.auto_stop_configuration):
|
|
793
793
|
body['autoStopConfiguration'] = request.auto_stop_configuration
|
|
794
|
+
if not UtilClient.is_unset(request.client_token):
|
|
795
|
+
body['clientToken'] = request.client_token
|
|
794
796
|
if not UtilClient.is_unset(request.display_release_version):
|
|
795
797
|
body['displayReleaseVersion'] = request.display_release_version
|
|
796
798
|
if not UtilClient.is_unset(request.env_id):
|
|
@@ -854,6 +856,8 @@ class Client(OpenApiClient):
|
|
|
854
856
|
body['autoStartConfiguration'] = request.auto_start_configuration
|
|
855
857
|
if not UtilClient.is_unset(request.auto_stop_configuration):
|
|
856
858
|
body['autoStopConfiguration'] = request.auto_stop_configuration
|
|
859
|
+
if not UtilClient.is_unset(request.client_token):
|
|
860
|
+
body['clientToken'] = request.client_token
|
|
857
861
|
if not UtilClient.is_unset(request.display_release_version):
|
|
858
862
|
body['displayReleaseVersion'] = request.display_release_version
|
|
859
863
|
if not UtilClient.is_unset(request.env_id):
|
|
@@ -2636,6 +2640,8 @@ class Client(OpenApiClient):
|
|
|
2636
2640
|
if not UtilClient.is_unset(tmp_req.tags):
|
|
2637
2641
|
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
|
2638
2642
|
query = {}
|
|
2643
|
+
if not UtilClient.is_unset(request.application_configs):
|
|
2644
|
+
query['applicationConfigs'] = request.application_configs
|
|
2639
2645
|
if not UtilClient.is_unset(request.creator):
|
|
2640
2646
|
query['creator'] = request.creator
|
|
2641
2647
|
if not UtilClient.is_unset(request.end_time_shrink):
|
|
@@ -2658,6 +2664,8 @@ class Client(OpenApiClient):
|
|
|
2658
2664
|
query['regionId'] = request.region_id
|
|
2659
2665
|
if not UtilClient.is_unset(request.resource_queue_id):
|
|
2660
2666
|
query['resourceQueueId'] = request.resource_queue_id
|
|
2667
|
+
if not UtilClient.is_unset(request.runtime_configs):
|
|
2668
|
+
query['runtimeConfigs'] = request.runtime_configs
|
|
2661
2669
|
if not UtilClient.is_unset(request.start_time_shrink):
|
|
2662
2670
|
query['startTime'] = request.start_time_shrink
|
|
2663
2671
|
if not UtilClient.is_unset(request.states_shrink):
|
|
@@ -2711,6 +2719,8 @@ class Client(OpenApiClient):
|
|
|
2711
2719
|
if not UtilClient.is_unset(tmp_req.tags):
|
|
2712
2720
|
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
|
2713
2721
|
query = {}
|
|
2722
|
+
if not UtilClient.is_unset(request.application_configs):
|
|
2723
|
+
query['applicationConfigs'] = request.application_configs
|
|
2714
2724
|
if not UtilClient.is_unset(request.creator):
|
|
2715
2725
|
query['creator'] = request.creator
|
|
2716
2726
|
if not UtilClient.is_unset(request.end_time_shrink):
|
|
@@ -2733,6 +2743,8 @@ class Client(OpenApiClient):
|
|
|
2733
2743
|
query['regionId'] = request.region_id
|
|
2734
2744
|
if not UtilClient.is_unset(request.resource_queue_id):
|
|
2735
2745
|
query['resourceQueueId'] = request.resource_queue_id
|
|
2746
|
+
if not UtilClient.is_unset(request.runtime_configs):
|
|
2747
|
+
query['runtimeConfigs'] = request.runtime_configs
|
|
2736
2748
|
if not UtilClient.is_unset(request.start_time_shrink):
|
|
2737
2749
|
query['startTime'] = request.start_time_shrink
|
|
2738
2750
|
if not UtilClient.is_unset(request.states_shrink):
|
|
@@ -3348,6 +3348,7 @@ class CreateSessionClusterRequest(TeaModel):
|
|
|
3348
3348
|
application_configs: List[CreateSessionClusterRequestApplicationConfigs] = None,
|
|
3349
3349
|
auto_start_configuration: CreateSessionClusterRequestAutoStartConfiguration = None,
|
|
3350
3350
|
auto_stop_configuration: CreateSessionClusterRequestAutoStopConfiguration = None,
|
|
3351
|
+
client_token: str = None,
|
|
3351
3352
|
display_release_version: str = None,
|
|
3352
3353
|
env_id: str = None,
|
|
3353
3354
|
fusion: bool = None,
|
|
@@ -3367,6 +3368,7 @@ class CreateSessionClusterRequest(TeaModel):
|
|
|
3367
3368
|
self.auto_start_configuration = auto_start_configuration
|
|
3368
3369
|
# The automatic termination configuration.
|
|
3369
3370
|
self.auto_stop_configuration = auto_stop_configuration
|
|
3371
|
+
self.client_token = client_token
|
|
3370
3372
|
# The version of the Spark engine.
|
|
3371
3373
|
self.display_release_version = display_release_version
|
|
3372
3374
|
# The ID of the Python environment. This parameter takes effect only for notebook sessions.
|
|
@@ -3412,6 +3414,8 @@ class CreateSessionClusterRequest(TeaModel):
|
|
|
3412
3414
|
result['autoStartConfiguration'] = self.auto_start_configuration.to_map()
|
|
3413
3415
|
if self.auto_stop_configuration is not None:
|
|
3414
3416
|
result['autoStopConfiguration'] = self.auto_stop_configuration.to_map()
|
|
3417
|
+
if self.client_token is not None:
|
|
3418
|
+
result['clientToken'] = self.client_token
|
|
3415
3419
|
if self.display_release_version is not None:
|
|
3416
3420
|
result['displayReleaseVersion'] = self.display_release_version
|
|
3417
3421
|
if self.env_id is not None:
|
|
@@ -3445,6 +3449,8 @@ class CreateSessionClusterRequest(TeaModel):
|
|
|
3445
3449
|
if m.get('autoStopConfiguration') is not None:
|
|
3446
3450
|
temp_model = CreateSessionClusterRequestAutoStopConfiguration()
|
|
3447
3451
|
self.auto_stop_configuration = temp_model.from_map(m['autoStopConfiguration'])
|
|
3452
|
+
if m.get('clientToken') is not None:
|
|
3453
|
+
self.client_token = m.get('clientToken')
|
|
3448
3454
|
if m.get('displayReleaseVersion') is not None:
|
|
3449
3455
|
self.display_release_version = m.get('displayReleaseVersion')
|
|
3450
3456
|
if m.get('envId') is not None:
|
|
@@ -6614,6 +6620,7 @@ class ListJobRunsRequestTags(TeaModel):
|
|
|
6614
6620
|
class ListJobRunsRequest(TeaModel):
|
|
6615
6621
|
def __init__(
|
|
6616
6622
|
self,
|
|
6623
|
+
application_configs: str = None,
|
|
6617
6624
|
creator: str = None,
|
|
6618
6625
|
end_time: ListJobRunsRequestEndTime = None,
|
|
6619
6626
|
is_workflow: str = None,
|
|
@@ -6625,10 +6632,12 @@ class ListJobRunsRequest(TeaModel):
|
|
|
6625
6632
|
next_token: str = None,
|
|
6626
6633
|
region_id: str = None,
|
|
6627
6634
|
resource_queue_id: str = None,
|
|
6635
|
+
runtime_configs: str = None,
|
|
6628
6636
|
start_time: ListJobRunsRequestStartTime = None,
|
|
6629
6637
|
states: List[str] = None,
|
|
6630
6638
|
tags: List[ListJobRunsRequestTags] = None,
|
|
6631
6639
|
):
|
|
6640
|
+
self.application_configs = application_configs
|
|
6632
6641
|
# The ID of the user who created the job.
|
|
6633
6642
|
self.creator = creator
|
|
6634
6643
|
# The range of end time.
|
|
@@ -6650,6 +6659,7 @@ class ListJobRunsRequest(TeaModel):
|
|
|
6650
6659
|
self.region_id = region_id
|
|
6651
6660
|
# The name of the resource queue on which the Spark jobs run.
|
|
6652
6661
|
self.resource_queue_id = resource_queue_id
|
|
6662
|
+
self.runtime_configs = runtime_configs
|
|
6653
6663
|
# The range of start time.
|
|
6654
6664
|
self.start_time = start_time
|
|
6655
6665
|
# The job states.
|
|
@@ -6673,6 +6683,8 @@ class ListJobRunsRequest(TeaModel):
|
|
|
6673
6683
|
return _map
|
|
6674
6684
|
|
|
6675
6685
|
result = dict()
|
|
6686
|
+
if self.application_configs is not None:
|
|
6687
|
+
result['applicationConfigs'] = self.application_configs
|
|
6676
6688
|
if self.creator is not None:
|
|
6677
6689
|
result['creator'] = self.creator
|
|
6678
6690
|
if self.end_time is not None:
|
|
@@ -6695,6 +6707,8 @@ class ListJobRunsRequest(TeaModel):
|
|
|
6695
6707
|
result['regionId'] = self.region_id
|
|
6696
6708
|
if self.resource_queue_id is not None:
|
|
6697
6709
|
result['resourceQueueId'] = self.resource_queue_id
|
|
6710
|
+
if self.runtime_configs is not None:
|
|
6711
|
+
result['runtimeConfigs'] = self.runtime_configs
|
|
6698
6712
|
if self.start_time is not None:
|
|
6699
6713
|
result['startTime'] = self.start_time.to_map()
|
|
6700
6714
|
if self.states is not None:
|
|
@@ -6707,6 +6721,8 @@ class ListJobRunsRequest(TeaModel):
|
|
|
6707
6721
|
|
|
6708
6722
|
def from_map(self, m: dict = None):
|
|
6709
6723
|
m = m or dict()
|
|
6724
|
+
if m.get('applicationConfigs') is not None:
|
|
6725
|
+
self.application_configs = m.get('applicationConfigs')
|
|
6710
6726
|
if m.get('creator') is not None:
|
|
6711
6727
|
self.creator = m.get('creator')
|
|
6712
6728
|
if m.get('endTime') is not None:
|
|
@@ -6730,6 +6746,8 @@ class ListJobRunsRequest(TeaModel):
|
|
|
6730
6746
|
self.region_id = m.get('regionId')
|
|
6731
6747
|
if m.get('resourceQueueId') is not None:
|
|
6732
6748
|
self.resource_queue_id = m.get('resourceQueueId')
|
|
6749
|
+
if m.get('runtimeConfigs') is not None:
|
|
6750
|
+
self.runtime_configs = m.get('runtimeConfigs')
|
|
6733
6751
|
if m.get('startTime') is not None:
|
|
6734
6752
|
temp_model = ListJobRunsRequestStartTime()
|
|
6735
6753
|
self.start_time = temp_model.from_map(m['startTime'])
|
|
@@ -6746,6 +6764,7 @@ class ListJobRunsRequest(TeaModel):
|
|
|
6746
6764
|
class ListJobRunsShrinkRequest(TeaModel):
|
|
6747
6765
|
def __init__(
|
|
6748
6766
|
self,
|
|
6767
|
+
application_configs: str = None,
|
|
6749
6768
|
creator: str = None,
|
|
6750
6769
|
end_time_shrink: str = None,
|
|
6751
6770
|
is_workflow: str = None,
|
|
@@ -6757,10 +6776,12 @@ class ListJobRunsShrinkRequest(TeaModel):
|
|
|
6757
6776
|
next_token: str = None,
|
|
6758
6777
|
region_id: str = None,
|
|
6759
6778
|
resource_queue_id: str = None,
|
|
6779
|
+
runtime_configs: str = None,
|
|
6760
6780
|
start_time_shrink: str = None,
|
|
6761
6781
|
states_shrink: str = None,
|
|
6762
6782
|
tags_shrink: str = None,
|
|
6763
6783
|
):
|
|
6784
|
+
self.application_configs = application_configs
|
|
6764
6785
|
# The ID of the user who created the job.
|
|
6765
6786
|
self.creator = creator
|
|
6766
6787
|
# The range of end time.
|
|
@@ -6782,6 +6803,7 @@ class ListJobRunsShrinkRequest(TeaModel):
|
|
|
6782
6803
|
self.region_id = region_id
|
|
6783
6804
|
# The name of the resource queue on which the Spark jobs run.
|
|
6784
6805
|
self.resource_queue_id = resource_queue_id
|
|
6806
|
+
self.runtime_configs = runtime_configs
|
|
6785
6807
|
# The range of start time.
|
|
6786
6808
|
self.start_time_shrink = start_time_shrink
|
|
6787
6809
|
# The job states.
|
|
@@ -6798,6 +6820,8 @@ class ListJobRunsShrinkRequest(TeaModel):
|
|
|
6798
6820
|
return _map
|
|
6799
6821
|
|
|
6800
6822
|
result = dict()
|
|
6823
|
+
if self.application_configs is not None:
|
|
6824
|
+
result['applicationConfigs'] = self.application_configs
|
|
6801
6825
|
if self.creator is not None:
|
|
6802
6826
|
result['creator'] = self.creator
|
|
6803
6827
|
if self.end_time_shrink is not None:
|
|
@@ -6820,6 +6844,8 @@ class ListJobRunsShrinkRequest(TeaModel):
|
|
|
6820
6844
|
result['regionId'] = self.region_id
|
|
6821
6845
|
if self.resource_queue_id is not None:
|
|
6822
6846
|
result['resourceQueueId'] = self.resource_queue_id
|
|
6847
|
+
if self.runtime_configs is not None:
|
|
6848
|
+
result['runtimeConfigs'] = self.runtime_configs
|
|
6823
6849
|
if self.start_time_shrink is not None:
|
|
6824
6850
|
result['startTime'] = self.start_time_shrink
|
|
6825
6851
|
if self.states_shrink is not None:
|
|
@@ -6830,6 +6856,8 @@ class ListJobRunsShrinkRequest(TeaModel):
|
|
|
6830
6856
|
|
|
6831
6857
|
def from_map(self, m: dict = None):
|
|
6832
6858
|
m = m or dict()
|
|
6859
|
+
if m.get('applicationConfigs') is not None:
|
|
6860
|
+
self.application_configs = m.get('applicationConfigs')
|
|
6833
6861
|
if m.get('creator') is not None:
|
|
6834
6862
|
self.creator = m.get('creator')
|
|
6835
6863
|
if m.get('endTime') is not None:
|
|
@@ -6852,6 +6880,8 @@ class ListJobRunsShrinkRequest(TeaModel):
|
|
|
6852
6880
|
self.region_id = m.get('regionId')
|
|
6853
6881
|
if m.get('resourceQueueId') is not None:
|
|
6854
6882
|
self.resource_queue_id = m.get('resourceQueueId')
|
|
6883
|
+
if m.get('runtimeConfigs') is not None:
|
|
6884
|
+
self.runtime_configs = m.get('runtimeConfigs')
|
|
6855
6885
|
if m.get('startTime') is not None:
|
|
6856
6886
|
self.start_time_shrink = m.get('startTime')
|
|
6857
6887
|
if m.get('states') is not None:
|
|
@@ -7239,6 +7269,7 @@ class ListKyuubiServicesResponseBodyDataKyuubiServices(TeaModel):
|
|
|
7239
7269
|
creator: str = None,
|
|
7240
7270
|
inner_endpoint: str = None,
|
|
7241
7271
|
kyuubi_configs: str = None,
|
|
7272
|
+
kyuubi_release_version: str = None,
|
|
7242
7273
|
kyuubi_service_id: str = None,
|
|
7243
7274
|
name: str = None,
|
|
7244
7275
|
public_endpoint: str = None,
|
|
@@ -7254,6 +7285,7 @@ class ListKyuubiServicesResponseBodyDataKyuubiServices(TeaModel):
|
|
|
7254
7285
|
self.creator = creator
|
|
7255
7286
|
self.inner_endpoint = inner_endpoint
|
|
7256
7287
|
self.kyuubi_configs = kyuubi_configs
|
|
7288
|
+
self.kyuubi_release_version = kyuubi_release_version
|
|
7257
7289
|
# KyuubiServer ID。
|
|
7258
7290
|
self.kyuubi_service_id = kyuubi_service_id
|
|
7259
7291
|
self.name = name
|
|
@@ -7284,6 +7316,8 @@ class ListKyuubiServicesResponseBodyDataKyuubiServices(TeaModel):
|
|
|
7284
7316
|
result['innerEndpoint'] = self.inner_endpoint
|
|
7285
7317
|
if self.kyuubi_configs is not None:
|
|
7286
7318
|
result['kyuubiConfigs'] = self.kyuubi_configs
|
|
7319
|
+
if self.kyuubi_release_version is not None:
|
|
7320
|
+
result['kyuubiReleaseVersion'] = self.kyuubi_release_version
|
|
7287
7321
|
if self.kyuubi_service_id is not None:
|
|
7288
7322
|
result['kyuubiServiceId'] = self.kyuubi_service_id
|
|
7289
7323
|
if self.name is not None:
|
|
@@ -7316,6 +7350,8 @@ class ListKyuubiServicesResponseBodyDataKyuubiServices(TeaModel):
|
|
|
7316
7350
|
self.inner_endpoint = m.get('innerEndpoint')
|
|
7317
7351
|
if m.get('kyuubiConfigs') is not None:
|
|
7318
7352
|
self.kyuubi_configs = m.get('kyuubiConfigs')
|
|
7353
|
+
if m.get('kyuubiReleaseVersion') is not None:
|
|
7354
|
+
self.kyuubi_release_version = m.get('kyuubiReleaseVersion')
|
|
7319
7355
|
if m.get('kyuubiServiceId') is not None:
|
|
7320
7356
|
self.kyuubi_service_id = m.get('kyuubiServiceId')
|
|
7321
7357
|
if m.get('name') is not None:
|
|
@@ -7652,6 +7688,7 @@ class ListKyuubiSparkApplicationsResponseBodyApplications(TeaModel):
|
|
|
7652
7688
|
application_name: str = None,
|
|
7653
7689
|
cu_hours: float = None,
|
|
7654
7690
|
end_time: str = None,
|
|
7691
|
+
exit_reason: str = None,
|
|
7655
7692
|
latest_sql_statement_status: str = None,
|
|
7656
7693
|
mb_seconds: int = None,
|
|
7657
7694
|
resource_queue_id: str = None,
|
|
@@ -7668,6 +7705,7 @@ class ListKyuubiSparkApplicationsResponseBodyApplications(TeaModel):
|
|
|
7668
7705
|
self.cu_hours = cu_hours
|
|
7669
7706
|
# The time when the task ended.
|
|
7670
7707
|
self.end_time = end_time
|
|
7708
|
+
self.exit_reason = exit_reason
|
|
7671
7709
|
self.latest_sql_statement_status = latest_sql_statement_status
|
|
7672
7710
|
# The total amount of memory allocated to the job multiplied by the running duration (seconds).
|
|
7673
7711
|
self.mb_seconds = mb_seconds
|
|
@@ -7703,6 +7741,8 @@ class ListKyuubiSparkApplicationsResponseBodyApplications(TeaModel):
|
|
|
7703
7741
|
result['cuHours'] = self.cu_hours
|
|
7704
7742
|
if self.end_time is not None:
|
|
7705
7743
|
result['endTime'] = self.end_time
|
|
7744
|
+
if self.exit_reason is not None:
|
|
7745
|
+
result['exitReason'] = self.exit_reason
|
|
7706
7746
|
if self.latest_sql_statement_status is not None:
|
|
7707
7747
|
result['latestSqlStatementStatus'] = self.latest_sql_statement_status
|
|
7708
7748
|
if self.mb_seconds is not None:
|
|
@@ -7729,6 +7769,8 @@ class ListKyuubiSparkApplicationsResponseBodyApplications(TeaModel):
|
|
|
7729
7769
|
self.cu_hours = m.get('cuHours')
|
|
7730
7770
|
if m.get('endTime') is not None:
|
|
7731
7771
|
self.end_time = m.get('endTime')
|
|
7772
|
+
if m.get('exitReason') is not None:
|
|
7773
|
+
self.exit_reason = m.get('exitReason')
|
|
7732
7774
|
if m.get('latestSqlStatementStatus') is not None:
|
|
7733
7775
|
self.latest_sql_statement_status = m.get('latestSqlStatementStatus')
|
|
7734
7776
|
if m.get('mbSeconds') is not None:
|
|
@@ -7881,18 +7923,22 @@ class ListKyuubiTokenRequest(TeaModel):
|
|
|
7881
7923
|
class ListKyuubiTokenResponseBodyDataTokens(TeaModel):
|
|
7882
7924
|
def __init__(
|
|
7883
7925
|
self,
|
|
7926
|
+
account_names: List[str] = None,
|
|
7884
7927
|
create_time: int = None,
|
|
7885
7928
|
created_by: str = None,
|
|
7886
7929
|
expire_time: int = None,
|
|
7887
7930
|
last_used_time: int = None,
|
|
7931
|
+
member_arns: List[str] = None,
|
|
7888
7932
|
name: str = None,
|
|
7889
7933
|
token: str = None,
|
|
7890
7934
|
token_id: str = None,
|
|
7891
7935
|
):
|
|
7936
|
+
self.account_names = account_names
|
|
7892
7937
|
self.create_time = create_time
|
|
7893
7938
|
self.created_by = created_by
|
|
7894
7939
|
self.expire_time = expire_time
|
|
7895
7940
|
self.last_used_time = last_used_time
|
|
7941
|
+
self.member_arns = member_arns
|
|
7896
7942
|
self.name = name
|
|
7897
7943
|
self.token = token
|
|
7898
7944
|
# Token ID。
|
|
@@ -7907,6 +7953,8 @@ class ListKyuubiTokenResponseBodyDataTokens(TeaModel):
|
|
|
7907
7953
|
return _map
|
|
7908
7954
|
|
|
7909
7955
|
result = dict()
|
|
7956
|
+
if self.account_names is not None:
|
|
7957
|
+
result['accountNames'] = self.account_names
|
|
7910
7958
|
if self.create_time is not None:
|
|
7911
7959
|
result['createTime'] = self.create_time
|
|
7912
7960
|
if self.created_by is not None:
|
|
@@ -7915,6 +7963,8 @@ class ListKyuubiTokenResponseBodyDataTokens(TeaModel):
|
|
|
7915
7963
|
result['expireTime'] = self.expire_time
|
|
7916
7964
|
if self.last_used_time is not None:
|
|
7917
7965
|
result['lastUsedTime'] = self.last_used_time
|
|
7966
|
+
if self.member_arns is not None:
|
|
7967
|
+
result['memberArns'] = self.member_arns
|
|
7918
7968
|
if self.name is not None:
|
|
7919
7969
|
result['name'] = self.name
|
|
7920
7970
|
if self.token is not None:
|
|
@@ -7925,6 +7975,8 @@ class ListKyuubiTokenResponseBodyDataTokens(TeaModel):
|
|
|
7925
7975
|
|
|
7926
7976
|
def from_map(self, m: dict = None):
|
|
7927
7977
|
m = m or dict()
|
|
7978
|
+
if m.get('accountNames') is not None:
|
|
7979
|
+
self.account_names = m.get('accountNames')
|
|
7928
7980
|
if m.get('createTime') is not None:
|
|
7929
7981
|
self.create_time = m.get('createTime')
|
|
7930
7982
|
if m.get('createdBy') is not None:
|
|
@@ -7933,6 +7985,8 @@ class ListKyuubiTokenResponseBodyDataTokens(TeaModel):
|
|
|
7933
7985
|
self.expire_time = m.get('expireTime')
|
|
7934
7986
|
if m.get('lastUsedTime') is not None:
|
|
7935
7987
|
self.last_used_time = m.get('lastUsedTime')
|
|
7988
|
+
if m.get('memberArns') is not None:
|
|
7989
|
+
self.member_arns = m.get('memberArns')
|
|
7936
7990
|
if m.get('name') is not None:
|
|
7937
7991
|
self.name = m.get('name')
|
|
7938
7992
|
if m.get('token') is not None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-emr-serverless-spark20230808
|
|
3
|
-
Version: 1.13.
|
|
3
|
+
Version: 1.13.1
|
|
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
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.13.0'
|
|
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
|