alibabacloud-ehpcinstant20230701 1.0.3__tar.gz → 1.0.4__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.

Files changed (17) hide show
  1. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/ChangeLog.md +13 -0
  2. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/PKG-INFO +1 -1
  3. alibabacloud_ehpcinstant20230701-1.0.4/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
  4. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/alibabacloud_ehpcinstant20230701/models.py +84 -0
  5. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +2 -2
  7. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/setup.py +3 -3
  8. alibabacloud_ehpcinstant20230701-1.0.3/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
  9. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/LICENSE +0 -0
  10. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/MANIFEST.in +0 -0
  11. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/README-CN.md +0 -0
  12. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/README.md +0 -0
  13. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/alibabacloud_ehpcinstant20230701/client.py +0 -0
  14. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
  15. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
  16. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
  17. {alibabacloud_ehpcinstant20230701-1.0.3 → alibabacloud_ehpcinstant20230701-1.0.4}/setup.cfg +0 -0
@@ -1,3 +1,16 @@
1
+ 2024-07-31 Version: 1.0.3
2
+ - Update API CreateJob: add param JobScheduler.
3
+ - Update API CreateJob: update param Tasks.
4
+ - Update API CreateJob: update response param.
5
+ - Update API GetImage: add param ImageCategory.
6
+ - Update API GetImage: add param ImageType.
7
+ - Update API GetImage: update response param.
8
+ - Update API GetJob: update response param.
9
+ - Update API ListImages: add param ImageCategory.
10
+ - Update API ListImages: add param ImageType.
11
+ - Update API ListImages: update response param.
12
+
13
+
1
14
  2024-05-15 Version: 1.0.2
2
15
  - Update API CreateJob: update param Tasks.
3
16
  - Update API CreateJob: update response param.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_ehpcinstant20230701
3
- Version: 1.0.3
3
+ Version: 1.0.4
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
@@ -2807,6 +2807,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
2807
2807
  end_time: str = None,
2808
2808
  executor_id: str = None,
2809
2809
  host_name: List[str] = None,
2810
+ image: str = None,
2810
2811
  ip_address: List[str] = None,
2811
2812
  job_id: str = None,
2812
2813
  job_name: str = None,
@@ -2819,6 +2820,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
2819
2820
  self.end_time = end_time
2820
2821
  self.executor_id = executor_id
2821
2822
  self.host_name = host_name
2823
+ self.image = image
2822
2824
  self.ip_address = ip_address
2823
2825
  self.job_id = job_id
2824
2826
  self.job_name = job_name
@@ -2845,6 +2847,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
2845
2847
  result['ExecutorId'] = self.executor_id
2846
2848
  if self.host_name is not None:
2847
2849
  result['HostName'] = self.host_name
2850
+ if self.image is not None:
2851
+ result['Image'] = self.image
2848
2852
  if self.ip_address is not None:
2849
2853
  result['IpAddress'] = self.ip_address
2850
2854
  if self.job_id is not None:
@@ -2871,6 +2875,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
2871
2875
  self.executor_id = m.get('ExecutorId')
2872
2876
  if m.get('HostName') is not None:
2873
2877
  self.host_name = m.get('HostName')
2878
+ if m.get('Image') is not None:
2879
+ self.image = m.get('Image')
2874
2880
  if m.get('IpAddress') is not None:
2875
2881
  self.ip_address = m.get('IpAddress')
2876
2882
  if m.get('JobId') is not None:
@@ -3317,12 +3323,76 @@ class ListJobExecutorsRequest(TeaModel):
3317
3323
  return self
3318
3324
 
3319
3325
 
3326
+ class ListJobExecutorsResponseBodyExecutorStatus(TeaModel):
3327
+ def __init__(
3328
+ self,
3329
+ deleted: int = None,
3330
+ exception: int = None,
3331
+ failed: int = None,
3332
+ initing: int = None,
3333
+ pending: int = None,
3334
+ running: int = None,
3335
+ succeeded: int = None,
3336
+ ):
3337
+ self.deleted = deleted
3338
+ self.exception = exception
3339
+ self.failed = failed
3340
+ self.initing = initing
3341
+ self.pending = pending
3342
+ self.running = running
3343
+ self.succeeded = succeeded
3344
+
3345
+ def validate(self):
3346
+ pass
3347
+
3348
+ def to_map(self):
3349
+ _map = super().to_map()
3350
+ if _map is not None:
3351
+ return _map
3352
+
3353
+ result = dict()
3354
+ if self.deleted is not None:
3355
+ result['Deleted'] = self.deleted
3356
+ if self.exception is not None:
3357
+ result['Exception'] = self.exception
3358
+ if self.failed is not None:
3359
+ result['Failed'] = self.failed
3360
+ if self.initing is not None:
3361
+ result['Initing'] = self.initing
3362
+ if self.pending is not None:
3363
+ result['Pending'] = self.pending
3364
+ if self.running is not None:
3365
+ result['Running'] = self.running
3366
+ if self.succeeded is not None:
3367
+ result['Succeeded'] = self.succeeded
3368
+ return result
3369
+
3370
+ def from_map(self, m: dict = None):
3371
+ m = m or dict()
3372
+ if m.get('Deleted') is not None:
3373
+ self.deleted = m.get('Deleted')
3374
+ if m.get('Exception') is not None:
3375
+ self.exception = m.get('Exception')
3376
+ if m.get('Failed') is not None:
3377
+ self.failed = m.get('Failed')
3378
+ if m.get('Initing') is not None:
3379
+ self.initing = m.get('Initing')
3380
+ if m.get('Pending') is not None:
3381
+ self.pending = m.get('Pending')
3382
+ if m.get('Running') is not None:
3383
+ self.running = m.get('Running')
3384
+ if m.get('Succeeded') is not None:
3385
+ self.succeeded = m.get('Succeeded')
3386
+ return self
3387
+
3388
+
3320
3389
  class ListJobExecutorsResponseBodyExecutors(TeaModel):
