alibabacloud-ehpcinstant20230701 2.0.5__tar.gz → 2.0.6__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.6}/ChangeLog.md +4 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/PKG-INFO +1 -1
- alibabacloud_ehpcinstant20230701-2.0.6/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/alibabacloud_ehpcinstant20230701/models.py +12 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/setup.py +1 -1
- alibabacloud_ehpcinstant20230701-2.0.5/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/MANIFEST.in +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/README-CN.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/README.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/alibabacloud_ehpcinstant20230701/client.py +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/setup.cfg +0 -0
{alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/ChangeLog.md
RENAMED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
2025-07-04 Version: 2.0.5
|
|
2
|
+
- Update API DeleteJobs: add request parameters JobScheduler.
|
|
3
|
+
|
|
4
|
+
|
|
1
5
|
2025-07-03 Version: 2.0.4
|
|
2
6
|
- Update API GetImage: add request parameters AdditionalRegionIds.
|
|
3
7
|
- Update API GetImage: add response parameters Body.Image.AdditionalRegionsInfo.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '2.0.6'
|
|
@@ -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
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.0.5'
|
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/MANIFEST.in
RENAMED
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.5 → alibabacloud_ehpcinstant20230701-2.0.6}/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
|