alibabacloud-ehpcinstant20230701 3.2.0__tar.gz → 3.2.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-ehpcinstant20230701 might be problematic. Click here for more details.

Files changed (17) hide show
  1. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/ChangeLog.md +9 -0
  2. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/PKG-INFO +1 -1
  3. alibabacloud_ehpcinstant20230701-3.2.1/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
  4. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/alibabacloud_ehpcinstant20230701/models.py +36 -0
  5. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/setup.py +1 -1
  7. alibabacloud_ehpcinstant20230701-3.2.0/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
  8. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/LICENSE +0 -0
  9. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/MANIFEST.in +0 -0
  10. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/README-CN.md +0 -0
  11. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/README.md +0 -0
  12. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/alibabacloud_ehpcinstant20230701/client.py +0 -0
  13. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +0 -0
  16. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
  17. {alibabacloud_ehpcinstant20230701-3.2.0 → alibabacloud_ehpcinstant20230701-3.2.1}/setup.cfg +0 -0
@@ -1,3 +1,12 @@
1
+ 2025-08-21 Version: 3.2.0
2
+ - Support API CreateActionPlan.
3
+ - Support API DeleteActionPlan.
4
+ - Support API GetActionPlan.
5
+ - Support API ListActionPlanActivities.
6
+ - Support API ListActionPlans.
7
+ - Support API UpdateActionPlan.
8
+
9
+
1
10
  2025-08-11 Version: 3.1.0
2
11
  - Support API SynchronizeApp.
3
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_ehpcinstant20230701
3
- Version: 3.2.0
3
+ Version: 3.2.1
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
@@ -1027,11 +1027,15 @@ class CreateJobRequestTasksTaskSpecResource(TeaModel):
1027
1027
  self,
1028
1028
  cores: float = None,
1029
1029
  disks: List[CreateJobRequestTasksTaskSpecResourceDisks] = None,
1030
+ enable_ht: bool = None,
1031
+ host_name_prefix: str = None,
1030
1032
  instance_types: List[str] = None,
1031
1033
  memory: float = None,
1032
1034
  ):
1033
1035
  self.cores = cores
1034
1036
  self.disks = disks
1037
+ self.enable_ht = enable_ht
1038
+ self.host_name_prefix = host_name_prefix
1035
1039
  self.instance_types = instance_types
1036
1040
  self.memory = memory
1037
1041
 
@@ -1053,6 +1057,10 @@ class CreateJobRequestTasksTaskSpecResource(TeaModel):
1053
1057
  if self.disks is not None:
1054
1058
  for k in self.disks:
1055
1059
  result['Disks'].append(k.to_map() if k else None)
1060
+ if self.enable_ht is not None:
1061
+ result['EnableHT'] = self.enable_ht
1062
+ if self.host_name_prefix is not None:
1063
+ result['HostNamePrefix'] = self.host_name_prefix
1056
1064
  if self.instance_types is not None:
1057
1065
  result['InstanceTypes'] = self.instance_types
1058
1066
  if self.memory is not None:
@@ -1068,6 +1076,10 @@ class CreateJobRequestTasksTaskSpecResource(TeaModel):
1068
1076
  for k in m.get('Disks'):
1069
1077
  temp_model = CreateJobRequestTasksTaskSpecResourceDisks()
1070
1078
  self.disks.append(temp_model.from_map(k))
1079
+ if m.get('EnableHT') is not None:
1080
+ self.enable_ht = m.get('EnableHT')
1081
+ if m.get('HostNamePrefix') is not None:
1082
+ self.host_name_prefix = m.get('HostNamePrefix')
1071
1083
  if m.get('InstanceTypes') is not None:
1072
1084
  self.instance_types = m.get('InstanceTypes')
1073
1085
  if m.get('Memory') is not None:
@@ -4113,11 +4125,15 @@ class GetJobResponseBodyJobInfoTasksTaskSpecResource(TeaModel):
4113
4125
  self,
4114
4126
  cores: float = None,
4115
4127
  disks: List[GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks] = None,
4128
+ enable_ht: bool = None,
4129
+ host_name_prefix: str = None,
4116
4130
  instance_types: List[str] = None,
4117
4131
  memory: int = None,
4118
4132
  ):
4119
4133
  self.cores = cores
4120
4134
  self.disks = disks
4135
+ self.enable_ht = enable_ht
4136
+ self.host_name_prefix = host_name_prefix
4121
4137
  self.instance_types = instance_types
4122
4138
  self.memory = memory
4123
4139
 
@@ -4139,6 +4155,10 @@ class GetJobResponseBodyJobInfoTasksTaskSpecResource(TeaModel):
4139
4155
  if self.disks is not None:
4140
4156
  for k in self.disks:
