huaweicloudsdkram 3.1.160__py3-none-any.whl → 3.1.162__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.
@@ -0,0 +1,141 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.sdk_response import SdkResponse
6
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
7
+
8
+
9
+ class SearchDistinctSharedResourcesResponse(SdkResponse):
10
+
11
+ """
12
+ Attributes:
13
+ openapi_types (dict): The key is attribute name
14
+ and the value is attribute type.
15
+ attribute_map (dict): The key is attribute name
16
+ and the value is json key in definition.
17
+ """
18
+ sensitive_list = []
19
+
20
+ openapi_types = {
21
+ 'distinct_shared_resources': 'list[DistinctSharedResource]',
22
+ 'page_info': 'PageInfo'
23
+ }
24
+
25
+ attribute_map = {
26
+ 'distinct_shared_resources': 'distinct_shared_resources',
27
+ 'page_info': 'page_info'
28
+ }
29
+
30
+ def __init__(self, distinct_shared_resources=None, page_info=None):
31
+ r"""SearchDistinctSharedResourcesResponse
32
+
33
+ The model defined in huaweicloud sdk
34
+
35
+ :param distinct_shared_resources: 不同资源的信息列表。
36
+ :type distinct_shared_resources: list[:class:`huaweicloudsdkram.v1.DistinctSharedResource`]
37
+ :param page_info:
38
+ :type page_info: :class:`huaweicloudsdkram.v1.PageInfo`
39
+ """
40
+
41
+ super(SearchDistinctSharedResourcesResponse, self).__init__()
42
+
43
+ self._distinct_shared_resources = None
44
+ self._page_info = None
45
+ self.discriminator = None
46
+
47
+ if distinct_shared_resources is not None:
48
+ self.distinct_shared_resources = distinct_shared_resources
49
+ if page_info is not None:
50
+ self.page_info = page_info
51
+
52
+ @property
53
+ def distinct_shared_resources(self):
54
+ r"""Gets the distinct_shared_resources of this SearchDistinctSharedResourcesResponse.
55
+
56
+ 不同资源的信息列表。
57
+
58
+ :return: The distinct_shared_resources of this SearchDistinctSharedResourcesResponse.
59
+ :rtype: list[:class:`huaweicloudsdkram.v1.DistinctSharedResource`]
60
+ """
61
+ return self._distinct_shared_resources
62
+
63
+ @distinct_shared_resources.setter
64
+ def distinct_shared_resources(self, distinct_shared_resources):
65
+ r"""Sets the distinct_shared_resources of this SearchDistinctSharedResourcesResponse.
66
+
67
+ 不同资源的信息列表。
68
+
69
+ :param distinct_shared_resources: The distinct_shared_resources of this SearchDistinctSharedResourcesResponse.
70
+ :type distinct_shared_resources: list[:class:`huaweicloudsdkram.v1.DistinctSharedResource`]
71
+ """
72
+ self._distinct_shared_resources = distinct_shared_resources
73
+
74
+ @property
75
+ def page_info(self):
76
+ r"""Gets the page_info of this SearchDistinctSharedResourcesResponse.
77
+
78
+ :return: The page_info of this SearchDistinctSharedResourcesResponse.
79
+ :rtype: :class:`huaweicloudsdkram.v1.PageInfo`
80
+ """
81
+ return self._page_info
82
+
83
+ @page_info.setter
84
+ def page_info(self, page_info):
85
+ r"""Sets the page_info of this SearchDistinctSharedResourcesResponse.
86
+
87
+ :param page_info: The page_info of this SearchDistinctSharedResourcesResponse.
88
+ :type page_info: :class:`huaweicloudsdkram.v1.PageInfo`
89
+ """
90
+ self._page_info = page_info
91
+
92
+ def to_dict(self):
93
+ """Returns the model properties as a dict"""
94
+ result = {}
95
+
96
+ for attr, _ in six.iteritems(self.openapi_types):
97
+ value = getattr(self, attr)
98
+ if isinstance(value, list):
99
+ result[attr] = list(map(
100
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
101
+ value
102
+ ))
103
+ elif hasattr(value, "to_dict"):
104
+ result[attr] = value.to_dict()
105
+ elif isinstance(value, dict):
106
+ result[attr] = dict(map(
107
+ lambda item: (item[0], item[1].to_dict())
108
+ if hasattr(item[1], "to_dict") else item,
109
+ value.items()
110
+ ))
111
+ else:
112
+ if attr in self.sensitive_list:
113
+ result[attr] = "****"
114
+ else:
115
+ result[attr] = value
116
+
117
+ return result
118
+
119
+ def to_str(self):
120
+ """Returns the string representation of the model"""
121
+ import simplejson as json
122
+ if six.PY2:
123
+ import sys
124
+ reload(sys)
125
+ sys.setdefaultencoding("utf-8")
126
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
127
+
128
+ def __repr__(self):
129
+ """For `print`"""
130
+ return self.to_str()
131
+
132
+ def __eq__(self, other):
133
+ """Returns true if both objects are equal"""
134
+ if not isinstance(other, SearchDistinctSharedResourcesResponse):
135
+ return False
136
+
137
+ return self.__dict__ == other.__dict__
138
+
139
+ def __ne__(self, other):
140
+ """Returns true if both objects are not equal"""
141
+ return not self == other
@@ -786,6 +786,73 @@ class RamAsyncClient(Client):
786
786
 
