alibabacloud-ehpcinstant20230701 2.0.8__tar.gz → 3.1.0__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.8 → alibabacloud_ehpcinstant20230701-3.1.0}/ChangeLog.md +14 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/PKG-INFO +1 -1
- alibabacloud_ehpcinstant20230701-3.1.0/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/alibabacloud_ehpcinstant20230701/client.py +108 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/alibabacloud_ehpcinstant20230701/models.py +154 -6
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +1 -1
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/setup.py +2 -2
- alibabacloud_ehpcinstant20230701-2.0.8/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/MANIFEST.in +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/README-CN.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/README.md +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
- {alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/setup.cfg +0 -0
{alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/ChangeLog.md
RENAMED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2025-08-07 Version: 3.0.0
|
|
2
|
+
- Update API GetJob: delete response parameters Body.JobInfo.Tasks.$.TaskSpec.TaskExecutor.$.VM.UserName.
|
|
3
|
+
- Update API ListExecutors: add response parameters Body.Executors.$.Resource.InstanceType.
|
|
4
|
+
- Update API ListJobExecutors: add response parameters Body.ExecutorStatus.Restarting.
|
|
5
|
+
- Update API ListJobExecutors: add response parameters Body.ExecutorStatus.Suspended.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
2025-07-29 Version: 2.0.8
|
|
9
|
+
- Update API CreateJob: add request parameters DependencyPolicy.
|
|
10
|
+
- Update API CreateJob: add request parameters Tasks.$.TaskSpec.RetryPolicy.
|
|
11
|
+
- Update API GetJob: add response parameters Body.JobInfo.DependencyPolicy.
|
|
12
|
+
- Update API GetJob: add response parameters Body.JobInfo.Tasks.$.TaskSpec.RetryPolicy.
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
2025-07-15 Version: 2.0.7
|
|
2
16
|
- Update API ListExecutors: add response parameters Body.Executors.$.BlockDuration.
|
|
3
17
|
- Update API ListExecutors: add response parameters Body.Executors.$.Preemptible.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '3.1.0'
|
|
@@ -2077,6 +2077,114 @@ class Client(OpenApiClient):
|
|
|
2077
2077
|
runtime = util_models.RuntimeOptions()
|
|
2078
2078
|
return await self.remove_image_with_options_async(request, runtime)
|
|
2079
2079
|
|
|
2080
|
+
def synchronize_app_with_options(
|
|
2081
|
+
self,
|
|
2082
|
+
tmp_req: ehpc_instant_20230701_models.SynchronizeAppRequest,
|
|
2083
|
+
runtime: util_models.RuntimeOptions,
|
|
2084
|
+
) -> ehpc_instant_20230701_models.SynchronizeAppResponse:
|
|
2085
|
+
"""
|
|
2086
|
+
@summary 应用跨地域同步
|
|
2087
|
+
|
|
2088
|
+
@param tmp_req: SynchronizeAppRequest
|
|
2089
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
2090
|
+
@return: SynchronizeAppResponse
|
|
2091
|
+
"""
|
|
2092
|
+
UtilClient.validate_model(tmp_req)
|
|
2093
|
+
request = ehpc_instant_20230701_models.SynchronizeAppShrinkRequest()
|
|
2094
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
2095
|
+
if not UtilClient.is_unset(tmp_req.target_region_ids):
|
|
2096
|
+
request.target_region_ids_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.target_region_ids, 'TargetRegionIds', 'json')
|
|
2097
|
+
query = {}
|
|
2098
|
+
if not UtilClient.is_unset(request.app_id):
|
|
2099
|
+
query['AppId'] = request.app_id
|
|
2100
|
+
if not UtilClient.is_unset(request.target_region_ids_shrink):
|
|
2101
|
+
query['TargetRegionIds'] = request.target_region_ids_shrink
|
|
2102
|
+
req = open_api_models.OpenApiRequest(
|
|
2103
|
+
query=OpenApiUtilClient.query(query)
|
|
2104
|
+
)
|
|
2105
|
+
params = open_api_models.Params(
|
|
2106
|
+
action='SynchronizeApp',
|
|
2107
|
+
version='2023-07-01',
|
|
2108
|
+
protocol='HTTPS',
|
|
2109
|
+
pathname='/',
|
|
2110
|
+
method='POST',
|
|
2111
|
+
auth_type='AK',
|
|
2112
|
+
style='RPC',
|
|
2113
|
+
req_body_type='formData',
|
|
2114
|
+
body_type='json'
|
|
2115
|
+
)
|
|
2116
|
+
return TeaCore.from_map(
|
|
2117
|
+
ehpc_instant_20230701_models.SynchronizeAppResponse(),
|
|
2118
|
+
self.call_api(params, req, runtime)
|
|
2119
|
+
)
|
|
2120
|
+
|
|
2121
|
+
async def synchronize_app_with_options_async(
|
|
2122
|
+
self,
|
|
2123
|
+
tmp_req: ehpc_instant_20230701_models.SynchronizeAppRequest,
|
|
2124
|
+
runtime: util_models.RuntimeOptions,
|
|
2125
|
+
) -> ehpc_instant_20230701_models.SynchronizeAppResponse:
|
|
2126
|
+
"""
|
|
2127
|
+
@summary 应用跨地域同步
|
|
2128
|
+
|
|
2129
|
+
@param tmp_req: SynchronizeAppRequest
|
|
2130
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
2131
|
+
@return: SynchronizeAppResponse
|
|
2132
|
+
"""
|
|
2133
|
+
UtilClient.validate_model(tmp_req)
|
|
2134
|
+
request = ehpc_instant_20230701_models.SynchronizeAppShrinkRequest()
|
|
2135
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
2136
|
+
if not UtilClient.is_unset(tmp_req.target_region_ids):
|
|
2137
|
+
request.target_region_ids_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.target_region_ids, 'TargetRegionIds', 'json')
|
|
2138
|
+
query = {}
|
|
2139
|
+
if not UtilClient.is_unset(request.app_id):
|
|
2140
|
+
query['AppId'] = request.app_id
|
|
2141
|
+
if not UtilClient.is_unset(request.target_region_ids_shrink):
|
|
2142
|
+
query['TargetRegionIds'] = request.target_region_ids_shrink
|
|
2143
|
+
req = open_api_models.OpenApiRequest(
|
|
2144
|
+
query=OpenApiUtilClient.query(query)
|
|
2145
|
+
)
|
|
2146
|
+
params = open_api_models.Params(
|
|
2147
|
+
action='SynchronizeApp',
|
|
2148
|
+
version='2023-07-01',
|
|
2149
|
+
protocol='HTTPS',
|
|
2150
|
+
pathname='/',
|
|
2151
|
+
method='POST',
|
|
2152
|
+
auth_type='AK',
|
|
2153
|
+
style='RPC',
|
|
2154
|
+
req_body_type='formData',
|
|
2155
|
+
body_type='json'
|
|
2156
|
+
)
|
|
2157
|
+
return TeaCore.from_map(
|
|
2158
|
+
ehpc_instant_20230701_models.SynchronizeAppResponse(),
|
|
2159
|
+
await self.call_api_async(params, req, runtime)
|
|
2160
|
+
)
|
|
2161
|
+
|
|
2162
|
+
def synchronize_app(
|
|
2163
|
+
self,
|
|
2164
|
+
request: ehpc_instant_20230701_models.SynchronizeAppRequest,
|
|
2165
|
+
) -> ehpc_instant_20230701_models.SynchronizeAppResponse:
|
|
2166
|
+
"""
|
|
2167
|
+
@summary 应用跨地域同步
|
|
2168
|
+
|
|
2169
|
+
@param request: SynchronizeAppRequest
|
|
2170
|
+
@return: SynchronizeAppResponse
|
|
2171
|
+
"""
|
|
2172
|
+
runtime = util_models.RuntimeOptions()
|
|
2173
|
+
return self.synchronize_app_with_options(request, runtime)
|
|
2174
|
+
|
|
2175
|
+
async def synchronize_app_async(
|
|
2176
|
+
self,
|
|
2177
|
+
request: ehpc_instant_20230701_models.SynchronizeAppRequest,
|
|
2178
|
+
) -> ehpc_instant_20230701_models.SynchronizeAppResponse:
|
|
2179
|
+
"""
|
|
2180
|
+
@summary 应用跨地域同步
|
|
2181
|
+
|
|
2182
|
+
@param request: SynchronizeAppRequest
|
|
2183
|
+
@return: SynchronizeAppResponse
|
|
2184
|
+
"""
|
|
2185
|
+
runtime = util_models.RuntimeOptions()
|
|
2186
|
+
return await self.synchronize_app_with_options_async(request, runtime)
|
|
2187
|
+
|
|
2080
2188
|
def tag_resources_with_options(
|
|
2081
2189
|
self,
|
|
2082
2190
|
request: ehpc_instant_20230701_models.TagResourcesRequest,
|
|
@@ -3547,12 +3547,10 @@ class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
3547
3547
|
image: str = None,
|
|
3548
3548
|
prolog_script: str = None,
|
|
3549
3549
|
script: str = None,
|
|
3550
|
-
user_name: str = None,
|
|
3551
3550
|
):
|
|
3552
3551
|
self.image = image
|
|
3553
3552
|
self.prolog_script = prolog_script
|
|
3554
3553
|
self.script = script
|
|
3555
|
-
self.user_name = user_name
|
|
3556
3554
|
|
|
3557
3555
|
def validate(self):
|
|
3558
3556
|
pass
|
|
@@ -3569,8 +3567,6 @@ class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
3569
3567
|
result['PrologScript'] = self.prolog_script
|
|
3570
3568
|
if self.script is not None:
|
|
3571
3569
|
result['Script'] = self.script
|
|
3572
|
-
if self.user_name is not None:
|
|
3573
|
-
result['UserName'] = self.user_name
|
|
3574
3570
|
return result
|
|
3575
3571
|
|
|
3576
3572
|
def from_map(self, m: dict = None):
|
|
@@ -3581,8 +3577,6 @@ class GetJobResponseBodyJobInfoTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
3581
3577
|
self.prolog_script = m.get('PrologScript')
|
|
3582
3578
|
if m.get('Script') is not None:
|
|
3583
3579
|
self.script = m.get('Script')
|
|
3584
|
-
if m.get('UserName') is not None:
|
|
3585
|
-
self.user_name = m.get('UserName')
|
|
3586
3580
|
return self
|
|
3587
3581
|
|
|
3588
3582
|
|
|
@@ -4283,10 +4277,12 @@ class ListExecutorsResponseBodyExecutorsResource(TeaModel):
|
|
|
4283
4277
|
self,
|
|
4284
4278
|
cores: float = None,
|
|
4285
4279
|
disks: List[ListExecutorsResponseBodyExecutorsResourceDisks] = None,
|
|
4280
|
+
instance_type: str = None,
|
|
4286
4281
|
memory: float = None,
|
|
4287
4282
|
):
|
|
4288
4283
|
self.cores = cores
|
|
4289
4284
|
self.disks = disks
|
|
4285
|
+
self.instance_type = instance_type
|
|
4290
4286
|
self.memory = memory
|
|
4291
4287
|
|
|
4292
4288
|
def validate(self):
|
|
@@ -4307,6 +4303,8 @@ class ListExecutorsResponseBodyExecutorsResource(TeaModel):
|
|
|
4307
4303
|
if self.disks is not None:
|
|
4308
4304
|
for k in self.disks:
|
|
4309
4305
|
result['Disks'].append(k.to_map() if k else None)
|
|
4306
|
+
if self.instance_type is not None:
|
|
4307
|
+
result['InstanceType'] = self.instance_type
|
|
4310
4308
|
if self.memory is not None:
|
|
4311
4309
|
result['Memory'] = self.memory
|
|
4312
4310
|
return result
|
|
@@ -4320,6 +4318,8 @@ class ListExecutorsResponseBodyExecutorsResource(TeaModel):
|
|
|
4320
4318
|
for k in m.get('Disks'):
|
|
4321
4319
|
temp_model = ListExecutorsResponseBodyExecutorsResourceDisks()
|
|
4322
4320
|
self.disks.append(temp_model.from_map(k))
|
|
4321
|
+
if m.get('InstanceType') is not None:
|
|
4322
|
+
self.instance_type = m.get('InstanceType')
|
|
4323
4323
|
if m.get('Memory') is not None:
|
|
4324
4324
|
self.memory = m.get('Memory')
|
|
4325
4325
|
return self
|
|
@@ -5003,16 +5003,20 @@ class ListJobExecutorsResponseBodyExecutorStatus(TeaModel):
|
|
|
5003
5003
|
failed: int = None,
|
|
5004
5004
|
initing: int = None,
|
|
5005
5005
|
pending: int = None,
|
|
5006
|
+
restarting: int = None,
|
|
5006
5007
|
running: int = None,
|
|
5007
5008
|
succeeded: int = None,
|
|
5009
|
+
suspended: int = None,
|
|
5008
5010
|
):
|
|
5009
5011
|
self.deleted = deleted
|
|
5010
5012
|
self.exception = exception
|
|
5011
5013
|
self.failed = failed
|
|
5012
5014
|
self.initing = initing
|
|
5013
5015
|
self.pending = pending
|
|
5016
|
+
self.restarting = restarting
|
|
5014
5017
|
self.running = running
|
|
5015
5018
|
self.succeeded = succeeded
|
|
5019
|
+
self.suspended = suspended
|
|
5016
5020
|
|
|
5017
5021
|
def validate(self):
|
|
5018
5022
|
pass
|
|
@@ -5033,10 +5037,14 @@ class ListJobExecutorsResponseBodyExecutorStatus(TeaModel):
|
|
|
5033
5037
|
result['Initing'] = self.initing
|
|
5034
5038
|
if self.pending is not None:
|
|
5035
5039
|
result['Pending'] = self.pending
|
|
5040
|
+
if self.restarting is not None:
|
|
5041
|
+
result['Restarting'] = self.restarting
|
|
5036
5042
|
if self.running is not None:
|
|
5037
5043
|
result['Running'] = self.running
|
|
5038
5044
|
if self.succeeded is not None:
|
|
5039
5045
|
result['Succeeded'] = self.succeeded
|
|
5046
|
+
if self.suspended is not None:
|
|
5047
|
+
result['Suspended'] = self.suspended
|
|
5040
5048
|
return result
|
|
5041
5049
|
|
|
5042
5050
|
def from_map(self, m: dict = None):
|
|
@@ -5051,10 +5059,14 @@ class ListJobExecutorsResponseBodyExecutorStatus(TeaModel):
|
|
|
5051
5059
|
self.initing = m.get('Initing')
|
|
5052
5060
|
if m.get('Pending') is not None:
|
|
5053
5061
|
self.pending = m.get('Pending')
|
|
5062
|
+
if m.get('Restarting') is not None:
|
|
5063
|
+
self.restarting = m.get('Restarting')
|
|
5054
5064
|
if m.get('Running') is not None:
|
|
5055
5065
|
self.running = m.get('Running')
|
|
5056
5066
|
if m.get('Succeeded') is not None:
|
|
5057
5067
|
self.succeeded = m.get('Succeeded')
|
|
5068
|
+
if m.get('Suspended') is not None:
|
|
5069
|
+
self.suspended = m.get('Suspended')
|
|
5058
5070
|
return self
|
|
5059
5071
|
|
|
5060
5072
|
|
|
@@ -6390,6 +6402,142 @@ class RemoveImageResponse(TeaModel):
|
|
|
6390
6402
|
return self
|
|
6391
6403
|
|
|
6392
6404
|
|
|
6405
|
+
class SynchronizeAppRequest(TeaModel):
|
|
6406
|
+
def __init__(
|
|
6407
|
+
self,
|
|
6408
|
+
app_id: str = None,
|
|
6409
|
+
target_region_ids: List[str] = None,
|
|
6410
|
+
):
|
|
6411
|
+
# This parameter is required.
|
|
6412
|
+
self.app_id = app_id
|
|
6413
|
+
self.target_region_ids = target_region_ids
|
|
6414
|
+
|
|
6415
|
+
def validate(self):
|
|
6416
|
+
pass
|
|
6417
|
+
|
|
6418
|
+
def to_map(self):
|
|
6419
|
+
_map = super().to_map()
|
|
6420
|
+
if _map is not None:
|
|
6421
|
+
return _map
|
|
6422
|
+
|
|
6423
|
+
result = dict()
|
|
6424
|
+
if self.app_id is not None:
|
|
6425
|
+
result['AppId'] = self.app_id
|
|
6426
|
+
if self.target_region_ids is not None:
|
|
6427
|
+
result['TargetRegionIds'] = self.target_region_ids
|
|
6428
|
+
return result
|
|
6429
|
+
|
|
6430
|
+
def from_map(self, m: dict = None):
|
|
6431
|
+
m = m or dict()
|
|
6432
|
+
if m.get('AppId') is not None:
|
|
6433
|
+
self.app_id = m.get('AppId')
|
|
6434
|
+
if m.get('TargetRegionIds') is not None:
|
|
6435
|
+
self.target_region_ids = m.get('TargetRegionIds')
|
|
6436
|
+
return self
|
|
6437
|
+
|
|
6438
|
+
|
|
6439
|
+
class SynchronizeAppShrinkRequest(TeaModel):
|
|
6440
|
+
def __init__(
|
|
6441
|
+
self,
|
|
6442
|
+
app_id: str = None,
|
|
6443
|
+
target_region_ids_shrink: str = None,
|
|
6444
|
+
):
|
|
6445
|
+
# This parameter is required.
|
|
6446
|
+
self.app_id = app_id
|
|
6447
|
+
self.target_region_ids_shrink = target_region_ids_shrink
|
|
6448
|
+
|
|
6449
|
+
def validate(self):
|
|
6450
|
+
pass
|
|
6451
|
+
|
|
6452
|
+
def to_map(self):
|
|
6453
|
+
_map = super().to_map()
|
|
6454
|
+
if _map is not None:
|
|
6455
|
+
return _map
|
|
6456
|
+
|
|
6457
|
+
result = dict()
|
|
6458
|
+
if self.app_id is not None:
|
|
6459
|
+
result['AppId'] = self.app_id
|
|
6460
|
+
if self.target_region_ids_shrink is not None:
|
|
6461
|
+
result['TargetRegionIds'] = self.target_region_ids_shrink
|
|
6462
|
+
return result
|
|
6463
|
+
|
|
6464
|
+
def from_map(self, m: dict = None):
|
|
6465
|
+
m = m or dict()
|
|
6466
|
+
if m.get('AppId') is not None:
|
|
6467
|
+
self.app_id = m.get('AppId')
|
|
6468
|
+
if m.get('TargetRegionIds') is not None:
|
|
6469
|
+
self.target_region_ids_shrink = m.get('TargetRegionIds')
|
|
6470
|
+
return self
|
|
6471
|
+
|
|
6472
|
+
|
|
6473
|
+
class SynchronizeAppResponseBody(TeaModel):
|
|
6474
|
+
def __init__(
|
|
6475
|
+
self,
|
|
6476
|
+
request_id: str = None,
|
|
6477
|
+
):
|
|
6478
|
+
self.request_id = request_id
|
|
6479
|
+
|
|
6480
|
+
def validate(self):
|
|
6481
|
+
pass
|
|
6482
|
+
|
|
6483
|
+
def to_map(self):
|
|
6484
|
+
_map = super().to_map()
|
|
6485
|
+
if _map is not None:
|
|
6486
|
+
return _map
|
|
6487
|
+
|
|
6488
|
+
result = dict()
|
|
6489
|
+
if self.request_id is not None:
|
|
6490
|
+
result['RequestId'] = self.request_id
|
|
6491
|
+
return result
|
|
6492
|
+
|
|
6493
|
+
def from_map(self, m: dict = None):
|
|
6494
|
+
m = m or dict()
|
|
6495
|
+
if m.get('RequestId') is not None:
|
|
6496
|
+
self.request_id = m.get('RequestId')
|
|
6497
|
+
return self
|
|
6498
|
+
|
|
6499
|
+
|
|
6500
|
+
class SynchronizeAppResponse(TeaModel):
|
|
6501
|
+
def __init__(
|
|
6502
|
+
self,
|
|
6503
|
+
headers: Dict[str, str] = None,
|
|
6504
|
+
status_code: int = None,
|
|
6505
|
+
body: SynchronizeAppResponseBody = None,
|
|
6506
|
+
):
|
|
6507
|
+
self.headers = headers
|
|
6508
|
+
self.status_code = status_code
|
|
6509
|
+
self.body = body
|
|
6510
|
+
|
|
6511
|
+
def validate(self):
|
|
6512
|
+
if self.body:
|
|
6513
|
+
self.body.validate()
|
|
6514
|
+
|
|
6515
|
+
def to_map(self):
|
|
6516
|
+
_map = super().to_map()
|
|
6517
|
+
if _map is not None:
|
|
6518
|
+
return _map
|
|
6519
|
+
|
|
6520
|
+
result = dict()
|
|
6521
|
+
if self.headers is not None:
|
|
6522
|
+
result['headers'] = self.headers
|
|
6523
|
+
if self.status_code is not None:
|
|
6524
|
+
result['statusCode'] = self.status_code
|
|
6525
|
+
if self.body is not None:
|
|
6526
|
+
result['body'] = self.body.to_map()
|
|
6527
|
+
return result
|
|
6528
|
+
|
|
6529
|
+
def from_map(self, m: dict = None):
|
|
6530
|
+
m = m or dict()
|
|
6531
|
+
if m.get('headers') is not None:
|
|
6532
|
+
self.headers = m.get('headers')
|
|
6533
|
+
if m.get('statusCode') is not None:
|
|
6534
|
+
self.status_code = m.get('statusCode')
|
|
6535
|
+
if m.get('body') is not None:
|
|
6536
|
+
temp_model = SynchronizeAppResponseBody()
|
|
6537
|
+
self.body = temp_model.from_map(m['body'])
|
|
6538
|
+
return self
|
|
6539
|
+
|
|
6540
|
+
|
|
6393
6541
|
class TagResourcesRequestTag(TeaModel):
|
|
6394
6542
|
def __init__(
|
|
6395
6543
|
self,
|
|
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
|
|
|
24
24
|
"""
|
|
25
25
|
setup module for alibabacloud_ehpcinstant20230701.
|
|
26
26
|
|
|
27
|
-
Created on
|
|
27
|
+
Created on 11/08/2025
|
|
28
28
|
|
|
29
29
|
@author: Alibaba Cloud SDK
|
|
30
30
|
"""
|
|
@@ -38,7 +38,7 @@ URL = "https://github.com/aliyun/alibabacloud-python-sdk"
|
|
|
38
38
|
VERSION = __import__(PACKAGE).__version__
|
|
39
39
|
REQUIRES = [
|
|
40
40
|
"alibabacloud_tea_util>=0.3.13, <1.0.0",
|
|
41
|
-
"alibabacloud_tea_openapi>=0.3.
|
|
41
|
+
"alibabacloud_tea_openapi>=0.3.16, <1.0.0",
|
|
42
42
|
"alibabacloud_openapi_util>=0.2.2, <1.0.0",
|
|
43
43
|
"alibabacloud_endpoint_util>=0.0.4, <1.0.0"
|
|
44
44
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.0.8'
|
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/MANIFEST.in
RENAMED
|
File without changes
|
{alibabacloud_ehpcinstant20230701-2.0.8 → alibabacloud_ehpcinstant20230701-3.1.0}/README-CN.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|