alibabacloud-ehpcinstant20230701 2.0.0__py3-none-any.whl → 2.0.1__py3-none-any.whl
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/__init__.py +1 -1
- alibabacloud_ehpcinstant20230701/models.py +18 -0
- {alibabacloud_ehpcinstant20230701-2.0.0.dist-info → alibabacloud_ehpcinstant20230701-2.0.1.dist-info}/METADATA +1 -1
- alibabacloud_ehpcinstant20230701-2.0.1.dist-info/RECORD +8 -0
- alibabacloud_ehpcinstant20230701-2.0.0.dist-info/RECORD +0 -8
- {alibabacloud_ehpcinstant20230701-2.0.0.dist-info → alibabacloud_ehpcinstant20230701-2.0.1.dist-info}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.0.dist-info → alibabacloud_ehpcinstant20230701-2.0.1.dist-info}/WHEEL +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.0.dist-info → alibabacloud_ehpcinstant20230701-2.0.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '2.0.
|
|
1
|
+
__version__ = '2.0.1'
|
|
@@ -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'])
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_ehpcinstant20230701/__init__.py,sha256=JaD6MMusT9BYu4AEtfuRyMks5Czzea-gqEuIwdr_Jig,21
|
|
2
|
+
alibabacloud_ehpcinstant20230701/client.py,sha256=nDHgXf-yLtRn9s10lZKLz899F6TXJ24bdiBRNW3Vigg,106202
|
|
3
|
+
alibabacloud_ehpcinstant20230701/models.py,sha256=1YCCtcMLVrsJY4ui348YR3u5OPHmBYNMDLSJVxHaafw,196318
|
|
4
|
+
alibabacloud_ehpcinstant20230701-2.0.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_ehpcinstant20230701-2.0.1.dist-info/METADATA,sha256=DAWtWoK4c0DiG2vvrb9DMu5TB7ALOBjeVL0RnQDakng,2368
|
|
6
|
+
alibabacloud_ehpcinstant20230701-2.0.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_ehpcinstant20230701-2.0.1.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
|
|
8
|
+
alibabacloud_ehpcinstant20230701-2.0.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_ehpcinstant20230701/__init__.py,sha256=8sGE31KO-DzdioQZ2J7tZ-GG2VwZjYHpfIX2_sBl6H0,21
|
|
2
|
-
alibabacloud_ehpcinstant20230701/client.py,sha256=nDHgXf-yLtRn9s10lZKLz899F6TXJ24bdiBRNW3Vigg,106202
|
|
3
|
-
alibabacloud_ehpcinstant20230701/models.py,sha256=PxACvasx_3cacKNOCvZzOuD8pHb0ylb6hGZM8MlyMfk,195585
|
|
4
|
-
alibabacloud_ehpcinstant20230701-2.0.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_ehpcinstant20230701-2.0.0.dist-info/METADATA,sha256=e6n_UxsxZ7y80GIaB8K5AWVv1P1b8ZeW3z0WOVGyBl8,2368
|
|
6
|
-
alibabacloud_ehpcinstant20230701-2.0.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_ehpcinstant20230701-2.0.0.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
|
|
8
|
-
alibabacloud_ehpcinstant20230701-2.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|