alibabacloud-ehpcinstant20230701 1.0.0__py3-none-any.whl → 1.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/client.py +312 -0
- alibabacloud_ehpcinstant20230701/models.py +62 -1
- {alibabacloud_ehpcinstant20230701-1.0.0.dist-info → alibabacloud_ehpcinstant20230701-1.0.1.dist-info}/METADATA +1 -1
- alibabacloud_ehpcinstant20230701-1.0.1.dist-info/RECORD +8 -0
- alibabacloud_ehpcinstant20230701-1.0.0.dist-info/RECORD +0 -8
- {alibabacloud_ehpcinstant20230701-1.0.0.dist-info → alibabacloud_ehpcinstant20230701-1.0.1.dist-info}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.0.dist-info → alibabacloud_ehpcinstant20230701-1.0.1.dist-info}/WHEEL +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.0.dist-info → alibabacloud_ehpcinstant20230701-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.0.
|
|
1
|
+
__version__ = '1.0.1'
|
|
@@ -46,6 +46,13 @@ class Client(OpenApiClient):
|
|
|
46
46
|
tmp_req: ehpc_instant_20230701_models.AddImageRequest,
|
|
47
47
|
runtime: util_models.RuntimeOptions,
|
|
48
48
|
) -> ehpc_instant_20230701_models.AddImageResponse:
|
|
49
|
+
"""
|
|
50
|
+
@summary 添加托管侧用户自定义镜像
|
|
51
|
+
|
|
52
|
+
@param tmp_req: AddImageRequest
|
|
53
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
54
|
+
@return: AddImageResponse
|
|
55
|
+
"""
|
|
49
56
|
UtilClient.validate_model(tmp_req)
|
|
50
57
|
request = ehpc_instant_20230701_models.AddImageShrinkRequest()
|
|
51
58
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -88,6 +95,13 @@ class Client(OpenApiClient):
|
|
|
88
95
|
tmp_req: ehpc_instant_20230701_models.AddImageRequest,
|
|
89
96
|
runtime: util_models.RuntimeOptions,
|
|
90
97
|
) -> ehpc_instant_20230701_models.AddImageResponse:
|
|
98
|
+
"""
|
|
99
|
+
@summary 添加托管侧用户自定义镜像
|
|
100
|
+
|
|
101
|
+
@param tmp_req: AddImageRequest
|
|
102
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
103
|
+
@return: AddImageResponse
|
|
104
|
+
"""
|
|
91
105
|
UtilClient.validate_model(tmp_req)
|
|
92
106
|
request = ehpc_instant_20230701_models.AddImageShrinkRequest()
|
|
93
107
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -129,6 +143,12 @@ class Client(OpenApiClient):
|
|
|
129
143
|
self,
|
|
130
144
|
request: ehpc_instant_20230701_models.AddImageRequest,
|
|
131
145
|
) -> ehpc_instant_20230701_models.AddImageResponse:
|
|
146
|
+
"""
|
|
147
|
+
@summary 添加托管侧用户自定义镜像
|
|
148
|
+
|
|
149
|
+
@param request: AddImageRequest
|
|
150
|
+
@return: AddImageResponse
|
|
151
|
+
"""
|
|
132
152
|
runtime = util_models.RuntimeOptions()
|
|
133
153
|
return self.add_image_with_options(request, runtime)
|
|
134
154
|
|
|
@@ -136,6 +156,12 @@ class Client(OpenApiClient):
|
|
|
136
156
|
self,
|
|
137
157
|
request: ehpc_instant_20230701_models.AddImageRequest,
|
|
138
158
|
) -> ehpc_instant_20230701_models.AddImageResponse:
|
|
159
|
+
"""
|
|
160
|
+
@summary 添加托管侧用户自定义镜像
|
|
161
|
+
|
|
162
|
+
@param request: AddImageRequest
|
|
163
|
+
@return: AddImageResponse
|
|
164
|
+
"""
|
|
139
165
|
runtime = util_models.RuntimeOptions()
|
|
140
166
|
return await self.add_image_with_options_async(request, runtime)
|
|
141
167
|
|
|
@@ -144,6 +170,13 @@ class Client(OpenApiClient):
|
|
|
144
170
|
tmp_req: ehpc_instant_20230701_models.CreateJobRequest,
|
|
145
171
|
runtime: util_models.RuntimeOptions,
|
|
146
172
|
) -> ehpc_instant_20230701_models.CreateJobResponse:
|
|
173
|
+
"""
|
|
174
|
+
@summary 提交任务
|
|
175
|
+
|
|
176
|
+
@param tmp_req: CreateJobRequest
|
|
177
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
178
|
+
@return: CreateJobResponse
|
|
179
|
+
"""
|
|
147
180
|
UtilClient.validate_model(tmp_req)
|
|
148
181
|
request = ehpc_instant_20230701_models.CreateJobShrinkRequest()
|
|
149
182
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -184,6 +217,13 @@ class Client(OpenApiClient):
|
|
|
184
217
|
tmp_req: ehpc_instant_20230701_models.CreateJobRequest,
|
|
185
218
|
runtime: util_models.RuntimeOptions,
|
|
186
219
|
) -> ehpc_instant_20230701_models.CreateJobResponse:
|
|
220
|
+
"""
|
|
221
|
+
@summary 提交任务
|
|
222
|
+
|
|
223
|
+
@param tmp_req: CreateJobRequest
|
|
224
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
225
|
+
@return: CreateJobResponse
|
|
226
|
+
"""
|
|
187
227
|
UtilClient.validate_model(tmp_req)
|
|
188
228
|
request = ehpc_instant_20230701_models.CreateJobShrinkRequest()
|
|
189
229
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -223,6 +263,12 @@ class Client(OpenApiClient):
|
|
|
223
263
|
self,
|
|
224
264
|
request: ehpc_instant_20230701_models.CreateJobRequest,
|
|
225
265
|
) -> ehpc_instant_20230701_models.CreateJobResponse:
|
|
266
|
+
"""
|
|
267
|
+
@summary 提交任务
|
|
268
|
+
|
|
269
|
+
@param request: CreateJobRequest
|
|
270
|
+
@return: CreateJobResponse
|
|
271
|
+
"""
|
|
226
272
|
runtime = util_models.RuntimeOptions()
|
|
227
273
|
return self.create_job_with_options(request, runtime)
|
|
228
274
|
|
|
@@ -230,6 +276,12 @@ class Client(OpenApiClient):
|
|
|
230
276
|
self,
|
|
231
277
|
request: ehpc_instant_20230701_models.CreateJobRequest,
|
|
232
278
|
) -> ehpc_instant_20230701_models.CreateJobResponse:
|
|
279
|
+
"""
|
|
280
|
+
@summary 提交任务
|
|
281
|
+
|
|
282
|
+
@param request: CreateJobRequest
|
|
283
|
+
@return: CreateJobResponse
|
|
284
|
+
"""
|
|
233
285
|
runtime = util_models.RuntimeOptions()
|
|
234
286
|
return await self.create_job_with_options_async(request, runtime)
|
|
235
287
|
|
|
@@ -238,6 +290,13 @@ class Client(OpenApiClient):
|
|
|
238
290
|
tmp_req: ehpc_instant_20230701_models.DeleteJobsRequest,
|
|
239
291
|
runtime: util_models.RuntimeOptions,
|
|
240
292
|
) -> ehpc_instant_20230701_models.DeleteJobsResponse:
|
|
293
|
+
"""
|
|
294
|
+
@summary 删除作业
|
|
295
|
+
|
|
296
|
+
@param tmp_req: DeleteJobsRequest
|
|
297
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
298
|
+
@return: DeleteJobsResponse
|
|
299
|
+
"""
|
|
241
300
|
UtilClient.validate_model(tmp_req)
|
|
242
301
|
request = ehpc_instant_20230701_models.DeleteJobsShrinkRequest()
|
|
243
302
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -274,6 +333,13 @@ class Client(OpenApiClient):
|
|
|
274
333
|
tmp_req: ehpc_instant_20230701_models.DeleteJobsRequest,
|
|
275
334
|
runtime: util_models.RuntimeOptions,
|
|
276
335
|
) -> ehpc_instant_20230701_models.DeleteJobsResponse:
|
|
336
|
+
"""
|
|
337
|
+
@summary 删除作业
|
|
338
|
+
|
|
339
|
+
@param tmp_req: DeleteJobsRequest
|
|
340
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
341
|
+
@return: DeleteJobsResponse
|
|
342
|
+
"""
|
|
277
343
|
UtilClient.validate_model(tmp_req)
|
|
278
344
|
request = ehpc_instant_20230701_models.DeleteJobsShrinkRequest()
|
|
279
345
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -309,6 +375,12 @@ class Client(OpenApiClient):
|
|
|
309
375
|
self,
|
|
310
376
|
request: ehpc_instant_20230701_models.DeleteJobsRequest,
|
|
311
377
|
) -> ehpc_instant_20230701_models.DeleteJobsResponse:
|
|
378
|
+
"""
|
|
379
|
+
@summary 删除作业
|
|
380
|
+
|
|
381
|
+
@param request: DeleteJobsRequest
|
|
382
|
+
@return: DeleteJobsResponse
|
|
383
|
+
"""
|
|
312
384
|
runtime = util_models.RuntimeOptions()
|
|
313
385
|
return self.delete_jobs_with_options(request, runtime)
|
|
314
386
|
|
|
@@ -316,6 +388,12 @@ class Client(OpenApiClient):
|
|
|
316
388
|
self,
|
|
317
389
|
request: ehpc_instant_20230701_models.DeleteJobsRequest,
|
|
318
390
|
) -> ehpc_instant_20230701_models.DeleteJobsResponse:
|
|
391
|
+
"""
|
|
392
|
+
@summary 删除作业
|
|
393
|
+
|
|
394
|
+
@param request: DeleteJobsRequest
|
|
395
|
+
@return: DeleteJobsResponse
|
|
396
|
+
"""
|
|
319
397
|
runtime = util_models.RuntimeOptions()
|
|
320
398
|
return await self.delete_jobs_with_options_async(request, runtime)
|
|
321
399
|
|
|
@@ -324,6 +402,13 @@ class Client(OpenApiClient):
|
|
|
324
402
|
tmp_req: ehpc_instant_20230701_models.DescribeJobMetricDataRequest,
|
|
325
403
|
runtime: util_models.RuntimeOptions,
|
|
326
404
|
) -> ehpc_instant_20230701_models.DescribeJobMetricDataResponse:
|
|
405
|
+
"""
|
|
406
|
+
@summary 查询作业性能数据
|
|
407
|
+
|
|
408
|
+
@param tmp_req: DescribeJobMetricDataRequest
|
|
409
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
410
|
+
@return: DescribeJobMetricDataResponse
|
|
411
|
+
"""
|
|
327
412
|
UtilClient.validate_model(tmp_req)
|
|
328
413
|
request = ehpc_instant_20230701_models.DescribeJobMetricDataShrinkRequest()
|
|
329
414
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -362,6 +447,13 @@ class Client(OpenApiClient):
|
|
|
362
447
|
tmp_req: ehpc_instant_20230701_models.DescribeJobMetricDataRequest,
|
|
363
448
|
runtime: util_models.RuntimeOptions,
|
|
364
449
|
) -> ehpc_instant_20230701_models.DescribeJobMetricDataResponse:
|
|
450
|
+
"""
|
|
451
|
+
@summary 查询作业性能数据
|
|
452
|
+
|
|
453
|
+
@param tmp_req: DescribeJobMetricDataRequest
|
|
454
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
455
|
+
@return: DescribeJobMetricDataResponse
|
|
456
|
+
"""
|
|
365
457
|
UtilClient.validate_model(tmp_req)
|
|
366
458
|
request = ehpc_instant_20230701_models.DescribeJobMetricDataShrinkRequest()
|
|
367
459
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -399,6 +491,12 @@ class Client(OpenApiClient):
|
|
|
399
491
|
self,
|
|
400
492
|
request: ehpc_instant_20230701_models.DescribeJobMetricDataRequest,
|
|
401
493
|
) -> ehpc_instant_20230701_models.DescribeJobMetricDataResponse:
|
|
494
|
+
"""
|
|
495
|
+
@summary 查询作业性能数据
|
|
496
|
+
|
|
497
|
+
@param request: DescribeJobMetricDataRequest
|
|
498
|
+
@return: DescribeJobMetricDataResponse
|
|
499
|
+
"""
|
|
402
500
|
runtime = util_models.RuntimeOptions()
|
|
403
501
|
return self.describe_job_metric_data_with_options(request, runtime)
|
|
404
502
|
|
|
@@ -406,6 +504,12 @@ class Client(OpenApiClient):
|
|
|
406
504
|
self,
|
|
407
505
|
request: ehpc_instant_20230701_models.DescribeJobMetricDataRequest,
|
|
408
506
|
) -> ehpc_instant_20230701_models.DescribeJobMetricDataResponse:
|
|
507
|
+
"""
|
|
508
|
+
@summary 查询作业性能数据
|
|
509
|
+
|
|
510
|
+
@param request: DescribeJobMetricDataRequest
|
|
511
|
+
@return: DescribeJobMetricDataResponse
|
|
512
|
+
"""
|
|
409
513
|
runtime = util_models.RuntimeOptions()
|
|
410
514
|
return await self.describe_job_metric_data_with_options_async(request, runtime)
|
|
411
515
|
|
|
@@ -414,6 +518,13 @@ class Client(OpenApiClient):
|
|
|
414
518
|
tmp_req: ehpc_instant_20230701_models.DescribeJobMetricLastRequest,
|
|
415
519
|
runtime: util_models.RuntimeOptions,
|
|
416
520
|
) -> ehpc_instant_20230701_models.DescribeJobMetricLastResponse:
|
|
521
|
+
"""
|
|
522
|
+
@summary 查询作业即时监控项
|
|
523
|
+
|
|
524
|
+
@param tmp_req: DescribeJobMetricLastRequest
|
|
525
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
526
|
+
@return: DescribeJobMetricLastResponse
|
|
527
|
+
"""
|
|
417
528
|
UtilClient.validate_model(tmp_req)
|
|
418
529
|
request = ehpc_instant_20230701_models.DescribeJobMetricLastShrinkRequest()
|
|
419
530
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -450,6 +561,13 @@ class Client(OpenApiClient):
|
|
|
450
561
|
tmp_req: ehpc_instant_20230701_models.DescribeJobMetricLastRequest,
|
|
451
562
|
runtime: util_models.RuntimeOptions,
|
|
452
563
|
) -> ehpc_instant_20230701_models.DescribeJobMetricLastResponse:
|
|
564
|
+
"""
|
|
565
|
+
@summary 查询作业即时监控项
|
|
566
|
+
|
|
567
|
+
@param tmp_req: DescribeJobMetricLastRequest
|
|
568
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
569
|
+
@return: DescribeJobMetricLastResponse
|
|
570
|
+
"""
|
|
453
571
|
UtilClient.validate_model(tmp_req)
|
|
454
572
|
request = ehpc_instant_20230701_models.DescribeJobMetricLastShrinkRequest()
|
|
455
573
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -485,6 +603,12 @@ class Client(OpenApiClient):
|
|
|
485
603
|
self,
|
|
486
604
|
request: ehpc_instant_20230701_models.DescribeJobMetricLastRequest,
|
|
487
605
|
) -> ehpc_instant_20230701_models.DescribeJobMetricLastResponse:
|
|
606
|
+
"""
|
|
607
|
+
@summary 查询作业即时监控项
|
|
608
|
+
|
|
609
|
+
@param request: DescribeJobMetricLastRequest
|
|
610
|
+
@return: DescribeJobMetricLastResponse
|
|
611
|
+
"""
|
|
488
612
|
runtime = util_models.RuntimeOptions()
|
|
489
613
|
return self.describe_job_metric_last_with_options(request, runtime)
|
|
490
614
|
|
|
@@ -492,6 +616,12 @@ class Client(OpenApiClient):
|
|
|
492
616
|
self,
|
|
493
617
|
request: ehpc_instant_20230701_models.DescribeJobMetricLastRequest,
|
|
494
618
|
) -> ehpc_instant_20230701_models.DescribeJobMetricLastResponse:
|
|
619
|
+
"""
|
|
620
|
+
@summary 查询作业即时监控项
|
|
621
|
+
|
|
622
|
+
@param request: DescribeJobMetricLastRequest
|
|
623
|
+
@return: DescribeJobMetricLastResponse
|
|
624
|
+
"""
|
|
495
625
|
runtime = util_models.RuntimeOptions()
|
|
496
626
|
return await self.describe_job_metric_last_with_options_async(request, runtime)
|
|
497
627
|
|
|
@@ -500,6 +630,13 @@ class Client(OpenApiClient):
|
|
|
500
630
|
request: ehpc_instant_20230701_models.GetImageRequest,
|
|
501
631
|
runtime: util_models.RuntimeOptions,
|
|
502
632
|
) -> ehpc_instant_20230701_models.GetImageResponse:
|
|
633
|
+
"""
|
|
634
|
+
@summary 查询托管侧镜像详情。
|
|
635
|
+
|
|
636
|
+
@param request: GetImageRequest
|
|
637
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
638
|
+
@return: GetImageResponse
|
|
639
|
+
"""
|
|
503
640
|
UtilClient.validate_model(request)
|
|
504
641
|
query = {}
|
|
505
642
|
if not UtilClient.is_unset(request.image_id):
|
|
@@ -528,6 +665,13 @@ class Client(OpenApiClient):
|
|
|
528
665
|
request: ehpc_instant_20230701_models.GetImageRequest,
|
|
529
666
|
runtime: util_models.RuntimeOptions,
|
|
530
667
|
) -> ehpc_instant_20230701_models.GetImageResponse:
|
|
668
|
+
"""
|
|
669
|
+
@summary 查询托管侧镜像详情。
|
|
670
|
+
|
|
671
|
+
@param request: GetImageRequest
|
|
672
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
673
|
+
@return: GetImageResponse
|
|
674
|
+
"""
|
|
531
675
|
UtilClient.validate_model(request)
|
|
532
676
|
query = {}
|
|
533
677
|
if not UtilClient.is_unset(request.image_id):
|
|
@@ -555,6 +699,12 @@ class Client(OpenApiClient):
|
|
|
555
699
|
self,
|
|
556
700
|
request: ehpc_instant_20230701_models.GetImageRequest,
|
|
557
701
|
) -> ehpc_instant_20230701_models.GetImageResponse:
|
|
702
|
+
"""
|
|
703
|
+
@summary 查询托管侧镜像详情。
|
|
704
|
+
|
|
705
|
+
@param request: GetImageRequest
|
|
706
|
+
@return: GetImageResponse
|
|
707
|
+
"""
|
|
558
708
|
runtime = util_models.RuntimeOptions()
|
|
559
709
|
return self.get_image_with_options(request, runtime)
|
|
560
710
|
|
|
@@ -562,6 +712,12 @@ class Client(OpenApiClient):
|
|
|
562
712
|
self,
|
|
563
713
|
request: ehpc_instant_20230701_models.GetImageRequest,
|
|
564
714
|
) -> ehpc_instant_20230701_models.GetImageResponse:
|
|
715
|
+
"""
|
|
716
|
+
@summary 查询托管侧镜像详情。
|
|
717
|
+
|
|
718
|
+
@param request: GetImageRequest
|
|
719
|
+
@return: GetImageResponse
|
|
720
|
+
"""
|
|
565
721
|
runtime = util_models.RuntimeOptions()
|
|
566
722
|
return await self.get_image_with_options_async(request, runtime)
|
|
567
723
|
|
|
@@ -570,6 +726,13 @@ class Client(OpenApiClient):
|
|
|
570
726
|
request: ehpc_instant_20230701_models.GetJobRequest,
|
|
571
727
|
runtime: util_models.RuntimeOptions,
|
|
572
728
|
) -> ehpc_instant_20230701_models.GetJobResponse:
|
|
729
|
+
"""
|
|
730
|
+
@summary 查询作业详情
|
|
731
|
+
|
|
732
|
+
@param request: GetJobRequest
|
|
733
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
734
|
+
@return: GetJobResponse
|
|
735
|
+
"""
|
|
573
736
|
UtilClient.validate_model(request)
|
|
574
737
|
query = {}
|
|
575
738
|
if not UtilClient.is_unset(request.job_id):
|
|
@@ -598,6 +761,13 @@ class Client(OpenApiClient):
|
|
|
598
761
|
request: ehpc_instant_20230701_models.GetJobRequest,
|
|
599
762
|
runtime: util_models.RuntimeOptions,
|
|
600
763
|
) -> ehpc_instant_20230701_models.GetJobResponse:
|
|
764
|
+
"""
|
|
765
|
+
@summary 查询作业详情
|
|
766
|
+
|
|
767
|
+
@param request: GetJobRequest
|
|
768
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
769
|
+
@return: GetJobResponse
|
|
770
|
+
"""
|
|
601
771
|
UtilClient.validate_model(request)
|
|
602
772
|
query = {}
|
|
603
773
|
if not UtilClient.is_unset(request.job_id):
|
|
@@ -625,6 +795,12 @@ class Client(OpenApiClient):
|
|
|
625
795
|
self,
|
|
626
796
|
request: ehpc_instant_20230701_models.GetJobRequest,
|
|
627
797
|
) -> ehpc_instant_20230701_models.GetJobResponse:
|
|
798
|
+
"""
|
|
799
|
+
@summary 查询作业详情
|
|
800
|
+
|
|
801
|
+
@param request: GetJobRequest
|
|
802
|
+
@return: GetJobResponse
|
|
803
|
+
"""
|
|
628
804
|
runtime = util_models.RuntimeOptions()
|
|
629
805
|
return self.get_job_with_options(request, runtime)
|
|
630
806
|
|
|
@@ -632,6 +808,12 @@ class Client(OpenApiClient):
|
|
|
632
808
|
self,
|
|
633
809
|
request: ehpc_instant_20230701_models.GetJobRequest,
|
|
634
810
|
) -> ehpc_instant_20230701_models.GetJobResponse:
|
|
811
|
+
"""
|
|
812
|
+
@summary 查询作业详情
|
|
813
|
+
|
|
814
|
+
@param request: GetJobRequest
|
|
815
|
+
@return: GetJobResponse
|
|
816
|
+
"""
|
|
635
817
|
runtime = util_models.RuntimeOptions()
|
|
636
818
|
return await self.get_job_with_options_async(request, runtime)
|
|
637
819
|
|
|
@@ -640,6 +822,13 @@ class Client(OpenApiClient):
|
|
|
640
822
|
tmp_req: ehpc_instant_20230701_models.ListExecutorsRequest,
|
|
641
823
|
runtime: util_models.RuntimeOptions,
|
|
642
824
|
) -> ehpc_instant_20230701_models.ListExecutorsResponse:
|
|
825
|
+
"""
|
|
826
|
+
@summary 查询全局Executor信息
|
|
827
|
+
|
|
828
|
+
@param tmp_req: ListExecutorsRequest
|
|
829
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
830
|
+
@return: ListExecutorsResponse
|
|
831
|
+
"""
|
|
643
832
|
UtilClient.validate_model(tmp_req)
|
|
644
833
|
request = ehpc_instant_20230701_models.ListExecutorsShrinkRequest()
|
|
645
834
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -676,6 +865,13 @@ class Client(OpenApiClient):
|
|
|
676
865
|
tmp_req: ehpc_instant_20230701_models.ListExecutorsRequest,
|
|
677
866
|
runtime: util_models.RuntimeOptions,
|
|
678
867
|
) -> ehpc_instant_20230701_models.ListExecutorsResponse:
|
|
868
|
+
"""
|
|
869
|
+
@summary 查询全局Executor信息
|
|
870
|
+
|
|
871
|
+
@param tmp_req: ListExecutorsRequest
|
|
872
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
873
|
+
@return: ListExecutorsResponse
|
|
874
|
+
"""
|
|
679
875
|
UtilClient.validate_model(tmp_req)
|
|
680
876
|
request = ehpc_instant_20230701_models.ListExecutorsShrinkRequest()
|
|
681
877
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -711,6 +907,12 @@ class Client(OpenApiClient):
|
|
|
711
907
|
self,
|
|
712
908
|
request: ehpc_instant_20230701_models.ListExecutorsRequest,
|
|
713
909
|
) -> ehpc_instant_20230701_models.ListExecutorsResponse:
|
|
910
|
+
"""
|
|
911
|
+
@summary 查询全局Executor信息
|
|
912
|
+
|
|
913
|
+
@param request: ListExecutorsRequest
|
|
914
|
+
@return: ListExecutorsResponse
|
|
915
|
+
"""
|
|
714
916
|
runtime = util_models.RuntimeOptions()
|
|
715
917
|
return self.list_executors_with_options(request, runtime)
|
|
716
918
|
|
|
@@ -718,6 +920,12 @@ class Client(OpenApiClient):
|
|
|
718
920
|
self,
|
|
719
921
|
request: ehpc_instant_20230701_models.ListExecutorsRequest,
|
|
720
922
|
) -> ehpc_instant_20230701_models.ListExecutorsResponse:
|
|
923
|
+
"""
|
|
924
|
+
@summary 查询全局Executor信息
|
|
925
|
+
|
|
926
|
+
@param request: ListExecutorsRequest
|
|
927
|
+
@return: ListExecutorsResponse
|
|
928
|
+
"""
|
|
721
929
|
runtime = util_models.RuntimeOptions()
|
|
722
930
|
return await self.list_executors_with_options_async(request, runtime)
|
|
723
931
|
|
|
@@ -726,6 +934,13 @@ class Client(OpenApiClient):
|
|
|
726
934
|
tmp_req: ehpc_instant_20230701_models.ListImagesRequest,
|
|
727
935
|
runtime: util_models.RuntimeOptions,
|
|
728
936
|
) -> ehpc_instant_20230701_models.ListImagesResponse:
|
|
937
|
+
"""
|
|
938
|
+
@summary 查看托管侧镜像列表
|
|
939
|
+
|
|
940
|
+
@param tmp_req: ListImagesRequest
|
|
941
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
942
|
+
@return: ListImagesResponse
|
|
943
|
+
"""
|
|
729
944
|
UtilClient.validate_model(tmp_req)
|
|
730
945
|
request = ehpc_instant_20230701_models.ListImagesShrinkRequest()
|
|
731
946
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -766,6 +981,13 @@ class Client(OpenApiClient):
|
|
|
766
981
|
tmp_req: ehpc_instant_20230701_models.ListImagesRequest,
|
|
767
982
|
runtime: util_models.RuntimeOptions,
|
|
768
983
|
) -> ehpc_instant_20230701_models.ListImagesResponse:
|
|
984
|
+
"""
|
|
985
|
+
@summary 查看托管侧镜像列表
|
|
986
|
+
|
|
987
|
+
@param tmp_req: ListImagesRequest
|
|
988
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
989
|
+
@return: ListImagesResponse
|
|
990
|
+
"""
|
|
769
991
|
UtilClient.validate_model(tmp_req)
|
|
770
992
|
request = ehpc_instant_20230701_models.ListImagesShrinkRequest()
|
|
771
993
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -805,6 +1027,12 @@ class Client(OpenApiClient):
|
|
|
805
1027
|
self,
|
|
806
1028
|
request: ehpc_instant_20230701_models.ListImagesRequest,
|
|
807
1029
|
) -> ehpc_instant_20230701_models.ListImagesResponse:
|
|
1030
|
+
"""
|
|
1031
|
+
@summary 查看托管侧镜像列表
|
|
1032
|
+
|
|
1033
|
+
@param request: ListImagesRequest
|
|
1034
|
+
@return: ListImagesResponse
|
|
1035
|
+
"""
|
|
808
1036
|
runtime = util_models.RuntimeOptions()
|
|
809
1037
|
return self.list_images_with_options(request, runtime)
|
|
810
1038
|
|
|
@@ -812,6 +1040,12 @@ class Client(OpenApiClient):
|
|
|
812
1040
|
self,
|
|
813
1041
|
request: ehpc_instant_20230701_models.ListImagesRequest,
|
|
814
1042
|
) -> ehpc_instant_20230701_models.ListImagesResponse:
|
|
1043
|
+
"""
|
|
1044
|
+
@summary 查看托管侧镜像列表
|
|
1045
|
+
|
|
1046
|
+
@param request: ListImagesRequest
|
|
1047
|
+
@return: ListImagesResponse
|
|
1048
|
+
"""
|
|
815
1049
|
runtime = util_models.RuntimeOptions()
|
|
816
1050
|
return await self.list_images_with_options_async(request, runtime)
|
|
817
1051
|
|
|
@@ -820,6 +1054,13 @@ class Client(OpenApiClient):
|
|
|
820
1054
|
request: ehpc_instant_20230701_models.ListJobExecutorsRequest,
|
|
821
1055
|
runtime: util_models.RuntimeOptions,
|
|
822
1056
|
) -> ehpc_instant_20230701_models.ListJobExecutorsResponse:
|
|
1057
|
+
"""
|
|
1058
|
+
@summary 查询作业Executor信息
|
|
1059
|
+
|
|
1060
|
+
@param request: ListJobExecutorsRequest
|
|
1061
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1062
|
+
@return: ListJobExecutorsResponse
|
|
1063
|
+
"""
|
|
823
1064
|
UtilClient.validate_model(request)
|
|
824
1065
|
query = {}
|
|
825
1066
|
if not UtilClient.is_unset(request.job_id):
|
|
@@ -854,6 +1095,13 @@ class Client(OpenApiClient):
|
|
|
854
1095
|
request: ehpc_instant_20230701_models.ListJobExecutorsRequest,
|
|
855
1096
|
runtime: util_models.RuntimeOptions,
|
|
856
1097
|
) -> ehpc_instant_20230701_models.ListJobExecutorsResponse:
|
|
1098
|
+
"""
|
|
1099
|
+
@summary 查询作业Executor信息
|
|
1100
|
+
|
|
1101
|
+
@param request: ListJobExecutorsRequest
|
|
1102
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1103
|
+
@return: ListJobExecutorsResponse
|
|
1104
|
+
"""
|
|
857
1105
|
UtilClient.validate_model(request)
|
|
858
1106
|
query = {}
|
|
859
1107
|
if not UtilClient.is_unset(request.job_id):
|
|
@@ -887,6 +1135,12 @@ class Client(OpenApiClient):
|
|
|
887
1135
|
self,
|
|
888
1136
|
request: ehpc_instant_20230701_models.ListJobExecutorsRequest,
|
|
889
1137
|
) -> ehpc_instant_20230701_models.ListJobExecutorsResponse:
|
|
1138
|
+
"""
|
|
1139
|
+
@summary 查询作业Executor信息
|
|
1140
|
+
|
|
1141
|
+
@param request: ListJobExecutorsRequest
|
|
1142
|
+
@return: ListJobExecutorsResponse
|
|
1143
|
+
"""
|
|
890
1144
|
runtime = util_models.RuntimeOptions()
|
|
891
1145
|
return self.list_job_executors_with_options(request, runtime)
|
|
892
1146
|
|
|
@@ -894,6 +1148,12 @@ class Client(OpenApiClient):
|
|
|
894
1148
|
self,
|
|
895
1149
|
request: ehpc_instant_20230701_models.ListJobExecutorsRequest,
|
|
896
1150
|
) -> ehpc_instant_20230701_models.ListJobExecutorsResponse:
|
|
1151
|
+
"""
|
|
1152
|
+
@summary 查询作业Executor信息
|
|
1153
|
+
|
|
1154
|
+
@param request: ListJobExecutorsRequest
|
|
1155
|
+
@return: ListJobExecutorsResponse
|
|
1156
|
+
"""
|
|
897
1157
|
runtime = util_models.RuntimeOptions()
|
|
898
1158
|
return await self.list_job_executors_with_options_async(request, runtime)
|
|
899
1159
|
|
|
@@ -902,6 +1162,13 @@ class Client(OpenApiClient):
|
|
|
902
1162
|
tmp_req: ehpc_instant_20230701_models.ListJobsRequest,
|
|
903
1163
|
runtime: util_models.RuntimeOptions,
|
|
904
1164
|
) -> ehpc_instant_20230701_models.ListJobsResponse:
|
|
1165
|
+
"""
|
|
1166
|
+
@summary 查询作业列表
|
|
1167
|
+
|
|
1168
|
+
@param tmp_req: ListJobsRequest
|
|
1169
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1170
|
+
@return: ListJobsResponse
|
|
1171
|
+
"""
|
|
905
1172
|
UtilClient.validate_model(tmp_req)
|
|
906
1173
|
request = ehpc_instant_20230701_models.ListJobsShrinkRequest()
|
|
907
1174
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -942,6 +1209,13 @@ class Client(OpenApiClient):
|
|
|
942
1209
|
tmp_req: ehpc_instant_20230701_models.ListJobsRequest,
|
|
943
1210
|
runtime: util_models.RuntimeOptions,
|
|
944
1211
|
) -> ehpc_instant_20230701_models.ListJobsResponse:
|
|
1212
|
+
"""
|
|
1213
|
+
@summary 查询作业列表
|
|
1214
|
+
|
|
1215
|
+
@param tmp_req: ListJobsRequest
|
|
1216
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1217
|
+
@return: ListJobsResponse
|
|
1218
|
+
"""
|
|
945
1219
|
UtilClient.validate_model(tmp_req)
|
|
946
1220
|
request = ehpc_instant_20230701_models.ListJobsShrinkRequest()
|
|
947
1221
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
@@ -981,6 +1255,12 @@ class Client(OpenApiClient):
|
|
|
981
1255
|
self,
|
|
982
1256
|
request: ehpc_instant_20230701_models.ListJobsRequest,
|
|
983
1257
|
) -> ehpc_instant_20230701_models.ListJobsResponse:
|
|
1258
|
+
"""
|
|
1259
|
+
@summary 查询作业列表
|
|
1260
|
+
|
|
1261
|
+
@param request: ListJobsRequest
|
|
1262
|
+
@return: ListJobsResponse
|
|
1263
|
+
"""
|
|
984
1264
|
runtime = util_models.RuntimeOptions()
|
|
985
1265
|
return self.list_jobs_with_options(request, runtime)
|
|
986
1266
|
|
|
@@ -988,6 +1268,12 @@ class Client(OpenApiClient):
|
|
|
988
1268
|
self,
|
|
989
1269
|
request: ehpc_instant_20230701_models.ListJobsRequest,
|
|
990
1270
|
) -> ehpc_instant_20230701_models.ListJobsResponse:
|
|
1271
|
+
"""
|
|
1272
|
+
@summary 查询作业列表
|
|
1273
|
+
|
|
1274
|
+
@param request: ListJobsRequest
|
|
1275
|
+
@return: ListJobsResponse
|
|
1276
|
+
"""
|
|
991
1277
|
runtime = util_models.RuntimeOptions()
|
|
992
1278
|
return await self.list_jobs_with_options_async(request, runtime)
|
|
993
1279
|
|
|
@@ -996,6 +1282,13 @@ class Client(OpenApiClient):
|
|
|
996
1282
|
request: ehpc_instant_20230701_models.RemoveImageRequest,
|
|
997
1283
|
runtime: util_models.RuntimeOptions,
|
|
998
1284
|
) -> ehpc_instant_20230701_models.RemoveImageResponse:
|
|
1285
|
+
"""
|
|
1286
|
+
@summary 移除托管侧镜像信息。
|
|
1287
|
+
|
|
1288
|
+
@param request: RemoveImageRequest
|
|
1289
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1290
|
+
@return: RemoveImageResponse
|
|
1291
|
+
"""
|
|
999
1292
|
UtilClient.validate_model(request)
|
|
1000
1293
|
query = {}
|
|
1001
1294
|
if not UtilClient.is_unset(request.image_id):
|
|
@@ -1024,6 +1317,13 @@ class Client(OpenApiClient):
|
|
|
1024
1317
|
request: ehpc_instant_20230701_models.RemoveImageRequest,
|
|
1025
1318
|
runtime: util_models.RuntimeOptions,
|
|
1026
1319
|
) -> ehpc_instant_20230701_models.RemoveImageResponse:
|
|
1320
|
+
"""
|
|
1321
|
+
@summary 移除托管侧镜像信息。
|
|
1322
|
+
|
|
1323
|
+
@param request: RemoveImageRequest
|
|
1324
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
1325
|
+
@return: RemoveImageResponse
|
|
1326
|
+
"""
|
|
1027
1327
|
UtilClient.validate_model(request)
|
|
1028
1328
|
query = {}
|
|
1029
1329
|
if not UtilClient.is_unset(request.image_id):
|
|
@@ -1051,6 +1351,12 @@ class Client(OpenApiClient):
|
|
|
1051
1351
|
self,
|
|
1052
1352
|
request: ehpc_instant_20230701_models.RemoveImageRequest,
|
|
1053
1353
|
) -> ehpc_instant_20230701_models.RemoveImageResponse:
|
|
1354
|
+
"""
|
|
1355
|
+
@summary 移除托管侧镜像信息。
|
|
1356
|
+
|
|
1357
|
+
@param request: RemoveImageRequest
|
|
1358
|
+
@return: RemoveImageResponse
|
|
1359
|
+
"""
|
|
1054
1360
|
runtime = util_models.RuntimeOptions()
|
|
1055
1361
|
return self.remove_image_with_options(request, runtime)
|
|
1056
1362
|
|
|
@@ -1058,5 +1364,11 @@ class Client(OpenApiClient):
|
|
|
1058
1364
|
self,
|
|
1059
1365
|
request: ehpc_instant_20230701_models.RemoveImageRequest,
|
|
1060
1366
|
) -> ehpc_instant_20230701_models.RemoveImageResponse:
|
|
1367
|
+
"""
|
|
1368
|
+
@summary 移除托管侧镜像信息。
|
|
1369
|
+
|
|
1370
|
+
@param request: RemoveImageRequest
|
|
1371
|
+
@return: RemoveImageResponse
|
|
1372
|
+
"""
|
|
1061
1373
|
runtime = util_models.RuntimeOptions()
|
|
1062
1374
|
return await self.remove_image_with_options_async(request, runtime)
|
|
@@ -135,6 +135,7 @@ class AddImageRequest(TeaModel):
|
|
|
135
135
|
self.container_image_spec = container_image_spec
|
|
136
136
|
self.description = description
|
|
137
137
|
self.image_version = image_version
|
|
138
|
+
# This parameter is required.
|
|
138
139
|
self.name = name
|
|
139
140
|
self.vmimage_spec = vmimage_spec
|
|
140
141
|
|
|
@@ -191,6 +192,7 @@ class AddImageShrinkRequest(TeaModel):
|
|
|
191
192
|
self.container_image_spec_shrink = container_image_spec_shrink
|
|
192
193
|
self.description = description
|
|
193
194
|
self.image_version = image_version
|
|
195
|
+
# This parameter is required.
|
|
194
196
|
self.name = name
|
|
195
197
|
self.vmimage_spec_shrink = vmimage_spec_shrink
|
|
196
198
|
|
|
@@ -569,6 +571,7 @@ class CreateJobRequestTasksTaskSpecTaskExecutorContainer(TeaModel):
|
|
|
569
571
|
):
|
|
570
572
|
self.command = command
|
|
571
573
|
self.environment_vars = environment_vars
|
|
574
|
+
# This parameter is required.
|
|
572
575
|
self.image = image
|
|
573
576
|
self.working_dir = working_dir
|
|
574
577
|
|
|
@@ -619,6 +622,7 @@ class CreateJobRequestTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
619
622
|
prolog_script: str = None,
|
|
620
623
|
script: str = None,
|
|
621
624
|
):
|
|
625
|
+
# This parameter is required.
|
|
622
626
|
self.image = image
|
|
623
627
|
self.prolog_script = prolog_script
|
|
624
628
|
self.script = script
|
|
@@ -736,6 +740,7 @@ class CreateJobRequestTasksTaskSpec(TeaModel):
|
|
|
736
740
|
volume_mount: List[CreateJobRequestTasksTaskSpecVolumeMount] = None,
|
|
737
741
|
):
|
|
738
742
|
self.resource = resource
|
|
743
|
+
# This parameter is required.
|
|
739
744
|
self.task_executor = task_executor
|
|
740
745
|
self.volume_mount = volume_mount
|
|
741
746
|
|
|
@@ -847,7 +852,9 @@ class CreateJobRequest(TeaModel):
|
|
|
847
852
|
):
|
|
848
853
|
self.deployment_policy = deployment_policy
|
|
849
854
|
self.job_description = job_description
|
|
855
|
+
# This parameter is required.
|
|
850
856
|
self.job_name = job_name
|
|
857
|
+
# This parameter is required.
|
|
851
858
|
self.tasks = tasks
|
|
852
859
|
|
|
853
860
|
def validate(self):
|
|
@@ -903,7 +910,9 @@ class CreateJobShrinkRequest(TeaModel):
|
|
|
903
910
|
):
|
|
904
911
|
self.deployment_policy_shrink = deployment_policy_shrink
|
|
905
912
|
self.job_description = job_description
|
|
913
|
+
# This parameter is required.
|
|
906
914
|
self.job_name = job_name
|
|
915
|
+
# This parameter is required.
|
|
907
916
|
self.tasks_shrink = tasks_shrink
|
|
908
917
|
|
|
909
918
|
def validate(self):
|
|
@@ -938,17 +947,55 @@ class CreateJobShrinkRequest(TeaModel):
|
|
|
938
947
|
return self
|
|
939
948
|
|
|
940
949
|
|
|
950
|
+
class CreateJobResponseBodyTasks(TeaModel):
|
|
951
|
+
def __init__(
|
|
952
|
+
self,
|
|
953
|
+
executor_ids: List[str] = None,
|
|
954
|
+
task_name: str = None,
|
|
955
|
+
):
|
|
956
|
+
self.executor_ids = executor_ids
|
|
957
|
+
self.task_name = task_name
|
|
958
|
+
|
|
959
|
+
def validate(self):
|
|
960
|
+
pass
|
|
961
|
+
|
|
962
|
+
def to_map(self):
|
|
963
|
+
_map = super().to_map()
|
|
964
|
+
if _map is not None:
|
|
965
|
+
return _map
|
|
966
|
+
|
|
967
|
+
result = dict()
|
|
968
|
+
if self.executor_ids is not None:
|
|
969
|
+
result['ExecutorIds'] = self.executor_ids
|
|
970
|
+
if self.task_name is not None:
|
|
971
|
+
result['TaskName'] = self.task_name
|
|
972
|
+
return result
|
|
973
|
+
|
|
974
|
+
def from_map(self, m: dict = None):
|
|
975
|
+
m = m or dict()
|
|
976
|
+
if m.get('ExecutorIds') is not None:
|
|
977
|
+
self.executor_ids = m.get('ExecutorIds')
|
|
978
|
+
if m.get('TaskName') is not None:
|
|
979
|
+
self.task_name = m.get('TaskName')
|
|
980
|
+
return self
|
|
981
|
+
|
|
982
|
+
|
|
941
983
|
class CreateJobResponseBody(TeaModel):
|
|
942
984
|
def __init__(
|
|
943
985
|
self,
|
|
944
986
|
job_id: str = None,
|
|
945
987
|
request_id: str = None,
|
|
988
|
+
tasks: List[CreateJobResponseBodyTasks] = None,
|
|
946
989
|
):
|
|
947
990
|
self.job_id = job_id
|
|
948
991
|
self.request_id = request_id
|
|
992
|
+
self.tasks = tasks
|
|
949
993
|
|
|
950
994
|
def validate(self):
|
|
951
|
-
|
|
995
|
+
if self.tasks:
|
|
996
|
+
for k in self.tasks:
|
|
997
|
+
if k:
|
|
998
|
+
k.validate()
|
|
952
999
|
|
|
953
1000
|
def to_map(self):
|
|
954
1001
|
_map = super().to_map()
|
|
@@ -960,6 +1007,10 @@ class CreateJobResponseBody(TeaModel):
|
|
|
960
1007
|
result['JobId'] = self.job_id
|
|
961
1008
|
if self.request_id is not None:
|
|
962
1009
|
result['RequestId'] = self.request_id
|
|
1010
|
+
result['Tasks'] = []
|
|
1011
|
+
if self.tasks is not None:
|
|
1012
|
+
for k in self.tasks:
|
|
1013
|
+
result['Tasks'].append(k.to_map() if k else None)
|
|
963
1014
|
return result
|
|
964
1015
|
|
|
965
1016
|
def from_map(self, m: dict = None):
|
|
@@ -968,6 +1019,11 @@ class CreateJobResponseBody(TeaModel):
|
|
|
968
1019
|
self.job_id = m.get('JobId')
|
|
969
1020
|
if m.get('RequestId') is not None:
|
|
970
1021
|
self.request_id = m.get('RequestId')
|
|
1022
|
+
self.tasks = []
|
|
1023
|
+
if m.get('Tasks') is not None:
|
|
1024
|
+
for k in m.get('Tasks'):
|
|
1025
|
+
temp_model = CreateJobResponseBodyTasks()
|
|
1026
|
+
self.tasks.append(temp_model.from_map(k))
|
|
971
1027
|
return self
|
|
972
1028
|
|
|
973
1029
|
|
|
@@ -1596,6 +1652,7 @@ class GetImageRequest(TeaModel):
|
|
|
1596
1652
|
self,
|
|
1597
1653
|
image_id: str = None,
|
|
1598
1654
|
):
|
|
1655
|
+
# This parameter is required.
|
|
1599
1656
|
self.image_id = image_id
|
|
1600
1657
|
|
|
1601
1658
|
def validate(self):
|
|
@@ -1770,6 +1827,7 @@ class GetImageResponseBodyImage(TeaModel):
|
|
|
1770
1827
|
self.container_image_spec = container_image_spec
|
|
1771
1828
|
self.create_time = create_time
|
|
1772
1829
|
self.description = description
|
|
1830
|
+
# This parameter is required.
|
|
1773
1831
|
self.image_type = image_type
|
|
1774
1832
|
self.name = name
|
|
1775
1833
|
self.size = size
|
|
@@ -2976,7 +3034,9 @@ class ListImagesResponseBodyImages(TeaModel):
|
|
|
2976
3034
|
):
|
|
2977
3035
|
self.create_time = create_time
|
|
2978
3036
|
self.description = description
|
|
3037
|
+
# This parameter is required.
|
|
2979
3038
|
self.image_id = image_id
|
|
3039
|
+
# This parameter is required.
|
|
2980
3040
|
self.image_type = image_type
|
|
2981
3041
|
self.name = name
|
|
2982
3042
|
self.version = version
|
|
@@ -3718,6 +3778,7 @@ class RemoveImageRequest(TeaModel):
|
|
|
3718
3778
|
self,
|
|
3719
3779
|
image_id: str = None,
|
|
3720
3780
|
):
|
|
3781
|
+
# This parameter is required.
|
|
3721
3782
|
self.image_id = image_id
|
|
3722
3783
|
|
|
3723
3784
|
def validate(self):
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_ehpcinstant20230701/__init__.py,sha256=bMIenWosteoeUs51RbaWVZetIuzRhWymuyy-n0rfK0I,21
|
|
2
|
+
alibabacloud_ehpcinstant20230701/client.py,sha256=u-1sloYo2BNgjs8aly3g53wfc0AJU55dzP1zrRuGkUY,53986
|
|
3
|
+
alibabacloud_ehpcinstant20230701/models.py,sha256=sXDpK79hCoFa6HGByS8RCTib6hqj6a5CNcR8gIOGFTg,120500
|
|
4
|
+
alibabacloud_ehpcinstant20230701-1.0.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_ehpcinstant20230701-1.0.1.dist-info/METADATA,sha256=UazRjYSxgnFsPgNW1hS-w66A3rj9S-x4yQpFt-Sjhn4,2339
|
|
6
|
+
alibabacloud_ehpcinstant20230701-1.0.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
7
|
+
alibabacloud_ehpcinstant20230701-1.0.1.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
|
|
8
|
+
alibabacloud_ehpcinstant20230701-1.0.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_ehpcinstant20230701/__init__.py,sha256=dHuoY6voK7np1A7oRzw1xyBy7CK9_KBAc4FCKW29uRQ,21
|
|
2
|
-
alibabacloud_ehpcinstant20230701/client.py,sha256=xeZH8aUmai97jB2FvVGAPoa5uOvtCdDp-WNcZoj38jc,44754
|
|
3
|
-
alibabacloud_ehpcinstant20230701/models.py,sha256=tuVJPVYF8jX9rPEKRVpRAwkZ_NSnYNIN7YoctySzm-M,118528
|
|
4
|
-
alibabacloud_ehpcinstant20230701-1.0.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_ehpcinstant20230701-1.0.0.dist-info/METADATA,sha256=Db6pH1ELVdrRXw9EPCcCef6FyO8e0GCQhWLamdHbQz8,2339
|
|
6
|
-
alibabacloud_ehpcinstant20230701-1.0.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
7
|
-
alibabacloud_ehpcinstant20230701-1.0.0.dist-info/top_level.txt,sha256=2xOp8gwGZyTr4yO4gb1EEvC7CFiyZnvob-AgjZHkZJc,33
|
|
8
|
-
alibabacloud_ehpcinstant20230701-1.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|