alibabacloud-ehpcinstant20230701 1.0.2__py3-none-any.whl → 1.0.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-ehpcinstant20230701 might be problematic. Click here for more details.
- alibabacloud_ehpcinstant20230701/__init__.py +1 -1
- alibabacloud_ehpcinstant20230701/client.py +4 -0
- alibabacloud_ehpcinstant20230701/models.py +18 -0
- {alibabacloud_ehpcinstant20230701-1.0.2.dist-info → alibabacloud_ehpcinstant20230701-1.0.3.dist-info}/METADATA +6 -7
- alibabacloud_ehpcinstant20230701-1.0.3.dist-info/RECORD +8 -0
- {alibabacloud_ehpcinstant20230701-1.0.2.dist-info → alibabacloud_ehpcinstant20230701-1.0.3.dist-info}/WHEEL +1 -1
- alibabacloud_ehpcinstant20230701-1.0.2.dist-info/RECORD +0 -8
- {alibabacloud_ehpcinstant20230701-1.0.2.dist-info → alibabacloud_ehpcinstant20230701-1.0.3.dist-info}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.2.dist-info → alibabacloud_ehpcinstant20230701-1.0.3.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.0.
|
|
1
|
+
__version__ = '1.0.3'
|
|
@@ -191,6 +191,8 @@ class Client(OpenApiClient):
|
|
|
191
191
|
query['JobDescription'] = request.job_description
|
|
192
192
|
if not UtilClient.is_unset(request.job_name):
|
|
193
193
|
query['JobName'] = request.job_name
|
|
194
|
+
if not UtilClient.is_unset(request.job_scheduler):
|
|
195
|
+
query['JobScheduler'] = request.job_scheduler
|
|
194
196
|
if not UtilClient.is_unset(request.tasks_shrink):
|
|
195
197
|
query['Tasks'] = request.tasks_shrink
|
|
196
198
|
req = open_api_models.OpenApiRequest(
|
|
@@ -238,6 +240,8 @@ class Client(OpenApiClient):
|
|
|
238
240
|
query['JobDescription'] = request.job_description
|
|
239
241
|
if not UtilClient.is_unset(request.job_name):
|
|
240
242
|
query['JobName'] = request.job_name
|
|
243
|
+
if not UtilClient.is_unset(request.job_scheduler):
|
|
244
|
+
query['JobScheduler'] = request.job_scheduler
|
|
241
245
|
if not UtilClient.is_unset(request.tasks_shrink):
|
|
242
246
|
query['Tasks'] = request.tasks_shrink
|
|
243
247
|
req = open_api_models.OpenApiRequest(
|
|
@@ -860,12 +860,14 @@ class CreateJobRequest(TeaModel):
|
|
|
860
860
|
deployment_policy: CreateJobRequestDeploymentPolicy = None,
|
|
861
861
|
job_description: str = None,
|
|
862
862
|
job_name: str = None,
|
|
863
|
+
job_scheduler: str = None,
|
|
863
864
|
tasks: List[CreateJobRequestTasks] = None,
|
|
864
865
|
):
|
|
865
866
|
self.deployment_policy = deployment_policy
|
|
866
867
|
self.job_description = job_description
|
|
867
868
|
# This parameter is required.
|
|
868
869
|
self.job_name = job_name
|
|
870
|
+
self.job_scheduler = job_scheduler
|
|
869
871
|
# This parameter is required.
|
|
870
872
|
self.tasks = tasks
|
|
871
873
|
|
|
@@ -889,6 +891,8 @@ class CreateJobRequest(TeaModel):
|
|
|
889
891
|
result['JobDescription'] = self.job_description
|
|
890
892
|
if self.job_name is not None:
|
|
891
893
|
result['JobName'] = self.job_name
|
|
894
|
+
if self.job_scheduler is not None:
|
|
895
|
+
result['JobScheduler'] = self.job_scheduler
|
|
892
896
|
result['Tasks'] = []
|
|
893
897
|
if self.tasks is not None:
|
|
894
898
|
for k in self.tasks:
|
|
@@ -904,6 +908,8 @@ class CreateJobRequest(TeaModel):
|
|
|
904
908
|
self.job_description = m.get('JobDescription')
|
|
905
909
|
if m.get('JobName') is not None:
|
|
906
910
|
self.job_name = m.get('JobName')
|
|
911
|
+
if m.get('JobScheduler') is not None:
|
|
912
|
+
self.job_scheduler = m.get('JobScheduler')
|
|
907
913
|
self.tasks = []
|
|
908
914
|
if m.get('Tasks') is not None:
|
|
909
915
|
for k in m.get('Tasks'):
|
|
@@ -918,12 +924,14 @@ class CreateJobShrinkRequest(TeaModel):
|
|
|
918
924
|
deployment_policy_shrink: str = None,
|
|
919
925
|
job_description: str = None,
|
|
920
926
|
job_name: str = None,
|
|
927
|
+
job_scheduler: str = None,
|
|
921
928
|
tasks_shrink: str = None,
|
|
922
929
|
):
|
|
923
930
|
self.deployment_policy_shrink = deployment_policy_shrink
|
|
924
931
|
self.job_description = job_description
|
|
925
932
|
# This parameter is required.
|
|
926
933
|
self.job_name = job_name
|
|
934
|
+
self.job_scheduler = job_scheduler
|
|
927
935
|
# This parameter is required.
|
|
928
936
|
self.tasks_shrink = tasks_shrink
|
|
929
937
|
|
|
@@ -942,6 +950,8 @@ class CreateJobShrinkRequest(TeaModel):
|
|
|
942
950
|
result['JobDescription'] = self.job_description
|
|
943
951
|
if self.job_name is not None:
|
|
944
952
|
result['JobName'] = self.job_name
|
|
953
|
+
if self.job_scheduler is not None:
|
|
954
|
+
result['JobScheduler'] = self.job_scheduler
|
|
945
955
|
if self.tasks_shrink is not None:
|
|
946
956
|
result['Tasks'] = self.tasks_shrink
|
|
947
957
|
return result
|
|
@@ -954,6 +964,8 @@ class CreateJobShrinkRequest(TeaModel):
|
|
|
954
964
|
self.job_description = m.get('JobDescription')
|
|
955
965
|
if m.get('JobName') is not None:
|
|
956
966
|
self.job_name = m.get('JobName')
|
|
967
|
+
if m.get('JobScheduler') is not None:
|
|
968
|
+
self.job_scheduler = m.get('JobScheduler')
|
|
957
969
|
if m.get('Tasks') is not None:
|
|
958
970
|
self.tasks_shrink = m.get('Tasks')
|
|
959
971
|
return self
|
|
@@ -2497,6 +2509,7 @@ class GetJobResponseBodyJobInfo(TeaModel):
|
|
|
2497
2509
|
job_description: str = None,
|
|
2498
2510
|
job_id: str = None,
|
|
2499
2511
|
job_name: str = None,
|
|
2512
|
+
job_scheduler: str = None,
|
|
2500
2513
|
start_time: str = None,
|
|
2501
2514
|
status: str = None,
|
|
2502
2515
|
tasks: List[GetJobResponseBodyJobInfoTasks] = None,
|
|
@@ -2507,6 +2520,7 @@ class GetJobResponseBodyJobInfo(TeaModel):
|
|
|
2507
2520
|
self.job_description = job_description
|
|
2508
2521
|
self.job_id = job_id
|
|
2509
2522
|
self.job_name = job_name
|
|
2523
|
+
self.job_scheduler = job_scheduler
|
|
2510
2524
|
self.start_time = start_time
|
|
2511
2525
|
self.status = status
|
|
2512
2526
|
self.tasks = tasks
|
|
@@ -2537,6 +2551,8 @@ class GetJobResponseBodyJobInfo(TeaModel):
|
|
|
2537
2551
|
result['JobId'] = self.job_id
|
|
2538
2552
|
if self.job_name is not None:
|
|
2539
2553
|
result['JobName'] = self.job_name
|
|
2554
|
+
if self.job_scheduler is not None:
|
|
2555
|
+
result['JobScheduler'] = self.job_scheduler
|
|
2540
2556
|
if self.start_time is not None:
|
|
2541
2557
|
result['StartTime'] = self.start_time
|
|
2542
2558
|
if self.status is not None:
|
|
@@ -2562,6 +2578,8 @@ class GetJobResponseBodyJobInfo(TeaModel):
|
|
|
2562
2578
|
self.job_id = m.get('JobId')
|
|
2563
2579
|
if m.get('JobName') is not None:
|
|
2564
2580
|
self.job_name = m.get('JobName')
|
|
2581
|
+
if m.get('JobScheduler') is not None:
|
|
2582
|
+
self.job_scheduler = m.get('JobScheduler')
|
|
2565
2583
|
if m.get('StartTime') is not None:
|
|
2566
2584
|
self.start_time = m.get('StartTime')
|
|
2567
2585
|
if m.get('Status') is not None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-ehpcinstant20230701
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Alibaba Cloud EhpcInstant (20230701) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -20,10 +20,11 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
20
20
|
Classifier: Topic :: Software Development
|
|
21
21
|
Requires-Python: >=3.6
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
-
|
|
24
|
-
Requires-Dist: alibabacloud-
|
|
25
|
-
Requires-Dist: alibabacloud-openapi-util <1.0.0,>=0.2.1
|
|
26
|
-
Requires-Dist: alibabacloud-
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: alibabacloud-endpoint-util (<1.0.0,>=0.0.3)
|
|
25
|
+
Requires-Dist: alibabacloud-openapi-util (<1.0.0,>=0.2.1)
|
|
26
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.3.10)
|
|
27
|
+
Requires-Dist: alibabacloud-tea-util (<1.0.0,>=0.3.12)
|
|
27
28
|
|
|
28
29
|
English | [简体中文](README-CN.md)
|
|
29
30
|

