alibabacloud-ehpcinstant20230701 2.0.8__tar.gz → 3.0.0__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-ehpcinstant20230701 might be problematic. Click here for more details.
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/ChangeLog.md +7 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/PKG-INFO +1 -1
- alibabacloud_ehpcinstant20230701-3.0.0/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/alibabacloud_ehpcinstant20230701/models.py +18 -6
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +1 -1
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/setup.py +2 -2
- alibabacloud_ehpcinstant20230701-2.0.8/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/MANIFEST.in +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/README-CN.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/README.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/alibabacloud_ehpcinstant20230701/client.py +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/setup.cfg +0 -0
{alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/ChangeLog.md
RENAMED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
2025-07-29 Version: 2.0.8
|
|
2
|
+
- Update API CreateJob: add request parameters DependencyPolicy.
|
|
3
|
+
- Update API CreateJob: add request parameters Tasks.$.TaskSpec.RetryPolicy.
|
|
4
|
+
- Update API GetJob: add response parameters Body.JobInfo.DependencyPolicy.
|
|
5
|
+
- Update API GetJob: add response parameters Body.JobInfo.Tasks.$.TaskSpec.RetryPolicy.
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
2025-07-15 Version: 2.0.7
|
|
2
9
|
- Update API ListExecutors: add response parameters Body.Executors.$.BlockDuration.
|
|
3
10
|
- Update API ListExecutors: add response parameters Body.Executors.$.Preemptible.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '3.0.0'
|
|
@@ -3547,12 +3547,10 @@ class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
3547
3547
|
image: str = None,
|
|
3548
3548
|
prolog_script: str = None,
|
|
3549
3549
|
script: str = None,
|
|
3550
|
-
user_name: str = None,
|
|
3551
3550
|
):
|
|
3552
3551
|
self.image = image
|
|
3553
3552
|
self.prolog_script = prolog_script
|
|
3554
3553
|
self.script = script
|
|
3555
|
-
self.user_name = user_name
|
|
3556
3554
|
|
|
3557
3555
|
def validate(self):
|
|
3558
3556
|
pass
|
|
@@ -3569,8 +3567,6 @@ class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
3569
3567
|
result['PrologScript'] = self.prolog_script
|
|
3570
3568
|
if self.script is not None:
|
|
3571
3569
|
result['Script'] = self.script
|
|
3572
|
-
if self.user_name is not None:
|
|
3573
|
-
result['UserName'] = self.user_name
|
|
3574
3570
|
return result
|
|
3575
3571
|
|
|
3576
3572
|
def from_map(self, m: dict = None):
|
|
@@ -3581,8 +3577,6 @@ class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
3581
3577
|
self.prolog_script = m.get('PrologScript')
|
|
3582
3578
|
if m.get('Script') is not None:
|
|
3583
3579
|
self.script = m.get('Script')
|
|
3584
|
-
if m.get('UserName') is not None:
|
|
3585
|
-
self.user_name = m.get('UserName')
|
|
3586
3580
|
return self
|
|
3587
3581
|
|
|
3588
3582
|
|
|
@@ -4283,10 +4277,12 @@ class ListExecutorsResponseBodyExecutorsResource(TeaModel):
|
|
|
4283
4277
|
self,
|
|
4284
4278
|
cores: float = None,
|
|
4285
4279
|
disks: List[ListExecutorsResponseBodyExecutorsResourceDisks] = None,
|
|
4280
|
+
instance_type: str = None,
|
|
4286
4281
|
memory: float = None,
|
|
4287
4282
|
):
|
|
4288
4283
|
self.cores = cores
|
|
4289
4284
|
self.disks = disks
|
|
4285
|
+
self.instance_type = instance_type
|
|
4290
4286
|
self.memory = memory
|
|
4291
4287
|
|
|
4292
4288
|
def validate(self):
|
|
@@ -4307,6 +4303,8 @@ class ListExecutorsResponseBodyExecutorsResource(TeaModel):
|
|
|
4307
4303
|
if self.disks is not None:
|
|
4308
4304
|
for k in self.disks:
|
|
4309
4305
|
result['Disks'].append(k.to_map() if k else None)
|
|
4306
|
+
if self.instance_type is not None:
|
|
4307
|
+
result['InstanceType'] = self.instance_type
|
|
4310
4308
|
if self.memory is not None:
|
|
4311
4309
|
result['Memory'] = self.memory
|
|
4312
4310
|
return result
|
|
@@ -4320,6 +4318,8 @@ class ListExecutorsResponseBodyExecutorsResource(TeaModel):
|
|
|
4320
4318
|
for k in m.get('Disks'):
|
|
4321
4319
|
temp_model = ListExecutorsResponseBodyExecutorsResourceDisks()
|
|
4322
4320
|
self.disks.append(temp_model.from_map(k))
|
|
4321
|
+
if m.get('InstanceType') is not None:
|
|
4322
|
+
self.instance_type = m.get('InstanceType')
|
|
4323
4323
|
if m.get('Memory') is not None:
|
|
4324
4324
|
self.memory = m.get('Memory')
|
|
4325
4325
|
return self
|
|
@@ -5003,16 +5003,20 @@ class ListJobExecutorsResponseBodyExecutorStatus(TeaModel):
|
|
|
5003
5003
|
failed: int = None,
|
|
5004
5004
|
initing: int = None,
|
|
5005
5005
|
pending: int = None,
|
|
5006
|
+
restarting: int = None,
|
|
5006
5007
|
running: int = None,
|
|
5007
5008
|
succeeded: int = None,
|
|
5009
|
+
suspended: int = None,
|
|
5008
5010
|
):
|
|
5009
5011
|
self.deleted = deleted
|
|
5010
5012
|
self.exception = exception
|
|
5011
5013
|
self.failed = failed
|
|
5012
5014
|
self.initing = initing
|
|
5013
5015
|
self.pending = pending
|
|
5016
|
+
self.restarting = restarting
|
|
5014
5017
|
self.running = running
|
|
5015
5018
|
self.succeeded = succeeded
|
|
5019
|
+
self.suspended = suspended
|
|
5016
5020
|
|
|
5017
5021
|
def validate(self):
|
|
5018
5022
|
pass
|
|
@@ -5033,10 +5037,14 @@ class ListJobExecutorsResponseBodyExecutorStatus(TeaModel):
|
|
|
5033
5037
|
result['Initing'] = self.initing
|
|
5034
5038
|
if self.pending is not None:
|
|
5035
5039
|
result['Pending'] = self.pending
|
|
5040
|
+
if self.restarting is not None:
|
|
5041
|
+
result['Restarting'] = self.restarting
|
|
5036
5042
|
if self.running is not None:
|
|
5037
5043
|
result['Running'] = self.running
|
|
5038
5044
|
if self.succeeded is not None:
|
|
5039
5045
|
result['Succeeded'] = self.succeeded
|
|
5046
|
+
if self.suspended is not None:
|
|
5047
|
+
result['Suspended'] = self.suspended
|
|
5040
5048
|
return result
|
|
5041
5049
|
|
|
5042
5050
|
def from_map(self, m: dict = None):
|
|
@@ -5051,10 +5059,14 @@ class ListJobExecutorsResponseBodyExecutorStatus(TeaModel):
|
|
|
5051
5059
|
self.initing = m.get('Initing')
|
|
5052
5060
|
if m.get('Pending') is not None:
|
|
5053
5061
|
self.pending = m.get('Pending')
|
|
5062
|
+
if m.get('Restarting') is not None:
|
|
5063
|
+
self.restarting = m.get('Restarting')
|
|
5054
5064
|
if m.get('Running') is not None:
|
|
5055
5065
|
self.running = m.get('Running')
|
|
5056
5066
|
if m.get('Succeeded') is not None:
|
|
5057
5067
|
self.succeeded = m.get('Succeeded')
|
|
5068
|
+
if m.get('Suspended') is not None:
|
|
5069
|
+
self.suspended = m.get('Suspended')
|
|
5058
5070
|
return self
|
|
5059
5071
|
|
|
5060
5072
|
|
|
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
|
|
|
24
24
|
"""
|
|
25
25
|
setup module for alibabacloud_ehpcinstant20230701.
|
|
26
26
|
|
|
27
|
-
Created on
|
|
27
|
+
Created on 07/08/2025
|
|
28
28
|
|
|
29
29
|
@author: Alibaba Cloud SDK
|
|
30
30
|
"""
|
|
@@ -38,7 +38,7 @@ URL = "https://github.com/aliyun/alibabacloud-python-sdk"
|
|
|
38
38
|
VERSION = __import__(PACKAGE).__version__
|
|
39
39
|
REQUIRES = [
|
|
40
40
|
"alibabacloud_tea_util>=0.3.13, <1.0.0",
|
|
41
|
-
"alibabacloud_tea_openapi>=0.3.
|
|
41
|
+
"alibabacloud_tea_openapi>=0.3.16, <1.0.0",
|
|
42
42
|
"alibabacloud_openapi_util>=0.2.2, <1.0.0",
|
|
43
43
|
"alibabacloud_endpoint_util>=0.0.4, <1.0.0"
|
|
44
44
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.0.8'
|
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/MANIFEST.in
RENAMED
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.0.0}/README-CN.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|