alibabacloud-ehpcinstant20230701 2.0.6__py3-none-any.whl → 2.0.7__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.

@@ -1 +1 @@
1
- __version__ = '2.0.6'
1
+ __version__ = '2.0.7'
@@ -4034,6 +4034,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4034
4034
  self,
4035
4035
  app_name: str = None,
4036
4036
  array_index: int = None,
4037
+ block_duration: int = None,
4037
4038
  create_time: str = None,
4038
4039
  end_time: str = None,
4039
4040
  executor_id: str = None,
@@ -4044,6 +4045,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4044
4045
  ip_address: List[str] = None,
4045
4046
  job_id: str = None,
4046
4047
  job_name: str = None,
4048
+ preemptible: bool = None,
4047
4049
  resource: ListExecutorsResponseBodyExecutorsResource = None,
4048
4050
  resource_type: str = None,
4049
4051
  start_time: str = None,
@@ -4056,6 +4058,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4056
4058
  ):
4057
4059
  self.app_name = app_name
4058
4060
  self.array_index = array_index
4061
+ self.block_duration = block_duration
4059
4062
  self.create_time = create_time
4060
4063
  self.end_time = end_time
4061
4064
  self.executor_id = executor_id
@@ -4066,6 +4069,7 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4066
4069
  self.ip_address = ip_address
4067
4070
  self.job_id = job_id
4068
4071
  self.job_name = job_name
4072
+ self.preemptible = preemptible
4069
4073
  self.resource = resource
4070
4074
  self.resource_type = resource_type
4071
4075
  self.start_time = start_time
@@ -4094,6 +4098,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4094
4098
  result['AppName'] = self.app_name
4095
4099
  if self.array_index is not None:
4096
4100
  result['ArrayIndex'] = self.array_index
4101
+ if self.block_duration is not None:
4102
+ result['BlockDuration'] = self.block_duration
4097
4103
  if self.create_time is not None:
4098
4104
  result['CreateTime'] = self.create_time
4099
4105
  if self.end_time is not None:
@@ -4114,6 +4120,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4114
4120
  result['JobId'] = self.job_id
4115
4121
  if self.job_name is not None:
4116
4122
  result['JobName'] = self.job_name
4123
+ if self.preemptible is not None:
4124
+ result['Preemptible'] = self.preemptible
4117
4125
  if self.resource is not None:
4118
4126
  result['Resource'] = self.resource.to_map()
4119
4127
  if self.resource_type is not None:
@@ -4142,6 +4150,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4142
4150
  self.app_name = m.get('AppName')
4143
4151
  if m.get('ArrayIndex') is not None:
4144
4152
  self.array_index = m.get('ArrayIndex')
4153
+ if m.get('BlockDuration') is not None:
4154
+ self.block_duration = m.get('BlockDuration')
4145
4155
  if m.get('CreateTime') is not None:
4146
4156
  self.create_time = m.get('CreateTime')
4147
4157
  if m.get('EndTime') is not None:
@@ -4162,6 +4172,8 @@ class ListExecutorsResponseBodyExecutors(TeaModel):
4162
4172
  self.job_id = m.get('JobId')
4163
4173
  if m.get('JobName') is not None:
4164
4174
  self.job_name = m.get('JobName')
4175
+ if m.get('Preemptible') is not None:
4176
+ self.preemptible = m.get('Preemptible')
4165
4177
  if m.get('Resource') is not None:
4166
4178
  temp_model = ListExecutorsResponseBodyExecutorsResource()
4167
4179
  self.resource = temp_model.from_map(m['Resource'])
@@ -4754,6 +4766,7 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
4754
4766
  def __init__(
4755
4767
  self,
4756
4768
  array_index: int = None,
4769
+ block_duration: int = None,
4757
4770
  create_time: str = None,
4758
4771
  end_time: str = None,
4759
4772
  executor_id: str = None,
@@ -4761,12 +4774,14 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
4761
4774
  external_ip_address: List[str] = None,
4762
4775
  host_name: List[str] = None,
4763
4776
  ip_address: List[str] = None,
4777
+ preemptible: bool = None,
4764
4778
  start_time: str = None,
4765
4779
  status: str = None,
4766
4780
  status_reason: str = None,
4767
4781
  tags: List[ListJobExecutorsResponseBodyExecutorsTags] = None,
4768
4782
  ):
4769
4783
  self.array_index = array_index
4784
+ self.block_duration = block_duration
4770
4785
  self.create_time = create_time
4771
4786
  self.end_time = end_time
4772
4787
  self.executor_id = executor_id