|
|
@@ -66,5 +67,3 @@ Detailed changes for each release are documented in the [release notes](https://
|
|
|
66
67
|
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
|
67
68
|
|
|
68
69
|
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
|
69
|
-
|
|
70
|
-
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_ehpcinstant20230701/__init__.py,sha256=MpVHFFoITiYyPltTb_qFrdeX2entdTm4x0PczXi3txY,21
|
|
2
|
+
alibabacloud_ehpcinstant20230701/client.py,sha256=OMNZ9upvMvtatGN3nctU5E6xm2oBXzBCKu5ejBhFyUI,55132
|
|
3
|
+
alibabacloud_ehpcinstant20230701/models.py,sha256=J0ZoMziQnPozFbmDfPCPQ48XHVmL-Qn-CMrD9bNWh4A,124064
|
|
4
|
+
alibabacloud_ehpcinstant20230701-1.0.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_ehpcinstant20230701-1.0.3.dist-info/METADATA,sha256=ChSmKIzX_zAMLtDeaG-q1o7USwIrRw7ctqeHa3oJlv0,2368
|
|
6
|
+
alibabacloud_ehpcinstant20230701-1.0.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_ehpcinstant20230701-1.0.3.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
|
|
8
|
+
alibabacloud_ehpcinstant20230701-1.0.3.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_ehpcinstant20230701/__init__.py,sha256=C8nyPP5-54GgYCcP38Lbel_pRimOW-Ra4bw6Vzp2lmE,21
|
|
2
|
-
alibabacloud_ehpcinstant20230701/client.py,sha256=3C0hUZ7KlmgHGlc38ovEbGUesky6rejXvt14eIXatvE,54898
|
|
3
|
-
alibabacloud_ehpcinstant20230701/models.py,sha256=qcenVZBUtoLNF_rGZ5s38sgA2Kit5Kg7hmoi7M7NEbQ,123230
|
|
4
|
-
alibabacloud_ehpcinstant20230701-1.0.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_ehpcinstant20230701-1.0.2.dist-info/METADATA,sha256=miC_8owG7pyoc7Rni7iuHCjt0Efva1N1fZtXU8yekhM,2339
|
|
6
|
-
alibabacloud_ehpcinstant20230701-1.0.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
7
|
-
alibabacloud_ehpcinstant20230701-1.0.2.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
|
|
8
|
-
alibabacloud_ehpcinstant20230701-1.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|