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,222 @@
|
|
1
|
+
"""
|
2
|
+
Type annotations for resource-explorer-2 service client paginators.
|
3
|
+
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/)
|
5
|
+
|
6
|
+
Usage::
|
7
|
+
|
8
|
+
```python
|
9
|
+
from boto3.session import Session
|
10
|
+
|
11
|
+
from types_boto3_resource_explorer_2.client import ResourceExplorerClient
|
12
|
+
from types_boto3_resource_explorer_2.paginator import (
|
13
|
+
ListIndexesForMembersPaginator,
|
14
|
+
ListIndexesPaginator,
|
15
|
+
ListManagedViewsPaginator,
|
16
|
+
ListResourcesPaginator,
|
17
|
+
ListSupportedResourceTypesPaginator,
|
18
|
+
ListViewsPaginator,
|
19
|
+
SearchPaginator,
|
20
|
+
)
|
21
|
+
|
22
|
+
session = Session()
|
23
|
+
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
24
|
+
|
25
|
+
list_indexes_for_members_paginator: ListIndexesForMembersPaginator = client.get_paginator("list_indexes_for_members")
|
26
|
+
list_indexes_paginator: ListIndexesPaginator = client.get_paginator("list_indexes")
|
27
|
+
list_managed_views_paginator: ListManagedViewsPaginator = client.get_paginator("list_managed_views")
|
28
|
+
list_resources_paginator: ListResourcesPaginator = client.get_paginator("list_resources")
|
29
|
+
list_supported_resource_types_paginator: ListSupportedResourceTypesPaginator = client.get_paginator("list_supported_resource_types")
|
30
|
+
list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
|
31
|
+
search_paginator: SearchPaginator = client.get_paginator("search")
|
32
|
+
```
|
33
|
+
|
34
|
+
Copyright 2025 Vlad Emelianov
|
35
|
+
"""
|
36
|
+
|
37
|
+
from __future__ import annotations
|
38
|
+
|
39
|
+
import sys
|
40
|
+
from typing import TYPE_CHECKING
|
41
|
+
|
42
|
+
from botocore.paginate import PageIterator, Paginator
|
43
|
+
|
44
|
+
from .type_defs import (
|
45
|
+
ListIndexesForMembersInputPaginateTypeDef,
|
46
|
+
ListIndexesForMembersOutputTypeDef,
|
47
|
+
ListIndexesInputPaginateTypeDef,
|
48
|
+
ListIndexesOutputTypeDef,
|
49
|
+
ListManagedViewsInputPaginateTypeDef,
|
50
|
+
ListManagedViewsOutputTypeDef,
|
51
|
+
ListResourcesInputPaginateTypeDef,
|
52
|
+
ListResourcesOutputTypeDef,
|
53
|
+
ListSupportedResourceTypesInputPaginateTypeDef,
|
54
|
+
ListSupportedResourceTypesOutputTypeDef,
|
55
|
+
ListViewsInputPaginateTypeDef,
|
56
|
+
ListViewsOutputTypeDef,
|
57
|
+
SearchInputPaginateTypeDef,
|
58
|
+
SearchOutputTypeDef,
|
59
|
+
)
|
60
|
+
|
61
|
+
if sys.version_info >= (3, 12):
|
62
|
+
from typing import Unpack
|
63
|
+
else:
|
64
|
+
from typing_extensions import Unpack
|
65
|
+
|
66
|
+
|
67
|
+
__all__ = (
|
68
|
+
"ListIndexesForMembersPaginator",
|
69
|
+
"ListIndexesPaginator",
|
70
|
+
"ListManagedViewsPaginator",
|
71
|
+
"ListResourcesPaginator",
|
72
|
+
"ListSupportedResourceTypesPaginator",
|
73
|
+
"ListViewsPaginator",
|
74
|
+
"SearchPaginator",
|
75
|
+
)
|
76
|
+
|
77
|
+
|
78
|
+
if TYPE_CHECKING:
|
79
|
+
_ListIndexesForMembersPaginatorBase = Paginator[ListIndexesForMembersOutputTypeDef]
|
80
|
+
else:
|
81
|
+
_ListIndexesForMembersPaginatorBase = Paginator # type: ignore[assignment]
|
82
|
+
|
83
|
+
|
84
|
+
class ListIndexesForMembersPaginator(_ListIndexesForMembersPaginatorBase):
|
85
|
+
"""
|
86
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexesForMembers.html#ResourceExplorer.Paginator.ListIndexesForMembers)
|
87
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexesformemberspaginator)
|
88
|
+
"""
|
89
|
+
|
90
|
+
def paginate( # type: ignore[override]
|
91
|
+
self, **kwargs: Unpack[ListIndexesForMembersInputPaginateTypeDef]
|
92
|
+
) -> PageIterator[ListIndexesForMembersOutputTypeDef]:
|
93
|
+
"""
|
94
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexesForMembers.html#ResourceExplorer.Paginator.ListIndexesForMembers.paginate)
|
95
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexesformemberspaginator)
|
96
|
+
"""
|
97
|
+
|
98
|
+
|
99
|
+
if TYPE_CHECKING:
|
100
|
+
_ListIndexesPaginatorBase = Paginator[ListIndexesOutputTypeDef]
|
101
|
+
else:
|
102
|
+
_ListIndexesPaginatorBase = Paginator # type: ignore[assignment]
|
103
|
+
|
104
|
+
|
105
|
+
class ListIndexesPaginator(_ListIndexesPaginatorBase):
|
106
|
+
"""
|
107
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexes.html#ResourceExplorer.Paginator.ListIndexes)
|
108
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexespaginator)
|
109
|
+
"""
|
110
|
+
|
111
|
+
def paginate( # type: ignore[override]
|
112
|
+
self, **kwargs: Unpack[ListIndexesInputPaginateTypeDef]
|
113
|
+
) -> PageIterator[ListIndexesOutputTypeDef]:
|
114
|
+
"""
|
115
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexes.html#ResourceExplorer.Paginator.ListIndexes.paginate)
|
116
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexespaginator)
|
117
|
+
"""
|
118
|
+
|
119
|
+
|
120
|
+
if TYPE_CHECKING:
|
121
|
+
_ListManagedViewsPaginatorBase = Paginator[ListManagedViewsOutputTypeDef]
|
122
|
+
else:
|
123
|
+
_ListManagedViewsPaginatorBase = Paginator # type: ignore[assignment]
|
124
|
+
|
125
|
+
|
126
|
+
class ListManagedViewsPaginator(_ListManagedViewsPaginatorBase):
|
127
|
+
"""
|
128
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListManagedViews.html#ResourceExplorer.Paginator.ListManagedViews)
|
129
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listmanagedviewspaginator)
|
130
|
+
"""
|
131
|
+
|
132
|
+
def paginate( # type: ignore[override]
|
133
|
+
self, **kwargs: Unpack[ListManagedViewsInputPaginateTypeDef]
|
134
|
+
) -> PageIterator[ListManagedViewsOutputTypeDef]:
|
135
|
+
"""
|
136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListManagedViews.html#ResourceExplorer.Paginator.ListManagedViews.paginate)
|
137
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listmanagedviewspaginator)
|
138
|
+
"""
|
139
|
+
|
140
|
+
|
141
|
+
if TYPE_CHECKING:
|
142
|
+
_ListResourcesPaginatorBase = Paginator[ListResourcesOutputTypeDef]
|
143
|
+
else:
|
144
|
+
_ListResourcesPaginatorBase = Paginator # type: ignore[assignment]
|
145
|
+
|
146
|
+
|
147
|
+
class ListResourcesPaginator(_ListResourcesPaginatorBase):
|
148
|
+
"""
|
149
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListResources.html#ResourceExplorer.Paginator.ListResources)
|
150
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listresourcespaginator)
|
151
|
+
"""
|
152
|
+
|
153
|
+
def paginate( # type: ignore[override]
|
154
|
+
self, **kwargs: Unpack[ListResourcesInputPaginateTypeDef]
|
155
|
+
) -> PageIterator[ListResourcesOutputTypeDef]:
|
156
|
+
"""
|
157
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListResources.html#ResourceExplorer.Paginator.ListResources.paginate)
|
158
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listresourcespaginator)
|
159
|
+
"""
|
160
|
+
|
161
|
+
|
162
|
+
if TYPE_CHECKING:
|
163
|
+
_ListSupportedResourceTypesPaginatorBase = Paginator[ListSupportedResourceTypesOutputTypeDef]
|
164
|
+
else:
|
165
|
+
_ListSupportedResourceTypesPaginatorBase = Paginator # type: ignore[assignment]
|
166
|
+
|
167
|
+
|
168
|
+
class ListSupportedResourceTypesPaginator(_ListSupportedResourceTypesPaginatorBase):
|
169
|
+
"""
|
170
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListSupportedResourceTypes.html#ResourceExplorer.Paginator.ListSupportedResourceTypes)
|
171
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listsupportedresourcetypespaginator)
|
172
|
+
"""
|
173
|
+
|
174
|
+
def paginate( # type: ignore[override]
|
175
|
+
self, **kwargs: Unpack[ListSupportedResourceTypesInputPaginateTypeDef]
|
176
|
+
) -> PageIterator[ListSupportedResourceTypesOutputTypeDef]:
|
177
|
+
"""
|
178
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListSupportedResourceTypes.html#ResourceExplorer.Paginator.ListSupportedResourceTypes.paginate)
|
179
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listsupportedresourcetypespaginator)
|
180
|
+
"""
|
181
|
+
|
182
|
+
|
183
|
+
if TYPE_CHECKING:
|
184
|
+
_ListViewsPaginatorBase = Paginator[ListViewsOutputTypeDef]
|
185
|
+
else:
|
186
|
+
_ListViewsPaginatorBase = Paginator # type: ignore[assignment]
|
187
|
+
|
188
|
+
|
189
|
+
class ListViewsPaginator(_ListViewsPaginatorBase):
|
190
|
+
"""
|
191
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListViews.html#ResourceExplorer.Paginator.ListViews)
|
192
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listviewspaginator)
|
193
|
+
"""
|
194
|
+
|
195
|
+
def paginate( # type: ignore[override]
|
196
|
+
self, **kwargs: Unpack[ListViewsInputPaginateTypeDef]
|
197
|
+
) -> PageIterator[ListViewsOutputTypeDef]:
|
198
|
+
"""
|
199
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListViews.html#ResourceExplorer.Paginator.ListViews.paginate)
|
200
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listviewspaginator)
|
201
|
+
"""
|
202
|
+
|
203
|
+
|
204
|
+
if TYPE_CHECKING:
|
205
|
+
_SearchPaginatorBase = Paginator[SearchOutputTypeDef]
|
206
|
+
else:
|
207
|
+
_SearchPaginatorBase = Paginator # type: ignore[assignment]
|
208
|
+
|
209
|
+
|
210
|
+
class SearchPaginator(_SearchPaginatorBase):
|
211
|
+
"""
|
212
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/Search.html#ResourceExplorer.Paginator.Search)
|
213
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#searchpaginator)
|
214
|
+
"""
|
215
|
+
|
216
|
+
def paginate( # type: ignore[override]
|
217
|
+
self, **kwargs: Unpack[SearchInputPaginateTypeDef]
|
218
|
+
) -> PageIterator[SearchOutputTypeDef]:
|
219
|
+
"""
|
220
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/Search.html#ResourceExplorer.Paginator.Search.paginate)
|
221
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#searchpaginator)
|
222
|
+
"""
|
@@ -0,0 +1,200 @@
|
|
1
|
+
"""
|
2
|
+
Type annotations for resource-explorer-2 service client paginators.
|
3
|
+
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/)
|
5
|
+
|
6
|
+
Usage::
|
7
|
+
|
8
|
+
```python
|
9
|
+
from boto3.session import Session
|
10
|
+
|
11
|
+
from types_boto3_resource_explorer_2.client import ResourceExplorerClient
|
12
|
+
from types_boto3_resource_explorer_2.paginator import (
|
13
|
+
ListIndexesForMembersPaginator,
|
14
|
+
ListIndexesPaginator,
|
15
|
+
ListManagedViewsPaginator,
|
16
|
+
ListResourcesPaginator,
|
17
|
+
ListSupportedResourceTypesPaginator,
|
18
|
+
ListViewsPaginator,
|
19
|
+
SearchPaginator,
|
20
|
+
)
|
21
|
+
|
22
|
+
session = Session()
|
23
|
+
client: ResourceExplorerClient = session.client("resource-explorer-2")
|
24
|
+
|
25
|
+
list_indexes_for_members_paginator: ListIndexesForMembersPaginator = client.get_paginator("list_indexes_for_members")
|
26
|
+
list_indexes_paginator: ListIndexesPaginator = client.get_paginator("list_indexes")
|
27
|
+
list_managed_views_paginator: ListManagedViewsPaginator = client.get_paginator("list_managed_views")
|
28
|
+
list_resources_paginator: ListResourcesPaginator = client.get_paginator("list_resources")
|
29
|
+
list_supported_resource_types_paginator: ListSupportedResourceTypesPaginator = client.get_paginator("list_supported_resource_types")
|
30
|
+
list_views_paginator: ListViewsPaginator = client.get_paginator("list_views")
|
31
|
+
search_paginator: SearchPaginator = client.get_paginator("search")
|
32
|
+
```
|
33
|
+
|
34
|
+
Copyright 2025 Vlad Emelianov
|
35
|
+
"""
|
36
|
+
|
37
|
+
from __future__ import annotations
|
38
|
+
|
39
|
+
import sys
|
40
|
+
from typing import TYPE_CHECKING
|
41
|
+
|
42
|
+
from botocore.paginate import PageIterator, Paginator
|
43
|
+
|
44
|
+
from .type_defs import (
|
45
|
+
ListIndexesForMembersInputPaginateTypeDef,
|
46
|
+
ListIndexesForMembersOutputTypeDef,
|
47
|
+
ListIndexesInputPaginateTypeDef,
|
48
|
+
ListIndexesOutputTypeDef,
|
49
|
+
ListManagedViewsInputPaginateTypeDef,
|
50
|
+
ListManagedViewsOutputTypeDef,
|
51
|
+
ListResourcesInputPaginateTypeDef,
|
52
|
+
ListResourcesOutputTypeDef,
|
53
|
+
ListSupportedResourceTypesInputPaginateTypeDef,
|
54
|
+
ListSupportedResourceTypesOutputTypeDef,
|
55
|
+
ListViewsInputPaginateTypeDef,
|
56
|
+
ListViewsOutputTypeDef,
|
57
|
+
SearchInputPaginateTypeDef,
|
58
|
+
SearchOutputTypeDef,
|
59
|
+
)
|
60
|
+
|
61
|
+
if sys.version_info >= (3, 12):
|
62
|
+
from typing import Unpack
|
63
|
+
else:
|
64
|
+
from typing_extensions import Unpack
|
65
|
+
|
66
|
+
__all__ = (
|
67
|
+
"ListIndexesForMembersPaginator",
|
68
|
+
"ListIndexesPaginator",
|
69
|
+
"ListManagedViewsPaginator",
|
70
|
+
"ListResourcesPaginator",
|
71
|
+
"ListSupportedResourceTypesPaginator",
|
72
|
+
"ListViewsPaginator",
|
73
|
+
"SearchPaginator",
|
74
|
+
)
|
75
|
+
|
76
|
+
if TYPE_CHECKING:
|
77
|
+
_ListIndexesForMembersPaginatorBase = Paginator[ListIndexesForMembersOutputTypeDef]
|
78
|
+
else:
|
79
|
+
_ListIndexesForMembersPaginatorBase = Paginator # type: ignore[assignment]
|
80
|
+
|
81
|
+
class ListIndexesForMembersPaginator(_ListIndexesForMembersPaginatorBase):
|
82
|
+
"""
|
83
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexesForMembers.html#ResourceExplorer.Paginator.ListIndexesForMembers)
|
84
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexesformemberspaginator)
|
85
|
+
"""
|
86
|
+
def paginate( # type: ignore[override]
|
87
|
+
self, **kwargs: Unpack[ListIndexesForMembersInputPaginateTypeDef]
|
88
|
+
) -> PageIterator[ListIndexesForMembersOutputTypeDef]:
|
89
|
+
"""
|
90
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexesForMembers.html#ResourceExplorer.Paginator.ListIndexesForMembers.paginate)
|
91
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexesformemberspaginator)
|
92
|
+
"""
|
93
|
+
|
94
|
+
if TYPE_CHECKING:
|
95
|
+
_ListIndexesPaginatorBase = Paginator[ListIndexesOutputTypeDef]
|
96
|
+
else:
|
97
|
+
_ListIndexesPaginatorBase = Paginator # type: ignore[assignment]
|
98
|
+
|
99
|
+
class ListIndexesPaginator(_ListIndexesPaginatorBase):
|
100
|
+
"""
|
101
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexes.html#ResourceExplorer.Paginator.ListIndexes)
|
102
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexespaginator)
|
103
|
+
"""
|
104
|
+
def paginate( # type: ignore[override]
|
105
|
+
self, **kwargs: Unpack[ListIndexesInputPaginateTypeDef]
|
106
|
+
) -> PageIterator[ListIndexesOutputTypeDef]:
|
107
|
+
"""
|
108
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListIndexes.html#ResourceExplorer.Paginator.ListIndexes.paginate)
|
109
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listindexespaginator)
|
110
|
+
"""
|
111
|
+
|
112
|
+
if TYPE_CHECKING:
|
113
|
+
_ListManagedViewsPaginatorBase = Paginator[ListManagedViewsOutputTypeDef]
|
114
|
+
else:
|
115
|
+
_ListManagedViewsPaginatorBase = Paginator # type: ignore[assignment]
|
116
|
+
|
117
|
+
class ListManagedViewsPaginator(_ListManagedViewsPaginatorBase):
|
118
|
+
"""
|
119
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListManagedViews.html#ResourceExplorer.Paginator.ListManagedViews)
|
120
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listmanagedviewspaginator)
|
121
|
+
"""
|
122
|
+
def paginate( # type: ignore[override]
|
123
|
+
self, **kwargs: Unpack[ListManagedViewsInputPaginateTypeDef]
|
124
|
+
) -> PageIterator[ListManagedViewsOutputTypeDef]:
|
125
|
+
"""
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListManagedViews.html#ResourceExplorer.Paginator.ListManagedViews.paginate)
|
127
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listmanagedviewspaginator)
|
128
|
+
"""
|
129
|
+
|
130
|
+
if TYPE_CHECKING:
|
131
|
+
_ListResourcesPaginatorBase = Paginator[ListResourcesOutputTypeDef]
|
132
|
+
else:
|
133
|
+
_ListResourcesPaginatorBase = Paginator # type: ignore[assignment]
|
134
|
+
|
135
|
+
class ListResourcesPaginator(_ListResourcesPaginatorBase):
|
136
|
+
"""
|
137
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListResources.html#ResourceExplorer.Paginator.ListResources)
|
138
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listresourcespaginator)
|
139
|
+
"""
|
140
|
+
def paginate( # type: ignore[override]
|
141
|
+
self, **kwargs: Unpack[ListResourcesInputPaginateTypeDef]
|
142
|
+
) -> PageIterator[ListResourcesOutputTypeDef]:
|
143
|
+
"""
|
144
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListResources.html#ResourceExplorer.Paginator.ListResources.paginate)
|
145
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listresourcespaginator)
|
146
|
+
"""
|
147
|
+
|
148
|
+
if TYPE_CHECKING:
|
149
|
+
_ListSupportedResourceTypesPaginatorBase = Paginator[ListSupportedResourceTypesOutputTypeDef]
|
150
|
+
else:
|
151
|
+
_ListSupportedResourceTypesPaginatorBase = Paginator # type: ignore[assignment]
|
152
|
+
|
153
|
+
class ListSupportedResourceTypesPaginator(_ListSupportedResourceTypesPaginatorBase):
|
154
|
+
"""
|
155
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListSupportedResourceTypes.html#ResourceExplorer.Paginator.ListSupportedResourceTypes)
|
156
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listsupportedresourcetypespaginator)
|
157
|
+
"""
|
158
|
+
def paginate( # type: ignore[override]
|
159
|
+
self, **kwargs: Unpack[ListSupportedResourceTypesInputPaginateTypeDef]
|
160
|
+
) -> PageIterator[ListSupportedResourceTypesOutputTypeDef]:
|
161
|
+
"""
|
162
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListSupportedResourceTypes.html#ResourceExplorer.Paginator.ListSupportedResourceTypes.paginate)
|
163
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listsupportedresourcetypespaginator)
|
164
|
+
"""
|
165
|
+
|
166
|
+
if TYPE_CHECKING:
|
167
|
+
_ListViewsPaginatorBase = Paginator[ListViewsOutputTypeDef]
|
168
|
+
else:
|
169
|
+
_ListViewsPaginatorBase = Paginator # type: ignore[assignment]
|
170
|
+
|
171
|
+
class ListViewsPaginator(_ListViewsPaginatorBase):
|
172
|
+
"""
|
173
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListViews.html#ResourceExplorer.Paginator.ListViews)
|
174
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listviewspaginator)
|
175
|
+
"""
|
176
|
+
def paginate( # type: ignore[override]
|
177
|
+
self, **kwargs: Unpack[ListViewsInputPaginateTypeDef]
|
178
|
+
) -> PageIterator[ListViewsOutputTypeDef]:
|
179
|
+
"""
|
180
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/ListViews.html#ResourceExplorer.Paginator.ListViews.paginate)
|
181
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#listviewspaginator)
|
182
|
+
"""
|
183
|
+
|
184
|
+
if TYPE_CHECKING:
|
185
|
+
_SearchPaginatorBase = Paginator[SearchOutputTypeDef]
|
186
|
+
else:
|
187
|
+
_SearchPaginatorBase = Paginator # type: ignore[assignment]
|
188
|
+
|
189
|
+
class SearchPaginator(_SearchPaginatorBase):
|
190
|
+
"""
|
191
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/Search.html#ResourceExplorer.Paginator.Search)
|
192
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#searchpaginator)
|
193
|
+
"""
|
194
|
+
def paginate( # type: ignore[override]
|
195
|
+
self, **kwargs: Unpack[SearchInputPaginateTypeDef]
|
196
|
+
) -> PageIterator[SearchOutputTypeDef]:
|
197
|
+
"""
|
198
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/resource-explorer-2/paginator/Search.html#ResourceExplorer.Paginator.Search.paginate)
|
199
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_resource_explorer_2/paginators/#searchpaginator)
|
200
|
+
"""
|
File without changes
|