@@ -4774,6 +4789,7 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
4774
4789
  self.external_ip_address = external_ip_address
4775
4790
  self.host_name = host_name
4776
4791
  self.ip_address = ip_address
4792
+ self.preemptible = preemptible
4777
4793
  self.start_time = start_time
4778
4794
  self.status = status
4779
4795
  self.status_reason = status_reason
@@ -4793,6 +4809,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
4793
4809
  result = dict()
4794
4810
  if self.array_index is not None:
4795
4811
  result['ArrayIndex'] = self.array_index
4812
+ if self.block_duration is not None:
4813
+ result['BlockDuration'] = self.block_duration
4796
4814
  if self.create_time is not None:
4797
4815
  result['CreateTime'] = self.create_time
4798
4816
  if self.end_time is not None:
@@ -4807,6 +4825,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
4807
4825
  result['HostName'] = self.host_name
4808
4826
  if self.ip_address is not None:
4809
4827
  result['IpAddress'] = self.ip_address
4828
+ if self.preemptible is not None:
4829
+ result['Preemptible'] = self.preemptible
4810
4830
  if self.start_time is not None:
4811
4831
  result['StartTime'] = self.start_time
4812
4832
  if self.status is not None:
@@ -4823,6 +4843,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
4823
4843
  m = m or dict()
4824
4844
  if m.get('ArrayIndex') is not None:
4825
4845
  self.array_index = m.get('ArrayIndex')
4846
+ if m.get('BlockDuration') is not None:
4847
+ self.block_duration = m.get('BlockDuration')
4826
4848
  if m.get('CreateTime') is not None:
4827
4849
  self.create_time = m.get('CreateTime')
4828
4850
  if m.get('EndTime') is not None:
@@ -4837,6 +4859,8 @@ class ListJobExecutorsResponseBodyExecutors(TeaModel):
4837
4859
  self.host_name = m.get('HostName')
4838
4860
  if m.get('IpAddress') is not None:
4839
4861
  self.ip_address = m.get('IpAddress')
4862
+ if m.get('Preemptible') is not None:
4863
+ self.preemptible = m.get('Preemptible')
4840
4864
  if m.get('StartTime') is not None:
4841
4865
  self.start_time = m.get('StartTime')
4842
4866
  if m.get('Status') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ehpcinstant20230701
3
- Version: 2.0.6
3
+ Version: 2.0.7
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
@@ -0,0 +1,8 @@
1
+ alibabacloud_ehpcinstant20230701/__init__.py,sha256=XrDu8k_IxSYdWR9fdENgQaVLDoDnh9VjrAmupbj-Ozw,21
2
+ alibabacloud_ehpcinstant20230701/client.py,sha256=JTf0f-B8EUvyFjHNQVE3CDPBzhcmVQLIwGMPTSc4SAM,93786
3
+ alibabacloud_ehpcinstant20230701/models.py,sha256=aJncDFXkbSWV3YAbZiHVjrYRvdrRCt71T3B4kTBsJuA,204692
4
+ alibabacloud_ehpcinstant20230701-2.0.7.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_ehpcinstant20230701-2.0.7.dist-info/METADATA,sha256=-Jy0LnYfobgkIM2hmcImdeLoPXCDf6QweGMa31yy00Y,2368
6
+ alibabacloud_ehpcinstant20230701-2.0.7.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
+ alibabacloud_ehpcinstant20230701-2.0.7.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
8
+ alibabacloud_ehpcinstant20230701-2.0.7.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- alibabacloud_ehpcinstant20230701/__init__.py,sha256=8FFNryWZbtwI4sGVEf6Kz3mutAZpqdw9cOWH1uckXQ0,21
2
- alibabacloud_ehpcinstant20230701/client.py,sha256=JTf0f-B8EUvyFjHNQVE3CDPBzhcmVQLIwGMPTSc4SAM,93786
3
- alibabacloud_ehpcinstant20230701/models.py,sha256=2GO0G4HFHWWZ39y-kKrHrB_yuimCNfkUtJWpENA1nn0,203590
4
- alibabacloud_ehpcinstant20230701-2.0.6.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- alibabacloud_ehpcinstant20230701-2.0.6.dist-info/METADATA,sha256=KCgJovAuMPYH_LK7R4mU-qszVZz97CLyFRFGmZVKbnI,2368
6
- alibabacloud_ehpcinstant20230701-2.0.6.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
- alibabacloud_ehpcinstant20230701-2.0.6.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
8
- alibabacloud_ehpcinstant20230701-2.0.6.dist-info/RECORD,,