4141
4157
  result['Disks'].append(k.to_map() if k else None)
4158
+ if self.enable_ht is not None:
4159
+ result['EnableHT'] = self.enable_ht
4160
+ if self.host_name_prefix is not None:
4161
+ result['HostNamePrefix'] = self.host_name_prefix
4142
4162
  if self.instance_types is not None:
4143
4163
  result['InstanceTypes'] = self.instance_types
4144
4164
  if self.memory is not None:
@@ -4154,6 +4174,10 @@ class GetJobResponseBodyJobInfoTasksTaskSpecResource(TeaModel):
4154
4174
  for k in m.get('Disks'):
4155
4175
  temp_model = GetJobResponseBodyJobInfoTasksTaskSpecResourceDisks()
4156
4176
  self.disks.append(temp_model.from_map(k))
4177
+ if m.get('EnableHT') is not None:
4178
+ self.enable_ht = m.get('EnableHT')
4179
+ if m.get('HostNamePrefix') is not None:
4180
+ self.host_name_prefix = m.get('HostNamePrefix')
4157
4181
  if m.get('InstanceTypes') is not None:
4158
4182
  self.instance_types = m.get('InstanceTypes')
4159
4183
  if m.get('Memory') is not None:
@@ -5535,6 +5559,7 @@ class ListExecutorsResponseBodyExecutorsTags(TeaModel):
5535
5559
  class ListExecutorsResponseBodyExecutors(TeaModel):
5536
5560
  def __init__(
5537
5561
  self,
5562
+ allocation_spec: str = None,
5538
5563
  app_name: str = None,
5539
5564
  array_index: int = None,
5540
5565
  block_duration: int = None,
@@ -5559,6 +5584,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
5559
5584
  task_sustainable: bool = None,
5560
5585
  vswitch_id: str = None,
5561
5586
  ):
5587
+ self.allocation_spec = allocation_spec
5562
5588
  self.app_name = app_name
5563
5589
  self.array_index = array_index
5564
5590
  self.block_duration = block_duration
@@ -5597,6 +5623,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
5597
5623
  return _map
5598
5624
 
5599
5625
  result = dict()
5626
+ if self.allocation_spec is not None:
5627
+ result['AllocationSpec'] = self.allocation_spec
5600
5628
  if self.app_name is not None:
5601
5629
  result['AppName'] = self.app_name
5602
5630
  if self.array_index is not None:
@@ -5649,6 +5677,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
5649
5677
 
5650
5678
  def from_map(self, m: dict = None):
5651
5679
  m = m or dict()
5680
+ if m.get('AllocationSpec') is not None:
5681
+ self.allocation_spec = m.get('AllocationSpec')
5652
5682
  if m.get('AppName') is not None:
5653
5683
  self.app_name = m.get('AppName')
5654
5684
  if m.get('ArrayIndex') is not None:
@@ -6280,6 +6310,7 @@ class ListJobExecutorsResponseBodyExecutorsTags(TeaModel):
6280
6310
  class ListJobExecutorsResponseBodyExecutors(TeaModel):
6281
6311
  def __init__(
6282
6312
  self,
6313
+ allocation_spec: str = None,
6283
6314
  array_index: int = None,
6284
6315
  block_duration: int = None,
6285
6316
  create_time: str = None,
@@ -6295,6 +6326,7 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
6295
6326
  status_reason: str = None,
6296
6327
  tags: List[ListJobExecutorsResponseBodyExecutorsTags] = None,
6297
6328
  ):
6329
+ self.allocation_spec = allocation_spec
6298
6330
  self.array_index = array_index
6299
6331
  self.block_duration = block_duration
6300
6332
  self.create_time = create_time
@@ -6322,6 +6354,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
6322
6354
  return _map
6323
6355
 
6324
6356
  result = dict()
6357
+ if self.allocation_spec is not None:
6358
+ result['AllocationSpec'] = self.allocation_spec
6325
6359
  if self.array_index is not None:
6326
6360
  result['ArrayIndex'] = self.array_index
6327
6361
  if self.block_duration is not None:
@@ -6356,6 +6390,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
6356
6390
 
6357
6391
  def from_map(self, m: dict = None):
6358
6392
  m = m or dict()
6393
+ if m.get('AllocationSpec') is not None:
6394
+ self.allocation_spec = m.get('AllocationSpec')
6359
6395
  if m.get('ArrayIndex') is not None:
6360
6396
  self.array_index = m.get('ArrayIndex')
6361
6397
  if m.get('BlockDuration') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ehpcinstant20230701
3
- Version: 3.2.0
3
+ Version: 3.2.1
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
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_ehpcinstant20230701.
26
26
 
27
- Created on 21/08/2025
27
+ Created on 28/09/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """