types-aiobotocore-dsql 2.16.0__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 types-aiobotocore-dsql might be problematic. Click here for more details.

@@ -0,0 +1,44 @@
1
+ """
2
+ Main interface for dsql service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from aiobotocore.session import get_session
8
+ from types_aiobotocore_dsql import (
9
+ AuroraDSQLClient,
10
+ Client,
11
+ ClusterActiveWaiter,
12
+ ClusterNotExistsWaiter,
13
+ ListClustersPaginator,
14
+ )
15
+
16
+ session = get_session()
17
+ async with session.create_client("dsql") as client:
18
+ client: AuroraDSQLClient
19
+ ...
20
+
21
+
22
+ cluster_active_waiter: ClusterActiveWaiter = client.get_waiter("cluster_active")
23
+ cluster_not_exists_waiter: ClusterNotExistsWaiter = client.get_waiter("cluster_not_exists")
24
+
25
+ list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
26
+ ```
27
+
28
+ Copyright 2024 Vlad Emelianov
29
+ """
30
+
31
+ from .client import AuroraDSQLClient
32
+ from .paginator import ListClustersPaginator
33
+ from .waiter import ClusterActiveWaiter, ClusterNotExistsWaiter
34
+
35
+ Client = AuroraDSQLClient
36
+
37
+
38
+ __all__ = (
39
+ "AuroraDSQLClient",
40
+ "Client",
41
+ "ClusterActiveWaiter",
42
+ "ClusterNotExistsWaiter",
43
+ "ListClustersPaginator",
44
+ )
@@ -0,0 +1,43 @@
1
+ """
2
+ Main interface for dsql service.
3
+
4
+ Usage::
5
+
6
+ ```python
7
+ from aiobotocore.session import get_session
8
+ from types_aiobotocore_dsql import (
9
+ AuroraDSQLClient,
10
+ Client,
11
+ ClusterActiveWaiter,
12
+ ClusterNotExistsWaiter,
13
+ ListClustersPaginator,
14
+ )
15
+
16
+ session = get_session()
17
+ async with session.create_client("dsql") as client:
18
+ client: AuroraDSQLClient
19
+ ...
20
+
21
+
22
+ cluster_active_waiter: ClusterActiveWaiter = client.get_waiter("cluster_active")
23
+ cluster_not_exists_waiter: ClusterNotExistsWaiter = client.get_waiter("cluster_not_exists")
24
+
25
+ list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
26
+ ```
27
+
28
+ Copyright 2024 Vlad Emelianov
29
+ """
30
+
31
+ from .client import AuroraDSQLClient
32
+ from .paginator import ListClustersPaginator
33
+ from .waiter import ClusterActiveWaiter, ClusterNotExistsWaiter
34
+
35
+ Client = AuroraDSQLClient
36
+
37
+ __all__ = (
38
+ "AuroraDSQLClient",
39
+ "Client",
40
+ "ClusterActiveWaiter",
41
+ "ClusterNotExistsWaiter",
42
+ "ListClustersPaginator",
43
+ )
@@ -0,0 +1,42 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2024 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
14
+ print(
15
+ "Type annotations for aiobotocore AuroraDSQL 2.16.0\n"
16
+ "Version: 2.16.0\n"
17
+ "Builder version: 8.6.4\n"
18
+ "Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#auroradsql\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ print("2.16.0")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ return print_version()
38
+ print_info()
39
+
40
+
41
+ if __name__ == "__main__":
42
+ main()
@@ -0,0 +1,254 @@
1
+ """
2
+ Type annotations for dsql service client.
3
+
4
+ [Open documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from aiobotocore.session import get_session
10
+ from types_aiobotocore_dsql.client import AuroraDSQLClient
11
+
12
+ session = get_session()
13
+ async with session.create_client("dsql") as client:
14
+ client: AuroraDSQLClient
15
+ ```
16
+
17
+ Copyright 2024 Vlad Emelianov
18
+ """
19
+
20
+ import sys
21
+ from typing import Any, Dict, Mapping, Type, overload
22
+
23
+ from aiobotocore.client import AioBaseClient
24
+ from botocore.client import ClientMeta
25
+
26
+ from .paginator import ListClustersPaginator
27
+ from .type_defs import (
28
+ CreateClusterInputRequestTypeDef,
29
+ CreateClusterOutputTypeDef,
30
+ CreateMultiRegionClustersInputRequestTypeDef,
31
+ CreateMultiRegionClustersOutputTypeDef,
32
+ DeleteClusterInputRequestTypeDef,
33
+ DeleteClusterOutputTypeDef,
34
+ DeleteMultiRegionClustersInputRequestTypeDef,
35
+ EmptyResponseMetadataTypeDef,
36
+ GetClusterInputRequestTypeDef,
37
+ GetClusterOutputTypeDef,
38
+ ListClustersInputRequestTypeDef,
39
+ ListClustersOutputTypeDef,
40
+ ListTagsForResourceInputRequestTypeDef,
41
+ ListTagsForResourceOutputTypeDef,
42
+ TagResourceInputRequestTypeDef,
43
+ UntagResourceInputRequestTypeDef,
44
+ UpdateClusterInputRequestTypeDef,
45
+ UpdateClusterOutputTypeDef,
46
+ )
47
+ from .waiter import ClusterActiveWaiter, ClusterNotExistsWaiter
48
+
49
+ if sys.version_info >= (3, 12):
50
+ from typing import Literal, Unpack
51
+ else:
52
+ from typing_extensions import Literal, Unpack
53
+
54
+
55
+ __all__ = ("AuroraDSQLClient",)
56
+
57
+
58
+ class BotocoreClientError(Exception):
59
+ MSG_TEMPLATE: str
60
+
61
+ def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
62
+ self.response: Dict[str, Any]
63
+ self.operation_name: str
64
+
65
+
66
+ class Exceptions:
67
+ AccessDeniedException: Type[BotocoreClientError]
68
+ ClientError: Type[BotocoreClientError]
69
+ ConflictException: Type[BotocoreClientError]
70
+ InternalServerException: Type[BotocoreClientError]
71
+ ResourceNotFoundException: Type[BotocoreClientError]
72
+ ServiceQuotaExceededException: Type[BotocoreClientError]
73
+ ThrottlingException: Type[BotocoreClientError]
74
+ ValidationException: Type[BotocoreClientError]
75
+
76
+
77
+ class AuroraDSQLClient(AioBaseClient):
78
+ """
79
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
80
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
81
+ """
82
+
83
+ meta: ClientMeta
84
+
85
+ @property
86
+ def exceptions(self) -> Exceptions:
87
+ """
88
+ AuroraDSQLClient exceptions.
89
+
90
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
91
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#exceptions)
92
+ """
93
+
94
+ def can_paginate(self, operation_name: str) -> bool:
95
+ """
96
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/can_paginate.html)
97
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#can_paginate)
98
+ """
99
+
100
+ async def generate_presigned_url(
101
+ self,
102
+ ClientMethod: str,
103
+ Params: Mapping[str, Any] = ...,
104
+ ExpiresIn: int = 3600,
105
+ HttpMethod: str = ...,
106
+ ) -> str:
107
+ """
108
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/generate_presigned_url.html)
109
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#generate_presigned_url)
110
+ """
111
+
112
+ async def close(self) -> None:
113
+ """
114
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/close.html)
115
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#close)
116
+ """
117
+
118
+ async def create_cluster(
119
+ self, **kwargs: Unpack[CreateClusterInputRequestTypeDef]
120
+ ) -> CreateClusterOutputTypeDef:
121
+ """
122
+ Creates a cluster in Amazon Aurora DSQL.
123
+
124
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/create_cluster.html)
125
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#create_cluster)
126
+ """
127
+
128
+ async def create_multi_region_clusters(
129
+ self, **kwargs: Unpack[CreateMultiRegionClustersInputRequestTypeDef]
130
+ ) -> CreateMultiRegionClustersOutputTypeDef:
131
+ """
132
+ Creates multi-Region clusters in Amazon Aurora DSQL.
133
+
134
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/create_multi_region_clusters.html)
135
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#create_multi_region_clusters)
136
+ """
137
+
138
+ async def delete_cluster(
139
+ self, **kwargs: Unpack[DeleteClusterInputRequestTypeDef]
140
+ ) -> DeleteClusterOutputTypeDef:
141
+ """
142
+ Deletes a cluster in Amazon Aurora DSQL.
143
+
144
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/delete_cluster.html)
145
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#delete_cluster)
146
+ """
147
+
148
+ async def delete_multi_region_clusters(
149
+ self, **kwargs: Unpack[DeleteMultiRegionClustersInputRequestTypeDef]
150
+ ) -> EmptyResponseMetadataTypeDef:
151
+ """
152
+ Deletes a multi-Region cluster in Amazon Aurora DSQL.
153
+
154
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/delete_multi_region_clusters.html)
155
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#delete_multi_region_clusters)
156
+ """
157
+
158
+ async def get_cluster(
159
+ self, **kwargs: Unpack[GetClusterInputRequestTypeDef]
160
+ ) -> GetClusterOutputTypeDef:
161
+ """
162
+ Retrieves information about a cluster.
163
+
164
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_cluster.html)
165
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_cluster)
166
+ """
167
+
168
+ async def list_clusters(
169
+ self, **kwargs: Unpack[ListClustersInputRequestTypeDef]
170
+ ) -> ListClustersOutputTypeDef:
171
+ """
172
+ Retrieves information about a list of clusters.
173
+
174
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/list_clusters.html)
175
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#list_clusters)
176
+ """
177
+
178
+ async def list_tags_for_resource(
179
+ self, **kwargs: Unpack[ListTagsForResourceInputRequestTypeDef]
180
+ ) -> ListTagsForResourceOutputTypeDef:
181
+ """
182
+ Lists all of the tags for a resource.
183
+
184
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/list_tags_for_resource.html)
185
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#list_tags_for_resource)
186
+ """
187
+
188
+ async def tag_resource(
189
+ self, **kwargs: Unpack[TagResourceInputRequestTypeDef]
190
+ ) -> EmptyResponseMetadataTypeDef:
191
+ """
192
+ Tags a resource with a map of key and value pairs.
193
+
194
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/tag_resource.html)
195
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#tag_resource)
196
+ """
197
+
198
+ async def untag_resource(
199
+ self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]
200
+ ) -> EmptyResponseMetadataTypeDef:
201
+ """
202
+ Removes a tag from a resource.
203
+
204
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/untag_resource.html)
205
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#untag_resource)
206
+ """
207
+
208
+ async def update_cluster(
209
+ self, **kwargs: Unpack[UpdateClusterInputRequestTypeDef]
210
+ ) -> UpdateClusterOutputTypeDef:
211
+ """
212
+ Updates a cluster.
213
+
214
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/update_cluster.html)
215
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#update_cluster)
216
+ """
217
+
218
+ def get_paginator(self, operation_name: Literal["list_clusters"]) -> ListClustersPaginator:
219
+ """
220
+ Create a paginator for an operation.
221
+
222
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_paginator.html)
223
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_paginator)
224
+ """
225
+
226
+ @overload
227
+ def get_waiter(self, waiter_name: Literal["cluster_active"]) -> ClusterActiveWaiter:
228
+ """
229
+ Returns an object that can wait for some condition.
230
+
231
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_waiter.html)
232
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_waiter)
233
+ """
234
+
235
+ @overload
236
+ def get_waiter(self, waiter_name: Literal["cluster_not_exists"]) -> ClusterNotExistsWaiter:
237
+ """
238
+ Returns an object that can wait for some condition.
239
+
240
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_waiter.html)
241
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_waiter)
242
+ """
243
+
244
+ async def __aenter__(self) -> "AuroraDSQLClient":
245
+ """
246
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
247
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
248
+ """
249
+
250
+ async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> Any:
251
+ """
252
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
253
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
254
+ """
@@ -0,0 +1,250 @@
1
+ """
2
+ Type annotations for dsql service client.
3
+
4
+ [Open documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
5
+
6
+ Usage::
7
+
8
+ ```python
9
+ from aiobotocore.session import get_session
10
+ from types_aiobotocore_dsql.client import AuroraDSQLClient
11
+
12
+ session = get_session()
13
+ async with session.create_client("dsql") as client:
14
+ client: AuroraDSQLClient
15
+ ```
16
+
17
+ Copyright 2024 Vlad Emelianov
18
+ """
19
+
20
+ import sys
21
+ from typing import Any, Dict, Mapping, Type, overload
22
+
23
+ from aiobotocore.client import AioBaseClient
24
+ from botocore.client import ClientMeta
25
+
26
+ from .paginator import ListClustersPaginator
27
+ from .type_defs import (
28
+ CreateClusterInputRequestTypeDef,
29
+ CreateClusterOutputTypeDef,
30
+ CreateMultiRegionClustersInputRequestTypeDef,
31
+ CreateMultiRegionClustersOutputTypeDef,
32
+ DeleteClusterInputRequestTypeDef,
33
+ DeleteClusterOutputTypeDef,
34
+ DeleteMultiRegionClustersInputRequestTypeDef,
35
+ EmptyResponseMetadataTypeDef,
36
+ GetClusterInputRequestTypeDef,
37
+ GetClusterOutputTypeDef,
38
+ ListClustersInputRequestTypeDef,
39
+ ListClustersOutputTypeDef,
40
+ ListTagsForResourceInputRequestTypeDef,
41
+ ListTagsForResourceOutputTypeDef,
42
+ TagResourceInputRequestTypeDef,
43
+ UntagResourceInputRequestTypeDef,
44
+ UpdateClusterInputRequestTypeDef,
45
+ UpdateClusterOutputTypeDef,
46
+ )
47
+ from .waiter import ClusterActiveWaiter, ClusterNotExistsWaiter
48
+
49
+ if sys.version_info >= (3, 12):
50
+ from typing import Literal, Unpack
51
+ else:
52
+ from typing_extensions import Literal, Unpack
53
+
54
+ __all__ = ("AuroraDSQLClient",)
55
+
56
+ class BotocoreClientError(Exception):
57
+ MSG_TEMPLATE: str
58
+
59
+ def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
60
+ self.response: Dict[str, Any]
61
+ self.operation_name: str
62
+
63
+ class Exceptions:
64
+ AccessDeniedException: Type[BotocoreClientError]
65
+ ClientError: Type[BotocoreClientError]
66
+ ConflictException: Type[BotocoreClientError]
67
+ InternalServerException: Type[BotocoreClientError]
68
+ ResourceNotFoundException: Type[BotocoreClientError]
69
+ ServiceQuotaExceededException: Type[BotocoreClientError]
70
+ ThrottlingException: Type[BotocoreClientError]
71
+ ValidationException: Type[BotocoreClientError]
72
+
73
+ class AuroraDSQLClient(AioBaseClient):
74
+ """
75
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
76
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
77
+ """
78
+
79
+ meta: ClientMeta
80
+
81
+ @property
82
+ def exceptions(self) -> Exceptions:
83
+ """
84
+ AuroraDSQLClient exceptions.
85
+
86
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
87
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#exceptions)
88
+ """
89
+
90
+ def can_paginate(self, operation_name: str) -> bool:
91
+ """
92
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/can_paginate.html)
93
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#can_paginate)
94
+ """
95
+
96
+ async def generate_presigned_url(
97
+ self,
98
+ ClientMethod: str,
99
+ Params: Mapping[str, Any] = ...,
100
+ ExpiresIn: int = 3600,
101
+ HttpMethod: str = ...,
102
+ ) -> str:
103
+ """
104
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/generate_presigned_url.html)
105
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#generate_presigned_url)
106
+ """
107
+
108
+ async def close(self) -> None:
109
+ """
110
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/close.html)
111
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#close)
112
+ """
113
+
114
+ async def create_cluster(
115
+ self, **kwargs: Unpack[CreateClusterInputRequestTypeDef]
116
+ ) -> CreateClusterOutputTypeDef:
117
+ """
118
+ Creates a cluster in Amazon Aurora DSQL.
119
+
120
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/create_cluster.html)
121
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#create_cluster)
122
+ """
123
+
124
+ async def create_multi_region_clusters(
125
+ self, **kwargs: Unpack[CreateMultiRegionClustersInputRequestTypeDef]
126
+ ) -> CreateMultiRegionClustersOutputTypeDef:
127
+ """
128
+ Creates multi-Region clusters in Amazon Aurora DSQL.
129
+
130
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/create_multi_region_clusters.html)
131
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#create_multi_region_clusters)
132
+ """
133
+
134
+ async def delete_cluster(
135
+ self, **kwargs: Unpack[DeleteClusterInputRequestTypeDef]
136
+ ) -> DeleteClusterOutputTypeDef:
137
+ """
138
+ Deletes a cluster in Amazon Aurora DSQL.
139
+
140
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/delete_cluster.html)
141
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#delete_cluster)
142
+ """
143
+
144
+ async def delete_multi_region_clusters(
145
+ self, **kwargs: Unpack[DeleteMultiRegionClustersInputRequestTypeDef]
146
+ ) -> EmptyResponseMetadataTypeDef:
147
+ """
148
+ Deletes a multi-Region cluster in Amazon Aurora DSQL.
149
+
150
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/delete_multi_region_clusters.html)
151
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#delete_multi_region_clusters)
152
+ """
153
+
154
+ async def get_cluster(
155
+ self, **kwargs: Unpack[GetClusterInputRequestTypeDef]
156
+ ) -> GetClusterOutputTypeDef:
157
+ """
158
+ Retrieves information about a cluster.
159
+
160
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_cluster.html)
161
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_cluster)
162
+ """
163
+
164
+ async def list_clusters(
165
+ self, **kwargs: Unpack[ListClustersInputRequestTypeDef]
166
+ ) -> ListClustersOutputTypeDef:
167
+ """
168
+ Retrieves information about a list of clusters.
169
+
170
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/list_clusters.html)
171
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#list_clusters)
172
+ """
173
+
174
+ async def list_tags_for_resource(
175
+ self, **kwargs: Unpack[ListTagsForResourceInputRequestTypeDef]
176
+ ) -> ListTagsForResourceOutputTypeDef:
177
+ """
178
+ Lists all of the tags for a resource.
179
+
180
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/list_tags_for_resource.html)
181
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#list_tags_for_resource)
182
+ """
183
+
184
+ async def tag_resource(
185
+ self, **kwargs: Unpack[TagResourceInputRequestTypeDef]
186
+ ) -> EmptyResponseMetadataTypeDef:
187
+ """
188
+ Tags a resource with a map of key and value pairs.
189
+
190
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/tag_resource.html)
191
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#tag_resource)
192
+ """
193
+
194
+ async def untag_resource(
195
+ self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]
196
+ ) -> EmptyResponseMetadataTypeDef:
197
+ """
198
+ Removes a tag from a resource.
199
+
200
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/untag_resource.html)
201
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#untag_resource)
202
+ """
203
+
204
+ async def update_cluster(
205
+ self, **kwargs: Unpack[UpdateClusterInputRequestTypeDef]
206
+ ) -> UpdateClusterOutputTypeDef:
207
+ """
208
+ Updates a cluster.
209
+
210
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/update_cluster.html)
211
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#update_cluster)
212
+ """
213
+
214
+ def get_paginator(self, operation_name: Literal["list_clusters"]) -> ListClustersPaginator:
215
+ """
216
+ Create a paginator for an operation.
217
+
218
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_paginator.html)
219
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_paginator)
220
+ """
221
+
222
+ @overload
223
+ def get_waiter(self, waiter_name: Literal["cluster_active"]) -> ClusterActiveWaiter:
224
+ """
225
+ Returns an object that can wait for some condition.
226
+
227
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_waiter.html)
228
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_waiter)
229
+ """
230
+
231
+ @overload
232
+ def get_waiter(self, waiter_name: Literal["cluster_not_exists"]) -> ClusterNotExistsWaiter:
233
+ """
234
+ Returns an object that can wait for some condition.
235
+
236
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql/client/get_waiter.html)
237
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/#get_waiter)
238
+ """
239
+
240
+ async def __aenter__(self) -> "AuroraDSQLClient":
241
+ """
242
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
243
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
244
+ """
245
+
246
+ async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> Any:
247
+ """
248
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/dsql.html#AuroraDSQL.Client)
249
+ [Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_dsql/client/)
250
+ """