3321
3390
  def __init__(
3322
3391
  self,
3323
3392
  array_index: int = None,
3324
3393
  create_time: str = None,
3325
3394
  end_time: str = None,
3395
+ executor_id: str = None,
3326
3396
  host_name: List[str] = None,
3327
3397
  ip_address: List[str] = None,
3328
3398
  status: str = None,
@@ -3331,6 +3401,7 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
3331
3401
  self.array_index = array_index
3332
3402
  self.create_time = create_time
3333
3403
  self.end_time = end_time
3404
+ self.executor_id = executor_id
3334
3405
  self.host_name = host_name
3335
3406
  self.ip_address = ip_address
3336
3407
  self.status = status
@@ -3351,6 +3422,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
3351
3422
  result['CreateTime'] = self.create_time
3352
3423
  if self.end_time is not None:
3353
3424
  result['EndTime'] = self.end_time
3425
+ if self.executor_id is not None:
3426
+ result['ExecutorId'] = self.executor_id
3354
3427
  if self.host_name is not None:
3355
3428
  result['HostName'] = self.host_name
3356
3429
  if self.ip_address is not None:
@@ -3369,6 +3442,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
3369
3442
  self.create_time = m.get('CreateTime')
3370
3443
  if m.get('EndTime') is not None:
3371
3444
  self.end_time = m.get('EndTime')
3445
+ if m.get('ExecutorId') is not None:
3446
+ self.executor_id = m.get('ExecutorId')
3372
3447
  if m.get('HostName') is not None:
3373
3448
  self.host_name = m.get('HostName')
3374
3449
  if m.get('IpAddress') is not None:
@@ -3383,6 +3458,7 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
3383
3458
  class ListJobExecutorsResponseBody(TeaModel):
3384
3459
  def __init__(
3385
3460
  self,
3461
+ executor_status: ListJobExecutorsResponseBodyExecutorStatus = None,
3386
3462
  executors: List[ListJobExecutorsResponseBodyExecutors] = None,
3387
3463
  job_id: str = None,
3388
3464
  page_number: str = None,
@@ -3391,6 +3467,7 @@ class ListJobExecutorsResponseBody(TeaModel):
3391
3467
  task_name: str = None,
3392
3468
  total_count: str = None,
3393
3469
  ):
3470
+ self.executor_status = executor_status
3394
3471
  self.executors = executors
3395
3472
  self.job_id = job_id
3396
3473
  self.page_number = page_number
@@ -3400,6 +3477,8 @@ class ListJobExecutorsResponseBody(TeaModel):
3400
3477
  self.total_count = total_count
3401
3478
 
3402
3479
  def validate(self):
3480
+ if self.executor_status:
3481
+ self.executor_status.validate()
3403
3482
  if self.executors:
3404
3483
  for k in self.executors:
3405
3484
  if k:
@@ -3411,6 +3490,8 @@ class ListJobExecutorsResponseBody(TeaModel):
3411
3490
  return _map
3412
3491
 
3413
3492
  result = dict()
3493
+ if self.executor_status is not None:
3494
+ result['ExecutorStatus'] = self.executor_status.to_map()
3414
3495
  result['Executors'] = []
3415
3496
  if self.executors is not None:
3416
3497
  for k in self.executors:
@@ -3431,6 +3512,9 @@ class ListJobExecutorsResponseBody(TeaModel):
3431
3512
 
3432
3513
  def from_map(self, m: dict = None):
3433
3514
  m = m or dict()
3515
+ if m.get('ExecutorStatus') is not None:
3516
+ temp_model = ListJobExecutorsResponseBodyExecutorStatus()
3517
+ self.executor_status = temp_model.from_map(m['ExecutorStatus'])
3434
3518
  self.executors = []
3435
3519
  if m.get('Executors') is not None:
3436
3520
  for k in m.get('Executors'):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ehpcinstant20230701
3
- Version: 1.0.3
3
+ Version: 1.0.4
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
@@ -1,4 +1,4 @@
1
1
  alibabacloud_endpoint_util<1.0.0,>=0.0.3
2
2
  alibabacloud_openapi_util<1.0.0,>=0.2.1
3
- alibabacloud_tea_openapi<1.0.0,>=0.3.10
4
- alibabacloud_tea_util<1.0.0,>=0.3.12
3
+ alibabacloud_tea_openapi<1.0.0,>=0.3.11
4
+ alibabacloud_tea_util<1.0.0,>=0.3.13
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_ehpcinstant20230701.
26
26
 
27
- Created on 31/07/2024
27
+ Created on 14/08/2024
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -37,8 +37,8 @@ AUTHOR_EMAIL = "sdk-team@alibabacloud.com"
37
37
  URL = "https://github.com/aliyun/alibabacloud-python-sdk"
38
38
  VERSION = __import__(PACKAGE).__version__
39
39
  REQUIRES = [
40
- "alibabacloud_tea_util>=0.3.12, <1.0.0",
41
- "alibabacloud_tea_openapi>=0.3.10, <1.0.0",
40
+ "alibabacloud_tea_util>=0.3.13, <1.0.0",
41
+ "alibabacloud_tea_openapi>=0.3.11, <1.0.0",
42
42
  "alibabacloud_openapi_util>=0.2.1, <1.0.0",
43
43
  "alibabacloud_endpoint_util>=0.0.3, <1.0.0"
44
44
  ]