types-boto3-organizations 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_organizations/__init__.py +95 -0
- types_boto3_organizations/__init__.pyi +94 -0
- types_boto3_organizations/__main__.py +43 -0
- types_boto3_organizations/client.py +975 -0
- types_boto3_organizations/client.pyi +972 -0
- types_boto3_organizations/literals.py +575 -0
- types_boto3_organizations/literals.pyi +573 -0
- types_boto3_organizations/paginator.py +470 -0
- types_boto3_organizations/paginator.pyi +421 -0
- types_boto3_organizations/py.typed +0 -0
- types_boto3_organizations/type_defs.py +965 -0
- types_boto3_organizations/type_defs.pyi +833 -0
- types_boto3_organizations/version.py +7 -0
- types_boto3_organizations-1.36.0.dist-info/LICENSE +21 -0
- types_boto3_organizations-1.36.0.dist-info/METADATA +535 -0
- types_boto3_organizations-1.36.0.dist-info/RECORD +18 -0
- types_boto3_organizations-1.36.0.dist-info/WHEEL +5 -0
- types_boto3_organizations-1.36.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for organizations service client paginators.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from boto3.session import Session
|
|
10
|
+
|
|
11
|
+
from types_boto3_organizations.client import OrganizationsClient
|
|
12
|
+
from types_boto3_organizations.paginator import (
|
|
13
|
+
ListAWSServiceAccessForOrganizationPaginator,
|
|
14
|
+
ListAccountsForParentPaginator,
|
|
15
|
+
ListAccountsPaginator,
|
|
16
|
+
ListChildrenPaginator,
|
|
17
|
+
ListCreateAccountStatusPaginator,
|
|
18
|
+
ListDelegatedAdministratorsPaginator,
|
|
19
|
+
ListDelegatedServicesForAccountPaginator,
|
|
20
|
+
ListHandshakesForAccountPaginator,
|
|
21
|
+
ListHandshakesForOrganizationPaginator,
|
|
22
|
+
ListOrganizationalUnitsForParentPaginator,
|
|
23
|
+
ListParentsPaginator,
|
|
24
|
+
ListPoliciesForTargetPaginator,
|
|
25
|
+
ListPoliciesPaginator,
|
|
26
|
+
ListRootsPaginator,
|
|
27
|
+
ListTagsForResourcePaginator,
|
|
28
|
+
ListTargetsForPolicyPaginator,
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
session = Session()
|
|
32
|
+
client: OrganizationsClient = session.client("organizations")
|
|
33
|
+
|
|
34
|
+
list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
|
|
35
|
+
list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
|
|
36
|
+
list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
|
|
37
|
+
list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
|
|
38
|
+
list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
|
|
39
|
+
list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
|
|
40
|
+
list_delegated_services_for_account_paginator: ListDelegatedServicesForAccountPaginator = client.get_paginator("list_delegated_services_for_account")
|
|
41
|
+
list_handshakes_for_account_paginator: ListHandshakesForAccountPaginator = client.get_paginator("list_handshakes_for_account")
|
|
42
|
+
list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
|
|
43
|
+
list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
|
|
44
|
+
list_parents_paginator: ListParentsPaginator = client.get_paginator("list_parents")
|
|
45
|
+
list_policies_for_target_paginator: ListPoliciesForTargetPaginator = client.get_paginator("list_policies_for_target")
|
|
46
|
+
list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
|
|
47
|
+
list_roots_paginator: ListRootsPaginator = client.get_paginator("list_roots")
|
|
48
|
+
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
49
|
+
list_targets_for_policy_paginator: ListTargetsForPolicyPaginator = client.get_paginator("list_targets_for_policy")
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Copyright 2025 Vlad Emelianov
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
from __future__ import annotations
|
|
56
|
+
|
|
57
|
+
import sys
|
|
58
|
+
from typing import TYPE_CHECKING
|
|
59
|
+
|
|
60
|
+
from botocore.paginate import PageIterator, Paginator
|
|
61
|
+
|
|
62
|
+
from .type_defs import (
|
|
63
|
+
ListAccountsForParentRequestPaginateTypeDef,
|
|
64
|
+
ListAccountsForParentResponseTypeDef,
|
|
65
|
+
ListAccountsRequestPaginateTypeDef,
|
|
66
|
+
ListAccountsResponseTypeDef,
|
|
67
|
+
ListAWSServiceAccessForOrganizationRequestPaginateTypeDef,
|
|
68
|
+
ListAWSServiceAccessForOrganizationResponseTypeDef,
|
|
69
|
+
ListChildrenRequestPaginateTypeDef,
|
|
70
|
+
ListChildrenResponseTypeDef,
|
|
71
|
+
ListCreateAccountStatusRequestPaginateTypeDef,
|
|
72
|
+
ListCreateAccountStatusResponseTypeDef,
|
|
73
|
+
ListDelegatedAdministratorsRequestPaginateTypeDef,
|
|
74
|
+
ListDelegatedAdministratorsResponseTypeDef,
|
|
75
|
+
ListDelegatedServicesForAccountRequestPaginateTypeDef,
|
|
76
|
+
ListDelegatedServicesForAccountResponseTypeDef,
|
|
77
|
+
ListHandshakesForAccountRequestPaginateTypeDef,
|
|
78
|
+
ListHandshakesForAccountResponsePaginatorTypeDef,
|
|
79
|
+
ListHandshakesForOrganizationRequestPaginateTypeDef,
|
|
80
|
+
ListHandshakesForOrganizationResponsePaginatorTypeDef,
|
|
81
|
+
ListOrganizationalUnitsForParentRequestPaginateTypeDef,
|
|
82
|
+
ListOrganizationalUnitsForParentResponseTypeDef,
|
|
83
|
+
ListParentsRequestPaginateTypeDef,
|
|
84
|
+
ListParentsResponseTypeDef,
|
|
85
|
+
ListPoliciesForTargetRequestPaginateTypeDef,
|
|
86
|
+
ListPoliciesForTargetResponseTypeDef,
|
|
87
|
+
ListPoliciesRequestPaginateTypeDef,
|
|
88
|
+
ListPoliciesResponseTypeDef,
|
|
89
|
+
ListRootsRequestPaginateTypeDef,
|
|
90
|
+
ListRootsResponseTypeDef,
|
|
91
|
+
ListTagsForResourceRequestPaginateTypeDef,
|
|
92
|
+
ListTagsForResourceResponseTypeDef,
|
|
93
|
+
ListTargetsForPolicyRequestPaginateTypeDef,
|
|
94
|
+
ListTargetsForPolicyResponseTypeDef,
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
if sys.version_info >= (3, 12):
|
|
98
|
+
from typing import Unpack
|
|
99
|
+
else:
|
|
100
|
+
from typing_extensions import Unpack
|
|
101
|
+
|
|
102
|
+
__all__ = (
|
|
103
|
+
"ListAWSServiceAccessForOrganizationPaginator",
|
|
104
|
+
"ListAccountsForParentPaginator",
|
|
105
|
+
"ListAccountsPaginator",
|
|
106
|
+
"ListChildrenPaginator",
|
|
107
|
+
"ListCreateAccountStatusPaginator",
|
|
108
|
+
"ListDelegatedAdministratorsPaginator",
|
|
109
|
+
"ListDelegatedServicesForAccountPaginator",
|
|
110
|
+
"ListHandshakesForAccountPaginator",
|
|
111
|
+
"ListHandshakesForOrganizationPaginator",
|
|
112
|
+
"ListOrganizationalUnitsForParentPaginator",
|
|
113
|
+
"ListParentsPaginator",
|
|
114
|
+
"ListPoliciesForTargetPaginator",
|
|
115
|
+
"ListPoliciesPaginator",
|
|
116
|
+
"ListRootsPaginator",
|
|
117
|
+
"ListTagsForResourcePaginator",
|
|
118
|
+
"ListTargetsForPolicyPaginator",
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
if TYPE_CHECKING:
|
|
122
|
+
_ListAWSServiceAccessForOrganizationPaginatorBase = Paginator[
|
|
123
|
+
ListAWSServiceAccessForOrganizationResponseTypeDef
|
|
124
|
+
]
|
|
125
|
+
else:
|
|
126
|
+
_ListAWSServiceAccessForOrganizationPaginatorBase = Paginator # type: ignore[assignment]
|
|
127
|
+
|
|
128
|
+
class ListAWSServiceAccessForOrganizationPaginator(
|
|
129
|
+
_ListAWSServiceAccessForOrganizationPaginatorBase
|
|
130
|
+
):
|
|
131
|
+
"""
|
|
132
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAWSServiceAccessForOrganization.html#Organizations.Paginator.ListAWSServiceAccessForOrganization)
|
|
133
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listawsserviceaccessfororganizationpaginator)
|
|
134
|
+
"""
|
|
135
|
+
def paginate( # type: ignore[override]
|
|
136
|
+
self, **kwargs: Unpack[ListAWSServiceAccessForOrganizationRequestPaginateTypeDef]
|
|
137
|
+
) -> PageIterator[ListAWSServiceAccessForOrganizationResponseTypeDef]:
|
|
138
|
+
"""
|
|
139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAWSServiceAccessForOrganization.html#Organizations.Paginator.ListAWSServiceAccessForOrganization.paginate)
|
|
140
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listawsserviceaccessfororganizationpaginator)
|
|
141
|
+
"""
|
|
142
|
+
|
|
143
|
+
if TYPE_CHECKING:
|
|
144
|
+
_ListAccountsForParentPaginatorBase = Paginator[ListAccountsForParentResponseTypeDef]
|
|
145
|
+
else:
|
|
146
|
+
_ListAccountsForParentPaginatorBase = Paginator # type: ignore[assignment]
|
|
147
|
+
|
|
148
|
+
class ListAccountsForParentPaginator(_ListAccountsForParentPaginatorBase):
|
|
149
|
+
"""
|
|
150
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsForParent.html#Organizations.Paginator.ListAccountsForParent)
|
|
151
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountsforparentpaginator)
|
|
152
|
+
"""
|
|
153
|
+
def paginate( # type: ignore[override]
|
|
154
|
+
self, **kwargs: Unpack[ListAccountsForParentRequestPaginateTypeDef]
|
|
155
|
+
) -> PageIterator[ListAccountsForParentResponseTypeDef]:
|
|
156
|
+
"""
|
|
157
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsForParent.html#Organizations.Paginator.ListAccountsForParent.paginate)
|
|
158
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountsforparentpaginator)
|
|
159
|
+
"""
|
|
160
|
+
|
|
161
|
+
if TYPE_CHECKING:
|
|
162
|
+
_ListAccountsPaginatorBase = Paginator[ListAccountsResponseTypeDef]
|
|
163
|
+
else:
|
|
164
|
+
_ListAccountsPaginatorBase = Paginator # type: ignore[assignment]
|
|
165
|
+
|
|
166
|
+
class ListAccountsPaginator(_ListAccountsPaginatorBase):
|
|
167
|
+
"""
|
|
168
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccounts.html#Organizations.Paginator.ListAccounts)
|
|
169
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountspaginator)
|
|
170
|
+
"""
|
|
171
|
+
def paginate( # type: ignore[override]
|
|
172
|
+
self, **kwargs: Unpack[ListAccountsRequestPaginateTypeDef]
|
|
173
|
+
) -> PageIterator[ListAccountsResponseTypeDef]:
|
|
174
|
+
"""
|
|
175
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccounts.html#Organizations.Paginator.ListAccounts.paginate)
|
|
176
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountspaginator)
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
if TYPE_CHECKING:
|
|
180
|
+
_ListChildrenPaginatorBase = Paginator[ListChildrenResponseTypeDef]
|
|
181
|
+
else:
|
|
182
|
+
_ListChildrenPaginatorBase = Paginator # type: ignore[assignment]
|
|
183
|
+
|
|
184
|
+
class ListChildrenPaginator(_ListChildrenPaginatorBase):
|
|
185
|
+
"""
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListChildren.html#Organizations.Paginator.ListChildren)
|
|
187
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listchildrenpaginator)
|
|
188
|
+
"""
|
|
189
|
+
def paginate( # type: ignore[override]
|
|
190
|
+
self, **kwargs: Unpack[ListChildrenRequestPaginateTypeDef]
|
|
191
|
+
) -> PageIterator[ListChildrenResponseTypeDef]:
|
|
192
|
+
"""
|
|
193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListChildren.html#Organizations.Paginator.ListChildren.paginate)
|
|
194
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listchildrenpaginator)
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
if TYPE_CHECKING:
|
|
198
|
+
_ListCreateAccountStatusPaginatorBase = Paginator[ListCreateAccountStatusResponseTypeDef]
|
|
199
|
+
else:
|
|
200
|
+
_ListCreateAccountStatusPaginatorBase = Paginator # type: ignore[assignment]
|
|
201
|
+
|
|
202
|
+
class ListCreateAccountStatusPaginator(_ListCreateAccountStatusPaginatorBase):
|
|
203
|
+
"""
|
|
204
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListCreateAccountStatus.html#Organizations.Paginator.ListCreateAccountStatus)
|
|
205
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listcreateaccountstatuspaginator)
|
|
206
|
+
"""
|
|
207
|
+
def paginate( # type: ignore[override]
|
|
208
|
+
self, **kwargs: Unpack[ListCreateAccountStatusRequestPaginateTypeDef]
|
|
209
|
+
) -> PageIterator[ListCreateAccountStatusResponseTypeDef]:
|
|
210
|
+
"""
|
|
211
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListCreateAccountStatus.html#Organizations.Paginator.ListCreateAccountStatus.paginate)
|
|
212
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listcreateaccountstatuspaginator)
|
|
213
|
+
"""
|
|
214
|
+
|
|
215
|
+
if TYPE_CHECKING:
|
|
216
|
+
_ListDelegatedAdministratorsPaginatorBase = Paginator[
|
|
217
|
+
ListDelegatedAdministratorsResponseTypeDef
|
|
218
|
+
]
|
|
219
|
+
else:
|
|
220
|
+
_ListDelegatedAdministratorsPaginatorBase = Paginator # type: ignore[assignment]
|
|
221
|
+
|
|
222
|
+
class ListDelegatedAdministratorsPaginator(_ListDelegatedAdministratorsPaginatorBase):
|
|
223
|
+
"""
|
|
224
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedAdministrators.html#Organizations.Paginator.ListDelegatedAdministrators)
|
|
225
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedadministratorspaginator)
|
|
226
|
+
"""
|
|
227
|
+
def paginate( # type: ignore[override]
|
|
228
|
+
self, **kwargs: Unpack[ListDelegatedAdministratorsRequestPaginateTypeDef]
|
|
229
|
+
) -> PageIterator[ListDelegatedAdministratorsResponseTypeDef]:
|
|
230
|
+
"""
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedAdministrators.html#Organizations.Paginator.ListDelegatedAdministrators.paginate)
|
|
232
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedadministratorspaginator)
|
|
233
|
+
"""
|
|
234
|
+
|
|
235
|
+
if TYPE_CHECKING:
|
|
236
|
+
_ListDelegatedServicesForAccountPaginatorBase = Paginator[
|
|
237
|
+
ListDelegatedServicesForAccountResponseTypeDef
|
|
238
|
+
]
|
|
239
|
+
else:
|
|
240
|
+
_ListDelegatedServicesForAccountPaginatorBase = Paginator # type: ignore[assignment]
|
|
241
|
+
|
|
242
|
+
class ListDelegatedServicesForAccountPaginator(_ListDelegatedServicesForAccountPaginatorBase):
|
|
243
|
+
"""
|
|
244
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedServicesForAccount.html#Organizations.Paginator.ListDelegatedServicesForAccount)
|
|
245
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedservicesforaccountpaginator)
|
|
246
|
+
"""
|
|
247
|
+
def paginate( # type: ignore[override]
|
|
248
|
+
self, **kwargs: Unpack[ListDelegatedServicesForAccountRequestPaginateTypeDef]
|
|
249
|
+
) -> PageIterator[ListDelegatedServicesForAccountResponseTypeDef]:
|
|
250
|
+
"""
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListDelegatedServicesForAccount.html#Organizations.Paginator.ListDelegatedServicesForAccount.paginate)
|
|
252
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedservicesforaccountpaginator)
|
|
253
|
+
"""
|
|
254
|
+
|
|
255
|
+
if TYPE_CHECKING:
|
|
256
|
+
_ListHandshakesForAccountPaginatorBase = Paginator[
|
|
257
|
+
ListHandshakesForAccountResponsePaginatorTypeDef
|
|
258
|
+
]
|
|
259
|
+
else:
|
|
260
|
+
_ListHandshakesForAccountPaginatorBase = Paginator # type: ignore[assignment]
|
|
261
|
+
|
|
262
|
+
class ListHandshakesForAccountPaginator(_ListHandshakesForAccountPaginatorBase):
|
|
263
|
+
"""
|
|
264
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForAccount.html#Organizations.Paginator.ListHandshakesForAccount)
|
|
265
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesforaccountpaginator)
|
|
266
|
+
"""
|
|
267
|
+
def paginate( # type: ignore[override]
|
|
268
|
+
self, **kwargs: Unpack[ListHandshakesForAccountRequestPaginateTypeDef]
|
|
269
|
+
) -> PageIterator[ListHandshakesForAccountResponsePaginatorTypeDef]:
|
|
270
|
+
"""
|
|
271
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForAccount.html#Organizations.Paginator.ListHandshakesForAccount.paginate)
|
|
272
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesforaccountpaginator)
|
|
273
|
+
"""
|
|
274
|
+
|
|
275
|
+
if TYPE_CHECKING:
|
|
276
|
+
_ListHandshakesForOrganizationPaginatorBase = Paginator[
|
|
277
|
+
ListHandshakesForOrganizationResponsePaginatorTypeDef
|
|
278
|
+
]
|
|
279
|
+
else:
|
|
280
|
+
_ListHandshakesForOrganizationPaginatorBase = Paginator # type: ignore[assignment]
|
|
281
|
+
|
|
282
|
+
class ListHandshakesForOrganizationPaginator(_ListHandshakesForOrganizationPaginatorBase):
|
|
283
|
+
"""
|
|
284
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForOrganization.html#Organizations.Paginator.ListHandshakesForOrganization)
|
|
285
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesfororganizationpaginator)
|
|
286
|
+
"""
|
|
287
|
+
def paginate( # type: ignore[override]
|
|
288
|
+
self, **kwargs: Unpack[ListHandshakesForOrganizationRequestPaginateTypeDef]
|
|
289
|
+
) -> PageIterator[ListHandshakesForOrganizationResponsePaginatorTypeDef]:
|
|
290
|
+
"""
|
|
291
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListHandshakesForOrganization.html#Organizations.Paginator.ListHandshakesForOrganization.paginate)
|
|
292
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listhandshakesfororganizationpaginator)
|
|
293
|
+
"""
|
|
294
|
+
|
|
295
|
+
if TYPE_CHECKING:
|
|
296
|
+
_ListOrganizationalUnitsForParentPaginatorBase = Paginator[
|
|
297
|
+
ListOrganizationalUnitsForParentResponseTypeDef
|
|
298
|
+
]
|
|
299
|
+
else:
|
|
300
|
+
_ListOrganizationalUnitsForParentPaginatorBase = Paginator # type: ignore[assignment]
|
|
301
|
+
|
|
302
|
+
class ListOrganizationalUnitsForParentPaginator(_ListOrganizationalUnitsForParentPaginatorBase):
|
|
303
|
+
"""
|
|
304
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListOrganizationalUnitsForParent.html#Organizations.Paginator.ListOrganizationalUnitsForParent)
|
|
305
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listorganizationalunitsforparentpaginator)
|
|
306
|
+
"""
|
|
307
|
+
def paginate( # type: ignore[override]
|
|
308
|
+
self, **kwargs: Unpack[ListOrganizationalUnitsForParentRequestPaginateTypeDef]
|
|
309
|
+
) -> PageIterator[ListOrganizationalUnitsForParentResponseTypeDef]:
|
|
310
|
+
"""
|
|
311
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListOrganizationalUnitsForParent.html#Organizations.Paginator.ListOrganizationalUnitsForParent.paginate)
|
|
312
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listorganizationalunitsforparentpaginator)
|
|
313
|
+
"""
|
|
314
|
+
|
|
315
|
+
if TYPE_CHECKING:
|
|
316
|
+
_ListParentsPaginatorBase = Paginator[ListParentsResponseTypeDef]
|
|
317
|
+
else:
|
|
318
|
+
_ListParentsPaginatorBase = Paginator # type: ignore[assignment]
|
|
319
|
+
|
|
320
|
+
class ListParentsPaginator(_ListParentsPaginatorBase):
|
|
321
|
+
"""
|
|
322
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListParents.html#Organizations.Paginator.ListParents)
|
|
323
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listparentspaginator)
|
|
324
|
+
"""
|
|
325
|
+
def paginate( # type: ignore[override]
|
|
326
|
+
self, **kwargs: Unpack[ListParentsRequestPaginateTypeDef]
|
|
327
|
+
) -> PageIterator[ListParentsResponseTypeDef]:
|
|
328
|
+
"""
|
|
329
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListParents.html#Organizations.Paginator.ListParents.paginate)
|
|
330
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listparentspaginator)
|
|
331
|
+
"""
|
|
332
|
+
|
|
333
|
+
if TYPE_CHECKING:
|
|
334
|
+
_ListPoliciesForTargetPaginatorBase = Paginator[ListPoliciesForTargetResponseTypeDef]
|
|
335
|
+
else:
|
|
336
|
+
_ListPoliciesForTargetPaginatorBase = Paginator # type: ignore[assignment]
|
|
337
|
+
|
|
338
|
+
class ListPoliciesForTargetPaginator(_ListPoliciesForTargetPaginatorBase):
|
|
339
|
+
"""
|
|
340
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPoliciesForTarget.html#Organizations.Paginator.ListPoliciesForTarget)
|
|
341
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
|
|
342
|
+
"""
|
|
343
|
+
def paginate( # type: ignore[override]
|
|
344
|
+
self, **kwargs: Unpack[ListPoliciesForTargetRequestPaginateTypeDef]
|
|
345
|
+
) -> PageIterator[ListPoliciesForTargetResponseTypeDef]:
|
|
346
|
+
"""
|
|
347
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPoliciesForTarget.html#Organizations.Paginator.ListPoliciesForTarget.paginate)
|
|
348
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
|
|
349
|
+
"""
|
|
350
|
+
|
|
351
|
+
if TYPE_CHECKING:
|
|
352
|
+
_ListPoliciesPaginatorBase = Paginator[ListPoliciesResponseTypeDef]
|
|
353
|
+
else:
|
|
354
|
+
_ListPoliciesPaginatorBase = Paginator # type: ignore[assignment]
|
|
355
|
+
|
|
356
|
+
class ListPoliciesPaginator(_ListPoliciesPaginatorBase):
|
|
357
|
+
"""
|
|
358
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPolicies.html#Organizations.Paginator.ListPolicies)
|
|
359
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciespaginator)
|
|
360
|
+
"""
|
|
361
|
+
def paginate( # type: ignore[override]
|
|
362
|
+
self, **kwargs: Unpack[ListPoliciesRequestPaginateTypeDef]
|
|
363
|
+
) -> PageIterator[ListPoliciesResponseTypeDef]:
|
|
364
|
+
"""
|
|
365
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListPolicies.html#Organizations.Paginator.ListPolicies.paginate)
|
|
366
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listpoliciespaginator)
|
|
367
|
+
"""
|
|
368
|
+
|
|
369
|
+
if TYPE_CHECKING:
|
|
370
|
+
_ListRootsPaginatorBase = Paginator[ListRootsResponseTypeDef]
|
|
371
|
+
else:
|
|
372
|
+
_ListRootsPaginatorBase = Paginator # type: ignore[assignment]
|
|
373
|
+
|
|
374
|
+
class ListRootsPaginator(_ListRootsPaginatorBase):
|
|
375
|
+
"""
|
|
376
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListRoots.html#Organizations.Paginator.ListRoots)
|
|
377
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listrootspaginator)
|
|
378
|
+
"""
|
|
379
|
+
def paginate( # type: ignore[override]
|
|
380
|
+
self, **kwargs: Unpack[ListRootsRequestPaginateTypeDef]
|
|
381
|
+
) -> PageIterator[ListRootsResponseTypeDef]:
|
|
382
|
+
"""
|
|
383
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListRoots.html#Organizations.Paginator.ListRoots.paginate)
|
|
384
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listrootspaginator)
|
|
385
|
+
"""
|
|
386
|
+
|
|
387
|
+
if TYPE_CHECKING:
|
|
388
|
+
_ListTagsForResourcePaginatorBase = Paginator[ListTagsForResourceResponseTypeDef]
|
|
389
|
+
else:
|
|
390
|
+
_ListTagsForResourcePaginatorBase = Paginator # type: ignore[assignment]
|
|
391
|
+
|
|
392
|
+
class ListTagsForResourcePaginator(_ListTagsForResourcePaginatorBase):
|
|
393
|
+
"""
|
|
394
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTagsForResource.html#Organizations.Paginator.ListTagsForResource)
|
|
395
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtagsforresourcepaginator)
|
|
396
|
+
"""
|
|
397
|
+
def paginate( # type: ignore[override]
|
|
398
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestPaginateTypeDef]
|
|
399
|
+
) -> PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
400
|
+
"""
|
|
401
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTagsForResource.html#Organizations.Paginator.ListTagsForResource.paginate)
|
|
402
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtagsforresourcepaginator)
|
|
403
|
+
"""
|
|
404
|
+
|
|
405
|
+
if TYPE_CHECKING:
|
|
406
|
+
_ListTargetsForPolicyPaginatorBase = Paginator[ListTargetsForPolicyResponseTypeDef]
|
|
407
|
+
else:
|
|
408
|
+
_ListTargetsForPolicyPaginatorBase = Paginator # type: ignore[assignment]
|
|
409
|
+
|
|
410
|
+
class ListTargetsForPolicyPaginator(_ListTargetsForPolicyPaginatorBase):
|
|
411
|
+
"""
|
|
412
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTargetsForPolicy.html#Organizations.Paginator.ListTargetsForPolicy)
|
|
413
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtargetsforpolicypaginator)
|
|
414
|
+
"""
|
|
415
|
+
def paginate( # type: ignore[override]
|
|
416
|
+
self, **kwargs: Unpack[ListTargetsForPolicyRequestPaginateTypeDef]
|
|
417
|
+
) -> PageIterator[ListTargetsForPolicyResponseTypeDef]:
|
|
418
|
+
"""
|
|
419
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListTargetsForPolicy.html#Organizations.Paginator.ListTargetsForPolicy.paginate)
|
|
420
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listtargetsforpolicypaginator)
|
|
421
|
+
"""
|
|
File without changes
|