787
787
  return http_info
788
788
 
789
+ def search_distinct_principals_async(self, request):
790
+ r"""检索资源使用者并去除其中的重复项
791
+
792
+ 检索您正在共享资源的不同使用者或被共享资源给您的不同使用者并去除其中的重复项。
793
+
794
+ Please refer to HUAWEI cloud API Explorer for details.
795
+
796
+
797
+ :param request: Request instance for SearchDistinctPrincipals
798
+ :type request: :class:`huaweicloudsdkram.v1.SearchDistinctPrincipalsRequest`
799
+ :rtype: :class:`huaweicloudsdkram.v1.SearchDistinctPrincipalsResponse`
800
+ """
801
+ http_info = self._search_distinct_principals_http_info(request)
802
+ return self._call_api(**http_info)
803
+
804
+ def search_distinct_principals_async_invoker(self, request):
805
+ http_info = self._search_distinct_principals_http_info(request)
806
+ return AsyncInvoker(self, http_info)
807
+
808
+ def _search_distinct_principals_http_info(self, request):
809
+ http_info = {
810
+ "method": "POST",
811
+ "resource_path": "/v1/shared-principals/search-distinct-principal",
812
+ "request_type": request.__class__.__name__,
813
+ "response_type": "SearchDistinctPrincipalsResponse"
814
+ }
815
+
816
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
817
+
818
+ cname = None
819
+
820
+ collection_formats = {}
821
+
822
+ path_params = {}
823
+
824
+ query_params = []
825
+
826
+ header_params = {}
827
+ if 'x_security_token' in local_var_params:
828
+ header_params['X-Security-Token'] = local_var_params['x_security_token']
829
+
830
+ form_params = {}
831
+
832
+ body = None
833
+ if 'body' in local_var_params:
834
+ body = local_var_params['body']
835
+ if isinstance(request, SdkStreamRequest):
836
+ body = request.get_file_stream()
837
+
838
+ response_headers = []
839
+
840
+ header_params['Content-Type'] = http_utils.select_header_content_type(
841
+ ['application/json'])
842
+
843
+ auth_settings = ['AccessKeyAuth']
844
+
845
+ http_info["cname"] = cname
846
+ http_info["collection_formats"] = collection_formats
847
+ http_info["path_params"] = path_params
848
+ http_info["query_params"] = query_params
849
+ http_info["header_params"] = header_params
850
+ http_info["post_params"] = form_params
851
+ http_info["body"] = body
852
+ http_info["response_headers"] = response_headers
853
+
854
+ return http_info
855
+
789
856
  def search_shared_principals_async(self, request):
