alibabacloud-ehpcinstant20230701 2.0.0__tar.gz → 2.0.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-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/ChangeLog.md +13 -0
  2. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/PKG-INFO +1 -1
  3. alibabacloud_ehpcinstant20230701-2.0.1/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
  4. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/alibabacloud_ehpcinstant20230701/models.py +18 -0
  5. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/setup.py +1 -1
  7. alibabacloud_ehpcinstant20230701-2.0.0/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
  8. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/LICENSE +0 -0
  9. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/MANIFEST.in +0 -0
  10. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/README-CN.md +0 -0
  11. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/README.md +0 -0
  12. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/alibabacloud_ehpcinstant20230701/client.py +0 -0
  13. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +0 -0
  16. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
  17. {alibabacloud_ehpcinstant20230701-2.0.0 → alibabacloud_ehpcinstant20230701-2.0.1}/setup.cfg +0 -0
@@ -1,3 +1,16 @@
1
+ 2025-02-12 Version: 2.0.0
2
+ - Update API CreateJob: add param SecurityPolicy.
3
+ - Update API ListExecutors: update param PageNumber.
4
+ - Update API ListExecutors: update param PageSize.
5
+ - Update API ListExecutors: update response param.
6
+ - Update API ListJobExecutors: update param PageNumber.
7
+ - Update API ListJobExecutors: update param PageSize.
8
+ - Update API ListJobExecutors: update response param.
9
+ - Update API ListJobs: update param PageNumber.
10
+ - Update API ListJobs: update param PageSize.
11
+ - Update API ListJobs: update response param.
12
+
13
+
1
14
  2024-12-20 Version: 1.2.0
2
15
  - Support API CreatePool.
3
16
  - Support API DeletePool.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_ehpcinstant20230701
3
- Version: 2.0.0
3
+ Version: 2.0.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
@@ -395,10 +395,12 @@ class CreateJobRequestDeploymentPolicy(TeaModel):
395
395
  def __init__(
396
396
  self,
397
397
  allocation_spec: str = None,
398
+ level: str = None,
398
399
  network: CreateJobRequestDeploymentPolicyNetwork = None,
399
400
  tag: List[CreateJobRequestDeploymentPolicyTag] = None,
400
401
  ):
401
402
  self.allocation_spec = allocation_spec
403
+ self.level = level
402
404
  self.network = network
403
405
  self.tag = tag
404
406
 
@@ -418,6 +420,8 @@ class CreateJobRequestDeploymentPolicy(TeaModel):
418
420
  result = dict()
419
421
  if self.allocation_spec is not None:
420
422
  result['AllocationSpec'] = self.allocation_spec
423
+ if self.level is not None:
424
+ result['Level'] = self.level
421
425
  if self.network is not None:
422
426
  result['Network'] = self.network.to_map()
423
427
  result['Tag'] = []
@@ -430,6 +434,8 @@ class CreateJobRequestDeploymentPolicy(TeaModel):
430
434
  m = m or dict()
431
435
  if m.get('AllocationSpec') is not None:
432
436
  self.allocation_spec = m.get('AllocationSpec')
437
+ if m.get('Level') is not None:
438
+ self.level = m.get('Level')
433
439
  if m.get('Network') is not None:
434
440
  temp_model = CreateJobRequestDeploymentPolicyNetwork()
435
441
  self.network = temp_model.from_map(m['Network'])
@@ -2730,9 +2736,11 @@ class GetJobRequest(TeaModel):
2730
2736
  class GetJobResponseBodyJobInfoDeploymentPolicyNetwork(TeaModel):
2731
2737
  def __init__(
2732
2738
  self,
2739
+ enable_enimapping: bool = None,
2733
2740
  enable_external_ip_address: bool = None,
2734
2741
  vswitch: List[str] = None,
2735
2742
  ):
2743
+ self.enable_enimapping = enable_enimapping
2736
2744
  self.enable_external_ip_address = enable_external_ip_address
2737
2745
  self.vswitch = vswitch
2738
2746
 
@@ -2745,6 +2753,8 @@ class GetJobResponseBodyJobInfoDeploymentPolicyNetwork(TeaModel):
2745
2753
  return _map
2746
2754
 
2747
2755
  result = dict()
2756
+ if self.enable_enimapping is not None:
2757
+ result['EnableENIMapping'] = self.enable_enimapping
2748
2758
  if self.enable_external_ip_address is not None:
2749
2759
  result['EnableExternalIpAddress'] = self.enable_external_ip_address
2750
2760
  if self.vswitch is not None:
@@ -2753,6 +2763,8 @@ class GetJobResponseBodyJobInfoDeploymentPolicyNetwork(TeaModel):
2753
2763
 
2754
2764
  def from_map(self, m: dict = None):
2755
2765
  m = m or dict()
2766
+ if m.get('EnableENIMapping') is not None:
2767
+ self.enable_enimapping = m.get('EnableENIMapping')
2756
2768
  if m.get('EnableExternalIpAddress') is not None:
2757
2769
  self.enable_external_ip_address = m.get('EnableExternalIpAddress')
2758
2770
  if m.get('Vswitch') is not None:
@@ -2797,10 +2809,12 @@ class GetJobResponseBodyJobInfoDeploymentPolicy(TeaModel):
2797
2809
  def __init__(
2798
2810
  self,
2799
2811
  allocation_spec: str = None,
2812
+ level: str = None,
2800
2813
  network: GetJobResponseBodyJobInfoDeploymentPolicyNetwork = None,
2801
2814
  tags: List[GetJobResponseBodyJobInfoDeploymentPolicyTags] = None,
2802
2815
  ):
2803
2816
  self.allocation_spec = allocation_spec
2817
+ self.level = level
2804
2818
  self.network = network
2805
2819
  self.tags = tags
2806
2820
 
@@ -2820,6 +2834,8 @@ class GetJobResponseBodyJobInfoDeploymentPolicy(TeaModel):
2820
2834
  result = dict()
2821
2835
  if self.allocation_spec is not None:
2822
2836
  result['AllocationSpec'] = self.allocation_spec
2837
+ if self.level is not None:
2838
+ result['Level'] = self.level
2823
2839
  if self.network is not None:
2824
2840
  result['Network'] = self.network.to_map()
2825
2841
  result['Tags'] = []
@@ -2832,6 +2848,8 @@ class GetJobResponseBodyJobInfoDeploymentPolicy(TeaModel):
2832
2848
  m = m or dict()
2833
2849
  if m.get('AllocationSpec') is not None:
2834
2850
  self.allocation_spec = m.get('AllocationSpec')
2851
+ if m.get('Level') is not None:
2852
+ self.level = m.get('Level')
2835
2853
  if m.get('Network') is not None:
2836
2854
  temp_model = GetJobResponseBodyJobInfoDeploymentPolicyNetwork()
2837
2855
  self.network = temp_model.from_map(m['Network'])
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ehpcinstant20230701
3
- Version: 2.0.0
3
+ Version: 2.0.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 12/02/2025
27
+ Created on 31/03/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """