types-aiobotocore-route53profiles 2.18.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.
- types_aiobotocore_route53profiles/__init__.py +46 -0
- types_aiobotocore_route53profiles/__init__.pyi +45 -0
- types_aiobotocore_route53profiles/__main__.py +43 -0
- types_aiobotocore_route53profiles/client.py +343 -0
- types_aiobotocore_route53profiles/client.pyi +340 -0
- types_aiobotocore_route53profiles/literals.py +463 -0
- types_aiobotocore_route53profiles/literals.pyi +461 -0
- types_aiobotocore_route53profiles/paginator.py +121 -0
- types_aiobotocore_route53profiles/paginator.pyi +111 -0
- types_aiobotocore_route53profiles/py.typed +0 -0
- types_aiobotocore_route53profiles/type_defs.py +316 -0
- types_aiobotocore_route53profiles/type_defs.pyi +275 -0
- types_aiobotocore_route53profiles/version.py +7 -0
- types_aiobotocore_route53profiles-2.18.0.dist-info/LICENSE +21 -0
- types_aiobotocore_route53profiles-2.18.0.dist-info/METADATA +488 -0
- types_aiobotocore_route53profiles-2.18.0.dist-info/RECORD +18 -0
- types_aiobotocore_route53profiles-2.18.0.dist-info/WHEEL +5 -0
- types_aiobotocore_route53profiles-2.18.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for route53profiles service.
|
|
3
|
+
|
|
4
|
+
Usage::
|
|
5
|
+
|
|
6
|
+
```python
|
|
7
|
+
from aiobotocore.session import get_session
|
|
8
|
+
from types_aiobotocore_route53profiles import (
|
|
9
|
+
Client,
|
|
10
|
+
ListProfileAssociationsPaginator,
|
|
11
|
+
ListProfileResourceAssociationsPaginator,
|
|
12
|
+
ListProfilesPaginator,
|
|
13
|
+
Route53ProfilesClient,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
session = get_session()
|
|
17
|
+
async with session.create_client("route53profiles") as client:
|
|
18
|
+
client: Route53ProfilesClient
|
|
19
|
+
...
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
list_profile_associations_paginator: ListProfileAssociationsPaginator = client.get_paginator("list_profile_associations")
|
|
23
|
+
list_profile_resource_associations_paginator: ListProfileResourceAssociationsPaginator = client.get_paginator("list_profile_resource_associations")
|
|
24
|
+
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Copyright 2025 Vlad Emelianov
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
from .client import Route53ProfilesClient
|
|
31
|
+
from .paginator import (
|
|
32
|
+
ListProfileAssociationsPaginator,
|
|
33
|
+
ListProfileResourceAssociationsPaginator,
|
|
34
|
+
ListProfilesPaginator,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
Client = Route53ProfilesClient
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
__all__ = (
|
|
41
|
+
"Client",
|
|
42
|
+
"ListProfileAssociationsPaginator",
|
|
43
|
+
"ListProfileResourceAssociationsPaginator",
|
|
44
|
+
"ListProfilesPaginator",
|
|
45
|
+
"Route53ProfilesClient",
|
|
46
|
+
)
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for route53profiles service.
|
|
3
|
+
|
|
4
|
+
Usage::
|
|
5
|
+
|
|
6
|
+
```python
|
|
7
|
+
from aiobotocore.session import get_session
|
|
8
|
+
from types_aiobotocore_route53profiles import (
|
|
9
|
+
Client,
|
|
10
|
+
ListProfileAssociationsPaginator,
|
|
11
|
+
ListProfileResourceAssociationsPaginator,
|
|
12
|
+
ListProfilesPaginator,
|
|
13
|
+
Route53ProfilesClient,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
session = get_session()
|
|
17
|
+
async with session.create_client("route53profiles") as client:
|
|
18
|
+
client: Route53ProfilesClient
|
|
19
|
+
...
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
list_profile_associations_paginator: ListProfileAssociationsPaginator = client.get_paginator("list_profile_associations")
|
|
23
|
+
list_profile_resource_associations_paginator: ListProfileResourceAssociationsPaginator = client.get_paginator("list_profile_resource_associations")
|
|
24
|
+
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Copyright 2025 Vlad Emelianov
|
|
28
|
+
"""
|
|
29
|
+
|
|
30
|
+
from .client import Route53ProfilesClient
|
|
31
|
+
from .paginator import (
|
|
32
|
+
ListProfileAssociationsPaginator,
|
|
33
|
+
ListProfileResourceAssociationsPaginator,
|
|
34
|
+
ListProfilesPaginator,
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
Client = Route53ProfilesClient
|
|
38
|
+
|
|
39
|
+
__all__ = (
|
|
40
|
+
"Client",
|
|
41
|
+
"ListProfileAssociationsPaginator",
|
|
42
|
+
"ListProfileResourceAssociationsPaginator",
|
|
43
|
+
"ListProfilesPaginator",
|
|
44
|
+
"Route53ProfilesClient",
|
|
45
|
+
)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import sys
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def print_info() -> None:
|
|
11
|
+
"""
|
|
12
|
+
Print package info to stdout.
|
|
13
|
+
"""
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for aiobotocore Route53Profiles 2.18.0\n"
|
|
16
|
+
"Version: 2.18.0\n"
|
|
17
|
+
"Builder version: 8.8.0\n"
|
|
18
|
+
"Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles//\n"
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles.html#route53profiles\n"
|
|
20
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def print_version() -> None:
|
|
26
|
+
"""
|
|
27
|
+
Print package version to stdout.
|
|
28
|
+
"""
|
|
29
|
+
sys.stdout.write("2.18.0\n")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def main() -> None:
|
|
33
|
+
"""
|
|
34
|
+
Main CLI entrypoint.
|
|
35
|
+
"""
|
|
36
|
+
if "--version" in sys.argv:
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
39
|
+
print_info()
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
if __name__ == "__main__":
|
|
43
|
+
main()
|
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for route53profiles service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from aiobotocore.session import get_session
|
|
10
|
+
from types_aiobotocore_route53profiles.client import Route53ProfilesClient
|
|
11
|
+
|
|
12
|
+
session = get_session()
|
|
13
|
+
async with session.create_client("route53profiles") as client:
|
|
14
|
+
client: Route53ProfilesClient
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Copyright 2025 Vlad Emelianov
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from __future__ import annotations
|
|
21
|
+
|
|
22
|
+
import sys
|
|
23
|
+
from types import TracebackType
|
|
24
|
+
from typing import Any, overload
|
|
25
|
+
|
|
26
|
+
from aiobotocore.client import AioBaseClient
|
|
27
|
+
from botocore.client import ClientMeta
|
|
28
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
29
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
30
|
+
|
|
31
|
+
from .paginator import (
|
|
32
|
+
ListProfileAssociationsPaginator,
|
|
33
|
+
ListProfileResourceAssociationsPaginator,
|
|
34
|
+
ListProfilesPaginator,
|
|
35
|
+
)
|
|
36
|
+
from .type_defs import (
|
|
37
|
+
AssociateProfileRequestRequestTypeDef,
|
|
38
|
+
AssociateProfileResponseTypeDef,
|
|
39
|
+
AssociateResourceToProfileRequestRequestTypeDef,
|
|
40
|
+
AssociateResourceToProfileResponseTypeDef,
|
|
41
|
+
CreateProfileRequestRequestTypeDef,
|
|
42
|
+
CreateProfileResponseTypeDef,
|
|
43
|
+
DeleteProfileRequestRequestTypeDef,
|
|
44
|
+
DeleteProfileResponseTypeDef,
|
|
45
|
+
DisassociateProfileRequestRequestTypeDef,
|
|
46
|
+
DisassociateProfileResponseTypeDef,
|
|
47
|
+
DisassociateResourceFromProfileRequestRequestTypeDef,
|
|
48
|
+
DisassociateResourceFromProfileResponseTypeDef,
|
|
49
|
+
GetProfileAssociationRequestRequestTypeDef,
|
|
50
|
+
GetProfileAssociationResponseTypeDef,
|
|
51
|
+
GetProfileRequestRequestTypeDef,
|
|
52
|
+
GetProfileResourceAssociationRequestRequestTypeDef,
|
|
53
|
+
GetProfileResourceAssociationResponseTypeDef,
|
|
54
|
+
GetProfileResponseTypeDef,
|
|
55
|
+
ListProfileAssociationsRequestRequestTypeDef,
|
|
56
|
+
ListProfileAssociationsResponseTypeDef,
|
|
57
|
+
ListProfileResourceAssociationsRequestRequestTypeDef,
|
|
58
|
+
ListProfileResourceAssociationsResponseTypeDef,
|
|
59
|
+
ListProfilesRequestRequestTypeDef,
|
|
60
|
+
ListProfilesResponseTypeDef,
|
|
61
|
+
ListTagsForResourceRequestRequestTypeDef,
|
|
62
|
+
ListTagsForResourceResponseTypeDef,
|
|
63
|
+
TagResourceRequestRequestTypeDef,
|
|
64
|
+
UntagResourceRequestRequestTypeDef,
|
|
65
|
+
UpdateProfileResourceAssociationRequestRequestTypeDef,
|
|
66
|
+
UpdateProfileResourceAssociationResponseTypeDef,
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
if sys.version_info >= (3, 9):
|
|
70
|
+
from builtins import dict as Dict
|
|
71
|
+
from builtins import type as Type
|
|
72
|
+
from collections.abc import Mapping
|
|
73
|
+
else:
|
|
74
|
+
from typing import Dict, Mapping, Type
|
|
75
|
+
if sys.version_info >= (3, 12):
|
|
76
|
+
from typing import Literal, Self, Unpack
|
|
77
|
+
else:
|
|
78
|
+
from typing_extensions import Literal, Self, Unpack
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
__all__ = ("Route53ProfilesClient",)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class Exceptions(BaseClientExceptions):
|
|
85
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
86
|
+
ClientError: Type[BotocoreClientError]
|
|
87
|
+
ConflictException: Type[BotocoreClientError]
|
|
88
|
+
InternalServiceErrorException: Type[BotocoreClientError]
|
|
89
|
+
InvalidNextTokenException: Type[BotocoreClientError]
|
|
90
|
+
InvalidParameterException: Type[BotocoreClientError]
|
|
91
|
+
LimitExceededException: Type[BotocoreClientError]
|
|
92
|
+
ResourceExistsException: Type[BotocoreClientError]
|
|
93
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
94
|
+
ThrottlingException: Type[BotocoreClientError]
|
|
95
|
+
ValidationException: Type[BotocoreClientError]
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class Route53ProfilesClient(AioBaseClient):
|
|
99
|
+
"""
|
|
100
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles.html#Route53Profiles.Client)
|
|
101
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/)
|
|
102
|
+
"""
|
|
103
|
+
|
|
104
|
+
meta: ClientMeta
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
def exceptions(self) -> Exceptions:
|
|
108
|
+
"""
|
|
109
|
+
Route53ProfilesClient exceptions.
|
|
110
|
+
|
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles.html#Route53Profiles.Client)
|
|
112
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#exceptions)
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
116
|
+
"""
|
|
117
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/can_paginate.html)
|
|
118
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#can_paginate)
|
|
119
|
+
"""
|
|
120
|
+
|
|
121
|
+
async def generate_presigned_url(
|
|
122
|
+
self,
|
|
123
|
+
ClientMethod: str,
|
|
124
|
+
Params: Mapping[str, Any] = ...,
|
|
125
|
+
ExpiresIn: int = 3600,
|
|
126
|
+
HttpMethod: str = ...,
|
|
127
|
+
) -> str:
|
|
128
|
+
"""
|
|
129
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/generate_presigned_url.html)
|
|
130
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#generate_presigned_url)
|
|
131
|
+
"""
|
|
132
|
+
|
|
133
|
+
async def associate_profile(
|
|
134
|
+
self, **kwargs: Unpack[AssociateProfileRequestRequestTypeDef]
|
|
135
|
+
) -> AssociateProfileResponseTypeDef:
|
|
136
|
+
"""
|
|
137
|
+
Associates a Route 53 Profiles profile with a VPC.
|
|
138
|
+
|
|
139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/associate_profile.html)
|
|
140
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#associate_profile)
|
|
141
|
+
"""
|
|
142
|
+
|
|
143
|
+
async def associate_resource_to_profile(
|
|
144
|
+
self, **kwargs: Unpack[AssociateResourceToProfileRequestRequestTypeDef]
|
|
145
|
+
) -> AssociateResourceToProfileResponseTypeDef:
|
|
146
|
+
"""
|
|
147
|
+
Associates a DNS reource configuration to a Route 53 Profile.
|
|
148
|
+
|
|
149
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/associate_resource_to_profile.html)
|
|
150
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#associate_resource_to_profile)
|
|
151
|
+
"""
|
|
152
|
+
|
|
153
|
+
async def create_profile(
|
|
154
|
+
self, **kwargs: Unpack[CreateProfileRequestRequestTypeDef]
|
|
155
|
+
) -> CreateProfileResponseTypeDef:
|
|
156
|
+
"""
|
|
157
|
+
Creates an empty Route 53 Profile.
|
|
158
|
+
|
|
159
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/create_profile.html)
|
|
160
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#create_profile)
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
async def delete_profile(
|
|
164
|
+
self, **kwargs: Unpack[DeleteProfileRequestRequestTypeDef]
|
|
165
|
+
) -> DeleteProfileResponseTypeDef:
|
|
166
|
+
"""
|
|
167
|
+
Deletes the specified Route 53 Profile.
|
|
168
|
+
|
|
169
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/delete_profile.html)
|
|
170
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#delete_profile)
|
|
171
|
+
"""
|
|
172
|
+
|
|
173
|
+
async def disassociate_profile(
|
|
174
|
+
self, **kwargs: Unpack[DisassociateProfileRequestRequestTypeDef]
|
|
175
|
+
) -> DisassociateProfileResponseTypeDef:
|
|
176
|
+
"""
|
|
177
|
+
Dissociates a specified Route 53 Profile from the specified VPC.
|
|
178
|
+
|
|
179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/disassociate_profile.html)
|
|
180
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#disassociate_profile)
|
|
181
|
+
"""
|
|
182
|
+
|
|
183
|
+
async def disassociate_resource_from_profile(
|
|
184
|
+
self, **kwargs: Unpack[DisassociateResourceFromProfileRequestRequestTypeDef]
|
|
185
|
+
) -> DisassociateResourceFromProfileResponseTypeDef:
|
|
186
|
+
"""
|
|
187
|
+
Dissoaciated a specified resource, from the Route 53 Profile.
|
|
188
|
+
|
|
189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/disassociate_resource_from_profile.html)
|
|
190
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#disassociate_resource_from_profile)
|
|
191
|
+
"""
|
|
192
|
+
|
|
193
|
+
async def get_profile(
|
|
194
|
+
self, **kwargs: Unpack[GetProfileRequestRequestTypeDef]
|
|
195
|
+
) -> GetProfileResponseTypeDef:
|
|
196
|
+
"""
|
|
197
|
+
Returns information about a specified Route 53 Profile, such as whether whether
|
|
198
|
+
the Profile is shared, and the current status of the Profile.
|
|
199
|
+
|
|
200
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/get_profile.html)
|
|
201
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#get_profile)
|
|
202
|
+
"""
|
|
203
|
+
|
|
204
|
+
async def get_profile_association(
|
|
205
|
+
self, **kwargs: Unpack[GetProfileAssociationRequestRequestTypeDef]
|
|
206
|
+
) -> GetProfileAssociationResponseTypeDef:
|
|
207
|
+
"""
|
|
208
|
+
Retrieves a Route 53 Profile association for a VPC.
|
|
209
|
+
|
|
210
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/get_profile_association.html)
|
|
211
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#get_profile_association)
|
|
212
|
+
"""
|
|
213
|
+
|
|
214
|
+
async def get_profile_resource_association(
|
|
215
|
+
self, **kwargs: Unpack[GetProfileResourceAssociationRequestRequestTypeDef]
|
|
216
|
+
) -> GetProfileResourceAssociationResponseTypeDef:
|
|
217
|
+
"""
|
|
218
|
+
Returns information about a specified Route 53 Profile resource association.
|
|
219
|
+
|
|
220
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/get_profile_resource_association.html)
|
|
221
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#get_profile_resource_association)
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
async def list_profile_associations(
|
|
225
|
+
self, **kwargs: Unpack[ListProfileAssociationsRequestRequestTypeDef]
|
|
226
|
+
) -> ListProfileAssociationsResponseTypeDef:
|
|
227
|
+
"""
|
|
228
|
+
Lists all the VPCs that the specified Route 53 Profile is associated with.
|
|
229
|
+
|
|
230
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/list_profile_associations.html)
|
|
231
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#list_profile_associations)
|
|
232
|
+
"""
|
|
233
|
+
|
|
234
|
+
async def list_profile_resource_associations(
|
|
235
|
+
self, **kwargs: Unpack[ListProfileResourceAssociationsRequestRequestTypeDef]
|
|
236
|
+
) -> ListProfileResourceAssociationsResponseTypeDef:
|
|
237
|
+
"""
|
|
238
|
+
Lists all the resource associations for the specified Route 53 Profile.
|
|
239
|
+
|
|
240
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/list_profile_resource_associations.html)
|
|
241
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#list_profile_resource_associations)
|
|
242
|
+
"""
|
|
243
|
+
|
|
244
|
+
async def list_profiles(
|
|
245
|
+
self, **kwargs: Unpack[ListProfilesRequestRequestTypeDef]
|
|
246
|
+
) -> ListProfilesResponseTypeDef:
|
|
247
|
+
"""
|
|
248
|
+
Lists all the Route 53 Profiles associated with your Amazon Web Services
|
|
249
|
+
account.
|
|
250
|
+
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/list_profiles.html)
|
|
252
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#list_profiles)
|
|
253
|
+
"""
|
|
254
|
+
|
|
255
|
+
async def list_tags_for_resource(
|
|
256
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestRequestTypeDef]
|
|
257
|
+
) -> ListTagsForResourceResponseTypeDef:
|
|
258
|
+
"""
|
|
259
|
+
Lists the tags that you associated with the specified resource.
|
|
260
|
+
|
|
261
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/list_tags_for_resource.html)
|
|
262
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#list_tags_for_resource)
|
|
263
|
+
"""
|
|
264
|
+
|
|
265
|
+
async def tag_resource(
|
|
266
|
+
self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]
|
|
267
|
+
) -> Dict[str, Any]:
|
|
268
|
+
"""
|
|
269
|
+
Adds one or more tags to a specified resource.
|
|
270
|
+
|
|
271
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/tag_resource.html)
|
|
272
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#tag_resource)
|
|
273
|
+
"""
|
|
274
|
+
|
|
275
|
+
async def untag_resource(
|
|
276
|
+
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
277
|
+
) -> Dict[str, Any]:
|
|
278
|
+
"""
|
|
279
|
+
Removes one or more tags from a specified resource.
|
|
280
|
+
|
|
281
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/untag_resource.html)
|
|
282
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#untag_resource)
|
|
283
|
+
"""
|
|
284
|
+
|
|
285
|
+
async def update_profile_resource_association(
|
|
286
|
+
self, **kwargs: Unpack[UpdateProfileResourceAssociationRequestRequestTypeDef]
|
|
287
|
+
) -> UpdateProfileResourceAssociationResponseTypeDef:
|
|
288
|
+
"""
|
|
289
|
+
Updates the specified Route 53 Profile resourse association.
|
|
290
|
+
|
|
291
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/update_profile_resource_association.html)
|
|
292
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#update_profile_resource_association)
|
|
293
|
+
"""
|
|
294
|
+
|
|
295
|
+
@overload # type: ignore[override]
|
|
296
|
+
def get_paginator( # type: ignore[override]
|
|
297
|
+
self, operation_name: Literal["list_profile_associations"]
|
|
298
|
+
) -> ListProfileAssociationsPaginator:
|
|
299
|
+
"""
|
|
300
|
+
Create a paginator for an operation.
|
|
301
|
+
|
|
302
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/get_paginator.html)
|
|
303
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#get_paginator)
|
|
304
|
+
"""
|
|
305
|
+
|
|
306
|
+
@overload # type: ignore[override]
|
|
307
|
+
def get_paginator( # type: ignore[override]
|
|
308
|
+
self, operation_name: Literal["list_profile_resource_associations"]
|
|
309
|
+
) -> ListProfileResourceAssociationsPaginator:
|
|
310
|
+
"""
|
|
311
|
+
Create a paginator for an operation.
|
|
312
|
+
|
|
313
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/get_paginator.html)
|
|
314
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#get_paginator)
|
|
315
|
+
"""
|
|
316
|
+
|
|
317
|
+
@overload # type: ignore[override]
|
|
318
|
+
def get_paginator( # type: ignore[override]
|
|
319
|
+
self, operation_name: Literal["list_profiles"]
|
|
320
|
+
) -> ListProfilesPaginator:
|
|
321
|
+
"""
|
|
322
|
+
Create a paginator for an operation.
|
|
323
|
+
|
|
324
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles/client/get_paginator.html)
|
|
325
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/#get_paginator)
|
|
326
|
+
"""
|
|
327
|
+
|
|
328
|
+
async def __aenter__(self) -> Self:
|
|
329
|
+
"""
|
|
330
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles.html#Route53Profiles.Client)
|
|
331
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/)
|
|
332
|
+
"""
|
|
333
|
+
|
|
334
|
+
async def __aexit__(
|
|
335
|
+
self,
|
|
336
|
+
exc_type: Type[BaseException] | None,
|
|
337
|
+
exc_val: BaseException | None,
|
|
338
|
+
exc_tb: TracebackType | None,
|
|
339
|
+
) -> None:
|
|
340
|
+
"""
|
|
341
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/route53profiles.html#Route53Profiles.Client)
|
|
342
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_route53profiles/client/)
|
|
343
|
+
"""
|