790
857
  r"""检索资源使用者
791
858
 
@@ -853,6 +920,73 @@ class RamAsyncClient(Client):
853
920
 
854
921
  return http_info
855
922
 
923
+ def search_distinct_shared_resources_async(self, request):
924
+ r"""检索共享的资源并去除其中的重复项
925
+
926
+ 检索您添加到资源共享或被共享给您的不同资源并去除其中的重复项。
927
+
928
+ Please refer to HUAWEI cloud API Explorer for details.
929
+
930
+
931
+ :param request: Request instance for SearchDistinctSharedResources
932
+ :type request: :class:`huaweicloudsdkram.v1.SearchDistinctSharedResourcesRequest`
933
+ :rtype: :class:`huaweicloudsdkram.v1.SearchDistinctSharedResourcesResponse`
934
+ """
935
+ http_info = self._search_distinct_shared_resources_http_info(request)
936
+ return self._call_api(**http_info)
937
+
938
+ def search_distinct_shared_resources_async_invoker(self, request):
939
+ http_info = self._search_distinct_shared_resources_http_info(request)
940
+ return AsyncInvoker(self, http_info)
941
+
942
+ def _search_distinct_shared_resources_http_info(self, request):
943
+ http_info = {
944
+ "method": "POST",
945
+ "resource_path": "/v1/shared-resources/search-distinct-resource",
946
+ "request_type": request.__class__.__name__,
947
+ "response_type": "SearchDistinctSharedResourcesResponse"
948
+ }
949
+
950
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
951
+
952
+ cname = None
953
+
954
+ collection_formats = {}
955
+
956
+ path_params = {}
957
+
958
+ query_params = []
959
+
960
+ header_params = {}
961
+ if 'x_security_token' in local_var_params:
962
+ header_params['X-Security-Token'] = local_var_params['x_security_token']
963
+
964
+ form_params = {}
965
+
966
+ body = None
967
+ if 'body' in local_var_params:
968
+ body = local_var_params['body']
969
+ if isinstance(request, SdkStreamRequest):
970
+ body = request.get_file_stream()
971
+
972
+ response_headers = []
973
+
974
+ header_params['Content-Type'] = http_utils.select_header_content_type(
975
+ ['application/json'])
976
+
977
+ auth_settings = ['AccessKeyAuth']
978
+
979
+ http_info["cname"] = cname
980
+ http_info["collection_formats"] = collection_formats
981
+ http_info["path_params"] = path_params
982
+ http_info["query_params"] = query_params
983
+ http_info["header_params"] = header_params
984
+ http_info["post_params"] = form_params
985
+ http_info["body"] = body
986
+ http_info["response_headers"] = response_headers
987
+
988
+ return http_info
989
+
856
990
  def search_shared_resources_async(self, request):
857
991
  r"""检索共享的资源
858
992
 
@@ -786,6 +786,73 @@ class RamClient(Client):
786
786
 
787
787
  return http_info
788
788
 
789
+ def search_distinct_principals(self, request):
790
+ r"""检索资源使用者并去除其中的重复项
791
+
792
+ 检索您正在共享资源的不同使用者或被共享资源给您的不同使用者并去除其中的重复项。
793
+
794
+ Please refer to HUAWEI cloud API Explorer for details.
795
+
796
+ :param request: Request instance for SearchDistinctPrincipals
797
+ :type request: :class:`huaweicloudsdkram.v1.SearchDistinctPrincipalsRequest`
798
+ :rtype: :class:`huaweicloudsdkram.v1.SearchDistinctPrincipalsResponse`
799
+ """
800
+ http_info = self._search_distinct_principals_http_info(request)
801
+ return self._call_api(**http_info)
802
+
803
+ def search_distinct_principals_invoker(self, request):
804
+ http_info = self._search_distinct_principals_http_info(request)
805
+ return SyncInvoker(self, http_info)
806
+
807
+ @classmethod
808
+ def _search_distinct_principals_http_info(cls, request):
809
+ http_info = {
810
+ "method": "POST",
811
+ "resource_path": "/v1/shared-principals/search-distinct-principal",
812
+ "request_type": request.__class__.__name__,
813
+ "response_type": "SearchDistinctPrincipalsResponse"
814
+ }
815
+
816
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
817
+
818
+ cname = None
819
+
820
+ collection_formats = {}
821
+
822
+ path_params = {}
823
+
824
+ query_params = []
825
+
826
+ header_params = {}
827
+ if 'x_security_token' in local_var_params:
828
+ header_params['X-Security-Token'] = local_var_params['x_security_token']
829
+
830
+ form_params = {}
831
+
832
+ body = None
833
+ if 'body' in local_var_params:
834
+ body = local_var_params['body']
835
+ if isinstance(request, SdkStreamRequest):
836
+ body = request.get_file_stream()
837
+
838
+ response_headers = []
839
+
840
+ header_params['Content-Type'] = http_utils.select_header_content_type(
841
+ ['application/json'])
842
+
843
+ auth_settings = ['AccessKeyAuth']
844
+
845
+ http_info["cname"] = cname
846
+ http_info["collection_formats"] = collection_formats
847
+ http_info["path_params"] = path_params
848
+ http_info["query_params"] = query_params
849
+ http_info["header_params"] = header_params
850
+ http_info["post_params"] = form_params
851
+ http_info["body"] = body
852
+ http_info["response_headers"] = response_headers
853
+
854
+ return http_info
855
+
789
856
  def search_shared_principals(self, request):
