alibabacloud-rdsai20250507 1.1.0__py3-none-any.whl → 1.1.2__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.
- alibabacloud_rdsai20250507/__init__.py +1 -1
- alibabacloud_rdsai20250507/client.py +22 -6
- alibabacloud_rdsai20250507/models.py +206 -0
- {alibabacloud_rdsai20250507-1.1.0.dist-info → alibabacloud_rdsai20250507-1.1.2.dist-info}/METADATA +1 -1
- alibabacloud_rdsai20250507-1.1.2.dist-info/RECORD +8 -0
- alibabacloud_rdsai20250507-1.1.0.dist-info/RECORD +0 -8
- {alibabacloud_rdsai20250507-1.1.0.dist-info → alibabacloud_rdsai20250507-1.1.2.dist-info}/LICENSE +0 -0
- {alibabacloud_rdsai20250507-1.1.0.dist-info → alibabacloud_rdsai20250507-1.1.2.dist-info}/WHEEL +0 -0
- {alibabacloud_rdsai20250507-1.1.0.dist-info → alibabacloud_rdsai20250507-1.1.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '1.1.
|
|
1
|
+
__version__ = '1.1.2'
|
|
@@ -43,17 +43,21 @@ class Client(OpenApiClient):
|
|
|
43
43
|
|
|
44
44
|
def create_app_instance_with_options(
|
|
45
45
|
self,
|
|
46
|
-
|
|
46
|
+
tmp_req: rds_ai_20250507_models.CreateAppInstanceRequest,
|
|
47
47
|
runtime: util_models.RuntimeOptions,
|
|
48
48
|
) -> rds_ai_20250507_models.CreateAppInstanceResponse:
|
|
49
49
|
"""
|
|
50
50
|
@summary 创建应用服务实例
|
|
51
51
|
|
|
52
|
-
@param
|
|
52
|
+
@param tmp_req: CreateAppInstanceRequest
|
|
53
53
|
@param runtime: runtime options for this request RuntimeOptions
|
|
54
54
|
@return: CreateAppInstanceResponse
|
|
55
55
|
"""
|
|
56
|
-
UtilClient.validate_model(
|
|
56
|
+
UtilClient.validate_model(tmp_req)
|
|
57
|
+
request = rds_ai_20250507_models.CreateAppInstanceShrinkRequest()
|
|
58
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
59
|
+
if not UtilClient.is_unset(tmp_req.dbinstance_config):
|
|
60
|
+
request.dbinstance_config_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbinstance_config, 'DBInstanceConfig', 'json')
|
|
57
61
|
query = {}
|
|
58
62
|
if not UtilClient.is_unset(request.app_name):
|
|
59
63
|
query['AppName'] = request.app_name
|
|
@@ -61,6 +65,8 @@ class Client(OpenApiClient):
|
|
|
61
65
|
query['AppType'] = request.app_type
|
|
62
66
|
if not UtilClient.is_unset(request.client_token):
|
|
63
67
|
query['ClientToken'] = request.client_token
|
|
68
|
+
if not UtilClient.is_unset(request.dbinstance_config_shrink):
|
|
69
|
+
query['DBInstanceConfig'] = request.dbinstance_config_shrink
|
|
64
70
|
if not UtilClient.is_unset(request.dbinstance_name):
|
|
65
71
|
query['DBInstanceName'] = request.dbinstance_name
|
|
66
72
|
if not UtilClient.is_unset(request.dashboard_password):
|
|
@@ -73,6 +79,8 @@ class Client(OpenApiClient):
|
|
|
73
79
|
query['InstanceClass'] = request.instance_class
|
|
74
80
|
if not UtilClient.is_unset(request.public_network_access_enabled):
|
|
75
81
|
query['PublicNetworkAccessEnabled'] = request.public_network_access_enabled
|
|
82
|
+
if not UtilClient.is_unset(request.ragenabled):
|
|
83
|
+
query['RAGEnabled'] = request.ragenabled
|
|
76
84
|
if not UtilClient.is_unset(request.region_id):
|
|
77
85
|
query['RegionId'] = request.region_id
|
|
78
86
|
if not UtilClient.is_unset(request.v_switch_id):
|
|
@@ -98,17 +106,21 @@ class Client(OpenApiClient):
|
|
|
98
106
|
|
|
99
107
|
async def create_app_instance_with_options_async(
|
|
100
108
|
self,
|
|
101
|
-
|
|
109
|
+
tmp_req: rds_ai_20250507_models.CreateAppInstanceRequest,
|
|
102
110
|
runtime: util_models.RuntimeOptions,
|
|
103
111
|
) -> rds_ai_20250507_models.CreateAppInstanceResponse:
|
|
104
112
|
"""
|
|
105
113
|
@summary 创建应用服务实例
|
|
106
114
|
|
|
107
|
-
@param
|
|
115
|
+
@param tmp_req: CreateAppInstanceRequest
|
|
108
116
|
@param runtime: runtime options for this request RuntimeOptions
|
|
109
117
|
@return: CreateAppInstanceResponse
|
|
110
118
|
"""
|
|
111
|
-
UtilClient.validate_model(
|
|
119
|
+
UtilClient.validate_model(tmp_req)
|
|
120
|
+
request = rds_ai_20250507_models.CreateAppInstanceShrinkRequest()
|
|
121
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
122
|
+
if not UtilClient.is_unset(tmp_req.dbinstance_config):
|
|
123
|
+
request.dbinstance_config_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.dbinstance_config, 'DBInstanceConfig', 'json')
|
|
112
124
|
query = {}
|
|
113
125
|
if not UtilClient.is_unset(request.app_name):
|
|
114
126
|
query['AppName'] = request.app_name
|
|
@@ -116,6 +128,8 @@ class Client(OpenApiClient):
|
|
|
116
128
|
query['AppType'] = request.app_type
|
|
117
129
|
if not UtilClient.is_unset(request.client_token):
|
|
118
130
|
query['ClientToken'] = request.client_token
|
|
131
|
+
if not UtilClient.is_unset(request.dbinstance_config_shrink):
|
|
132
|
+
query['DBInstanceConfig'] = request.dbinstance_config_shrink
|
|
119
133
|
if not UtilClient.is_unset(request.dbinstance_name):
|
|
120
134
|
query['DBInstanceName'] = request.dbinstance_name
|
|
121
135
|
if not UtilClient.is_unset(request.dashboard_password):
|
|
@@ -128,6 +142,8 @@ class Client(OpenApiClient):
|
|
|
128
142
|
query['InstanceClass'] = request.instance_class
|
|
129
143
|
if not UtilClient.is_unset(request.public_network_access_enabled):
|
|
130
144
|
query['PublicNetworkAccessEnabled'] = request.public_network_access_enabled
|
|
145
|
+
if not UtilClient.is_unset(request.ragenabled):
|
|
146
|
+
query['RAGEnabled'] = request.ragenabled
|
|
131
147
|
if not UtilClient.is_unset(request.region_id):
|
|
132
148
|
query['RegionId'] = request.region_id
|
|
133
149
|
if not UtilClient.is_unset(request.v_switch_id):
|
|
@@ -4,30 +4,174 @@ from Tea.model import TeaModel
|
|
|
4
4
|
from typing import Dict, List
|
|
5
5
|
|
|
6
6
|
|
|
7
|
+
class CreateAppInstanceRequestDBInstanceConfig(TeaModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
dbinstance_class: str = None,
|
|
11
|
+
dbinstance_storage: int = None,
|
|
12
|
+
pay_type: str = None,
|
|
13
|
+
):
|
|
14
|
+
self.dbinstance_class = dbinstance_class
|
|
15
|
+
self.dbinstance_storage = dbinstance_storage
|
|
16
|
+
self.pay_type = pay_type
|
|
17
|
+
|
|
18
|
+
def validate(self):
|
|
19
|
+
pass
|
|
20
|
+
|
|
21
|
+
def to_map(self):
|
|
22
|
+
_map = super().to_map()
|
|
23
|
+
if _map is not None:
|
|
24
|
+
return _map
|
|
25
|
+
|
|
26
|
+
result = dict()
|
|
27
|
+
if self.dbinstance_class is not None:
|
|
28
|
+
result['DBInstanceClass'] = self.dbinstance_class
|
|
29
|
+
if self.dbinstance_storage is not None:
|
|
30
|
+
result['DBInstanceStorage'] = self.dbinstance_storage
|
|
31
|
+
if self.pay_type is not None:
|
|
32
|
+
result['PayType'] = self.pay_type
|
|
33
|
+
return result
|
|
34
|
+
|
|
35
|
+
def from_map(self, m: dict = None):
|
|
36
|
+
m = m or dict()
|
|
37
|
+
if m.get('DBInstanceClass') is not None:
|
|
38
|
+
self.dbinstance_class = m.get('DBInstanceClass')
|
|
39
|
+
if m.get('DBInstanceStorage') is not None:
|
|
40
|
+
self.dbinstance_storage = m.get('DBInstanceStorage')
|
|
41
|
+
if m.get('PayType') is not None:
|
|
42
|
+
self.pay_type = m.get('PayType')
|
|
43
|
+
return self
|
|
44
|
+
|
|
45
|
+
|
|
7
46
|
class CreateAppInstanceRequest(TeaModel):
|
|
8
47
|
def __init__(
|
|
9
48
|
self,
|
|
10
49
|
app_name: str = None,
|
|
11
50
|
app_type: str = None,
|
|
12
51
|
client_token: str = None,
|
|
52
|
+
dbinstance_config: CreateAppInstanceRequestDBInstanceConfig = None,
|
|
13
53
|
dbinstance_name: str = None,
|
|
14
54
|
dashboard_password: str = None,
|
|
15
55
|
dashboard_username: str = None,
|
|
16
56
|
database_password: str = None,
|
|
17
57
|
instance_class: str = None,
|
|
18
58
|
public_network_access_enabled: bool = None,
|
|
59
|
+
ragenabled: bool = None,
|
|
19
60
|
region_id: str = None,
|
|
20
61
|
v_switch_id: str = None,
|
|
21
62
|
):
|
|
22
63
|
self.app_name = app_name
|
|
23
64
|
self.app_type = app_type
|
|
24
65
|
self.client_token = client_token
|
|
66
|
+
self.dbinstance_config = dbinstance_config
|
|
25
67
|
self.dbinstance_name = dbinstance_name
|
|
26
68
|
self.dashboard_password = dashboard_password
|
|
27
69
|
self.dashboard_username = dashboard_username
|
|
28
70
|
self.database_password = database_password
|
|
29
71
|
self.instance_class = instance_class
|
|
30
72
|
self.public_network_access_enabled = public_network_access_enabled
|
|
73
|
+
self.ragenabled = ragenabled
|
|
74
|
+
self.region_id = region_id
|
|
75
|
+
self.v_switch_id = v_switch_id
|
|
76
|
+
|
|
77
|
+
def validate(self):
|
|
78
|
+
if self.dbinstance_config:
|
|
79
|
+
self.dbinstance_config.validate()
|
|
80
|
+
|
|
81
|
+
def to_map(self):
|
|
82
|
+
_map = super().to_map()
|
|
83
|
+
if _map is not None:
|
|
84
|
+
return _map
|
|
85
|
+
|
|
86
|
+
result = dict()
|
|
87
|
+
if self.app_name is not None:
|
|
88
|
+
result['AppName'] = self.app_name
|
|
89
|
+
if self.app_type is not None:
|
|
90
|
+
result['AppType'] = self.app_type
|
|
91
|
+
if self.client_token is not None:
|
|
92
|
+
result['ClientToken'] = self.client_token
|
|
93
|
+
if self.dbinstance_config is not None:
|
|
94
|
+
result['DBInstanceConfig'] = self.dbinstance_config.to_map()
|
|
95
|
+
if self.dbinstance_name is not None:
|
|
96
|
+
result['DBInstanceName'] = self.dbinstance_name
|
|
97
|
+
if self.dashboard_password is not None:
|
|
98
|
+
result['DashboardPassword'] = self.dashboard_password
|
|
99
|
+
if self.dashboard_username is not None:
|
|
100
|
+
result['DashboardUsername'] = self.dashboard_username
|
|
101
|
+
if self.database_password is not None:
|
|
102
|
+
result['DatabasePassword'] = self.database_password
|
|
103
|
+
if self.instance_class is not None:
|
|
104
|
+
result['InstanceClass'] = self.instance_class
|
|
105
|
+
if self.public_network_access_enabled is not None:
|
|
106
|
+
result['PublicNetworkAccessEnabled'] = self.public_network_access_enabled
|
|
107
|
+
if self.ragenabled is not None:
|
|
108
|
+
result['RAGEnabled'] = self.ragenabled
|
|
109
|
+
if self.region_id is not None:
|
|
110
|
+
result['RegionId'] = self.region_id
|
|
111
|
+
if self.v_switch_id is not None:
|
|
112
|
+
result['VSwitchId'] = self.v_switch_id
|
|
113
|
+
return result
|
|
114
|
+
|
|
115
|
+
def from_map(self, m: dict = None):
|
|
116
|
+
m = m or dict()
|
|
117
|
+
if m.get('AppName') is not None:
|
|
118
|
+
self.app_name = m.get('AppName')
|
|
119
|
+
if m.get('AppType') is not None:
|
|
120
|
+
self.app_type = m.get('AppType')
|
|
121
|
+
if m.get('ClientToken') is not None:
|
|
122
|
+
self.client_token = m.get('ClientToken')
|
|
123
|
+
if m.get('DBInstanceConfig') is not None:
|
|
124
|
+
temp_model = CreateAppInstanceRequestDBInstanceConfig()
|
|
125
|
+
self.dbinstance_config = temp_model.from_map(m['DBInstanceConfig'])
|
|
126
|
+
if m.get('DBInstanceName') is not None:
|
|
127
|
+
self.dbinstance_name = m.get('DBInstanceName')
|
|
128
|
+
if m.get('DashboardPassword') is not None:
|
|
129
|
+
self.dashboard_password = m.get('DashboardPassword')
|
|
130
|
+
if m.get('DashboardUsername') is not None:
|
|
131
|
+
self.dashboard_username = m.get('DashboardUsername')
|
|
132
|
+
if m.get('DatabasePassword') is not None:
|
|
133
|
+
self.database_password = m.get('DatabasePassword')
|
|
134
|
+
if m.get('InstanceClass') is not None:
|
|
135
|
+
self.instance_class = m.get('InstanceClass')
|
|
136
|
+
if m.get('PublicNetworkAccessEnabled') is not None:
|
|
137
|
+
self.public_network_access_enabled = m.get('PublicNetworkAccessEnabled')
|
|
138
|
+
if m.get('RAGEnabled') is not None:
|
|
139
|
+
self.ragenabled = m.get('RAGEnabled')
|
|
140
|
+
if m.get('RegionId') is not None:
|
|
141
|
+
self.region_id = m.get('RegionId')
|
|
142
|
+
if m.get('VSwitchId') is not None:
|
|
143
|
+
self.v_switch_id = m.get('VSwitchId')
|
|
144
|
+
return self
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
class CreateAppInstanceShrinkRequest(TeaModel):
|
|
148
|
+
def __init__(
|
|
149
|
+
self,
|
|
150
|
+
app_name: str = None,
|
|
151
|
+
app_type: str = None,
|
|
152
|
+
client_token: str = None,
|
|
153
|
+
dbinstance_config_shrink: str = None,
|
|
154
|
+
dbinstance_name: str = None,
|
|
155
|
+
dashboard_password: str = None,
|
|
156
|
+
dashboard_username: str = None,
|
|
157
|
+
database_password: str = None,
|
|
158
|
+
instance_class: str = None,
|
|
159
|
+
public_network_access_enabled: bool = None,
|
|
160
|
+
ragenabled: bool = None,
|
|
161
|
+
region_id: str = None,
|
|
162
|
+
v_switch_id: str = None,
|
|
163
|
+
):
|
|
164
|
+
self.app_name = app_name
|
|
165
|
+
self.app_type = app_type
|
|
166
|
+
self.client_token = client_token
|
|
167
|
+
self.dbinstance_config_shrink = dbinstance_config_shrink
|
|
168
|
+
self.dbinstance_name = dbinstance_name
|
|
169
|
+
self.dashboard_password = dashboard_password
|
|
170
|
+
self.dashboard_username = dashboard_username
|
|
171
|
+
self.database_password = database_password
|
|
172
|
+
self.instance_class = instance_class
|
|
173
|
+
self.public_network_access_enabled = public_network_access_enabled
|
|
174
|
+
self.ragenabled = ragenabled
|
|
31
175
|
self.region_id = region_id
|
|
32
176
|
self.v_switch_id = v_switch_id
|
|
33
177
|
|
|
@@ -46,6 +190,8 @@ class CreateAppInstanceRequest(TeaModel):
|
|
|
46
190
|
result['AppType'] = self.app_type
|
|
47
191
|
if self.client_token is not None:
|
|
48
192
|
result['ClientToken'] = self.client_token
|
|
193
|
+
if self.dbinstance_config_shrink is not None:
|
|
194
|
+
result['DBInstanceConfig'] = self.dbinstance_config_shrink
|
|
49
195
|
if self.dbinstance_name is not None:
|
|
50
196
|
result['DBInstanceName'] = self.dbinstance_name
|
|
51
197
|
if self.dashboard_password is not None:
|
|
@@ -58,6 +204,8 @@ class CreateAppInstanceRequest(TeaModel):
|
|
|
58
204
|
result['InstanceClass'] = self.instance_class
|
|
59
205
|
if self.public_network_access_enabled is not None:
|
|
60
206
|
result['PublicNetworkAccessEnabled'] = self.public_network_access_enabled
|
|
207
|
+
if self.ragenabled is not None:
|
|
208
|
+
result['RAGEnabled'] = self.ragenabled
|
|
61
209
|
if self.region_id is not None:
|
|
62
210
|
result['RegionId'] = self.region_id
|
|
63
211
|
if self.v_switch_id is not None:
|
|
@@ -72,6 +220,8 @@ class CreateAppInstanceRequest(TeaModel):
|
|
|
72
220
|
self.app_type = m.get('AppType')
|
|
73
221
|
if m.get('ClientToken') is not None:
|
|
74
222
|
self.client_token = m.get('ClientToken')
|
|
223
|
+
if m.get('DBInstanceConfig') is not None:
|
|
224
|
+
self.dbinstance_config_shrink = m.get('DBInstanceConfig')
|
|
75
225
|
if m.get('DBInstanceName') is not None:
|
|
76
226
|
self.dbinstance_name = m.get('DBInstanceName')
|
|
77
227
|
if m.get('DashboardPassword') is not None:
|
|
@@ -84,6 +234,8 @@ class CreateAppInstanceRequest(TeaModel):
|
|
|
84
234
|
self.instance_class = m.get('InstanceClass')
|
|
85
235
|
if m.get('PublicNetworkAccessEnabled') is not None:
|
|
86
236
|
self.public_network_access_enabled = m.get('PublicNetworkAccessEnabled')
|
|
237
|
+
if m.get('RAGEnabled') is not None:
|
|
238
|
+
self.ragenabled = m.get('RAGEnabled')
|
|
87
239
|
if m.get('RegionId') is not None:
|
|
88
240
|
self.region_id = m.get('RegionId')
|
|
89
241
|
if m.get('VSwitchId') is not None:
|
|
@@ -763,21 +915,62 @@ class DescribeInstanceAuthInfoResponseBodyApiKeys(TeaModel):
|
|
|
763
915
|
return self
|
|
764
916
|
|
|
765
917
|
|
|
918
|
+
class DescribeInstanceAuthInfoResponseBodyConfigList(TeaModel):
|
|
919
|
+
def __init__(
|
|
920
|
+
self,
|
|
921
|
+
name: str = None,
|
|
922
|
+
value: str = None,
|
|
923
|
+
):
|
|
924
|
+
self.name = name
|
|
925
|
+
self.value = value
|
|
926
|
+
|
|
927
|
+
def validate(self):
|
|
928
|
+
pass
|
|
929
|
+
|
|
930
|
+
def to_map(self):
|
|
931
|
+
_map = super().to_map()
|
|
932
|
+
if _map is not None:
|
|
933
|
+
return _map
|
|
934
|
+
|
|
935
|
+
result = dict()
|
|
936
|
+
if self.name is not None:
|
|
937
|
+
result['Name'] = self.name
|
|
938
|
+
if self.value is not None:
|
|
939
|
+
result['Value'] = self.value
|
|
940
|
+
return result
|
|
941
|
+
|
|
942
|
+
def from_map(self, m: dict = None):
|
|
943
|
+
m = m or dict()
|
|
944
|
+
if m.get('Name') is not None:
|
|
945
|
+
self.name = m.get('Name')
|
|
946
|
+
if m.get('Value') is not None:
|
|
947
|
+
self.value = m.get('Value')
|
|
948
|
+
return self
|
|
949
|
+
|
|
950
|
+
|
|
766
951
|
class DescribeInstanceAuthInfoResponseBody(TeaModel):
|
|
767
952
|
def __init__(
|
|
768
953
|
self,
|
|
769
954
|
api_keys: DescribeInstanceAuthInfoResponseBodyApiKeys = None,
|
|
955
|
+
config_list: List[DescribeInstanceAuthInfoResponseBodyConfigList] = None,
|
|
956
|
+
instance_name: str = None,
|
|
770
957
|
jwt_secret: str = None,
|
|
771
958
|
request_id: str = None,
|
|
772
959
|
):
|
|
773
960
|
# API Keys
|
|
774
961
|
self.api_keys = api_keys
|
|
962
|
+
self.config_list = config_list
|
|
963
|
+
self.instance_name = instance_name
|
|
775
964
|
self.jwt_secret = jwt_secret
|
|
776
965
|
self.request_id = request_id
|
|
777
966
|
|
|
778
967
|
def validate(self):
|
|
779
968
|
if self.api_keys:
|
|
780
969
|
self.api_keys.validate()
|
|
970
|
+
if self.config_list:
|
|
971
|
+
for k in self.config_list:
|
|
972
|
+
if k:
|
|
973
|
+
k.validate()
|
|
781
974
|
|
|
782
975
|
def to_map(self):
|
|
783
976
|
_map = super().to_map()
|
|
@@ -787,6 +980,12 @@ class DescribeInstanceAuthInfoResponseBody(TeaModel):
|
|
|
787
980
|
result = dict()
|
|
788
981
|
if self.api_keys is not None:
|
|
789
982
|
result['ApiKeys'] = self.api_keys.to_map()
|
|
983
|
+
result['ConfigList'] = []
|
|
984
|
+
if self.config_list is not None:
|
|
985
|
+
for k in self.config_list:
|
|
986
|
+
result['ConfigList'].append(k.to_map() if k else None)
|
|
987
|
+
if self.instance_name is not None:
|
|
988
|
+
result['InstanceName'] = self.instance_name
|
|
790
989
|
if self.jwt_secret is not None:
|
|
791
990
|
result['JwtSecret'] = self.jwt_secret
|
|
792
991
|
if self.request_id is not None:
|
|
@@ -798,6 +997,13 @@ class DescribeInstanceAuthInfoResponseBody(TeaModel):
|
|
|
798
997
|
if m.get('ApiKeys') is not None:
|
|
799
998
|
temp_model = DescribeInstanceAuthInfoResponseBodyApiKeys()
|
|
800
999
|
self.api_keys = temp_model.from_map(m['ApiKeys'])
|
|
1000
|
+
self.config_list = []
|
|
1001
|
+
if m.get('ConfigList') is not None:
|
|
1002
|
+
for k in m.get('ConfigList'):
|
|
1003
|
+
temp_model = DescribeInstanceAuthInfoResponseBodyConfigList()
|
|
1004
|
+
self.config_list.append(temp_model.from_map(k))
|
|
1005
|
+
if m.get('InstanceName') is not None:
|
|
1006
|
+
self.instance_name = m.get('InstanceName')
|
|
801
1007
|
if m.get('JwtSecret') is not None:
|
|
802
1008
|
self.jwt_secret = m.get('JwtSecret')
|
|
803
1009
|
if m.get('RequestId') is not None:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_rdsai20250507/__init__.py,sha256=mJ0xQIqup8FmjqcIVqLNOKlf8ld4M0MtvFilCTGA0Fw,21
|
|
2
|
+
alibabacloud_rdsai20250507/client.py,sha256=NujqsqmrriGTNOKh9bM_j7siH6KxJ_uYl4bO0Au-XJU,37016
|
|
3
|
+
alibabacloud_rdsai20250507/models.py,sha256=r30qc2rMH6qX0xAOgsSQPKWwmUm_gXvBPTelieNr0X4,50061
|
|
4
|
+
alibabacloud_rdsai20250507-1.1.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_rdsai20250507-1.1.2.dist-info/METADATA,sha256=G1WKBavbVbLVhiLYdREWG7DDy7K2hg1GTHET0oo_cfg,2326
|
|
6
|
+
alibabacloud_rdsai20250507-1.1.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_rdsai20250507-1.1.2.dist-info/top_level.txt,sha256=cWU8Yl8TZf4DX9PMY8FBroXbK3cKNtdwPS4J0woRVbY,27
|
|
8
|
+
alibabacloud_rdsai20250507-1.1.2.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_rdsai20250507/__init__.py,sha256=XIz3qAg9G9YysQi3Ryp0CN3rtc_JiecHZ9L2vEzcM6s,21
|
|
2
|
-
alibabacloud_rdsai20250507/client.py,sha256=ZE2EcCdjucNERSzzWplZmpYZMZSCc07s8QBdnhdZYr8,35820
|
|
3
|
-
alibabacloud_rdsai20250507/models.py,sha256=77oHvwPK9rbD3AWAzE6BE_HvvVIMlgcHqWmzQmcx-RQ,42126
|
|
4
|
-
alibabacloud_rdsai20250507-1.1.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_rdsai20250507-1.1.0.dist-info/METADATA,sha256=OkA51gL8WAaO_wlES3cgdX0XMZgnb1OjeIn47Yr5Jw4,2326
|
|
6
|
-
alibabacloud_rdsai20250507-1.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_rdsai20250507-1.1.0.dist-info/top_level.txt,sha256=cWU8Yl8TZf4DX9PMY8FBroXbK3cKNtdwPS4J0woRVbY,27
|
|
8
|
-
alibabacloud_rdsai20250507-1.1.0.dist-info/RECORD,,
|
{alibabacloud_rdsai20250507-1.1.0.dist-info → alibabacloud_rdsai20250507-1.1.2.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_rdsai20250507-1.1.0.dist-info → alibabacloud_rdsai20250507-1.1.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|