mypy-boto3-organizations 1.35.72__py3-none-any.whl → 1.35.93__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.
- mypy_boto3_organizations/__init__.py +1 -1
- mypy_boto3_organizations/__init__.pyi +1 -1
- mypy_boto3_organizations/__main__.py +9 -8
- mypy_boto3_organizations/client.py +56 -51
- mypy_boto3_organizations/client.pyi +56 -50
- mypy_boto3_organizations/literals.py +7 -2
- mypy_boto3_organizations/literals.pyi +7 -2
- mypy_boto3_organizations/paginator.py +193 -107
- mypy_boto3_organizations/paginator.pyi +178 -106
- mypy_boto3_organizations/type_defs.py +43 -41
- mypy_boto3_organizations/type_defs.pyi +43 -41
- mypy_boto3_organizations/version.py +2 -2
- {mypy_boto3_organizations-1.35.72.dist-info → mypy_boto3_organizations-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_organizations-1.35.72.dist-info → mypy_boto3_organizations-1.35.93.dist-info}/METADATA +22 -8
- mypy_boto3_organizations-1.35.93.dist-info/RECORD +18 -0
- {mypy_boto3_organizations-1.35.72.dist-info → mypy_boto3_organizations-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_organizations-1.35.72.dist-info/RECORD +0 -18
- {mypy_boto3_organizations-1.35.72.dist-info → mypy_boto3_organizations-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 Organizations 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 Organizations 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#organizations\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for organizations service
|
|
2
|
+
Type annotations for organizations service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: OrganizationsClient = session.client("organizations")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
ListAccountsForParentPaginator,
|
|
@@ -131,6 +135,11 @@ from .type_defs import (
|
|
|
131
135
|
UpdatePolicyResponseTypeDef,
|
|
132
136
|
)
|
|
133
137
|
|
|
138
|
+
if sys.version_info >= (3, 9):
|
|
139
|
+
from builtins import type as Type
|
|
140
|
+
from collections.abc import Mapping
|
|
141
|
+
else:
|
|
142
|
+
from typing import Mapping, Type
|
|
134
143
|
if sys.version_info >= (3, 12):
|
|
135
144
|
from typing import Literal, Unpack
|
|
136
145
|
else:
|
|
@@ -140,15 +149,7 @@ else:
|
|
|
140
149
|
__all__ = ("OrganizationsClient",)
|
|
141
150
|
|
|
142
151
|
|
|
143
|
-
class
|
|
144
|
-
MSG_TEMPLATE: str
|
|
145
|
-
|
|
146
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
147
|
-
self.response: Dict[str, Any]
|
|
148
|
-
self.operation_name: str
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
class Exceptions:
|
|
152
|
+
class Exceptions(BaseClientExceptions):
|
|
152
153
|
AWSOrganizationsNotInUseException: Type[BotocoreClientError]
|
|
153
154
|
AccessDeniedException: Type[BotocoreClientError]
|
|
154
155
|
AccessDeniedForDependencyException: Type[BotocoreClientError]
|
|
@@ -234,12 +235,6 @@ class OrganizationsClient(BaseClient):
|
|
|
234
235
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#generate_presigned_url)
|
|
235
236
|
"""
|
|
236
237
|
|
|
237
|
-
def close(self) -> None:
|
|
238
|
-
"""
|
|
239
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/close.html)
|
|
240
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#close)
|
|
241
|
-
"""
|
|
242
|
-
|
|
243
238
|
def accept_handshake(
|
|
244
239
|
self, **kwargs: Unpack[AcceptHandshakeRequestRequestTypeDef]
|
|
245
240
|
) -> AcceptHandshakeResponseTypeDef:
|
|
@@ -803,8 +798,8 @@ class OrganizationsClient(BaseClient):
|
|
|
803
798
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#update_policy)
|
|
804
799
|
"""
|
|
805
800
|
|
|
806
|
-
@overload
|
|
807
|
-
def get_paginator(
|
|
801
|
+
@overload # type: ignore[override]
|
|
802
|
+
def get_paginator( # type: ignore[override]
|
|
808
803
|
self, operation_name: Literal["list_aws_service_access_for_organization"]
|
|
809
804
|
) -> ListAWSServiceAccessForOrganizationPaginator:
|
|
810
805
|
"""
|
|
@@ -814,8 +809,8 @@ class OrganizationsClient(BaseClient):
|
|
|
814
809
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
815
810
|
"""
|
|
816
811
|
|
|
817
|
-
@overload
|
|
818
|
-
def get_paginator(
|
|
812
|
+
@overload # type: ignore[override]
|
|
813
|
+
def get_paginator( # type: ignore[override]
|
|
819
814
|
self, operation_name: Literal["list_accounts_for_parent"]
|
|
820
815
|
) -> ListAccountsForParentPaginator:
|
|
821
816
|
"""
|
|
@@ -825,8 +820,10 @@ class OrganizationsClient(BaseClient):
|
|
|
825
820
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
826
821
|
"""
|
|
827
822
|
|
|
828
|
-
@overload
|
|
829
|
-
def get_paginator(
|
|
823
|
+
@overload # type: ignore[override]
|
|
824
|
+
def get_paginator( # type: ignore[override]
|
|
825
|
+
self, operation_name: Literal["list_accounts"]
|
|
826
|
+
) -> ListAccountsPaginator:
|
|
830
827
|
"""
|
|
831
828
|
Create a paginator for an operation.
|
|
832
829
|
|
|
@@ -834,8 +831,10 @@ class OrganizationsClient(BaseClient):
|
|
|
834
831
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
835
832
|
"""
|
|
836
833
|
|
|
837
|
-
@overload
|
|
838
|
-
def get_paginator(
|
|
834
|
+
@overload # type: ignore[override]
|
|
835
|
+
def get_paginator( # type: ignore[override]
|
|
836
|
+
self, operation_name: Literal["list_children"]
|
|
837
|
+
) -> ListChildrenPaginator:
|
|
839
838
|
"""
|
|
840
839
|
Create a paginator for an operation.
|
|
841
840
|
|
|
@@ -843,8 +842,8 @@ class OrganizationsClient(BaseClient):
|
|
|
843
842
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
844
843
|
"""
|
|
845
844
|
|
|
846
|
-
@overload
|
|
847
|
-
def get_paginator(
|
|
845
|
+
@overload # type: ignore[override]
|
|
846
|
+
def get_paginator( # type: ignore[override]
|
|
848
847
|
self, operation_name: Literal["list_create_account_status"]
|
|
849
848
|
) -> ListCreateAccountStatusPaginator:
|
|
850
849
|
"""
|
|
@@ -854,8 +853,8 @@ class OrganizationsClient(BaseClient):
|
|
|
854
853
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
855
854
|
"""
|
|
856
855
|
|
|
857
|
-
@overload
|
|
858
|
-
def get_paginator(
|
|
856
|
+
@overload # type: ignore[override]
|
|
857
|
+
def get_paginator( # type: ignore[override]
|
|
859
858
|
self, operation_name: Literal["list_delegated_administrators"]
|
|
860
859
|
) -> ListDelegatedAdministratorsPaginator:
|
|
861
860
|
"""
|
|
@@ -865,8 +864,8 @@ class OrganizationsClient(BaseClient):
|
|
|
865
864
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
866
865
|
"""
|
|
867
866
|
|
|
868
|
-
@overload
|
|
869
|
-
def get_paginator(
|
|
867
|
+
@overload # type: ignore[override]
|
|
868
|
+
def get_paginator( # type: ignore[override]
|
|
870
869
|
self, operation_name: Literal["list_delegated_services_for_account"]
|
|
871
870
|
) -> ListDelegatedServicesForAccountPaginator:
|
|
872
871
|
"""
|
|
@@ -876,8 +875,8 @@ class OrganizationsClient(BaseClient):
|
|
|
876
875
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
877
876
|
"""
|
|
878
877
|
|
|
879
|
-
@overload
|
|
880
|
-
def get_paginator(
|
|
878
|
+
@overload # type: ignore[override]
|
|
879
|
+
def get_paginator( # type: ignore[override]
|
|
881
880
|
self, operation_name: Literal["list_handshakes_for_account"]
|
|
882
881
|
) -> ListHandshakesForAccountPaginator:
|
|
883
882
|
"""
|
|
@@ -887,8 +886,8 @@ class OrganizationsClient(BaseClient):
|
|
|
887
886
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
888
887
|
"""
|
|
889
888
|
|
|
890
|
-
@overload
|
|
891
|
-
def get_paginator(
|
|
889
|
+
@overload # type: ignore[override]
|
|
890
|
+
def get_paginator( # type: ignore[override]
|
|
892
891
|
self, operation_name: Literal["list_handshakes_for_organization"]
|
|
893
892
|
) -> ListHandshakesForOrganizationPaginator:
|
|
894
893
|
"""
|
|
@@ -898,8 +897,8 @@ class OrganizationsClient(BaseClient):
|
|
|
898
897
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
899
898
|
"""
|
|
900
899
|
|
|
901
|
-
@overload
|
|
902
|
-
def get_paginator(
|
|
900
|
+
@overload # type: ignore[override]
|
|
901
|
+
def get_paginator( # type: ignore[override]
|
|
903
902
|
self, operation_name: Literal["list_organizational_units_for_parent"]
|
|
904
903
|
) -> ListOrganizationalUnitsForParentPaginator:
|
|
905
904
|
"""
|
|
@@ -909,8 +908,10 @@ class OrganizationsClient(BaseClient):
|
|
|
909
908
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
910
909
|
"""
|
|
911
910
|
|
|
912
|
-
@overload
|
|
913
|
-
def get_paginator(
|
|
911
|
+
@overload # type: ignore[override]
|
|
912
|
+
def get_paginator( # type: ignore[override]
|
|
913
|
+
self, operation_name: Literal["list_parents"]
|
|
914
|
+
) -> ListParentsPaginator:
|
|
914
915
|
"""
|
|
915
916
|
Create a paginator for an operation.
|
|
916
917
|
|
|
@@ -918,8 +919,8 @@ class OrganizationsClient(BaseClient):
|
|
|
918
919
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
919
920
|
"""
|
|
920
921
|
|
|
921
|
-
@overload
|
|
922
|
-
def get_paginator(
|
|
922
|
+
@overload # type: ignore[override]
|
|
923
|
+
def get_paginator( # type: ignore[override]
|
|
923
924
|
self, operation_name: Literal["list_policies_for_target"]
|
|
924
925
|
) -> ListPoliciesForTargetPaginator:
|
|
925
926
|
"""
|
|
@@ -929,8 +930,10 @@ class OrganizationsClient(BaseClient):
|
|
|
929
930
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
930
931
|
"""
|
|
931
932
|
|
|
932
|
-
@overload
|
|
933
|
-
def get_paginator(
|
|
933
|
+
@overload # type: ignore[override]
|
|
934
|
+
def get_paginator( # type: ignore[override]
|
|
935
|
+
self, operation_name: Literal["list_policies"]
|
|
936
|
+
) -> ListPoliciesPaginator:
|
|
934
937
|
"""
|
|
935
938
|
Create a paginator for an operation.
|
|
936
939
|
|
|
@@ -938,8 +941,10 @@ class OrganizationsClient(BaseClient):
|
|
|
938
941
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
939
942
|
"""
|
|
940
943
|
|
|
941
|
-
@overload
|
|
942
|
-
def get_paginator(
|
|
944
|
+
@overload # type: ignore[override]
|
|
945
|
+
def get_paginator( # type: ignore[override]
|
|
946
|
+
self, operation_name: Literal["list_roots"]
|
|
947
|
+
) -> ListRootsPaginator:
|
|
943
948
|
"""
|
|
944
949
|
Create a paginator for an operation.
|
|
945
950
|
|
|
@@ -947,8 +952,8 @@ class OrganizationsClient(BaseClient):
|
|
|
947
952
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
948
953
|
"""
|
|
949
954
|
|
|
950
|
-
@overload
|
|
951
|
-
def get_paginator(
|
|
955
|
+
@overload # type: ignore[override]
|
|
956
|
+
def get_paginator( # type: ignore[override]
|
|
952
957
|
self, operation_name: Literal["list_tags_for_resource"]
|
|
953
958
|
) -> ListTagsForResourcePaginator:
|
|
954
959
|
"""
|
|
@@ -958,8 +963,8 @@ class OrganizationsClient(BaseClient):
|
|
|
958
963
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
959
964
|
"""
|
|
960
965
|
|
|
961
|
-
@overload
|
|
962
|
-
def get_paginator(
|
|
966
|
+
@overload # type: ignore[override]
|
|
967
|
+
def get_paginator( # type: ignore[override]
|
|
963
968
|
self, operation_name: Literal["list_targets_for_policy"]
|
|
964
969
|
) -> ListTargetsForPolicyPaginator:
|
|
965
970
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for organizations service
|
|
2
|
+
Type annotations for organizations service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -13,13 +13,17 @@ Usage::
|
|
|
13
13
|
client: OrganizationsClient = session.client("organizations")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
ListAccountsForParentPaginator,
|
|
@@ -131,6 +135,11 @@ from .type_defs import (
|
|
|
131
135
|
UpdatePolicyResponseTypeDef,
|
|
132
136
|
)
|
|
133
137
|
|
|
138
|
+
if sys.version_info >= (3, 9):
|
|
139
|
+
from builtins import type as Type
|
|
140
|
+
from collections.abc import Mapping
|
|
141
|
+
else:
|
|
142
|
+
from typing import Mapping, Type
|
|
134
143
|
if sys.version_info >= (3, 12):
|
|
135
144
|
from typing import Literal, Unpack
|
|
136
145
|
else:
|
|
@@ -138,14 +147,7 @@ else:
|
|
|
138
147
|
|
|
139
148
|
__all__ = ("OrganizationsClient",)
|
|
140
149
|
|
|
141
|
-
class
|
|
142
|
-
MSG_TEMPLATE: str
|
|
143
|
-
|
|
144
|
-
def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
|
|
145
|
-
self.response: Dict[str, Any]
|
|
146
|
-
self.operation_name: str
|
|
147
|
-
|
|
148
|
-
class Exceptions:
|
|
150
|
+
class Exceptions(BaseClientExceptions):
|
|
149
151
|
AWSOrganizationsNotInUseException: Type[BotocoreClientError]
|
|
150
152
|
AccessDeniedException: Type[BotocoreClientError]
|
|
151
153
|
AccessDeniedForDependencyException: Type[BotocoreClientError]
|
|
@@ -230,12 +232,6 @@ class OrganizationsClient(BaseClient):
|
|
|
230
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#generate_presigned_url)
|
|
231
233
|
"""
|
|
232
234
|
|
|
233
|
-
def close(self) -> None:
|
|
234
|
-
"""
|
|
235
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/close.html)
|
|
236
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#close)
|
|
237
|
-
"""
|
|
238
|
-
|
|
239
235
|
def accept_handshake(
|
|
240
236
|
self, **kwargs: Unpack[AcceptHandshakeRequestRequestTypeDef]
|
|
241
237
|
) -> AcceptHandshakeResponseTypeDef:
|
|
@@ -799,8 +795,8 @@ class OrganizationsClient(BaseClient):
|
|
|
799
795
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#update_policy)
|
|
800
796
|
"""
|
|
801
797
|
|
|
802
|
-
@overload
|
|
803
|
-
def get_paginator(
|
|
798
|
+
@overload # type: ignore[override]
|
|
799
|
+
def get_paginator( # type: ignore[override]
|
|
804
800
|
self, operation_name: Literal["list_aws_service_access_for_organization"]
|
|
805
801
|
) -> ListAWSServiceAccessForOrganizationPaginator:
|
|
806
802
|
"""
|
|
@@ -810,8 +806,8 @@ class OrganizationsClient(BaseClient):
|
|
|
810
806
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
811
807
|
"""
|
|
812
808
|
|
|
813
|
-
@overload
|
|
814
|
-
def get_paginator(
|
|
809
|
+
@overload # type: ignore[override]
|
|
810
|
+
def get_paginator( # type: ignore[override]
|
|
815
811
|
self, operation_name: Literal["list_accounts_for_parent"]
|
|
816
812
|
) -> ListAccountsForParentPaginator:
|
|
817
813
|
"""
|
|
@@ -821,8 +817,10 @@ class OrganizationsClient(BaseClient):
|
|
|
821
817
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
822
818
|
"""
|
|
823
819
|
|
|
824
|
-
@overload
|
|
825
|
-
def get_paginator(
|
|
820
|
+
@overload # type: ignore[override]
|
|
821
|
+
def get_paginator( # type: ignore[override]
|
|
822
|
+
self, operation_name: Literal["list_accounts"]
|
|
823
|
+
) -> ListAccountsPaginator:
|
|
826
824
|
"""
|
|
827
825
|
Create a paginator for an operation.
|
|
828
826
|
|
|
@@ -830,8 +828,10 @@ class OrganizationsClient(BaseClient):
|
|
|
830
828
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
831
829
|
"""
|
|
832
830
|
|
|
833
|
-
@overload
|
|
834
|
-
def get_paginator(
|
|
831
|
+
@overload # type: ignore[override]
|
|
832
|
+
def get_paginator( # type: ignore[override]
|
|
833
|
+
self, operation_name: Literal["list_children"]
|
|
834
|
+
) -> ListChildrenPaginator:
|
|
835
835
|
"""
|
|
836
836
|
Create a paginator for an operation.
|
|
837
837
|
|
|
@@ -839,8 +839,8 @@ class OrganizationsClient(BaseClient):
|
|
|
839
839
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
840
840
|
"""
|
|
841
841
|
|
|
842
|
-
@overload
|
|
843
|
-
def get_paginator(
|
|
842
|
+
@overload # type: ignore[override]
|
|
843
|
+
def get_paginator( # type: ignore[override]
|
|
844
844
|
self, operation_name: Literal["list_create_account_status"]
|
|
845
845
|
) -> ListCreateAccountStatusPaginator:
|
|
846
846
|
"""
|
|
@@ -850,8 +850,8 @@ class OrganizationsClient(BaseClient):
|
|
|
850
850
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
851
851
|
"""
|
|
852
852
|
|
|
853
|
-
@overload
|
|
854
|
-
def get_paginator(
|
|
853
|
+
@overload # type: ignore[override]
|
|
854
|
+
def get_paginator( # type: ignore[override]
|
|
855
855
|
self, operation_name: Literal["list_delegated_administrators"]
|
|
856
856
|
) -> ListDelegatedAdministratorsPaginator:
|
|
857
857
|
"""
|
|
@@ -861,8 +861,8 @@ class OrganizationsClient(BaseClient):
|
|
|
861
861
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
862
862
|
"""
|
|
863
863
|
|
|
864
|
-
@overload
|
|
865
|
-
def get_paginator(
|
|
864
|
+
@overload # type: ignore[override]
|
|
865
|
+
def get_paginator( # type: ignore[override]
|
|
866
866
|
self, operation_name: Literal["list_delegated_services_for_account"]
|
|
867
867
|
) -> ListDelegatedServicesForAccountPaginator:
|
|
868
868
|
"""
|
|
@@ -872,8 +872,8 @@ class OrganizationsClient(BaseClient):
|
|
|
872
872
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
873
873
|
"""
|
|
874
874
|
|
|
875
|
-
@overload
|
|
876
|
-
def get_paginator(
|
|
875
|
+
@overload # type: ignore[override]
|
|
876
|
+
def get_paginator( # type: ignore[override]
|
|
877
877
|
self, operation_name: Literal["list_handshakes_for_account"]
|
|
878
878
|
) -> ListHandshakesForAccountPaginator:
|
|
879
879
|
"""
|
|
@@ -883,8 +883,8 @@ class OrganizationsClient(BaseClient):
|
|
|
883
883
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
884
884
|
"""
|
|
885
885
|
|
|
886
|
-
@overload
|
|
887
|
-
def get_paginator(
|
|
886
|
+
@overload # type: ignore[override]
|
|
887
|
+
def get_paginator( # type: ignore[override]
|
|
888
888
|
self, operation_name: Literal["list_handshakes_for_organization"]
|
|
889
889
|
) -> ListHandshakesForOrganizationPaginator:
|
|
890
890
|
"""
|
|
@@ -894,8 +894,8 @@ class OrganizationsClient(BaseClient):
|
|
|
894
894
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
895
895
|
"""
|
|
896
896
|
|
|
897
|
-
@overload
|
|
898
|
-
def get_paginator(
|
|
897
|
+
@overload # type: ignore[override]
|
|
898
|
+
def get_paginator( # type: ignore[override]
|
|
899
899
|
self, operation_name: Literal["list_organizational_units_for_parent"]
|
|
900
900
|
) -> ListOrganizationalUnitsForParentPaginator:
|
|
901
901
|
"""
|
|
@@ -905,8 +905,10 @@ class OrganizationsClient(BaseClient):
|
|
|
905
905
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
906
906
|
"""
|
|
907
907
|
|
|
908
|
-
@overload
|
|
909
|
-
def get_paginator(
|
|
908
|
+
@overload # type: ignore[override]
|
|
909
|
+
def get_paginator( # type: ignore[override]
|
|
910
|
+
self, operation_name: Literal["list_parents"]
|
|
911
|
+
) -> ListParentsPaginator:
|
|
910
912
|
"""
|
|
911
913
|
Create a paginator for an operation.
|
|
912
914
|
|
|
@@ -914,8 +916,8 @@ class OrganizationsClient(BaseClient):
|
|
|
914
916
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
915
917
|
"""
|
|
916
918
|
|
|
917
|
-
@overload
|
|
918
|
-
def get_paginator(
|
|
919
|
+
@overload # type: ignore[override]
|
|
920
|
+
def get_paginator( # type: ignore[override]
|
|
919
921
|
self, operation_name: Literal["list_policies_for_target"]
|
|
920
922
|
) -> ListPoliciesForTargetPaginator:
|
|
921
923
|
"""
|
|
@@ -925,8 +927,10 @@ class OrganizationsClient(BaseClient):
|
|
|
925
927
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
926
928
|
"""
|
|
927
929
|
|
|
928
|
-
@overload
|
|
929
|
-
def get_paginator(
|
|
930
|
+
@overload # type: ignore[override]
|
|
931
|
+
def get_paginator( # type: ignore[override]
|
|
932
|
+
self, operation_name: Literal["list_policies"]
|
|
933
|
+
) -> ListPoliciesPaginator:
|
|
930
934
|
"""
|
|
931
935
|
Create a paginator for an operation.
|
|
932
936
|
|
|
@@ -934,8 +938,10 @@ class OrganizationsClient(BaseClient):
|
|
|
934
938
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
935
939
|
"""
|
|
936
940
|
|
|
937
|
-
@overload
|
|
938
|
-
def get_paginator(
|
|
941
|
+
@overload # type: ignore[override]
|
|
942
|
+
def get_paginator( # type: ignore[override]
|
|
943
|
+
self, operation_name: Literal["list_roots"]
|
|
944
|
+
) -> ListRootsPaginator:
|
|
939
945
|
"""
|
|
940
946
|
Create a paginator for an operation.
|
|
941
947
|
|
|
@@ -943,8 +949,8 @@ class OrganizationsClient(BaseClient):
|
|
|
943
949
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
944
950
|
"""
|
|
945
951
|
|
|
946
|
-
@overload
|
|
947
|
-
def get_paginator(
|
|
952
|
+
@overload # type: ignore[override]
|
|
953
|
+
def get_paginator( # type: ignore[override]
|
|
948
954
|
self, operation_name: Literal["list_tags_for_resource"]
|
|
949
955
|
) -> ListTagsForResourcePaginator:
|
|
950
956
|
"""
|
|
@@ -954,8 +960,8 @@ class OrganizationsClient(BaseClient):
|
|
|
954
960
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/client/#get_paginator)
|
|
955
961
|
"""
|
|
956
962
|
|
|
957
|
-
@overload
|
|
958
|
-
def get_paginator(
|
|
963
|
+
@overload # type: ignore[override]
|
|
964
|
+
def get_paginator( # type: ignore[override]
|
|
959
965
|
self, operation_name: Literal["list_targets_for_policy"]
|
|
960
966
|
) -> ListTargetsForPolicyPaginator:
|
|
961
967
|
"""
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for organizations service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: AccountJoinedMethodType = "CREATED"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -173,12 +173,15 @@ ServiceName = Literal[
|
|
|
173
173
|
"b2bi",
|
|
174
174
|
"backup",
|
|
175
175
|
"backup-gateway",
|
|
176
|
+
"backupsearch",
|
|
176
177
|
"batch",
|
|
177
178
|
"bcm-data-exports",
|
|
178
179
|
"bcm-pricing-calculator",
|
|
179
180
|
"bedrock",
|
|
180
181
|
"bedrock-agent",
|
|
181
182
|
"bedrock-agent-runtime",
|
|
183
|
+
"bedrock-data-automation",
|
|
184
|
+
"bedrock-data-automation-runtime",
|
|
182
185
|
"bedrock-runtime",
|
|
183
186
|
"billing",
|
|
184
187
|
"billingconductor",
|
|
@@ -256,6 +259,7 @@ ServiceName = Literal[
|
|
|
256
259
|
"drs",
|
|
257
260
|
"ds",
|
|
258
261
|
"ds-data",
|
|
262
|
+
"dsql",
|
|
259
263
|
"dynamodb",
|
|
260
264
|
"dynamodbstreams",
|
|
261
265
|
"ebs",
|
|
@@ -466,6 +470,7 @@ ServiceName = Literal[
|
|
|
466
470
|
"s3",
|
|
467
471
|
"s3control",
|
|
468
472
|
"s3outposts",
|
|
473
|
+
"s3tables",
|
|
469
474
|
"sagemaker",
|
|
470
475
|
"sagemaker-a2i-runtime",
|
|
471
476
|
"sagemaker-edge",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for organizations service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_organizations/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: AccountJoinedMethodType = "CREATED"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -171,12 +171,15 @@ ServiceName = Literal[
|
|
|
171
171
|
"b2bi",
|
|
172
172
|
"backup",
|
|
173
173
|
"backup-gateway",
|
|
174
|
+
"backupsearch",
|
|
174
175
|
"batch",
|
|
175
176
|
"bcm-data-exports",
|
|
176
177
|
"bcm-pricing-calculator",
|
|
177
178
|
"bedrock",
|
|
178
179
|
"bedrock-agent",
|
|
179
180
|
"bedrock-agent-runtime",
|
|
181
|
+
"bedrock-data-automation",
|
|
182
|
+
"bedrock-data-automation-runtime",
|
|
180
183
|
"bedrock-runtime",
|
|
181
184
|
"billing",
|
|
182
185
|
"billingconductor",
|
|
@@ -254,6 +257,7 @@ ServiceName = Literal[
|
|
|
254
257
|
"drs",
|
|
255
258
|
"ds",
|
|
256
259
|
"ds-data",
|
|
260
|
+
"dsql",
|
|
257
261
|
"dynamodb",
|
|
258
262
|
"dynamodbstreams",
|
|
259
263
|
"ebs",
|
|
@@ -464,6 +468,7 @@ ServiceName = Literal[
|
|
|
464
468
|
"s3",
|
|
465
469
|
"s3control",
|
|
466
470
|
"s3outposts",
|
|
471
|
+
"s3tables",
|
|
467
472
|
"sagemaker",
|
|
468
473
|
"sagemaker-a2i-runtime",
|
|
469
474
|
"sagemaker-edge",
|