790
857
  r"""检索资源使用者
791
858
 
@@ -853,6 +920,73 @@ class RamClient(Client):
853
920
 
854
921
  return http_info
855
922
 
923
+ def search_distinct_shared_resources(self, request):
924
+ r"""检索共享的资源并去除其中的重复项
925
+
926
+ 检索您添加到资源共享或被共享给您的不同资源并去除其中的重复项。
927
+
928
+ Please refer to HUAWEI cloud API Explorer for details.
929
+
930
+ :param request: Request instance for SearchDistinctSharedResources
931
+ :type request: :class:`huaweicloudsdkram.v1.SearchDistinctSharedResourcesRequest`
932
+ :rtype: :class:`huaweicloudsdkram.v1.SearchDistinctSharedResourcesResponse`
933
+ """
934
+ http_info = self._search_distinct_shared_resources_http_info(request)
935
+ return self._call_api(**http_info)
936
+
937
+ def search_distinct_shared_resources_invoker(self, request):
938
+ http_info = self._search_distinct_shared_resources_http_info(request)
939
+ return SyncInvoker(self, http_info)
940
+
941
+ @classmethod
942
+ def _search_distinct_shared_resources_http_info(cls, request):
943
+ http_info = {
944
+ "method": "POST",
945
+ "resource_path": "/v1/shared-resources/search-distinct-resource",
946
+ "request_type": request.__class__.__name__,
947
+ "response_type": "SearchDistinctSharedResourcesResponse"
948
+ }
949
+
950
+ local_var_params = {attr: getattr(request, attr) for attr in request.attribute_map if hasattr(request, attr)}
951
+
952
+ cname = None
953
+
954
+ collection_formats = {}
955
+
956
+ path_params = {}
957
+
958
+ query_params = []
959
+
960
+ header_params = {}
961
+ if 'x_security_token' in local_var_params:
962
+ header_params['X-Security-Token'] = local_var_params['x_security_token']
963
+
964
+ form_params = {}
965
+
966
+ body = None
967
+ if 'body' in local_var_params:
968
+ body = local_var_params['body']
969
+ if isinstance(request, SdkStreamRequest):
970
+ body = request.get_file_stream()
971
+
972
+ response_headers = []
973
+
974
+ header_params['Content-Type'] = http_utils.select_header_content_type(
975
+ ['application/json'])
976
+
977
+ auth_settings = ['AccessKeyAuth']
978
+
979
+ http_info["cname"] = cname
980
+ http_info["collection_formats"] = collection_formats
981
+ http_info["path_params"] = path_params
982
+ http_info["query_params"] = query_params
983
+ http_info["header_params"] = header_params
984
+ http_info["post_params"] = form_params
985
+ http_info["body"] = body
986
+ http_info["response_headers"] = response_headers
987
+
988
+ return http_info
989
+
856
990
  def search_shared_resources(self, request):
857
991
  r"""检索共享的资源
858
992
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huaweicloudsdkram
3
- Version: 3.1.160
3
+ Version: 3.1.162
4
4
  Summary: RAM
5
5
  Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
6
6
  Author: HuaweiCloud SDK
@@ -21,6 +21,6 @@ Classifier: Topic :: Software Development
21
21
  Requires-Python: >=3.6
22
22
  Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
- Requires-Dist: huaweicloudsdkcore>=3.1.160
24
+ Requires-Dist: huaweicloudsdkcore>=3.1.162
25
25
 
26
26
  See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
