mypy-boto3-organizations 1.35.20__py3-none-any.whl → 1.35.60__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.
@@ -30,8 +30,8 @@ Usage::
30
30
  client: OrganizationsClient = session.client("organizations")
31
31
 
32
32
  list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
33
- list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
34
33
  list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
34
+ list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
35
35
  list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
36
36
  list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
37
37
  list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
@@ -40,8 +40,8 @@ Usage::
40
40
  list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
41
41
  list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
42
42
  list_parents_paginator: ListParentsPaginator = client.get_paginator("list_parents")
43
- list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
44
43
  list_policies_for_target_paginator: ListPoliciesForTargetPaginator = client.get_paginator("list_policies_for_target")
44
+ list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
45
45
  list_roots_paginator: ListRootsPaginator = client.get_paginator("list_roots")
46
46
  list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
47
47
  list_targets_for_policy_paginator: ListTargetsForPolicyPaginator = client.get_paginator("list_targets_for_policy")
@@ -30,8 +30,8 @@ Usage::
30
30
  client: OrganizationsClient = session.client("organizations")
31
31
 
32
32
  list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
33
- list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
34
33
  list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
34
+ list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
35
35
  list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
36
36
  list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
37
37
  list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
@@ -40,8 +40,8 @@ Usage::
40
40
  list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
41
41
  list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
42
42
  list_parents_paginator: ListParentsPaginator = client.get_paginator("list_parents")
43
- list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
44
43
  list_policies_for_target_paginator: ListPoliciesForTargetPaginator = client.get_paginator("list_policies_for_target")
44
+ list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
45
45
  list_roots_paginator: ListRootsPaginator = client.get_paginator("list_roots")
46
46
  list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
47
47
  list_targets_for_policy_paginator: ListTargetsForPolicyPaginator = client.get_paginator("list_targets_for_policy")
@@ -10,9 +10,9 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.Organizations 1.35.20\n"
14
- "Version: 1.35.20\n"
15
- "Builder version: 8.0.1\n"
13
+ "Type annotations for boto3.Organizations 1.35.60\n"
14
+ "Version: 1.35.60\n"
15
+ "Builder version: 8.2.1\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations\n"
18
18
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.35.20")
27
+ print("1.35.60")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -130,13 +130,9 @@ from .type_defs import (
130
130
  )
131
131
 
132
132
  if sys.version_info >= (3, 12):
133
- from typing import Literal
133
+ from typing import Literal, Unpack
134
134
  else:
135
- from typing_extensions import Literal
136
- if sys.version_info >= (3, 12):
137
- from typing import Unpack
138
- else:
139
- from typing_extensions import Unpack
135
+ from typing_extensions import Literal, Unpack
140
136
 
141
137
 
142
138
  __all__ = ("OrganizationsClient",)
@@ -842,16 +838,16 @@ class OrganizationsClient(BaseClient):
842
838
  """
843
839
 
844
840
  @overload
845
- def get_paginator(self, operation_name: Literal["list_accounts"]) -> ListAccountsPaginator:
841
+ def get_paginator(
842
+ self, operation_name: Literal["list_accounts_for_parent"]
843
+ ) -> ListAccountsForParentPaginator:
846
844
  """
847
845
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
848
846
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
849
847
  """
850
848
 
851
849
  @overload
852
- def get_paginator(
853
- self, operation_name: Literal["list_accounts_for_parent"]
854
- ) -> ListAccountsForParentPaginator:
850
+ def get_paginator(self, operation_name: Literal["list_accounts"]) -> ListAccountsPaginator:
855
851
  """
856
852
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
857
853
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
@@ -926,16 +922,16 @@ class OrganizationsClient(BaseClient):
926
922
  """
927
923
 
928
924
  @overload
929
- def get_paginator(self, operation_name: Literal["list_policies"]) -> ListPoliciesPaginator:
925
+ def get_paginator(
926
+ self, operation_name: Literal["list_policies_for_target"]
927
+ ) -> ListPoliciesForTargetPaginator:
930
928
  """
931
929
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
932
930
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
933
931
  """
934
932
 
935
933
  @overload
936
- def get_paginator(
937
- self, operation_name: Literal["list_policies_for_target"]
938
- ) -> ListPoliciesForTargetPaginator:
934
+ def get_paginator(self, operation_name: Literal["list_policies"]) -> ListPoliciesPaginator:
939
935
  """
