types-boto3-resource-explorer-2 1.36.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_boto3_resource_explorer_2/__init__.py +59 -0
- types_boto3_resource_explorer_2/__init__.pyi +58 -0
- types_boto3_resource_explorer_2/__main__.py +43 -0
- types_boto3_resource_explorer_2/client.py +467 -0
- types_boto3_resource_explorer_2/client.pyi +464 -0
- types_boto3_resource_explorer_2/literals.py +511 -0
- types_boto3_resource_explorer_2/literals.pyi +509 -0
- types_boto3_resource_explorer_2/paginator.py +222 -0
- types_boto3_resource_explorer_2/paginator.pyi +200 -0
- types_boto3_resource_explorer_2/py.typed +0 -0
- types_boto3_resource_explorer_2/type_defs.py +497 -0
- types_boto3_resource_explorer_2/type_defs.pyi +434 -0
- types_boto3_resource_explorer_2/version.py +7 -0
- types_boto3_resource_explorer_2-1.36.0.dist-info/LICENSE +21 -0
- types_boto3_resource_explorer_2-1.36.0.dist-info/METADATA +501 -0
- types_boto3_resource_explorer_2-1.36.0.dist-info/RECORD +18 -0
- types_boto3_resource_explorer_2-1.36.0.dist-info/WHEEL +5 -0
- types_boto3_resource_explorer_2-1.36.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,59 @@
|
|
1
|
+
"""
|
2
|
+
Main interface for resource-explorer-2 service.
|
3
|
+
|
4
|
+
Usage::
|
5
|
+
|
6
|
+
```python
|
7
|
+
from boto3.session import Session
|
8
|
+
from types_boto3_resource_explorer_2 import (
|
9
|
+
Client,
|
10
|
+
ListIndexesForMembersPaginator,
|
11
|
+
ListIndexesPaginator,
|
12
|
+
ListManagedViewsPaginator,
|
13
|
+
ListResourcesPaginator,
|
14
|
+
ListSupportedResourceTypesPaginator,
|
15
|
+
ListViewsPaginator,
|
16
|
+
ResourceExplorerClient,
|
17
|
+
SearchPaginator,
|
18
|
+
)
|
19
|
+
|
20
|
+
session = Session()
|
21
|
+
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
22
|
+
|
23
|
+
list_indexes_for_members_paginator: ListIndexesForMembersPaginator = client.get_paginator("list_indexes_for_members")
|
24
|
+
list_indexes_paginator: ListIndexesPaginator = client.get_paginator("list_indexes")
|
25
|
+
list_managed_views_paginator: ListManagedViewsPaginator = client.get_paginator("list_managed_views")
|
26
|
+
list_resources_paginator: ListResourcesPaginator = client.get_paginator("list_resources")
|
27
|
+
list_supported_resource_types_paginator: ListSupportedResourceTypesPaginator = client.get_paginator("list_supported_resource_types")
|
28
|
+
list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
|
29
|
+
search_paginator: SearchPaginator = client.get_paginator("search")
|
30
|
+
```
|
31
|
+
|
32
|
+
Copyright 2025 Vlad Emelianov
|
33
|
+
"""
|
34
|
+
|
35
|
+
from .client import ResourceExplorerClient
|
36
|
+
from .paginator import (
|
37
|
+
ListIndexesForMembersPaginator,
|
38
|
+
ListIndexesPaginator,
|
39
|
+
ListManagedViewsPaginator,
|
40
|
+
ListResourcesPaginator,
|
41
|
+
ListSupportedResourceTypesPaginator,
|
42
|
+
ListViewsPaginator,
|
43
|
+
SearchPaginator,
|
44
|
+
)
|
45
|
+
|
46
|
+
Client = ResourceExplorerClient
|
47
|
+
|
48
|
+
|
49
|
+
__all__ = (
|
50
|
+
"Client",
|
51
|
+
"ListIndexesForMembersPaginator",
|
52
|
+
"ListIndexesPaginator",
|
53
|
+
"ListManagedViewsPaginator",
|
54
|
+
"ListResourcesPaginator",
|
55
|
+
"ListSupportedResourceTypesPaginator",
|
56
|
+
"ListViewsPaginator",
|
57
|
+
"ResourceExplorerClient",
|
58
|
+
"SearchPaginator",
|
59
|
+
)
|
@@ -0,0 +1,58 @@
|
|
1
|
+
"""
|
2
|
+
Main interface for resource-explorer-2 service.
|
3
|
+
|
4
|
+
Usage::
|
5
|
+
|
6
|
+
```python
|
7
|
+
from boto3.session import Session
|
8
|
+
from types_boto3_resource_explorer_2 import (
|
9
|
+
Client,
|
10
|
+
ListIndexesForMembersPaginator,
|
11
|
+
ListIndexesPaginator,
|
12
|
+
ListManagedViewsPaginator,
|
13
|
+
ListResourcesPaginator,
|
14
|
+
ListSupportedResourceTypesPaginator,
|
15
|
+
ListViewsPaginator,
|
16
|
+
ResourceExplorerClient,
|
17
|
+
SearchPaginator,
|
18
|
+
)
|
19
|
+
|
20
|
+
session = Session()
|
21
|
+
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
22
|
+
|
23
|
+
list_indexes_for_members_paginator: ListIndexesForMembersPaginator = client.get_paginator("list_indexes_for_members")
|
24
|
+
list_indexes_paginator: ListIndexesPaginator = client.get_paginator("list_indexes")
|
25
|
+
list_managed_views_paginator: ListManagedViewsPaginator = client.get_paginator("list_managed_views")
|
26
|
+
list_resources_paginator: ListResourcesPaginator = client.get_paginator("list_resources")
|
27
|
+
list_supported_resource_types_paginator: ListSupportedResourceTypesPaginator = client.get_paginator("list_supported_resource_types")
|
28
|
+
list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
|
29
|
+
search_paginator: SearchPaginator = client.get_paginator("search")
|
30
|
+
```
|
31
|
+
|
32
|
+
Copyright 2025 Vlad Emelianov
|
33
|
+
"""
|
34
|
+
|
35
|
+
from .client import ResourceExplorerClient
|
36
|
+
from .paginator import (
|
37
|
+
ListIndexesForMembersPaginator,
|
38
|
+
ListIndexesPaginator,
|
39
|
+
ListManagedViewsPaginator,
|
40
|
+
ListResourcesPaginator,
|
41
|
+
ListSupportedResourceTypesPaginator,
|
42
|
+
ListViewsPaginator,
|
43
|
+
SearchPaginator,
|
44
|
+
)
|
45
|
+
|
46
|
+
Client = ResourceExplorerClient
|
47
|
+
|
48
|
+
__all__ = (
|
49
|
+
"Client",
|
50
|
+
"ListIndexesForMembersPaginator",
|
51
|
+
"ListIndexesPaginator",
|
52
|
+
"ListManagedViewsPaginator",
|
53
|
+
"ListResourcesPaginator",
|
54
|
+
"ListSupportedResourceTypesPaginator",
|
55
|
+
"ListViewsPaginator",
|
56
|
+
"ResourceExplorerClient",
|
57
|
+
"SearchPaginator",
|
58
|
+
)
|
@@ -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 boto3 ResourceExplorer 1.36.0\n"
|
16
|
+
"Version: 1.36.0\n"
|
17
|
+
"Builder version: 8.8.0\n"
|
18
|
+
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2//\n"
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2.html#resourceexplorer\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("1.36.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,467 @@
|
|
1
|
+
"""
|
2
|
+
Type annotations for resource-explorer-2 service Client.
|
3
|
+
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
|
5
|
+
|
6
|
+
Usage::
|
7
|
+
|
8
|
+
```python
|
9
|
+
from boto3.session import Session
|
10
|
+
from types_boto3_resource_explorer_2.client import ResourceExplorerClient
|
11
|
+
|
12
|
+
session = Session()
|
13
|
+
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
14
|
+
```
|
15
|
+
|
16
|
+
Copyright 2025 Vlad Emelianov
|
17
|
+
"""
|
18
|
+
|
19
|
+
from __future__ import annotations
|
20
|
+
|
21
|
+
import sys
|
22
|
+
from typing import Any, overload
|
23
|
+
|
24
|
+
from botocore.client import BaseClient, ClientMeta
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
27
|
+
|
28
|
+
from .paginator import (
|
29
|
+
ListIndexesForMembersPaginator,
|
30
|
+
ListIndexesPaginator,
|
31
|
+
ListManagedViewsPaginator,
|
32
|
+
ListResourcesPaginator,
|
33
|
+
ListSupportedResourceTypesPaginator,
|
34
|
+
ListViewsPaginator,
|
35
|
+
SearchPaginator,
|
36
|
+
)
|
37
|
+
from .type_defs import (
|
38
|
+
AssociateDefaultViewInputRequestTypeDef,
|
39
|
+
AssociateDefaultViewOutputTypeDef,
|
40
|
+
BatchGetViewInputRequestTypeDef,
|
41
|
+
BatchGetViewOutputTypeDef,
|
42
|
+
CreateIndexInputRequestTypeDef,
|
43
|
+
CreateIndexOutputTypeDef,
|
44
|
+
CreateViewInputRequestTypeDef,
|
45
|
+
CreateViewOutputTypeDef,
|
46
|
+
DeleteIndexInputRequestTypeDef,
|
47
|
+
DeleteIndexOutputTypeDef,
|
48
|
+
DeleteViewInputRequestTypeDef,
|
49
|
+
DeleteViewOutputTypeDef,
|
50
|
+
EmptyResponseMetadataTypeDef,
|
51
|
+
GetAccountLevelServiceConfigurationOutputTypeDef,
|
52
|
+
GetDefaultViewOutputTypeDef,
|
53
|
+
GetIndexOutputTypeDef,
|
54
|
+
GetManagedViewInputRequestTypeDef,
|
55
|
+
GetManagedViewOutputTypeDef,
|
56
|
+
GetViewInputRequestTypeDef,
|
57
|
+
GetViewOutputTypeDef,
|
58
|
+
ListIndexesForMembersInputRequestTypeDef,
|
59
|
+
ListIndexesForMembersOutputTypeDef,
|
60
|
+
ListIndexesInputRequestTypeDef,
|
61
|
+
ListIndexesOutputTypeDef,
|
62
|
+
ListManagedViewsInputRequestTypeDef,
|
63
|
+
ListManagedViewsOutputTypeDef,
|
64
|
+
ListResourcesInputRequestTypeDef,
|
65
|
+
ListResourcesOutputTypeDef,
|
66
|
+
ListSupportedResourceTypesInputRequestTypeDef,
|
67
|
+
ListSupportedResourceTypesOutputTypeDef,
|
68
|
+
ListTagsForResourceInputRequestTypeDef,
|
69
|
+
ListTagsForResourceOutputTypeDef,
|
70
|
+
ListViewsInputRequestTypeDef,
|
71
|
+
ListViewsOutputTypeDef,
|
72
|
+
SearchInputRequestTypeDef,
|
73
|
+
SearchOutputTypeDef,
|
74
|
+
TagResourceInputRequestTypeDef,
|
75
|
+
UntagResourceInputRequestTypeDef,
|
76
|
+
UpdateIndexTypeInputRequestTypeDef,
|
77
|
+
UpdateIndexTypeOutputTypeDef,
|
78
|
+
UpdateViewInputRequestTypeDef,
|
79
|
+
UpdateViewOutputTypeDef,
|
80
|
+
)
|
81
|
+
|
82
|
+
if sys.version_info >= (3, 9):
|
83
|
+
from builtins import dict as Dict
|
84
|
+
from builtins import type as Type
|
85
|
+
from collections.abc import Mapping
|
86
|
+
else:
|
87
|
+
from typing import Dict, Mapping, Type
|
88
|
+
if sys.version_info >= (3, 12):
|
89
|
+
from typing import Literal, Unpack
|
90
|
+
else:
|
91
|
+
from typing_extensions import Literal, Unpack
|
92
|
+
|
93
|
+
|
94
|
+
__all__ = ("ResourceExplorerClient",)
|
95
|
+
|
96
|
+
|
97
|
+
class Exceptions(BaseClientExceptions):
|
98
|
+
AccessDeniedException: Type[BotocoreClientError]
|
99
|
+
ClientError: Type[BotocoreClientError]
|
100
|
+
ConflictException: Type[BotocoreClientError]
|
101
|
+
InternalServerException: Type[BotocoreClientError]
|
102
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
103
|
+
ServiceQuotaExceededException: Type[BotocoreClientError]
|
104
|
+
ThrottlingException: Type[BotocoreClientError]
|
105
|
+
UnauthorizedException: Type[BotocoreClientError]
|
106
|
+
ValidationException: Type[BotocoreClientError]
|
107
|
+
|
108
|
+
|
109
|
+
class ResourceExplorerClient(BaseClient):
|
110
|
+
"""
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2.html#ResourceExplorer.Client)
|
112
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/)
|
113
|
+
"""
|
114
|
+
|
115
|
+
meta: ClientMeta
|
116
|
+
|
117
|
+
@property
|
118
|
+
def exceptions(self) -> Exceptions:
|
119
|
+
"""
|
120
|
+
ResourceExplorerClient exceptions.
|
121
|
+
|
122
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2.html#ResourceExplorer.Client)
|
123
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#exceptions)
|
124
|
+
"""
|
125
|
+
|
126
|
+
def can_paginate(self, operation_name: str) -> bool:
|
127
|
+
"""
|
128
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/can_paginate.html)
|
129
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#can_paginate)
|
130
|
+
"""
|
131
|
+
|
132
|
+
def generate_presigned_url(
|
133
|
+
self,
|
134
|
+
ClientMethod: str,
|
135
|
+
Params: Mapping[str, Any] = ...,
|
136
|
+
ExpiresIn: int = 3600,
|
137
|
+
HttpMethod: str = ...,
|
138
|
+
) -> str:
|
139
|
+
"""
|
140
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/generate_presigned_url.html)
|
141
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#generate_presigned_url)
|
142
|
+
"""
|
143
|
+
|
144
|
+
def associate_default_view(
|
145
|
+
self, **kwargs: Unpack[AssociateDefaultViewInputRequestTypeDef]
|
146
|
+
) -> AssociateDefaultViewOutputTypeDef:
|
147
|
+
"""
|
148
|
+
Sets the specified view as the default for the Amazon Web Services Region in
|
149
|
+
which you call this operation.
|
150
|
+
|
151
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/associate_default_view.html)
|
152
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#associate_default_view)
|
153
|
+
"""
|
154
|
+
|
155
|
+
def batch_get_view(
|
156
|
+
self, **kwargs: Unpack[BatchGetViewInputRequestTypeDef]
|
157
|
+
) -> BatchGetViewOutputTypeDef:
|
158
|
+
"""
|
159
|
+
Retrieves details about a list of views.
|
160
|
+
|
161
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/batch_get_view.html)
|
162
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#batch_get_view)
|
163
|
+
"""
|
164
|
+
|
165
|
+
def create_index(
|
166
|
+
self, **kwargs: Unpack[CreateIndexInputRequestTypeDef]
|
167
|
+
) -> CreateIndexOutputTypeDef:
|
168
|
+
"""
|
169
|
+
Turns on Amazon Web Services Resource Explorer in the Amazon Web Services
|
170
|
+
Region in which you called this operation by creating an index.
|
171
|
+
|
172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/create_index.html)
|
173
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_index)
|
174
|
+
"""
|
175
|
+
|
176
|
+
def create_view(
|
177
|
+
self, **kwargs: Unpack[CreateViewInputRequestTypeDef]
|
178
|
+
) -> CreateViewOutputTypeDef:
|
179
|
+
"""
|
180
|
+
Creates a view that users can query by using the <a>Search</a> operation.
|
181
|
+
|
182
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/create_view.html)
|
183
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#create_view)
|
184
|
+
"""
|
185
|
+
|
186
|
+
def delete_index(
|
187
|
+
self, **kwargs: Unpack[DeleteIndexInputRequestTypeDef]
|
188
|
+
) -> DeleteIndexOutputTypeDef:
|
189
|
+
"""
|
190
|
+
Deletes the specified index and turns off Amazon Web Services Resource Explorer
|
191
|
+
in the specified Amazon Web Services Region.
|
192
|
+
|
193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/delete_index.html)
|
194
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#delete_index)
|
195
|
+
"""
|
196
|
+
|
197
|
+
def delete_view(
|
198
|
+
self, **kwargs: Unpack[DeleteViewInputRequestTypeDef]
|
199
|
+
) -> DeleteViewOutputTypeDef:
|
200
|
+
"""
|
201
|
+
Deletes the specified view.
|
202
|
+
|
203
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/delete_view.html)
|
204
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#delete_view)
|
205
|
+
"""
|
206
|
+
|
207
|
+
def disassociate_default_view(self) -> EmptyResponseMetadataTypeDef:
|
208
|
+
"""
|
209
|
+
After you call this operation, the affected Amazon Web Services Region no
|
210
|
+
longer has a default view.
|
211
|
+
|
212
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/disassociate_default_view.html)
|
213
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#disassociate_default_view)
|
214
|
+
"""
|
215
|
+
|
216
|
+
def get_account_level_service_configuration(
|
217
|
+
self,
|
218
|
+
) -> GetAccountLevelServiceConfigurationOutputTypeDef:
|
219
|
+
"""
|
220
|
+
Retrieves the status of your account's Amazon Web Services service access, and
|
221
|
+
validates the service linked role required to access the multi-account search
|
222
|
+
feature.
|
223
|
+
|
224
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_account_level_service_configuration.html)
|
225
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_account_level_service_configuration)
|
226
|
+
"""
|
227
|
+
|
228
|
+
def get_default_view(self) -> GetDefaultViewOutputTypeDef:
|
229
|
+
"""
|
230
|
+
Retrieves the Amazon Resource Name (ARN) of the view that is the default for
|
231
|
+
the Amazon Web Services Region in which you call this operation.
|
232
|
+
|
233
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_default_view.html)
|
234
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_default_view)
|
235
|
+
"""
|
236
|
+
|
237
|
+
def get_index(self) -> GetIndexOutputTypeDef:
|
238
|
+
"""
|
239
|
+
Retrieves details about the Amazon Web Services Resource Explorer index in the
|
240
|
+
Amazon Web Services Region in which you invoked the operation.
|
241
|
+
|
242
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_index.html)
|
243
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_index)
|
244
|
+
"""
|
245
|
+
|
246
|
+
def get_managed_view(
|
247
|
+
self, **kwargs: Unpack[GetManagedViewInputRequestTypeDef]
|
248
|
+
) -> GetManagedViewOutputTypeDef:
|
249
|
+
"""
|
250
|
+
Retrieves details of the specified <a
|
251
|
+
href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html">Amazon
|
252
|
+
Web Services-managed view</a>.
|
253
|
+
|
254
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_managed_view.html)
|
255
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_managed_view)
|
256
|
+
"""
|
257
|
+
|
258
|
+
def get_view(self, **kwargs: Unpack[GetViewInputRequestTypeDef]) -> GetViewOutputTypeDef:
|
259
|
+
"""
|
260
|
+
Retrieves details of the specified view.
|
261
|
+
|
262
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_view.html)
|
263
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_view)
|
264
|
+
"""
|
265
|
+
|
266
|
+
def list_indexes(
|
267
|
+
self, **kwargs: Unpack[ListIndexesInputRequestTypeDef]
|
268
|
+
) -> ListIndexesOutputTypeDef:
|
269
|
+
"""
|
270
|
+
Retrieves a list of all of the indexes in Amazon Web Services Regions that are
|
271
|
+
currently collecting resource information for Amazon Web Services Resource
|
272
|
+
Explorer.
|
273
|
+
|
274
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_indexes.html)
|
275
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_indexes)
|
276
|
+
"""
|
277
|
+
|
278
|
+
def list_indexes_for_members(
|
279
|
+
self, **kwargs: Unpack[ListIndexesForMembersInputRequestTypeDef]
|
280
|
+
) -> ListIndexesForMembersOutputTypeDef:
|
281
|
+
"""
|
282
|
+
Retrieves a list of a member's indexes in all Amazon Web Services Regions that
|
283
|
+
are currently collecting resource information for Amazon Web Services Resource
|
284
|
+
Explorer.
|
285
|
+
|
286
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_indexes_for_members.html)
|
287
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_indexes_for_members)
|
288
|
+
"""
|
289
|
+
|
290
|
+
def list_managed_views(
|
291
|
+
self, **kwargs: Unpack[ListManagedViewsInputRequestTypeDef]
|
292
|
+
) -> ListManagedViewsOutputTypeDef:
|
293
|
+
"""
|
294
|
+
Lists the Amazon resource names (ARNs) of the <a
|
295
|
+
href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/aws-managed-views.html">Amazon
|
296
|
+
Web Services-managed views</a> available in the Amazon Web Services Region in
|
297
|
+
which you call this operation.
|
298
|
+
|
299
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_managed_views.html)
|
300
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_managed_views)
|
301
|
+
"""
|
302
|
+
|
303
|
+
def list_resources(
|
304
|
+
self, **kwargs: Unpack[ListResourcesInputRequestTypeDef]
|
305
|
+
) -> ListResourcesOutputTypeDef:
|
306
|
+
"""
|
307
|
+
Returns a list of resources and their details that match the specified criteria.
|
308
|
+
|
309
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_resources.html)
|
310
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_resources)
|
311
|
+
"""
|
312
|
+
|
313
|
+
def list_supported_resource_types(
|
314
|
+
self, **kwargs: Unpack[ListSupportedResourceTypesInputRequestTypeDef]
|
315
|
+
) -> ListSupportedResourceTypesOutputTypeDef:
|
316
|
+
"""
|
317
|
+
Retrieves a list of all resource types currently supported by Amazon Web
|
318
|
+
Services Resource Explorer.
|
319
|
+
|
320
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_supported_resource_types.html)
|
321
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_supported_resource_types)
|
322
|
+
"""
|
323
|
+
|
324
|
+
def list_tags_for_resource(
|
325
|
+
self, **kwargs: Unpack[ListTagsForResourceInputRequestTypeDef]
|
326
|
+
) -> ListTagsForResourceOutputTypeDef:
|
327
|
+
"""
|
328
|
+
Lists the tags that are attached to the specified resource.
|
329
|
+
|
330
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_tags_for_resource.html)
|
331
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_tags_for_resource)
|
332
|
+
"""
|
333
|
+
|
334
|
+
def list_views(self, **kwargs: Unpack[ListViewsInputRequestTypeDef]) -> ListViewsOutputTypeDef:
|
335
|
+
"""
|
336
|
+
Lists the <a
|
337
|
+
href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon
|
338
|
+
resource names (ARNs)</a> of the views available in the Amazon Web Services
|
339
|
+
Region in which you call this operation.
|
340
|
+
|
341
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/list_views.html)
|
342
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#list_views)
|
343
|
+
"""
|
344
|
+
|
345
|
+
def search(self, **kwargs: Unpack[SearchInputRequestTypeDef]) -> SearchOutputTypeDef:
|
346
|
+
"""
|
347
|
+
Searches for resources and displays details about all resources that match the
|
348
|
+
specified criteria.
|
349
|
+
|
350
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/search.html)
|
351
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#search)
|
352
|
+
"""
|
353
|
+
|
354
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceInputRequestTypeDef]) -> Dict[str, Any]:
|
355
|
+
"""
|
356
|
+
Adds one or more tag key and value pairs to an Amazon Web Services Resource
|
357
|
+
Explorer view or index.
|
358
|
+
|
359
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/tag_resource.html)
|
360
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#tag_resource)
|
361
|
+
"""
|
362
|
+
|
363
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceInputRequestTypeDef]) -> Dict[str, Any]:
|
364
|
+
"""
|
365
|
+
Removes one or more tag key and value pairs from an Amazon Web Services
|
366
|
+
Resource Explorer view or index.
|
367
|
+
|
368
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/untag_resource.html)
|
369
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#untag_resource)
|
370
|
+
"""
|
371
|
+
|
372
|
+
def update_index_type(
|
373
|
+
self, **kwargs: Unpack[UpdateIndexTypeInputRequestTypeDef]
|
374
|
+
) -> UpdateIndexTypeOutputTypeDef:
|
375
|
+
"""
|
376
|
+
Changes the type of the index from one of the following types to the other.
|
377
|
+
|
378
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/update_index_type.html)
|
379
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_index_type)
|
380
|
+
"""
|
381
|
+
|
382
|
+
def update_view(
|
383
|
+
self, **kwargs: Unpack[UpdateViewInputRequestTypeDef]
|
384
|
+
) -> UpdateViewOutputTypeDef:
|
385
|
+
"""
|
386
|
+
Modifies some of the details of a view.
|
387
|
+
|
388
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/update_view.html)
|
389
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#update_view)
|
390
|
+
"""
|
391
|
+
|
392
|
+
@overload # type: ignore[override]
|
393
|
+
def get_paginator( # type: ignore[override]
|
394
|
+
self, operation_name: Literal["list_indexes_for_members"]
|
395
|
+
) -> ListIndexesForMembersPaginator:
|
396
|
+
"""
|
397
|
+
Create a paginator for an operation.
|
398
|
+
|
399
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
|
400
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
401
|
+
"""
|
402
|
+
|
403
|
+
@overload # type: ignore[override]
|
404
|
+
def get_paginator( # type: ignore[override]
|
405
|
+
self, operation_name: Literal["list_indexes"]
|
406
|
+
) -> ListIndexesPaginator:
|
407
|
+
"""
|
408
|
+
Create a paginator for an operation.
|
409
|
+
|
410
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
|
411
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
412
|
+
"""
|
413
|
+
|
414
|
+
@overload # type: ignore[override]
|
415
|
+
def get_paginator( # type: ignore[override]
|
416
|
+
self, operation_name: Literal["list_managed_views"]
|
417
|
+
) -> ListManagedViewsPaginator:
|
418
|
+
"""
|
419
|
+
Create a paginator for an operation.
|
420
|
+
|
421
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
|
422
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
423
|
+
"""
|
424
|
+
|
425
|
+
@overload # type: ignore[override]
|
426
|
+
def get_paginator( # type: ignore[override]
|
427
|
+
self, operation_name: Literal["list_resources"]
|
428
|
+
) -> ListResourcesPaginator:
|
429
|
+
"""
|
430
|
+
Create a paginator for an operation.
|
431
|
+
|
432
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
|
433
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
434
|
+
"""
|
435
|
+
|
436
|
+
@overload # type: ignore[override]
|
437
|
+
def get_paginator( # type: ignore[override]
|
438
|
+
self, operation_name: Literal["list_supported_resource_types"]
|
439
|
+
) -> ListSupportedResourceTypesPaginator:
|
440
|
+
"""
|
441
|
+
Create a paginator for an operation.
|
442
|
+
|
443
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
|
444
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
445
|
+
"""
|
446
|
+
|
447
|
+
@overload # type: ignore[override]
|
448
|
+
def get_paginator( # type: ignore[override]
|
449
|
+
self, operation_name: Literal["list_views"]
|
450
|
+
) -> ListViewsPaginator:
|
451
|
+
"""
|
452
|
+
Create a paginator for an operation.
|
453
|
+
|
454
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
|
455
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
456
|
+
"""
|
457
|
+
|
458
|
+
@overload # type: ignore[override]
|
459
|
+
def get_paginator( # type: ignore[override]
|
460
|
+
self, operation_name: Literal["search"]
|
461
|
+
) -> SearchPaginator:
|
462
|
+
"""
|
463
|
+
Create a paginator for an operation.
|
464
|
+
|
465
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/client/get_paginator.html)
|
466
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/client/#get_paginator)
|
467
|
+
"""
|