@@ -1,8 +1,8 @@
1
1
  huaweicloudsdkram/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- huaweicloudsdkram/v1/__init__.py,sha256=sfUWpfJEgsR6gfMwhfS7DO2ZBMCsR4wJONWWz5rDmUc,8730
3
- huaweicloudsdkram/v1/ram_async_client.py,sha256=bwUyShX-e23oer3kFPQxb-cr8x6w7eWy4si2Ax63LEw,71459
4
- huaweicloudsdkram/v1/ram_client.py,sha256=UPs3NlNX5iJJNefFBg0JjkKkYQ9_PW5gxZ4-FZr8IPg,71410
5
- huaweicloudsdkram/v1/model/__init__.py,sha256=oypTOscncWMIq12TcD-s0bzKtNWthop8_vbsMonvVn0,8644
2
+ huaweicloudsdkram/v1/__init__.py,sha256=ncZieeiS7PG_eUFmA-t5ydTqcep9iciA4lc4-GIbKQ8,9594
3
+ huaweicloudsdkram/v1/ram_async_client.py,sha256=a9EHGOoxkRTmXbI42ezqS8qntcgwwayB_1NQY0IBe3k,76291
4
+ huaweicloudsdkram/v1/ram_client.py,sha256=jORFKvgSjsrmzlLnBjWUEW-OakxD4jt7nqjcPWTbhzw,76246
5
+ huaweicloudsdkram/v1/model/__init__.py,sha256=HEWHT8otf79YE__B7hvZBJioFEvj6CMbO2CwDstfPDU,9508
6
6
  huaweicloudsdkram/v1/model/accept_resource_share_invitation_request.py,sha256=WOqM4hOprwrQW3j9Py2Dz3H8qATO5fmFS1Yr0ax6cK4,5051
7
7
  huaweicloudsdkram/v1/model/accept_resource_share_invitation_response.py,sha256=PgmsKliGiNoIemvRbUvVQm4YmGzAoCjVMn1e2TQ1GxI,3838
8
8
  huaweicloudsdkram/v1/model/associate_permission_req_body.py,sha256=oYmpHZjVqkKM1Xv2E4En9VZJk0gkJUZZ1WGRxy6FUSw,5486
@@ -27,6 +27,8 @@ huaweicloudsdkram/v1/model/disassociate_resource_share_permission_request.py,sha
27
27
  huaweicloudsdkram/v1/model/disassociate_resource_share_permission_response.py,sha256=lyUQlITnJgQw7IHDQq4pxAACLUpctc0JXh47wvxbdr8,2524
28
28
  huaweicloudsdkram/v1/model/disassociate_resource_share_request.py,sha256=9SbJ9nagva80w8RFZSoths69zXWq0RoIC_xIwU5RqT4,5676
29
29
  huaweicloudsdkram/v1/model/disassociate_resource_share_response.py,sha256=gEyxxe5JD52zo_prdniUnmqr7VcWXPxZHE1qm4E_b78,3880
30
+ huaweicloudsdkram/v1/model/distinct_shared_principal.py,sha256=SaO6wWyWOLmCsssSqFByY-WGw2ERx3Lsxtq8nfc8rZs,4068
31
+ huaweicloudsdkram/v1/model/distinct_shared_resource.py,sha256=-aRieo-EzkwoCu7merqVgTX5MjiqxbgLXyLsqZ6yurE,5097
30
32
  huaweicloudsdkram/v1/model/enable_organization_share_request.py,sha256=v4oihOUWrAJ9vfG4Vgxptjx-EkhnsTc8j_ul4TMuI9I,3735
31
33
  huaweicloudsdkram/v1/model/enable_organization_share_response.py,sha256=HYgnAR8sn2nmbupHmvDsYB9FqzJRm02Rs4-abCBiec0,2476
32
34
  huaweicloudsdkram/v1/model/list_permission_versions_request.py,sha256=q8RU_Bd1qeOlW9zB5BUyA8Opbf7RvPCmk2v3EB07_oI,6185
@@ -59,6 +61,12 @@ huaweicloudsdkram/v1/model/resource_share_association_req_body.py,sha256=PSxZeWM
59
61
  huaweicloudsdkram/v1/model/resource_share_invitation.py,sha256=qywX1HipJab5cSr3HxI8RHZJhcBPoxLNnqE9QJb3Cz8,10484