940
936
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
941
937
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
@@ -130,13 +130,9 @@ from .type_defs import (
130
130
  )
131
131
 
132
132
  if sys.version_info >= (3, 12):
133
- from typing import Literal
133
+ from typing import Literal, Unpack
134
134
  else:
135
- from typing_extensions import Literal
136
- if sys.version_info >= (3, 12):
137
- from typing import Unpack
138
- else:
139
- from typing_extensions import Unpack
135
+ from typing_extensions import Literal, Unpack
140
136
 
141
137
  __all__ = ("OrganizationsClient",)
142
138
 
@@ -838,16 +834,16 @@ class OrganizationsClient(BaseClient):
838
834
  """
839
835
 
840
836
  @overload
841
- def get_paginator(self, operation_name: Literal["list_accounts"]) -> ListAccountsPaginator:
837
+ def get_paginator(
838
+ self, operation_name: Literal["list_accounts_for_parent"]
839
+ ) -> ListAccountsForParentPaginator:
842
840
  """
843
841
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
844
842
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
845
843
  """
846
844
 
847
845
  @overload
848
- def get_paginator(
849
- self, operation_name: Literal["list_accounts_for_parent"]
850
- ) -> ListAccountsForParentPaginator:
846
+ def get_paginator(self, operation_name: Literal["list_accounts"]) -> ListAccountsPaginator:
851
847
  """
852
848
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
853
849
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
@@ -922,16 +918,16 @@ class OrganizationsClient(BaseClient):
922
918
  """
923
919
 
924
920
  @overload
925
- def get_paginator(self, operation_name: Literal["list_policies"]) -> ListPoliciesPaginator:
921
+ def get_paginator(
922
+ self, operation_name: Literal["list_policies_for_target"]
923
+ ) -> ListPoliciesForTargetPaginator:
926
924
  """
927
925
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
928
926
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
929
927
  """
930
928
 
931
929
  @overload
932
- def get_paginator(
933
- self, operation_name: Literal["list_policies_for_target"]
934
- ) -> ListPoliciesForTargetPaginator:
930
+ def get_paginator(self, operation_name: Literal["list_policies"]) -> ListPoliciesPaginator:
935
931
  """
936
932
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Client.get_paginator)
937
933
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
@@ -49,14 +49,14 @@ __all__ = (
49
49
  "ListTagsForResourcePaginatorName",
50
50
  "ListTargetsForPolicyPaginatorName",
51
51
  "OrganizationFeatureSetType",
52
+ "OrganizationsServiceName",
53
+ "PaginatorName",
52
54
  "ParentTypeType",
53
55
  "PolicyTypeStatusType",
54
56
  "PolicyTypeType",
55
- "TargetTypeType",
56
- "OrganizationsServiceName",
57
- "ServiceName",
58
57
  "ResourceServiceName",
59
- "PaginatorName",
58
+ "ServiceName",
59
+ "TargetTypeType",
60
60
  )
61
61
 
62
62
 
@@ -84,7 +84,9 @@ CreateAccountFailureReasonType = Literal[
84
84
  "UPDATE_EXISTING_RESOURCE_POLICY_WITH_TAGS_NOT_SUPPORTED",
85
85
  ]
86
86
  CreateAccountStateType = Literal["FAILED", "IN_PROGRESS", "SUCCEEDED"]
87
- EffectivePolicyTypeType = Literal["AISERVICES_OPT_OUT_POLICY", "BACKUP_POLICY", "TAG_POLICY"]
87
+ EffectivePolicyTypeType = Literal[
88
+ "AISERVICES_OPT_OUT_POLICY", "BACKUP_POLICY", "CHATBOT_POLICY", "TAG_POLICY"
89
+ ]
88
90
  HandshakePartyTypeType = Literal["ACCOUNT", "EMAIL", "ORGANIZATION"]
