alibabacloud-ehpcinstant20230701 2.0.5__tar.gz → 2.0.7__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.5 → alibabacloud_ehpcinstant20230701-2.0.7}/ChangeLog.md +9 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/PKG-INFO +1 -1
- alibabacloud_ehpcinstant20230701-2.0.7/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/alibabacloud_ehpcinstant20230701/models.py +36 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/setup.py +1 -1
- alibabacloud_ehpcinstant20230701-2.0.5/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/MANIFEST.in +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/README-CN.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/README.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/alibabacloud_ehpcinstant20230701/client.py +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/setup.cfg +0 -0
{alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/ChangeLog.md
RENAMED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
2025-07-11 Version: 2.0.6
|
|
2
|
+
- Update API ListExecutors: add request parameters Filter.Image.
|
|
3
|
+
- Update API ListExecutors: add request parameters Filter.VswitchId.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
2025-07-04 Version: 2.0.5
|
|
7
|
+
- Update API DeleteJobs: add request parameters JobScheduler.
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
2025-07-03 Version: 2.0.4
|
|
2
11
|
- Update API GetImage: add request parameters AdditionalRegionIds.
|
|
3
12
|
- Update API GetImage: add response parameters Body.Image.AdditionalRegionsInfo.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '2.0.7'
|
|
@@ -3771,18 +3771,22 @@ class ListExecutorsRequestFilter(TeaModel):
|
|
|
3771
3771
|
def __init__(
|
|
3772
3772
|
self,
|
|
3773
3773
|
executor_ids: List[str] = None,
|
|
3774
|
+
image: str = None,
|
|
3774
3775
|
ip_addresses: List[str] = None,
|
|
3775
3776
|
job_name: str = None,
|
|
3776
3777
|
status: List[str] = None,
|
|
3777
3778
|
time_created_after: int = None,
|
|
3778
3779
|
time_created_before: int = None,
|
|
3780
|
+
vswitch_id: str = None,
|
|
3779
3781
|
):
|
|
3780
3782
|
self.executor_ids = executor_ids
|
|
3783
|
+
self.image = image
|
|
3781
3784
|
self.ip_addresses = ip_addresses
|
|
3782
3785
|
self.job_name = job_name
|
|
3783
3786
|
self.status = status
|
|
3784
3787
|
self.time_created_after = time_created_after
|
|
3785
3788
|
self.time_created_before = time_created_before
|
|
3789
|
+
self.vswitch_id = vswitch_id
|
|
3786
3790
|
|
|
3787
3791
|
def validate(self):
|
|
3788
3792
|
pass
|
|
@@ -3795,6 +3799,8 @@ class ListExecutorsRequestFilter(TeaModel):
|
|
|
3795
3799
|
result = dict()
|
|
3796
3800
|
if self.executor_ids is not None:
|
|
3797
3801
|
result['ExecutorIds'] = self.executor_ids
|
|
3802
|
+
if self.image is not None:
|
|
3803
|
+
result['Image'] = self.image
|
|
3798
3804
|
if self.ip_addresses is not None:
|
|
3799
3805
|
result['IpAddresses'] = self.ip_addresses
|
|
3800
3806
|
if self.job_name is not None:
|
|
@@ -3805,12 +3811,16 @@ class ListExecutorsRequestFilter(TeaModel):
|
|
|
3805
3811
|
result['TimeCreatedAfter'] = self.time_created_after
|
|
3806
3812
|
if self.time_created_before is not None:
|
|
3807
3813
|
result['TimeCreatedBefore'] = self.time_created_before
|
|
3814
|
+
if self.vswitch_id is not None:
|
|
3815
|
+
result['VswitchId'] = self.vswitch_id
|
|
3808
3816
|
return result
|
|
3809
3817
|
|
|
3810
3818
|
def from_map(self, m: dict = None):
|
|
3811
3819
|
m = m or dict()
|
|
3812
3820
|
if m.get('ExecutorIds') is not None:
|
|
3813
3821
|
self.executor_ids = m.get('ExecutorIds')
|
|
3822
|
+
if m.get('Image') is not None:
|
|
3823
|
+
self.image = m.get('Image')
|
|
3814
3824
|
if m.get('IpAddresses') is not None:
|
|
3815
3825
|
self.ip_addresses = m.get('IpAddresses')
|
|
3816
3826
|
if m.get('JobName') is not None:
|
|
@@ -3821,6 +3831,8 @@ class ListExecutorsRequestFilter(TeaModel):
|
|
|
3821
3831
|
self.time_created_after = m.get('TimeCreatedAfter')
|
|
3822
3832
|
if m.get('TimeCreatedBefore') is not None:
|
|
3823
3833
|
self.time_created_before = m.get('TimeCreatedBefore')
|
|
3834
|
+
if m.get('VswitchId') is not None:
|
|
3835
|
+
self.vswitch_id = m.get('VswitchId')
|
|
3824
3836
|
return self
|
|
3825
3837
|
|
|
3826
3838
|
|
|
@@ -4022,6 +4034,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4022
4034
|
self,
|
|
4023
4035
|
app_name: str = None,
|
|
4024
4036
|
array_index: int = None,
|
|
4037
|
+
block_duration: int = None,
|
|
4025
4038
|
create_time: str = None,
|
|
4026
4039
|
end_time: str = None,
|
|
4027
4040
|
executor_id: str = None,
|
|
@@ -4032,6 +4045,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4032
4045
|
ip_address: List[str] = None,
|
|
4033
4046
|
job_id: str = None,
|
|
4034
4047
|
job_name: str = None,
|
|
4048
|
+
preemptible: bool = None,
|
|
4035
4049
|
resource: ListExecutorsResponseBodyExecutorsResource = None,
|
|
4036
4050
|
resource_type: str = None,
|
|
4037
4051
|
start_time: str = None,
|
|
@@ -4044,6 +4058,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4044
4058
|
):
|
|
4045
4059
|
self.app_name = app_name
|
|
4046
4060
|
self.array_index = array_index
|
|
4061
|
+
self.block_duration = block_duration
|
|
4047
4062
|
self.create_time = create_time
|
|
4048
4063
|
self.end_time = end_time
|
|
4049
4064
|
self.executor_id = executor_id
|
|
@@ -4054,6 +4069,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4054
4069
|
self.ip_address = ip_address
|
|
4055
4070
|
self.job_id = job_id
|
|
4056
4071
|
self.job_name = job_name
|
|
4072
|
+
self.preemptible = preemptible
|
|
4057
4073
|
self.resource = resource
|
|
4058
4074
|
self.resource_type = resource_type
|
|
4059
4075
|
self.start_time = start_time
|
|
@@ -4082,6 +4098,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4082
4098
|
result['AppName'] = self.app_name
|
|
4083
4099
|
if self.array_index is not None:
|
|
4084
4100
|
result['ArrayIndex'] = self.array_index
|
|
4101
|
+
if self.block_duration is not None:
|
|
4102
|
+
result['BlockDuration'] = self.block_duration
|
|
4085
4103
|
if self.create_time is not None:
|
|
4086
4104
|
result['CreateTime'] = self.create_time
|
|
4087
4105
|
if self.end_time is not None:
|
|
@@ -4102,6 +4120,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4102
4120
|
result['JobId'] = self.job_id
|
|
4103
4121
|
if self.job_name is not None:
|
|
4104
4122
|
result['JobName'] = self.job_name
|
|
4123
|
+
if self.preemptible is not None:
|
|
4124
|
+
result['Preemptible'] = self.preemptible
|
|
4105
4125
|
if self.resource is not None:
|
|
4106
4126
|
result['Resource'] = self.resource.to_map()
|
|
4107
4127
|
if self.resource_type is not None:
|
|
@@ -4130,6 +4150,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4130
4150
|
self.app_name = m.get('AppName')
|
|
4131
4151
|
if m.get('ArrayIndex') is not None:
|
|
4132
4152
|
self.array_index = m.get('ArrayIndex')
|
|
4153
|
+
if m.get('BlockDuration') is not None:
|
|
4154
|
+
self.block_duration = m.get('BlockDuration')
|
|
4133
4155
|
if m.get('CreateTime') is not None:
|
|
4134
4156
|
self.create_time = m.get('CreateTime')
|
|
4135
4157
|
if m.get('EndTime') is not None:
|
|
@@ -4150,6 +4172,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4150
4172
|
self.job_id = m.get('JobId')
|
|
4151
4173
|
if m.get('JobName') is not None:
|
|
4152
4174
|
self.job_name = m.get('JobName')
|
|
4175
|
+
if m.get('Preemptible') is not None:
|
|
4176
|
+
self.preemptible = m.get('Preemptible')
|
|
4153
4177
|
if m.get('Resource') is not None:
|
|
4154
4178
|
temp_model = ListExecutorsResponseBodyExecutorsResource()
|
|
4155
4179
|
self.resource = temp_model.from_map(m['Resource'])
|
|
@@ -4742,6 +4766,7 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4742
4766
|
def __init__(
|
|
4743
4767
|
self,
|
|
4744
4768
|
array_index: int = None,
|
|
4769
|
+
block_duration: int = None,
|
|
4745
4770
|
create_time: str = None,
|
|
4746
4771
|
end_time: str = None,
|
|
4747
4772
|
executor_id: str = None,
|
|
@@ -4749,12 +4774,14 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4749
4774
|
external_ip_address: List[str] = None,
|
|
4750
4775
|
host_name: List[str] = None,
|
|
4751
4776
|
ip_address: List[str] = None,
|
|
4777
|
+
preemptible: bool = None,
|
|
4752
4778
|
start_time: str = None,
|
|
4753
4779
|
status: str = None,
|
|
4754
4780
|
status_reason: str = None,
|
|
4755
4781
|
tags: List[ListJobExecutorsResponseBodyExecutorsTags] = None,
|
|
4756
4782
|
):
|
|
4757
4783
|
self.array_index = array_index
|
|
4784
|
+
self.block_duration = block_duration
|
|
4758
4785
|
self.create_time = create_time
|
|
4759
4786
|
self.end_time = end_time
|
|
4760
4787
|
self.executor_id = executor_id
|
|
@@ -4762,6 +4789,7 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4762
4789
|
self.external_ip_address = external_ip_address
|
|
4763
4790
|
self.host_name = host_name
|
|
4764
4791
|
self.ip_address = ip_address
|
|
4792
|
+
self.preemptible = preemptible
|
|
4765
4793
|
self.start_time = start_time
|
|
4766
4794
|
self.status = status
|
|
4767
4795
|
self.status_reason = status_reason
|
|
@@ -4781,6 +4809,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4781
4809
|
result = dict()
|
|
4782
4810
|
if self.array_index is not None:
|
|
4783
4811
|
result['ArrayIndex'] = self.array_index
|
|
4812
|
+
if self.block_duration is not None:
|
|
4813
|
+
result['BlockDuration'] = self.block_duration
|
|
4784
4814
|
if self.create_time is not None:
|
|
4785
4815
|
result['CreateTime'] = self.create_time
|
|
4786
4816
|
if self.end_time is not None:
|
|
@@ -4795,6 +4825,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4795
4825
|
result['HostName'] = self.host_name
|
|
4796
4826
|
if self.ip_address is not None:
|
|
4797
4827
|
result['IpAddress'] = self.ip_address
|
|
4828
|
+
if self.preemptible is not None:
|
|
4829
|
+
result['Preemptible'] = self.preemptible
|
|
4798
4830
|
if self.start_time is not None:
|
|
4799
4831
|
result['StartTime'] = self.start_time
|
|
4800
4832
|
if self.status is not None:
|
|
@@ -4811,6 +4843,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4811
4843
|
m = m or dict()
|
|
4812
4844
|
if m.get('ArrayIndex') is not None:
|
|
4813
4845
|
self.array_index = m.get('ArrayIndex')
|
|
4846
|
+
if m.get('BlockDuration') is not None:
|
|
4847
|
+
self.block_duration = m.get('BlockDuration')
|
|
4814
4848
|
if m.get('CreateTime') is not None:
|
|
4815
4849
|
self.create_time = m.get('CreateTime')
|
|
4816
4850
|
if m.get('EndTime') is not None:
|
|
@@ -4825,6 +4859,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
|
|
|
4825
4859
|
self.host_name = m.get('HostName')
|
|
4826
4860
|
if m.get('IpAddress') is not None:
|
|
4827
4861
|
self.ip_address = m.get('IpAddress')
|
|
4862
|
+
if m.get('Preemptible') is not None:
|
|
4863
|
+
self.preemptible = m.get('Preemptible')
|
|
4828
4864
|
if m.get('StartTime') is not None:
|
|
4829
4865
|
self.start_time = m.get('StartTime')
|
|
4830
4866
|
if m.get('Status') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.0.5'
|
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/MANIFEST.in
RENAMED
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.7}/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
|
|
File without changes
|