60
62
  huaweicloudsdkram/v1/model/resource_shares_by_tags_req_body.py,sha256=K2CWEgQndXtpYfr87e29GtQK-tFlaTnRPXtUsQ1vS9U,6405
61
63
  huaweicloudsdkram/v1/model/resource_types_summary.py,sha256=h8vmqX7Cdx0340qZHADAP2iXg9vaQ6L_bL8yte6Je6w,3979
64
+ huaweicloudsdkram/v1/model/search_distinct_principals_request.py,sha256=cL_vbOTWJUFERx7VViGeuJPLvJ2oZStpOMEyqoad4qw,4672
65
+ huaweicloudsdkram/v1/model/search_distinct_principals_response.py,sha256=WPJ5Oppk7p5Y5ORnp1cNQilF6YN8sgRbQz8Q3TCUqU4,4845
66
+ huaweicloudsdkram/v1/model/search_distinct_shared_principals_req_body.py,sha256=n8ri4p1pqLTsuAr-MYqjHTPb1VF1YO0lcIvbVjF1NtQ,6983
67
+ huaweicloudsdkram/v1/model/search_distinct_shared_resources_req_body.py,sha256=uw3nHhN21KNhMjcibD2BJmwmd4fBODqpsS_nRUofhNw,8946
68
+ huaweicloudsdkram/v1/model/search_distinct_shared_resources_request.py,sha256=VrTtaoPV3_9lHD-1XEWZWQbhuSK8V_BV4xpkHk0am2Q,4728
69
+ huaweicloudsdkram/v1/model/search_distinct_shared_resources_response.py,sha256=im-xc6MZiDN0HBM9RCZtBiLl2dpV3csRcu14-JT2N9w,4878
62
70
  huaweicloudsdkram/v1/model/search_resource_share_associations_req_body.py,sha256=76vKRiS2TuDYDjkB3xR5SuZb5z40OOlWgrLYs0pUvZc,10267
63
71
  huaweicloudsdkram/v1/model/search_resource_share_associations_request.py,sha256=NgmIUfSvzP19r1tzhbSGKceukHhafjPFMqu-2X4WZ1A,4760
64
72
  huaweicloudsdkram/v1/model/search_resource_share_associations_response.py,sha256=E1BtyqrVZ1GAi6GIBeG8V5Fuvi8vKBl7NhkRnnpaaLQ,4956
@@ -93,8 +101,8 @@ huaweicloudsdkram/v1/model/update_resource_share_request.py,sha256=TiE9P8l58RUxq
93
101
  huaweicloudsdkram/v1/model/update_resource_share_response.py,sha256=-jmKW1aVoV4Rsu9t3-7N0kxchKi7G1LM686zPa-7m6U,3465
94
102
  huaweicloudsdkram/v1/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
103
  huaweicloudsdkram/v1/region/ram_region.py,sha256=CoCF6d_PfhSM6WCwFVPyHjZvTgU9DGy_8bI7fj9ki_Q,950
96
- huaweicloudsdkram-3.1.160.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
97
- huaweicloudsdkram-3.1.160.dist-info/METADATA,sha256=watwZz7N1xXJCNrJ4h9laXH7ZlvKtdfZLNGc8_qihUc,1064
98
- huaweicloudsdkram-3.1.160.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
99
- huaweicloudsdkram-3.1.160.dist-info/top_level.txt,sha256=2c3QxK2-mN-BqBO1Vm8bciMkiHVK7M6eBaGHq1JaNIs,18
100
- huaweicloudsdkram-3.1.160.dist-info/RECORD,,
104
+ huaweicloudsdkram-3.1.162.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
105
+ huaweicloudsdkram-3.1.162.dist-info/METADATA,sha256=SlwdA3s-MThDhp4h9tsoqdsx_76PIi0alrmGn29pTdM,1064
106
+ huaweicloudsdkram-3.1.162.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
107
+ huaweicloudsdkram-3.1.162.dist-info/top_level.txt,sha256=2c3QxK2-mN-BqBO1Vm8bciMkiHVK7M6eBaGHq1JaNIs,18
108
+ huaweicloudsdkram-3.1.162.dist-info/RECORD,,