alibabacloud-ehpcinstant20230701 1.0.1__tar.gz → 1.0.2__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-1.0.2/ChangeLog.md +7 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/PKG-INFO +1 -1
- alibabacloud_ehpcinstant20230701-1.0.2/alibabacloud_ehpcinstant20230701/__init__.py +1 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/alibabacloud_ehpcinstant20230701/client.py +16 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/alibabacloud_ehpcinstant20230701/models.py +67 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/alibabacloud_ehpcinstant20230701.egg-info/PKG-INFO +1 -1
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/alibabacloud_ehpcinstant20230701.egg-info/requires.txt +2 -2
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/setup.py +3 -3
- alibabacloud_ehpcinstant20230701-1.0.1/ChangeLog.md +0 -3
- alibabacloud_ehpcinstant20230701-1.0.1/alibabacloud_ehpcinstant20230701/__init__.py +0 -1
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/LICENSE +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/MANIFEST.in +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/README-CN.md +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/README.md +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/alibabacloud_ehpcinstant20230701.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/alibabacloud_ehpcinstant20230701.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/alibabacloud_ehpcinstant20230701.egg-info/top_level.txt +0 -0
- {alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '1.0.2'
|
|
@@ -639,8 +639,12 @@ class Client(OpenApiClient):
|
|
|
639
639
|
"""
|
|
640
640
|
UtilClient.validate_model(request)
|
|
641
641
|
query = {}
|
|
642
|
+
if not UtilClient.is_unset(request.image_category):
|
|
643
|
+
query['ImageCategory'] = request.image_category
|
|
642
644
|
if not UtilClient.is_unset(request.image_id):
|
|
643
645
|
query['ImageId'] = request.image_id
|
|
646
|
+
if not UtilClient.is_unset(request.image_type):
|
|
647
|
+
query['ImageType'] = request.image_type
|
|
644
648
|
req = open_api_models.OpenApiRequest(
|
|
645
649
|
query=OpenApiUtilClient.query(query)
|
|
646
650
|
)
|
|
@@ -674,8 +678,12 @@ class Client(OpenApiClient):
|
|
|
674
678
|
"""
|
|
675
679
|
UtilClient.validate_model(request)
|
|
676
680
|
query = {}
|
|
681
|
+
if not UtilClient.is_unset(request.image_category):
|
|
682
|
+
query['ImageCategory'] = request.image_category
|
|
677
683
|
if not UtilClient.is_unset(request.image_id):
|
|
678
684
|
query['ImageId'] = request.image_id
|
|
685
|
+
if not UtilClient.is_unset(request.image_type):
|
|
686
|
+
query['ImageType'] = request.image_type
|
|
679
687
|
req = open_api_models.OpenApiRequest(
|
|
680
688
|
query=OpenApiUtilClient.query(query)
|
|
681
689
|
)
|
|
@@ -949,10 +957,14 @@ class Client(OpenApiClient):
|
|
|
949
957
|
if not UtilClient.is_unset(tmp_req.image_names):
|
|
950
958
|
request.image_names_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.image_names, 'ImageNames', 'json')
|
|
951
959
|
query = {}
|
|
960
|
+
if not UtilClient.is_unset(request.image_category):
|
|
961
|
+
query['ImageCategory'] = request.image_category
|
|
952
962
|
if not UtilClient.is_unset(request.image_ids_shrink):
|
|
953
963
|
query['ImageIds'] = request.image_ids_shrink
|
|
954
964
|
if not UtilClient.is_unset(request.image_names_shrink):
|
|
955
965
|
query['ImageNames'] = request.image_names_shrink
|
|
966
|
+
if not UtilClient.is_unset(request.image_type):
|
|
967
|
+
query['ImageType'] = request.image_type
|
|
956
968
|
if not UtilClient.is_unset(request.page_number):
|
|
957
969
|
query['PageNumber'] = request.page_number
|
|
958
970
|
if not UtilClient.is_unset(request.page_size):
|
|
@@ -996,10 +1008,14 @@ class Client(OpenApiClient):
|
|
|
996
1008
|
if not UtilClient.is_unset(tmp_req.image_names):
|
|
997
1009
|
request.image_names_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.image_names, 'ImageNames', 'json')
|
|
998
1010
|
query = {}
|
|
1011
|
+
if not UtilClient.is_unset(request.image_category):
|
|
1012
|
+
query['ImageCategory'] = request.image_category
|
|
999
1013
|
if not UtilClient.is_unset(request.image_ids_shrink):
|
|
1000
1014
|
query['ImageIds'] = request.image_ids_shrink
|
|
1001
1015
|
if not UtilClient.is_unset(request.image_names_shrink):
|
|
1002
1016
|
query['ImageNames'] = request.image_names_shrink
|
|
1017
|
+
if not UtilClient.is_unset(request.image_type):
|
|
1018
|
+
query['ImageType'] = request.image_type
|
|
1003
1019
|
if not UtilClient.is_unset(request.page_number):
|
|
1004
1020
|
query['PageNumber'] = request.page_number
|
|
1005
1021
|
if not UtilClient.is_unset(request.page_size):
|
|
@@ -564,11 +564,13 @@ class CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars(TeaModel
|
|
|
564
564
|
class CreateJobRequestTasksTaskSpecTaskExecutorContainer(TeaModel):
|
|
565
565
|
def __init__(
|
|
566
566
|
self,
|
|
567
|
+
app_id: str = None,
|
|
567
568
|
command: List[str] = None,
|
|
568
569
|
environment_vars: List[CreateJobRequestTasksTaskSpecTaskExecutorContainerEnvironmentVars] = None,
|
|
569
570
|
image: str = None,
|
|
570
571
|
working_dir: str = None,
|
|
571
572
|
):
|
|
573
|
+
self.app_id = app_id
|
|
572
574
|
self.command = command
|
|
573
575
|
self.environment_vars = environment_vars
|
|
574
576
|
# This parameter is required.
|
|
@@ -587,6 +589,8 @@ class CreateJobRequestTasksTaskSpecTaskExecutorContainer(TeaModel):
|
|
|
587
589
|
return _map
|
|
588
590
|
|
|
589
591
|
result = dict()
|
|
592
|
+
if self.app_id is not None:
|
|
593
|
+
result['AppId'] = self.app_id
|
|
590
594
|
if self.command is not None:
|
|
591
595
|
result['Command'] = self.command
|
|
592
596
|
result['EnvironmentVars'] = []
|
|
@@ -601,6 +605,8 @@ class CreateJobRequestTasksTaskSpecTaskExecutorContainer(TeaModel):
|
|
|
601
605
|
|
|
602
606
|
def from_map(self, m: dict = None):
|
|
603
607
|
m = m or dict()
|
|
608
|
+
if m.get('AppId') is not None:
|
|
609
|
+
self.app_id = m.get('AppId')
|
|
604
610
|
if m.get('Command') is not None:
|
|
605
611
|
self.command = m.get('Command')
|
|
606
612
|
self.environment_vars = []
|
|
@@ -618,10 +624,12 @@ class CreateJobRequestTasksTaskSpecTaskExecutorContainer(TeaModel):
|
|
|
618
624
|
class CreateJobRequestTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
619
625
|
def __init__(
|
|
620
626
|
self,
|
|
627
|
+
app_id: str = None,
|
|
621
628
|
image: str = None,
|
|
622
629
|
prolog_script: str = None,
|
|
623
630
|
script: str = None,
|
|
624
631
|
):
|
|
632
|
+
self.app_id = app_id
|
|
625
633
|
# This parameter is required.
|
|
626
634
|
self.image = image
|
|
627
635
|
self.prolog_script = prolog_script
|
|
@@ -636,6 +644,8 @@ class CreateJobRequestTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
636
644
|
return _map
|
|
637
645
|
|
|
638
646
|
result = dict()
|
|
647
|
+
if self.app_id is not None:
|
|
648
|
+
result['AppId'] = self.app_id
|
|
639
649
|
if self.image is not None:
|
|
640
650
|
result['Image'] = self.image
|
|
641
651
|
if self.prolog_script is not None:
|
|
@@ -646,6 +656,8 @@ class CreateJobRequestTasksTaskSpecTaskExecutorVM(TeaModel):
|
|
|
646
656
|
|
|
647
657
|
def from_map(self, m: dict = None):
|
|
648
658
|
m = m or dict()
|
|
659
|
+
if m.get('AppId') is not None:
|
|
660
|
+
self.app_id = m.get('AppId')
|
|
649
661
|
if m.get('Image') is not None:
|
|
650
662
|
self.image = m.get('Image')
|
|
651
663
|
if m.get('PrologScript') is not None:
|
|
@@ -1650,10 +1662,14 @@ class DescribeJobMetricLastResponse(TeaModel):
|
|
|
1650
1662
|
class GetImageRequest(TeaModel):
|
|
1651
1663
|
def __init__(
|
|
1652
1664
|
self,
|
|
1665
|
+
image_category: str = None,
|
|
1653
1666
|
image_id: str = None,
|
|
1667
|
+
image_type: str = None,
|
|
1654
1668
|
):
|
|
1669
|
+
self.image_category = image_category
|
|
1655
1670
|
# This parameter is required.
|
|
1656
1671
|
self.image_id = image_id
|
|
1672
|
+
self.image_type = image_type
|
|
1657
1673
|
|
|
1658
1674
|
def validate(self):
|
|
1659
1675
|
pass
|
|
@@ -1664,14 +1680,22 @@ class GetImageRequest(TeaModel):
|
|
|
1664
1680
|
return _map
|
|
1665
1681
|
|
|
1666
1682
|
result = dict()
|
|
1683
|
+
if self.image_category is not None:
|
|
1684
|
+
result['ImageCategory'] = self.image_category
|
|
1667
1685
|
if self.image_id is not None:
|
|
1668
1686
|
result['ImageId'] = self.image_id
|
|
1687
|
+
if self.image_type is not None:
|
|
1688
|
+
result['ImageType'] = self.image_type
|
|
1669
1689
|
return result
|
|
1670
1690
|
|
|
1671
1691
|
def from_map(self, m: dict = None):
|
|
1672
1692
|
m = m or dict()
|
|
1693
|
+
if m.get('ImageCategory') is not None:
|
|
1694
|
+
self.image_category = m.get('ImageCategory')
|
|
1673
1695
|
if m.get('ImageId') is not None:
|
|
1674
1696
|
self.image_id = m.get('ImageId')
|
|
1697
|
+
if m.get('ImageType') is not None:
|
|
1698
|
+
self.image_type = m.get('ImageType')
|
|
1675
1699
|
return self
|
|
1676
1700
|
|
|
1677
1701
|
|
|
@@ -1815,15 +1839,18 @@ class GetImageResponseBodyImageVMImageSpec(TeaModel):
|
|
|
1815
1839
|
class GetImageResponseBodyImage(TeaModel):
|
|
1816
1840
|
def __init__(
|
|
1817
1841
|
self,
|
|
1842
|
+
app_id: str = None,
|
|
1818
1843
|
container_image_spec: GetImageResponseBodyImageContainerImageSpec = None,
|
|
1819
1844
|
create_time: str = None,
|
|
1820
1845
|
description: str = None,
|
|
1821
1846
|
image_type: str = None,
|
|
1822
1847
|
name: str = None,
|
|
1823
1848
|
size: str = None,
|
|
1849
|
+
status: str = None,
|
|
1824
1850
|
vmimage_spec: GetImageResponseBodyImageVMImageSpec = None,
|
|
1825
1851
|
version: str = None,
|
|
1826
1852
|
):
|
|
1853
|
+
self.app_id = app_id
|
|
1827
1854
|
self.container_image_spec = container_image_spec
|
|
1828
1855
|
self.create_time = create_time
|
|
1829
1856
|
self.description = description
|
|
@@ -1831,6 +1858,7 @@ class GetImageResponseBodyImage(TeaModel):
|
|
|
1831
1858
|
self.image_type = image_type
|
|
1832
1859
|
self.name = name
|
|
1833
1860
|
self.size = size
|
|
1861
|
+
self.status = status
|
|
1834
1862
|
self.vmimage_spec = vmimage_spec
|
|
1835
1863
|
self.version = version
|
|
1836
1864
|
|
|
@@ -1846,6 +1874,8 @@ class GetImageResponseBodyImage(TeaModel):
|
|
|
1846
1874
|
return _map
|
|
1847
1875
|
|
|
1848
1876
|
result = dict()
|
|
1877
|
+
if self.app_id is not None:
|
|
1878
|
+
result['AppId'] = self.app_id
|
|
1849
1879
|
if self.container_image_spec is not None:
|
|
1850
1880
|
result['ContainerImageSpec'] = self.container_image_spec.to_map()
|
|
1851
1881
|
if self.create_time is not None:
|
|
@@ -1858,6 +1888,8 @@ class GetImageResponseBodyImage(TeaModel):
|
|
|
1858
1888
|
result['Name'] = self.name
|
|
1859
1889
|
if self.size is not None:
|
|
1860
1890
|
result['Size'] = self.size
|
|
1891
|
+
if self.status is not None:
|
|
1892
|
+
result['Status'] = self.status
|
|
1861
1893
|
if self.vmimage_spec is not None:
|
|
1862
1894
|
result['VMImageSpec'] = self.vmimage_spec.to_map()
|
|
1863
1895
|
if self.version is not None:
|
|
@@ -1866,6 +1898,8 @@ class GetImageResponseBodyImage(TeaModel):
|
|
|
1866
1898
|
|
|
1867
1899
|
def from_map(self, m: dict = None):
|
|
1868
1900
|
m = m or dict()
|
|
1901
|
+
if m.get('AppId') is not None:
|
|
1902
|
+
self.app_id = m.get('AppId')
|
|
1869
1903
|
if m.get('ContainerImageSpec') is not None:
|
|
1870
1904
|
temp_model = GetImageResponseBodyImageContainerImageSpec()
|
|
1871
1905
|
self.container_image_spec = temp_model.from_map(m['ContainerImageSpec'])
|
|
@@ -1879,6 +1913,8 @@ class GetImageResponseBodyImage(TeaModel):
|
|
|
1879
1913
|
self.name = m.get('Name')
|
|
1880
1914
|
if m.get('Size') is not None:
|
|
1881
1915
|
self.size = m.get('Size')
|
|
1916
|
+
if m.get('Status') is not None:
|
|
1917
|
+
self.status = m.get('Status')
|
|
1882
1918
|
if m.get('VMImageSpec') is not None:
|
|
1883
1919
|
temp_model = GetImageResponseBodyImageVMImageSpec()
|
|
1884
1920
|
self.vmimage_spec = temp_model.from_map(m['VMImageSpec'])
|
|
@@ -2935,13 +2971,17 @@ class ListExecutorsResponse(TeaModel):
|
|
|
2935
2971
|
class ListImagesRequest(TeaModel):
|
|
2936
2972
|
def __init__(
|
|
2937
2973
|
self,
|
|
2974
|
+
image_category: str = None,
|
|
2938
2975
|
image_ids: List[str] = None,
|
|
2939
2976
|
image_names: List[str] = None,
|
|
2977
|
+
image_type: str = None,
|
|
2940
2978
|
page_number: int = None,
|
|
2941
2979
|
page_size: int = None,
|
|
2942
2980
|
):
|
|
2981
|
+
self.image_category = image_category
|
|
2943
2982
|
self.image_ids = image_ids
|
|
2944
2983
|
self.image_names = image_names
|
|
2984
|
+
self.image_type = image_type
|
|
2945
2985
|
self.page_number = page_number
|
|
2946
2986
|
self.page_size = page_size
|
|
2947
2987
|
|
|
@@ -2954,10 +2994,14 @@ class ListImagesRequest(TeaModel):
|
|
|
2954
2994
|
return _map
|
|
2955
2995
|
|
|
2956
2996
|
result = dict()
|
|
2997
|
+
if self.image_category is not None:
|
|
2998
|
+
result['ImageCategory'] = self.image_category
|
|
2957
2999
|
if self.image_ids is not None:
|
|
2958
3000
|
result['ImageIds'] = self.image_ids
|
|
2959
3001
|
if self.image_names is not None:
|
|
2960
3002
|
result['ImageNames'] = self.image_names
|
|
3003
|
+
if self.image_type is not None:
|
|
3004
|
+
result['ImageType'] = self.image_type
|
|
2961
3005
|
if self.page_number is not None:
|
|
2962
3006
|
result['PageNumber'] = self.page_number
|
|
2963
3007
|
if self.page_size is not None:
|
|
@@ -2966,10 +3010,14 @@ class ListImagesRequest(TeaModel):
|
|
|
2966
3010
|
|
|
2967
3011
|
def from_map(self, m: dict = None):
|
|
2968
3012
|
m = m or dict()
|
|
3013
|
+
if m.get('ImageCategory') is not None:
|
|
3014
|
+
self.image_category = m.get('ImageCategory')
|
|
2969
3015
|
if m.get('ImageIds') is not None:
|
|
2970
3016
|
self.image_ids = m.get('ImageIds')
|
|
2971
3017
|
if m.get('ImageNames') is not None:
|
|
2972
3018
|
self.image_names = m.get('ImageNames')
|
|
3019
|
+
if m.get('ImageType') is not None:
|
|
3020
|
+
self.image_type = m.get('ImageType')
|
|
2973
3021
|
if m.get('PageNumber') is not None:
|
|
2974
3022
|
self.page_number = m.get('PageNumber')
|
|
2975
3023
|
if m.get('PageSize') is not None:
|
|
@@ -2980,13 +3028,17 @@ class ListImagesRequest(TeaModel):
|
|
|
2980
3028
|
class ListImagesShrinkRequest(TeaModel):
|
|
2981
3029
|
def __init__(
|
|
2982
3030
|
self,
|
|
3031
|
+
image_category: str = None,
|
|
2983
3032
|
image_ids_shrink: str = None,
|
|
2984
3033
|
image_names_shrink: str = None,
|
|
3034
|
+
image_type: str = None,
|
|
2985
3035
|
page_number: int = None,
|
|
2986
3036
|
page_size: int = None,
|
|
2987
3037
|
):
|
|
3038
|
+
self.image_category = image_category
|
|
2988
3039
|
self.image_ids_shrink = image_ids_shrink
|
|
2989
3040
|
self.image_names_shrink = image_names_shrink
|
|
3041
|
+
self.image_type = image_type
|
|
2990
3042
|
self.page_number = page_number
|
|
2991
3043
|
self.page_size = page_size
|
|
2992
3044
|
|
|
@@ -2999,10 +3051,14 @@ class ListImagesShrinkRequest(TeaModel):
|
|
|
2999
3051
|
return _map
|
|
3000
3052
|
|
|
3001
3053
|
result = dict()
|
|
3054
|
+
if self.image_category is not None:
|
|
3055
|
+
result['ImageCategory'] = self.image_category
|
|
3002
3056
|
if self.image_ids_shrink is not None:
|
|
3003
3057
|
result['ImageIds'] = self.image_ids_shrink
|
|
3004
3058
|
if self.image_names_shrink is not None:
|
|
3005
3059
|
result['ImageNames'] = self.image_names_shrink
|
|
3060
|
+
if self.image_type is not None:
|
|
3061
|
+
result['ImageType'] = self.image_type
|
|
3006
3062
|
if self.page_number is not None:
|
|
3007
3063
|
result['PageNumber'] = self.page_number
|
|
3008
3064
|
if self.page_size is not None:
|
|
@@ -3011,10 +3067,14 @@ class ListImagesShrinkRequest(TeaModel):
|
|
|
3011
3067
|
|
|
3012
3068
|
def from_map(self, m: dict = None):
|
|
3013
3069
|
m = m or dict()
|
|
3070
|
+
if m.get('ImageCategory') is not None:
|
|
3071
|
+
self.image_category = m.get('ImageCategory')
|
|
3014
3072
|
if m.get('ImageIds') is not None:
|
|
3015
3073
|
self.image_ids_shrink = m.get('ImageIds')
|
|
3016
3074
|
if m.get('ImageNames') is not None:
|
|
3017
3075
|
self.image_names_shrink = m.get('ImageNames')
|
|
3076
|
+
if m.get('ImageType') is not None:
|
|
3077
|
+
self.image_type = m.get('ImageType')
|
|
3018
3078
|
if m.get('PageNumber') is not None:
|
|
3019
3079
|
self.page_number = m.get('PageNumber')
|
|
3020
3080
|
if m.get('PageSize') is not None:
|
|
@@ -3025,6 +3085,7 @@ class ListImagesShrinkRequest(TeaModel):
|
|
|
3025
3085
|
class ListImagesResponseBodyImages(TeaModel):
|
|
3026
3086
|
def __init__(
|
|
3027
3087
|
self,
|
|
3088
|
+
app_id: str = None,
|
|
3028
3089
|
create_time: str = None,
|
|
3029
3090
|
description: str = None,
|
|
3030
3091
|
image_id: str = None,
|
|
@@ -3032,6 +3093,8 @@ class ListImagesResponseBodyImages(TeaModel):
|
|
|
3032
3093
|
name: str = None,
|
|
3033
3094
|
version: str = None,
|
|
3034
3095
|
):
|
|
3096
|
+
# This parameter is required.
|
|
3097
|
+
self.app_id = app_id
|
|
3035
3098
|
self.create_time = create_time
|
|
3036
3099
|
self.description = description
|
|
3037
3100
|
# This parameter is required.
|
|
@@ -3050,6 +3113,8 @@ class ListImagesResponseBodyImages(TeaModel):
|
|
|
3050
3113
|
return _map
|
|
3051
3114
|
|
|
3052
3115
|
result = dict()
|
|
3116
|
+
if self.app_id is not None:
|
|
3117
|
+
result['AppId'] = self.app_id
|
|
3053
3118
|
if self.create_time is not None:
|
|
3054
3119
|
result['CreateTime'] = self.create_time
|
|
3055
3120
|
if self.description is not None:
|
|
@@ -3066,6 +3131,8 @@ class ListImagesResponseBodyImages(TeaModel):
|
|
|
3066
3131
|
|
|
3067
3132
|
def from_map(self, m: dict = None):
|
|
3068
3133
|
m = m or dict()
|
|
3134
|
+
if m.get('AppId') is not None:
|
|
3135
|
+
self.app_id = m.get('AppId')
|
|
3069
3136
|
if m.get('CreateTime') is not None:
|
|
3070
3137
|
self.create_time = m.get('CreateTime')
|
|
3071
3138
|
if m.get('Description') is not None:
|
|
@@ -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 14/05/2024
|
|
28
28
|
|
|
29
29
|
@author: Alibaba Cloud SDK
|
|
30
30
|
"""
|
|
@@ -37,8 +37,8 @@ AUTHOR_EMAIL = "sdk-team@alibabacloud.com"
|
|
|
37
37
|
URL = "https://github.com/aliyun/alibabacloud-python-sdk"
|
|
38
38
|
VERSION = __import__(PACKAGE).__version__
|
|
39
39
|
REQUIRES = [
|
|
40
|
-
"alibabacloud_tea_util>=0.3.
|
|
41
|
-
"alibabacloud_tea_openapi>=0.3.
|
|
40
|
+
"alibabacloud_tea_util>=0.3.12, <1.0.0",
|
|
41
|
+
"alibabacloud_tea_openapi>=0.3.9, <1.0.0",
|
|
42
42
|
"alibabacloud_openapi_util>=0.2.1, <1.0.0",
|
|
43
43
|
"alibabacloud_endpoint_util>=0.0.3, <1.0.0"
|
|
44
44
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '1.0.1'
|
|
File without changes
|
{alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/MANIFEST.in
RENAMED
|
File without changes
|
{alibabacloud_ehpcinstant20230701-1.0.1 → alibabacloud_ehpcinstant20230701-1.0.2}/README-CN.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|