89
91
  HandshakeResourceTypeType = Literal[
90
92
  "ACCOUNT",
@@ -120,7 +122,12 @@ OrganizationFeatureSetType = Literal["ALL", "CONSOLIDATED_BILLING"]
120
122
  ParentTypeType = Literal["ORGANIZATIONAL_UNIT", "ROOT"]
121
123
  PolicyTypeStatusType = Literal["ENABLED", "PENDING_DISABLE", "PENDING_ENABLE"]
122
124
  PolicyTypeType = Literal[
123
- "AISERVICES_OPT_OUT_POLICY", "BACKUP_POLICY", "SERVICE_CONTROL_POLICY", "TAG_POLICY"
125
+ "AISERVICES_OPT_OUT_POLICY",
126
+ "BACKUP_POLICY",
127
+ "CHATBOT_POLICY",
128
+ "RESOURCE_CONTROL_POLICY",
129
+ "SERVICE_CONTROL_POLICY",
130
+ "TAG_POLICY",
124
131
  ]
125
132
  TargetTypeType = Literal["ACCOUNT", "ORGANIZATIONAL_UNIT", "ROOT"]
126
133
  OrganizationsServiceName = Literal["organizations"]
@@ -165,6 +172,7 @@ ServiceName = Literal[
165
172
  "bedrock-agent",
166
173
  "bedrock-agent-runtime",
167
174
  "bedrock-runtime",
175
+ "billing",
168
176
  "billingconductor",
169
177
  "braket",
170
178
  "budgets",
@@ -238,6 +246,7 @@ ServiceName = Literal[
238
246
  "docdb-elastic",
239
247
  "drs",
240
248
  "ds",
249
+ "ds-data",
241
250
  "dynamodb",
242
251
  "dynamodbstreams",
243
252
  "ebs",
@@ -273,6 +282,9 @@ ServiceName = Literal[
273
282
  "freetier",
274
283
  "fsx",
275
284
  "gamelift",
285
+ "geo-maps",
286
+ "geo-places",
287
+ "geo-routes",
276
288
  "glacier",
277
289
  "globalaccelerator",
278
290
  "glue",
@@ -350,6 +362,7 @@ ServiceName = Literal[
350
362
  "marketplace-catalog",
351
363
  "marketplace-deployment",
352
364
  "marketplace-entitlement",
365
+ "marketplace-reporting",
353
366
  "marketplacecommerceanalytics",
354
367
  "mediaconnect",
355
368
  "mediaconvert",
@@ -378,7 +391,6 @@ ServiceName = Literal[
378
391
  "network-firewall",
379
392
  "networkmanager",
380
393
  "networkmonitor",
381
- "nimble",
382
394
  "oam",
383
395
  "omics",
384
396
  "opensearch",
@@ -468,6 +480,7 @@ ServiceName = Literal[
468
480
  "snow-device-management",
469
481
  "snowball",
470
482
  "sns",
483
+ "socialmessaging",
471
484
  "sqs",
472
485
  "ssm",
473
486
  "ssm-contacts",
@@ -504,7 +517,6 @@ ServiceName = Literal[
504
517
  "wellarchitected",
505
518
  "wisdom",
506
519
  "workdocs",
507
- "worklink",
508
520
  "workmail",
509
521
  "workmailmessageflow",
510
522
  "workspaces",
@@ -48,14 +48,14 @@ __all__ = (
48
48
  "ListTagsForResourcePaginatorName",
49
49
  "ListTargetsForPolicyPaginatorName",
50
50
  "OrganizationFeatureSetType",
51
+ "OrganizationsServiceName",
52
+ "PaginatorName",
51
53
  "ParentTypeType",
52
54
  "PolicyTypeStatusType",
53
55
  "PolicyTypeType",
54
- "TargetTypeType",
55
- "OrganizationsServiceName",
56
- "ServiceName",
57
56
  "ResourceServiceName",
58
- "PaginatorName",
57
+ "ServiceName",
58
+ "TargetTypeType",
59
59
  )
60
60
 
61
61
  AccountJoinedMethodType = Literal["CREATED", "INVITED"]
@@ -82,7 +82,9 @@ CreateAccountFailureReasonType = Literal[
82
82
  "UPDATE_EXISTING_RESOURCE_POLICY_WITH_TAGS_NOT_SUPPORTED",
83
83
  ]
84
84
  CreateAccountStateType = Literal["FAILED", "IN_PROGRESS", "SUCCEEDED"]
85
- EffectivePolicyTypeType = Literal["AISERVICES_OPT_OUT_POLICY", "BACKUP_POLICY", "TAG_POLICY"]
85
+ EffectivePolicyTypeType = Literal[
86
+ "AISERVICES_OPT_OUT_POLICY", "BACKUP_POLICY", "CHATBOT_POLICY", "TAG_POLICY"
87
+ ]
86
88
  HandshakePartyTypeType = Literal["ACCOUNT", "EMAIL", "ORGANIZATION"]
87
89
  HandshakeResourceTypeType = Literal[
88
90
  "ACCOUNT",
@@ -118,7 +120,12 @@ OrganizationFeatureSetType = Literal["ALL", "CONSOLIDATED_BILLING"]
118
120
  ParentTypeType = Literal["ORGANIZATIONAL_UNIT", "ROOT"]
119
121
  PolicyTypeStatusType = Literal["ENABLED", "PENDING_DISABLE", "PENDING_ENABLE"]
120
122
  PolicyTypeType = Literal[
121
- "AISERVICES_OPT_OUT_POLICY", "BACKUP_POLICY", "SERVICE_CONTROL_POLICY", "TAG_POLICY"
123
+ "AISERVICES_OPT_OUT_POLICY",
124
+ "BACKUP_POLICY",
125
+ "CHATBOT_POLICY",
126
+ "RESOURCE_CONTROL_POLICY",
127
+ "SERVICE_CONTROL_POLICY",
128
+ "TAG_POLICY",
122
129
  ]
123
130
  TargetTypeType = Literal["ACCOUNT", "ORGANIZATIONAL_UNIT", "ROOT"]
124
131
  OrganizationsServiceName = Literal["organizations"]
@@ -163,6 +170,7 @@ ServiceName = Literal[
163
170
  "bedrock-agent",
164
171
  "bedrock-agent-runtime",
165
172
  "bedrock-runtime",
173
+ "billing",
166
174
  "billingconductor",
167
175
  "braket",
168
176
  "budgets",
@@ -236,6 +244,7 @@ ServiceName = Literal[
236
244
  "docdb-elastic",
237
245
  "drs",
238
246
  "ds",
247
+ "ds-data",
239
248
  "dynamodb",
240
249
  "dynamodbstreams",
241
250
  "ebs",
@@ -271,6 +280,9 @@ ServiceName = Literal[
271
280
  "freetier",
272
281
  "fsx",
273
282
  "gamelift",
283
+ "geo-maps",
284
+ "geo-places",
285
+ "geo-routes",
274
286
  "glacier",
275
287
  "globalaccelerator",
276
288
  "glue",
@@ -348,6 +360,7 @@ ServiceName = Literal[
348
360
  "marketplace-catalog",
349
361
  "marketplace-deployment",
350
362
  "marketplace-entitlement",
363
+ "marketplace-reporting",
351
364
  "marketplacecommerceanalytics",
352
365
  "mediaconnect",
353
366
  "mediaconvert",
@@ -376,7 +389,6 @@ ServiceName = Literal[
376
389
  "network-firewall",
377
390
  "networkmanager",
378
391
  "networkmonitor",
379
- "nimble",
380
392
  "oam",
381
393
  "omics",
382
394
  "opensearch",
@@ -466,6 +478,7 @@ ServiceName = Literal[
466
478
  "snow-device-management",
467
479
  "snowball",
468
480
  "sns",
481
+ "socialmessaging",
469
482
  "sqs",
470
483
  "ssm",
471
484
  "ssm-contacts",
@@ -502,7 +515,6 @@ ServiceName = Literal[
502
515
  "wellarchitected",
503
516
  "wisdom",
504
517
  "workdocs",
505
- "worklink",
506
518
  "workmail",
507
519
  "workmailmessageflow",
508
520
  "workspaces",
@@ -11,8 +11,8 @@ Usage::
11
11
  from mypy_boto3_organizations.client import OrganizationsClient
12
12
  from mypy_boto3_organizations.paginator import (
13
13
  ListAWSServiceAccessForOrganizationPaginator,
14
- ListAccountsPaginator,
15
14
  ListAccountsForParentPaginator,
15
+ ListAccountsPaginator,
16
16
  ListChildrenPaginator,
17
17
  ListCreateAccountStatusPaginator,
18
18
  ListDelegatedAdministratorsPaginator,
@@ -21,8 +21,8 @@ Usage::
21
21
  ListHandshakesForOrganizationPaginator,
22
22
  ListOrganizationalUnitsForParentPaginator,
23
23
  ListParentsPaginator,
24
- ListPoliciesPaginator,
25
24
  ListPoliciesForTargetPaginator,
25
+ ListPoliciesPaginator,
26
26
  ListRootsPaginator,
27
27
  ListTagsForResourcePaginator,
28
28
  ListTargetsForPolicyPaginator,
@@ -32,8 +32,8 @@ Usage::
32
32
  client: OrganizationsClient = session.client("organizations")
33
33
 
34
34
  list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
35
- list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
36
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
37
  list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
38
38
  list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
39
39
  list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
@@ -42,8 +42,8 @@ Usage::
42
42
  list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
43
43
  list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
44
44
  list_parents_paginator: ListParentsPaginator = client.get_paginator("list_parents")
45
- list_policies_paginator: ListPoliciesPaginator = client.get_paginator("list_policies")
46
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
47
  list_roots_paginator: ListRootsPaginator = client.get_paginator("list_roots")
48
48
  list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
49
49
  list_targets_for_policy_paginator: ListTargetsForPolicyPaginator = client.get_paginator("list_targets_for_policy")
@@ -71,9 +71,9 @@ from .type_defs import (
71
71
  ListDelegatedServicesForAccountRequestListDelegatedServicesForAccountPaginateTypeDef,
72
72
  ListDelegatedServicesForAccountResponseTypeDef,
73
73
  ListHandshakesForAccountRequestListHandshakesForAccountPaginateTypeDef,
74
- ListHandshakesForAccountResponseTypeDef,
74
+ ListHandshakesForAccountResponsePaginatorTypeDef,
75
75
  ListHandshakesForOrganizationRequestListHandshakesForOrganizationPaginateTypeDef,
76
- ListHandshakesForOrganizationResponseTypeDef,
76
+ ListHandshakesForOrganizationResponsePaginatorTypeDef,
77
77
  ListOrganizationalUnitsForParentRequestListOrganizationalUnitsForParentPaginateTypeDef,
78
78
  ListOrganizationalUnitsForParentResponseTypeDef,
79
79
  ListParentsRequestListParentsPaginateTypeDef,
@@ -98,8 +98,8 @@ else:
98
98
 
99
99
  __all__ = (
100
100
  "ListAWSServiceAccessForOrganizationPaginator",
101
- "ListAccountsPaginator",
102
101
  "ListAccountsForParentPaginator",
102
+ "ListAccountsPaginator",
103
103
  "ListChildrenPaginator",
104
104
  "ListCreateAccountStatusPaginator",
105
105
  "ListDelegatedAdministratorsPaginator",
@@ -108,8 +108,8 @@ __all__ = (
108
108
  "ListHandshakesForOrganizationPaginator",
109
109
  "ListOrganizationalUnitsForParentPaginator",
110
110
  "ListParentsPaginator",
111
- "ListPoliciesPaginator",
112
111
  "ListPoliciesForTargetPaginator",
112
+ "ListPoliciesPaginator",
113
113
  "ListRootsPaginator",
114
114
  "ListTagsForResourcePaginator",
115
115
  "ListTargetsForPolicyPaginator",
@@ -119,7 +119,7 @@ __all__ = (
119
119
  _ItemTypeDef = TypeVar("_ItemTypeDef")
120
120
 
121
121
 
122
- class _PageIterator(Generic[_ItemTypeDef], PageIterator):
122
+ class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
123
123
  def __iter__(self) -> Iterator[_ItemTypeDef]:
124
124
  """
125
125
  Proxy method to specify iterator item type.
@@ -144,33 +144,33 @@ class ListAWSServiceAccessForOrganizationPaginator(Paginator):
144
144
  """
145
145
 
146
146
 
147
- class ListAccountsPaginator(Paginator):
147
+ class ListAccountsForParentPaginator(Paginator):
148
148
  """
149
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccounts)
150
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountspaginator)
149
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccountsForParent)
150
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountsforparentpaginator)
151
151
  """
152
152
 
153
153
  def paginate(
154
- self, **kwargs: Unpack[ListAccountsRequestListAccountsPaginateTypeDef]
155
- ) -> _PageIterator[ListAccountsResponseTypeDef]:
154
+ self, **kwargs: Unpack[ListAccountsForParentRequestListAccountsForParentPaginateTypeDef]
155
+ ) -> _PageIterator[ListAccountsForParentResponseTypeDef]:
156
156
  """
157
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccounts.paginate)
158
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountspaginator)
157
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccountsForParent.paginate)
158
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountsforparentpaginator)
159
159
  """
160
160
 
161
161
 
162
- class ListAccountsForParentPaginator(Paginator):
162
+ class ListAccountsPaginator(Paginator):
163
163
  """
164
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccountsForParent)
165
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountsforparentpaginator)
164
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccounts)
165
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountspaginator)
166
166
  """
167
167
 
168
168
  def paginate(
169
- self, **kwargs: Unpack[ListAccountsForParentRequestListAccountsForParentPaginateTypeDef]
170
- ) -> _PageIterator[ListAccountsForParentResponseTypeDef]:
169
+ self, **kwargs: Unpack[ListAccountsRequestListAccountsPaginateTypeDef]
170
+ ) -> _PageIterator[ListAccountsResponseTypeDef]:
171
171
  """
172
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccountsForParent.paginate)
173
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountsforparentpaginator)
172
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListAccounts.paginate)
173
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listaccountspaginator)
174
174
  """
175
175
 
176
176
 
@@ -249,7 +249,7 @@ class ListHandshakesForAccountPaginator(Paginator):
249
249
  def paginate(
250
250
  self,
251
251
  **kwargs: Unpack[ListHandshakesForAccountRequestListHandshakesForAccountPaginateTypeDef],
252
- ) -> _PageIterator[ListHandshakesForAccountResponseTypeDef]:
252
+ ) -> _PageIterator[ListHandshakesForAccountResponsePaginatorTypeDef]:
253
253
  """
254
254
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListHandshakesForAccount.paginate)
255
255
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listhandshakesforaccountpaginator)
@@ -267,7 +267,7 @@ class ListHandshakesForOrganizationPaginator(Paginator):
267
267
  **kwargs: Unpack[
268
268
  ListHandshakesForOrganizationRequestListHandshakesForOrganizationPaginateTypeDef
269
269
  ],
270
- ) -> _PageIterator[ListHandshakesForOrganizationResponseTypeDef]:
270
+ ) -> _PageIterator[ListHandshakesForOrganizationResponsePaginatorTypeDef]:
271
271
  """
272
272
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListHandshakesForOrganization.paginate)
273
273
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listhandshakesfororganizationpaginator)
@@ -307,33 +307,33 @@ class ListParentsPaginator(Paginator):
307
307
  """
308
308
 
309
309
 
310
- class ListPoliciesPaginator(Paginator):
310
+ class ListPoliciesForTargetPaginator(Paginator):
311
311
  """
312
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPolicies)
313
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciespaginator)
312
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPoliciesForTarget)
313
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
314
314
  """
315
315
 
316
316
  def paginate(
317
- self, **kwargs: Unpack[ListPoliciesRequestListPoliciesPaginateTypeDef]
318
- ) -> _PageIterator[ListPoliciesResponseTypeDef]:
317
+ self, **kwargs: Unpack[ListPoliciesForTargetRequestListPoliciesForTargetPaginateTypeDef]
318
+ ) -> _PageIterator[ListPoliciesForTargetResponseTypeDef]:
319
319
  """
320
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPolicies.paginate)
321
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciespaginator)
320
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPoliciesForTarget.paginate)
321
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
322
322
  """
323
323
 
324
324
 
325
- class ListPoliciesForTargetPaginator(Paginator):
325
+ class ListPoliciesPaginator(Paginator):
326
326
  """
327
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPoliciesForTarget)
328
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
327
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPolicies)
328
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciespaginator)
329
329
  """
330
330
 
331
331
  def paginate(
332
- self, **kwargs: Unpack[ListPoliciesForTargetRequestListPoliciesForTargetPaginateTypeDef]
333
- ) -> _PageIterator[ListPoliciesForTargetResponseTypeDef]:
332
+ self, **kwargs: Unpack[ListPoliciesRequestListPoliciesPaginateTypeDef]
333
+ ) -> _PageIterator[ListPoliciesResponseTypeDef]:
334
334
  """
335
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPoliciesForTarget.paginate)
336
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciesfortargetpaginator)
335
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#Organizations.Paginator.ListPolicies.paginate)
336
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/paginators/#listpoliciespaginator)
337
337
  """
338
338
 
339
339