types-boto3-organizations 1.40.0__py3-none-any.whl → 1.40.27__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 +8 -0
- types_boto3_organizations/__init__.pyi +8 -0
- types_boto3_organizations/__main__.py +3 -3
- types_boto3_organizations/client.py +50 -0
- types_boto3_organizations/client.pyi +50 -0
- types_boto3_organizations/literals.py +16 -12
- types_boto3_organizations/literals.pyi +16 -12
- types_boto3_organizations/paginator.py +60 -0
- types_boto3_organizations/paginator.pyi +54 -0
- types_boto3_organizations/type_defs.py +57 -0
- types_boto3_organizations/type_defs.pyi +50 -0
- types_boto3_organizations/version.py +1 -1
- {types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.27.dist-info}/METADATA +12 -4
- types_boto3_organizations-1.40.27.dist-info/RECORD +18 -0
- types_boto3_organizations-1.40.0.dist-info/RECORD +0 -18
- {types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.27.dist-info}/WHEEL +0 -0
- {types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.27.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.27.dist-info}/top_level.txt +0 -0
|
@@ -14,10 +14,12 @@ Usage::
|
|
|
14
14
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
15
15
|
ListAccountsForParentPaginator,
|
|
16
16
|
ListAccountsPaginator,
|
|
17
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
17
18
|
ListChildrenPaginator,
|
|
18
19
|
ListCreateAccountStatusPaginator,
|
|
19
20
|
ListDelegatedAdministratorsPaginator,
|
|
20
21
|
ListDelegatedServicesForAccountPaginator,
|
|
22
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
21
23
|
ListHandshakesForAccountPaginator,
|
|
22
24
|
ListHandshakesForOrganizationPaginator,
|
|
23
25
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -36,10 +38,12 @@ Usage::
|
|
|
36
38
|
list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
|
|
37
39
|
list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
|
|
38
40
|
list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
|
|
41
|
+
list_accounts_with_invalid_effective_policy_paginator: ListAccountsWithInvalidEffectivePolicyPaginator = client.get_paginator("list_accounts_with_invalid_effective_policy")
|
|
39
42
|
list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
|
|
40
43
|
list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
|
|
41
44
|
list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
|
|
42
45
|
list_delegated_services_for_account_paginator: ListDelegatedServicesForAccountPaginator = client.get_paginator("list_delegated_services_for_account")
|
|
46
|
+
list_effective_policy_validation_errors_paginator: ListEffectivePolicyValidationErrorsPaginator = client.get_paginator("list_effective_policy_validation_errors")
|
|
43
47
|
list_handshakes_for_account_paginator: ListHandshakesForAccountPaginator = client.get_paginator("list_handshakes_for_account")
|
|
44
48
|
list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
|
|
45
49
|
list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
|
|
@@ -56,11 +60,13 @@ from .client import OrganizationsClient
|
|
|
56
60
|
from .paginator import (
|
|
57
61
|
ListAccountsForParentPaginator,
|
|
58
62
|
ListAccountsPaginator,
|
|
63
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
59
64
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
60
65
|
ListChildrenPaginator,
|
|
61
66
|
ListCreateAccountStatusPaginator,
|
|
62
67
|
ListDelegatedAdministratorsPaginator,
|
|
63
68
|
ListDelegatedServicesForAccountPaginator,
|
|
69
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
64
70
|
ListHandshakesForAccountPaginator,
|
|
65
71
|
ListHandshakesForOrganizationPaginator,
|
|
66
72
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -80,10 +86,12 @@ __all__ = (
|
|
|
80
86
|
"ListAWSServiceAccessForOrganizationPaginator",
|
|
81
87
|
"ListAccountsForParentPaginator",
|
|
82
88
|
"ListAccountsPaginator",
|
|
89
|
+
"ListAccountsWithInvalidEffectivePolicyPaginator",
|
|
83
90
|
"ListChildrenPaginator",
|
|
84
91
|
"ListCreateAccountStatusPaginator",
|
|
85
92
|
"ListDelegatedAdministratorsPaginator",
|
|
86
93
|
"ListDelegatedServicesForAccountPaginator",
|
|
94
|
+
"ListEffectivePolicyValidationErrorsPaginator",
|
|
87
95
|
"ListHandshakesForAccountPaginator",
|
|
88
96
|
"ListHandshakesForOrganizationPaginator",
|
|
89
97
|
"ListOrganizationalUnitsForParentPaginator",
|
|
@@ -14,10 +14,12 @@ Usage::
|
|
|
14
14
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
15
15
|
ListAccountsForParentPaginator,
|
|
16
16
|
ListAccountsPaginator,
|
|
17
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
17
18
|
ListChildrenPaginator,
|
|
18
19
|
ListCreateAccountStatusPaginator,
|
|
19
20
|
ListDelegatedAdministratorsPaginator,
|
|
20
21
|
ListDelegatedServicesForAccountPaginator,
|
|
22
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
21
23
|
ListHandshakesForAccountPaginator,
|
|
22
24
|
ListHandshakesForOrganizationPaginator,
|
|
23
25
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -36,10 +38,12 @@ Usage::
|
|
|
36
38
|
list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
|
|
37
39
|
list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
|
|
38
40
|
list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
|
|
41
|
+
list_accounts_with_invalid_effective_policy_paginator: ListAccountsWithInvalidEffectivePolicyPaginator = client.get_paginator("list_accounts_with_invalid_effective_policy")
|
|
39
42
|
list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
|
|
40
43
|
list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
|
|
41
44
|
list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
|
|
42
45
|
list_delegated_services_for_account_paginator: ListDelegatedServicesForAccountPaginator = client.get_paginator("list_delegated_services_for_account")
|
|
46
|
+
list_effective_policy_validation_errors_paginator: ListEffectivePolicyValidationErrorsPaginator = client.get_paginator("list_effective_policy_validation_errors")
|
|
43
47
|
list_handshakes_for_account_paginator: ListHandshakesForAccountPaginator = client.get_paginator("list_handshakes_for_account")
|
|
44
48
|
list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
|
|
45
49
|
list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
|
|
@@ -56,11 +60,13 @@ from .client import OrganizationsClient
|
|
|
56
60
|
from .paginator import (
|
|
57
61
|
ListAccountsForParentPaginator,
|
|
58
62
|
ListAccountsPaginator,
|
|
63
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
59
64
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
60
65
|
ListChildrenPaginator,
|
|
61
66
|
ListCreateAccountStatusPaginator,
|
|
62
67
|
ListDelegatedAdministratorsPaginator,
|
|
63
68
|
ListDelegatedServicesForAccountPaginator,
|
|
69
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
64
70
|
ListHandshakesForAccountPaginator,
|
|
65
71
|
ListHandshakesForOrganizationPaginator,
|
|
66
72
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -79,10 +85,12 @@ __all__ = (
|
|
|
79
85
|
"ListAWSServiceAccessForOrganizationPaginator",
|
|
80
86
|
"ListAccountsForParentPaginator",
|
|
81
87
|
"ListAccountsPaginator",
|
|
88
|
+
"ListAccountsWithInvalidEffectivePolicyPaginator",
|
|
82
89
|
"ListChildrenPaginator",
|
|
83
90
|
"ListCreateAccountStatusPaginator",
|
|
84
91
|
"ListDelegatedAdministratorsPaginator",
|
|
85
92
|
"ListDelegatedServicesForAccountPaginator",
|
|
93
|
+
"ListEffectivePolicyValidationErrorsPaginator",
|
|
86
94
|
"ListHandshakesForAccountPaginator",
|
|
87
95
|
"ListHandshakesForOrganizationPaginator",
|
|
88
96
|
"ListOrganizationalUnitsForParentPaginator",
|
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Organizations 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 Organizations 1.40.27\n"
|
|
16
|
+
"Version: 1.40.27\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_organizations//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations.html#organizations\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.27\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -28,11 +28,13 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
ListAccountsForParentPaginator,
|
|
30
30
|
ListAccountsPaginator,
|
|
31
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
31
32
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
32
33
|
ListChildrenPaginator,
|
|
33
34
|
ListCreateAccountStatusPaginator,
|
|
34
35
|
ListDelegatedAdministratorsPaginator,
|
|
35
36
|
ListDelegatedServicesForAccountPaginator,
|
|
37
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
36
38
|
ListHandshakesForAccountPaginator,
|
|
37
39
|
ListHandshakesForOrganizationPaginator,
|
|
38
40
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -94,6 +96,8 @@ from .type_defs import (
|
|
|
94
96
|
ListAccountsForParentResponseTypeDef,
|
|
95
97
|
ListAccountsRequestTypeDef,
|
|
96
98
|
ListAccountsResponseTypeDef,
|
|
99
|
+
ListAccountsWithInvalidEffectivePolicyRequestTypeDef,
|
|
100
|
+
ListAccountsWithInvalidEffectivePolicyResponseTypeDef,
|
|
97
101
|
ListAWSServiceAccessForOrganizationRequestTypeDef,
|
|
98
102
|
ListAWSServiceAccessForOrganizationResponseTypeDef,
|
|
99
103
|
ListChildrenRequestTypeDef,
|
|
@@ -104,6 +108,8 @@ from .type_defs import (
|
|
|
104
108
|
ListDelegatedAdministratorsResponseTypeDef,
|
|
105
109
|
ListDelegatedServicesForAccountRequestTypeDef,
|
|
106
110
|
ListDelegatedServicesForAccountResponseTypeDef,
|
|
111
|
+
ListEffectivePolicyValidationErrorsRequestTypeDef,
|
|
112
|
+
ListEffectivePolicyValidationErrorsResponseTypeDef,
|
|
107
113
|
ListHandshakesForAccountRequestTypeDef,
|
|
108
114
|
ListHandshakesForAccountResponseTypeDef,
|
|
109
115
|
ListHandshakesForOrganizationRequestTypeDef,
|
|
@@ -577,6 +583,16 @@ class OrganizationsClient(BaseClient):
|
|
|
577
583
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_accounts_for_parent)
|
|
578
584
|
"""
|
|
579
585
|
|
|
586
|
+
def list_accounts_with_invalid_effective_policy(
|
|
587
|
+
self, **kwargs: Unpack[ListAccountsWithInvalidEffectivePolicyRequestTypeDef]
|
|
588
|
+
) -> ListAccountsWithInvalidEffectivePolicyResponseTypeDef:
|
|
589
|
+
"""
|
|
590
|
+
Lists all the accounts in an organization that have invalid effective policies.
|
|
591
|
+
|
|
592
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_accounts_with_invalid_effective_policy.html)
|
|
593
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_accounts_with_invalid_effective_policy)
|
|
594
|
+
"""
|
|
595
|
+
|
|
580
596
|
def list_children(
|
|
581
597
|
self, **kwargs: Unpack[ListChildrenRequestTypeDef]
|
|
582
598
|
) -> ListChildrenResponseTypeDef:
|
|
@@ -621,6 +637,18 @@ class OrganizationsClient(BaseClient):
|
|
|
621
637
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_delegated_services_for_account)
|
|
622
638
|
"""
|
|
623
639
|
|
|
640
|
+
def list_effective_policy_validation_errors(
|
|
641
|
+
self, **kwargs: Unpack[ListEffectivePolicyValidationErrorsRequestTypeDef]
|
|
642
|
+
) -> ListEffectivePolicyValidationErrorsResponseTypeDef:
|
|
643
|
+
"""
|
|
644
|
+
Lists all the validation errors on an <a
|
|
645
|
+
href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_effective.html">effective
|
|
646
|
+
policy</a> for a specified account and policy type.
|
|
647
|
+
|
|
648
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_effective_policy_validation_errors.html)
|
|
649
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_effective_policy_validation_errors)
|
|
650
|
+
"""
|
|
651
|
+
|
|
624
652
|
def list_handshakes_for_account(
|
|
625
653
|
self, **kwargs: Unpack[ListHandshakesForAccountRequestTypeDef]
|
|
626
654
|
) -> ListHandshakesForAccountResponseTypeDef:
|
|
@@ -829,6 +857,17 @@ class OrganizationsClient(BaseClient):
|
|
|
829
857
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
830
858
|
"""
|
|
831
859
|
|
|
860
|
+
@overload # type: ignore[override]
|
|
861
|
+
def get_paginator( # type: ignore[override]
|
|
862
|
+
self, operation_name: Literal["list_accounts_with_invalid_effective_policy"]
|
|
863
|
+
) -> ListAccountsWithInvalidEffectivePolicyPaginator:
|
|
864
|
+
"""
|
|
865
|
+
Create a paginator for an operation.
|
|
866
|
+
|
|
867
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
|
|
868
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
869
|
+
"""
|
|
870
|
+
|
|
832
871
|
@overload # type: ignore[override]
|
|
833
872
|
def get_paginator( # type: ignore[override]
|
|
834
873
|
self, operation_name: Literal["list_children"]
|
|
@@ -873,6 +912,17 @@ class OrganizationsClient(BaseClient):
|
|
|
873
912
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
874
913
|
"""
|
|
875
914
|
|
|
915
|
+
@overload # type: ignore[override]
|
|
916
|
+
def get_paginator( # type: ignore[override]
|
|
917
|
+
self, operation_name: Literal["list_effective_policy_validation_errors"]
|
|
918
|
+
) -> ListEffectivePolicyValidationErrorsPaginator:
|
|
919
|
+
"""
|
|
920
|
+
Create a paginator for an operation.
|
|
921
|
+
|
|
922
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
|
|
923
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
924
|
+
"""
|
|
925
|
+
|
|
876
926
|
@overload # type: ignore[override]
|
|
877
927
|
def get_paginator( # type: ignore[override]
|
|
878
928
|
self, operation_name: Literal["list_handshakes_for_account"]
|
|
@@ -28,11 +28,13 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
ListAccountsForParentPaginator,
|
|
30
30
|
ListAccountsPaginator,
|
|
31
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
31
32
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
32
33
|
ListChildrenPaginator,
|
|
33
34
|
ListCreateAccountStatusPaginator,
|
|
34
35
|
ListDelegatedAdministratorsPaginator,
|
|
35
36
|
ListDelegatedServicesForAccountPaginator,
|
|
37
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
36
38
|
ListHandshakesForAccountPaginator,
|
|
37
39
|
ListHandshakesForOrganizationPaginator,
|
|
38
40
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -94,6 +96,8 @@ from .type_defs import (
|
|
|
94
96
|
ListAccountsForParentResponseTypeDef,
|
|
95
97
|
ListAccountsRequestTypeDef,
|
|
96
98
|
ListAccountsResponseTypeDef,
|
|
99
|
+
ListAccountsWithInvalidEffectivePolicyRequestTypeDef,
|
|
100
|
+
ListAccountsWithInvalidEffectivePolicyResponseTypeDef,
|
|
97
101
|
ListAWSServiceAccessForOrganizationRequestTypeDef,
|
|
98
102
|
ListAWSServiceAccessForOrganizationResponseTypeDef,
|
|
99
103
|
ListChildrenRequestTypeDef,
|
|
@@ -104,6 +108,8 @@ from .type_defs import (
|
|
|
104
108
|
ListDelegatedAdministratorsResponseTypeDef,
|
|
105
109
|
ListDelegatedServicesForAccountRequestTypeDef,
|
|
106
110
|
ListDelegatedServicesForAccountResponseTypeDef,
|
|
111
|
+
ListEffectivePolicyValidationErrorsRequestTypeDef,
|
|
112
|
+
ListEffectivePolicyValidationErrorsResponseTypeDef,
|
|
107
113
|
ListHandshakesForAccountRequestTypeDef,
|
|
108
114
|
ListHandshakesForAccountResponseTypeDef,
|
|
109
115
|
ListHandshakesForOrganizationRequestTypeDef,
|
|
@@ -574,6 +580,16 @@ class OrganizationsClient(BaseClient):
|
|
|
574
580
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_accounts_for_parent)
|
|
575
581
|
"""
|
|
576
582
|
|
|
583
|
+
def list_accounts_with_invalid_effective_policy(
|
|
584
|
+
self, **kwargs: Unpack[ListAccountsWithInvalidEffectivePolicyRequestTypeDef]
|
|
585
|
+
) -> ListAccountsWithInvalidEffectivePolicyResponseTypeDef:
|
|
586
|
+
"""
|
|
587
|
+
Lists all the accounts in an organization that have invalid effective policies.
|
|
588
|
+
|
|
589
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_accounts_with_invalid_effective_policy.html)
|
|
590
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_accounts_with_invalid_effective_policy)
|
|
591
|
+
"""
|
|
592
|
+
|
|
577
593
|
def list_children(
|
|
578
594
|
self, **kwargs: Unpack[ListChildrenRequestTypeDef]
|
|
579
595
|
) -> ListChildrenResponseTypeDef:
|
|
@@ -618,6 +634,18 @@ class OrganizationsClient(BaseClient):
|
|
|
618
634
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_delegated_services_for_account)
|
|
619
635
|
"""
|
|
620
636
|
|
|
637
|
+
def list_effective_policy_validation_errors(
|
|
638
|
+
self, **kwargs: Unpack[ListEffectivePolicyValidationErrorsRequestTypeDef]
|
|
639
|
+
) -> ListEffectivePolicyValidationErrorsResponseTypeDef:
|
|
640
|
+
"""
|
|
641
|
+
Lists all the validation errors on an <a
|
|
642
|
+
href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_effective.html">effective
|
|
643
|
+
policy</a> for a specified account and policy type.
|
|
644
|
+
|
|
645
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/list_effective_policy_validation_errors.html)
|
|
646
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_effective_policy_validation_errors)
|
|
647
|
+
"""
|
|
648
|
+
|
|
621
649
|
def list_handshakes_for_account(
|
|
622
650
|
self, **kwargs: Unpack[ListHandshakesForAccountRequestTypeDef]
|
|
623
651
|
) -> ListHandshakesForAccountResponseTypeDef:
|
|
@@ -826,6 +854,17 @@ class OrganizationsClient(BaseClient):
|
|
|
826
854
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
827
855
|
"""
|
|
828
856
|
|
|
857
|
+
@overload # type: ignore[override]
|
|
858
|
+
def get_paginator( # type: ignore[override]
|
|
859
|
+
self, operation_name: Literal["list_accounts_with_invalid_effective_policy"]
|
|
860
|
+
) -> ListAccountsWithInvalidEffectivePolicyPaginator:
|
|
861
|
+
"""
|
|
862
|
+
Create a paginator for an operation.
|
|
863
|
+
|
|
864
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
|
|
865
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
866
|
+
"""
|
|
867
|
+
|
|
829
868
|
@overload # type: ignore[override]
|
|
830
869
|
def get_paginator( # type: ignore[override]
|
|
831
870
|
self, operation_name: Literal["list_children"]
|
|
@@ -870,6 +909,17 @@ class OrganizationsClient(BaseClient):
|
|
|
870
909
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
871
910
|
"""
|
|
872
911
|
|
|
912
|
+
@overload # type: ignore[override]
|
|
913
|
+
def get_paginator( # type: ignore[override]
|
|
914
|
+
self, operation_name: Literal["list_effective_policy_validation_errors"]
|
|
915
|
+
) -> ListEffectivePolicyValidationErrorsPaginator:
|
|
916
|
+
"""
|
|
917
|
+
Create a paginator for an operation.
|
|
918
|
+
|
|
919
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/client/get_paginator.html)
|
|
920
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#get_paginator)
|
|
921
|
+
"""
|
|
922
|
+
|
|
873
923
|
@overload # type: ignore[override]
|
|
874
924
|
def get_paginator( # type: ignore[override]
|
|
875
925
|
self, operation_name: Literal["list_handshakes_for_account"]
|
|
@@ -24,6 +24,7 @@ else:
|
|
|
24
24
|
|
|
25
25
|
__all__ = (
|
|
26
26
|
"AccountJoinedMethodType",
|
|
27
|
+
"AccountStateType",
|
|
27
28
|
"AccountStatusType",
|
|
28
29
|
"ActionTypeType",
|
|
29
30
|
"ChildTypeType",
|
|
@@ -37,10 +38,12 @@ __all__ = (
|
|
|
37
38
|
"ListAWSServiceAccessForOrganizationPaginatorName",
|
|
38
39
|
"ListAccountsForParentPaginatorName",
|
|
39
40
|
"ListAccountsPaginatorName",
|
|
41
|
+
"ListAccountsWithInvalidEffectivePolicyPaginatorName",
|
|
40
42
|
"ListChildrenPaginatorName",
|
|
41
43
|
"ListCreateAccountStatusPaginatorName",
|
|
42
44
|
"ListDelegatedAdministratorsPaginatorName",
|
|
43
45
|
"ListDelegatedServicesForAccountPaginatorName",
|
|
46
|
+
"ListEffectivePolicyValidationErrorsPaginatorName",
|
|
44
47
|
"ListHandshakesForAccountPaginatorName",
|
|
45
48
|
"ListHandshakesForOrganizationPaginatorName",
|
|
46
49
|
"ListOrganizationalUnitsForParentPaginatorName",
|
|
@@ -63,6 +66,7 @@ __all__ = (
|
|
|
63
66
|
|
|
64
67
|
|
|
65
68
|
AccountJoinedMethodType = Literal["CREATED", "INVITED"]
|
|
69
|
+
AccountStateType = Literal["ACTIVE", "CLOSED", "PENDING_ACTIVATION", "PENDING_CLOSURE", "SUSPENDED"]
|
|
66
70
|
AccountStatusType = Literal["ACTIVE", "PENDING_CLOSURE", "SUSPENDED"]
|
|
67
71
|
ActionTypeType = Literal[
|
|
68
72
|
"ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE", "APPROVE_ALL_FEATURES", "ENABLE_ALL_FEATURES", "INVITE"
|
|
@@ -112,10 +116,16 @@ ListAWSServiceAccessForOrganizationPaginatorName = Literal[
|
|
|
112
116
|
]
|
|
113
117
|
ListAccountsForParentPaginatorName = Literal["list_accounts_for_parent"]
|
|
114
118
|
ListAccountsPaginatorName = Literal["list_accounts"]
|
|
119
|
+
ListAccountsWithInvalidEffectivePolicyPaginatorName = Literal[
|
|
120
|
+
"list_accounts_with_invalid_effective_policy"
|
|
121
|
+
]
|
|
115
122
|
ListChildrenPaginatorName = Literal["list_children"]
|
|
116
123
|
ListCreateAccountStatusPaginatorName = Literal["list_create_account_status"]
|
|
117
124
|
ListDelegatedAdministratorsPaginatorName = Literal["list_delegated_administrators"]
|
|
118
125
|
ListDelegatedServicesForAccountPaginatorName = Literal["list_delegated_services_for_account"]
|
|
126
|
+
ListEffectivePolicyValidationErrorsPaginatorName = Literal[
|
|
127
|
+
"list_effective_policy_validation_errors"
|
|
128
|
+
]
|
|
119
129
|
ListHandshakesForAccountPaginatorName = Literal["list_handshakes_for_account"]
|
|
120
130
|
ListHandshakesForOrganizationPaginatorName = Literal["list_handshakes_for_organization"]
|
|
121
131
|
ListOrganizationalUnitsForParentPaginatorName = Literal["list_organizational_units_for_parent"]
|
|
@@ -167,6 +177,7 @@ ServiceName = Literal[
|
|
|
167
177
|
"appstream",
|
|
168
178
|
"appsync",
|
|
169
179
|
"apptest",
|
|
180
|
+
"arc-region-switch",
|
|
170
181
|
"arc-zonal-shift",
|
|
171
182
|
"artifact",
|
|
172
183
|
"athena",
|
|
@@ -178,8 +189,10 @@ ServiceName = Literal[
|
|
|
178
189
|
"backup-gateway",
|
|
179
190
|
"backupsearch",
|
|
180
191
|
"batch",
|
|
192
|
+
"bcm-dashboards",
|
|
181
193
|
"bcm-data-exports",
|
|
182
194
|
"bcm-pricing-calculator",
|
|
195
|
+
"bcm-recommended-actions",
|
|
183
196
|
"bedrock",
|
|
184
197
|
"bedrock-agent",
|
|
185
198
|
"bedrock-agent-runtime",
|
|
@@ -421,8 +434,6 @@ ServiceName = Literal[
|
|
|
421
434
|
"omics",
|
|
422
435
|
"opensearch",
|
|
423
436
|
"opensearchserverless",
|
|
424
|
-
"opsworks",
|
|
425
|
-
"opsworkscm",
|
|
426
437
|
"organizations",
|
|
427
438
|
"osis",
|
|
428
439
|
"outposts",
|
|
@@ -555,25 +566,18 @@ ServiceName = Literal[
|
|
|
555
566
|
"xray",
|
|
556
567
|
]
|
|
557
568
|
ResourceServiceName = Literal[
|
|
558
|
-
"cloudformation",
|
|
559
|
-
"cloudwatch",
|
|
560
|
-
"dynamodb",
|
|
561
|
-
"ec2",
|
|
562
|
-
"glacier",
|
|
563
|
-
"iam",
|
|
564
|
-
"opsworks",
|
|
565
|
-
"s3",
|
|
566
|
-
"sns",
|
|
567
|
-
"sqs",
|
|
569
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
568
570
|
]
|
|
569
571
|
PaginatorName = Literal[
|
|
570
572
|
"list_accounts",
|
|
571
573
|
"list_accounts_for_parent",
|
|
574
|
+
"list_accounts_with_invalid_effective_policy",
|
|
572
575
|
"list_aws_service_access_for_organization",
|
|
573
576
|
"list_children",
|
|
574
577
|
"list_create_account_status",
|
|
575
578
|
"list_delegated_administrators",
|
|
576
579
|
"list_delegated_services_for_account",
|
|
580
|
+
"list_effective_policy_validation_errors",
|
|
577
581
|
"list_handshakes_for_account",
|
|
578
582
|
"list_handshakes_for_organization",
|
|
579
583
|
"list_organizational_units_for_parent",
|
|
@@ -23,6 +23,7 @@ else:
|
|
|
23
23
|
|
|
24
24
|
__all__ = (
|
|
25
25
|
"AccountJoinedMethodType",
|
|
26
|
+
"AccountStateType",
|
|
26
27
|
"AccountStatusType",
|
|
27
28
|
"ActionTypeType",
|
|
28
29
|
"ChildTypeType",
|
|
@@ -36,10 +37,12 @@ __all__ = (
|
|
|
36
37
|
"ListAWSServiceAccessForOrganizationPaginatorName",
|
|
37
38
|
"ListAccountsForParentPaginatorName",
|
|
38
39
|
"ListAccountsPaginatorName",
|
|
40
|
+
"ListAccountsWithInvalidEffectivePolicyPaginatorName",
|
|
39
41
|
"ListChildrenPaginatorName",
|
|
40
42
|
"ListCreateAccountStatusPaginatorName",
|
|
41
43
|
"ListDelegatedAdministratorsPaginatorName",
|
|
42
44
|
"ListDelegatedServicesForAccountPaginatorName",
|
|
45
|
+
"ListEffectivePolicyValidationErrorsPaginatorName",
|
|
43
46
|
"ListHandshakesForAccountPaginatorName",
|
|
44
47
|
"ListHandshakesForOrganizationPaginatorName",
|
|
45
48
|
"ListOrganizationalUnitsForParentPaginatorName",
|
|
@@ -61,6 +64,7 @@ __all__ = (
|
|
|
61
64
|
)
|
|
62
65
|
|
|
63
66
|
AccountJoinedMethodType = Literal["CREATED", "INVITED"]
|
|
67
|
+
AccountStateType = Literal["ACTIVE", "CLOSED", "PENDING_ACTIVATION", "PENDING_CLOSURE", "SUSPENDED"]
|
|
64
68
|
AccountStatusType = Literal["ACTIVE", "PENDING_CLOSURE", "SUSPENDED"]
|
|
65
69
|
ActionTypeType = Literal[
|
|
66
70
|
"ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE", "APPROVE_ALL_FEATURES", "ENABLE_ALL_FEATURES", "INVITE"
|
|
@@ -110,10 +114,16 @@ ListAWSServiceAccessForOrganizationPaginatorName = Literal[
|
|
|
110
114
|
]
|
|
111
115
|
ListAccountsForParentPaginatorName = Literal["list_accounts_for_parent"]
|
|
112
116
|
ListAccountsPaginatorName = Literal["list_accounts"]
|
|
117
|
+
ListAccountsWithInvalidEffectivePolicyPaginatorName = Literal[
|
|
118
|
+
"list_accounts_with_invalid_effective_policy"
|
|
119
|
+
]
|
|
113
120
|
ListChildrenPaginatorName = Literal["list_children"]
|
|
114
121
|
ListCreateAccountStatusPaginatorName = Literal["list_create_account_status"]
|
|
115
122
|
ListDelegatedAdministratorsPaginatorName = Literal["list_delegated_administrators"]
|
|
116
123
|
ListDelegatedServicesForAccountPaginatorName = Literal["list_delegated_services_for_account"]
|
|
124
|
+
ListEffectivePolicyValidationErrorsPaginatorName = Literal[
|
|
125
|
+
"list_effective_policy_validation_errors"
|
|
126
|
+
]
|
|
117
127
|
ListHandshakesForAccountPaginatorName = Literal["list_handshakes_for_account"]
|
|
118
128
|
ListHandshakesForOrganizationPaginatorName = Literal["list_handshakes_for_organization"]
|
|
119
129
|
ListOrganizationalUnitsForParentPaginatorName = Literal["list_organizational_units_for_parent"]
|
|
@@ -165,6 +175,7 @@ ServiceName = Literal[
|
|
|
165
175
|
"appstream",
|
|
166
176
|
"appsync",
|
|
167
177
|
"apptest",
|
|
178
|
+
"arc-region-switch",
|
|
168
179
|
"arc-zonal-shift",
|
|
169
180
|
"artifact",
|
|
170
181
|
"athena",
|
|
@@ -176,8 +187,10 @@ ServiceName = Literal[
|
|
|
176
187
|
"backup-gateway",
|
|
177
188
|
"backupsearch",
|
|
178
189
|
"batch",
|
|
190
|
+
"bcm-dashboards",
|
|
179
191
|
"bcm-data-exports",
|
|
180
192
|
"bcm-pricing-calculator",
|
|
193
|
+
"bcm-recommended-actions",
|
|
181
194
|
"bedrock",
|
|
182
195
|
"bedrock-agent",
|
|
183
196
|
"bedrock-agent-runtime",
|
|
@@ -419,8 +432,6 @@ ServiceName = Literal[
|
|
|
419
432
|
"omics",
|
|
420
433
|
"opensearch",
|
|
421
434
|
"opensearchserverless",
|
|
422
|
-
"opsworks",
|
|
423
|
-
"opsworkscm",
|
|
424
435
|
"organizations",
|
|
425
436
|
"osis",
|
|
426
437
|
"outposts",
|
|
@@ -553,25 +564,18 @@ ServiceName = Literal[
|
|
|
553
564
|
"xray",
|
|
554
565
|
]
|
|
555
566
|
ResourceServiceName = Literal[
|
|
556
|
-
"cloudformation",
|
|
557
|
-
"cloudwatch",
|
|
558
|
-
"dynamodb",
|
|
559
|
-
"ec2",
|
|
560
|
-
"glacier",
|
|
561
|
-
"iam",
|
|
562
|
-
"opsworks",
|
|
563
|
-
"s3",
|
|
564
|
-
"sns",
|
|
565
|
-
"sqs",
|
|
567
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
566
568
|
]
|
|
567
569
|
PaginatorName = Literal[
|
|
568
570
|
"list_accounts",
|
|
569
571
|
"list_accounts_for_parent",
|
|
572
|
+
"list_accounts_with_invalid_effective_policy",
|
|
570
573
|
"list_aws_service_access_for_organization",
|
|
571
574
|
"list_children",
|
|
572
575
|
"list_create_account_status",
|
|
573
576
|
"list_delegated_administrators",
|
|
574
577
|
"list_delegated_services_for_account",
|
|
578
|
+
"list_effective_policy_validation_errors",
|
|
575
579
|
"list_handshakes_for_account",
|
|
576
580
|
"list_handshakes_for_organization",
|
|
577
581
|
"list_organizational_units_for_parent",
|
|
@@ -15,10 +15,12 @@ Usage::
|
|
|
15
15
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
16
16
|
ListAccountsForParentPaginator,
|
|
17
17
|
ListAccountsPaginator,
|
|
18
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
18
19
|
ListChildrenPaginator,
|
|
19
20
|
ListCreateAccountStatusPaginator,
|
|
20
21
|
ListDelegatedAdministratorsPaginator,
|
|
21
22
|
ListDelegatedServicesForAccountPaginator,
|
|
23
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
22
24
|
ListHandshakesForAccountPaginator,
|
|
23
25
|
ListHandshakesForOrganizationPaginator,
|
|
24
26
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -36,10 +38,12 @@ Usage::
|
|
|
36
38
|
list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
|
|
37
39
|
list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
|
|
38
40
|
list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
|
|
41
|
+
list_accounts_with_invalid_effective_policy_paginator: ListAccountsWithInvalidEffectivePolicyPaginator = client.get_paginator("list_accounts_with_invalid_effective_policy")
|
|
39
42
|
list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
|
|
40
43
|
list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
|
|
41
44
|
list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
|
|
42
45
|
list_delegated_services_for_account_paginator: ListDelegatedServicesForAccountPaginator = client.get_paginator("list_delegated_services_for_account")
|
|
46
|
+
list_effective_policy_validation_errors_paginator: ListEffectivePolicyValidationErrorsPaginator = client.get_paginator("list_effective_policy_validation_errors")
|
|
43
47
|
list_handshakes_for_account_paginator: ListHandshakesForAccountPaginator = client.get_paginator("list_handshakes_for_account")
|
|
44
48
|
list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
|
|
45
49
|
list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
|
|
@@ -64,6 +68,8 @@ from .type_defs import (
|
|
|
64
68
|
ListAccountsForParentResponseTypeDef,
|
|
65
69
|
ListAccountsRequestPaginateTypeDef,
|
|
66
70
|
ListAccountsResponseTypeDef,
|
|
71
|
+
ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef,
|
|
72
|
+
ListAccountsWithInvalidEffectivePolicyResponseTypeDef,
|
|
67
73
|
ListAWSServiceAccessForOrganizationRequestPaginateTypeDef,
|
|
68
74
|
ListAWSServiceAccessForOrganizationResponseTypeDef,
|
|
69
75
|
ListChildrenRequestPaginateTypeDef,
|
|
@@ -74,6 +80,8 @@ from .type_defs import (
|
|
|
74
80
|
ListDelegatedAdministratorsResponseTypeDef,
|
|
75
81
|
ListDelegatedServicesForAccountRequestPaginateTypeDef,
|
|
76
82
|
ListDelegatedServicesForAccountResponseTypeDef,
|
|
83
|
+
ListEffectivePolicyValidationErrorsRequestPaginateTypeDef,
|
|
84
|
+
ListEffectivePolicyValidationErrorsResponseTypeDef,
|
|
77
85
|
ListHandshakesForAccountRequestPaginateTypeDef,
|
|
78
86
|
ListHandshakesForAccountResponsePaginatorTypeDef,
|
|
79
87
|
ListHandshakesForOrganizationRequestPaginateTypeDef,
|
|
@@ -104,10 +112,12 @@ __all__ = (
|
|
|
104
112
|
"ListAWSServiceAccessForOrganizationPaginator",
|
|
105
113
|
"ListAccountsForParentPaginator",
|
|
106
114
|
"ListAccountsPaginator",
|
|
115
|
+
"ListAccountsWithInvalidEffectivePolicyPaginator",
|
|
107
116
|
"ListChildrenPaginator",
|
|
108
117
|
"ListCreateAccountStatusPaginator",
|
|
109
118
|
"ListDelegatedAdministratorsPaginator",
|
|
110
119
|
"ListDelegatedServicesForAccountPaginator",
|
|
120
|
+
"ListEffectivePolicyValidationErrorsPaginator",
|
|
111
121
|
"ListHandshakesForAccountPaginator",
|
|
112
122
|
"ListHandshakesForOrganizationPaginator",
|
|
113
123
|
"ListOrganizationalUnitsForParentPaginator",
|
|
@@ -187,6 +197,31 @@ class ListAccountsPaginator(_ListAccountsPaginatorBase):
|
|
|
187
197
|
"""
|
|
188
198
|
|
|
189
199
|
|
|
200
|
+
if TYPE_CHECKING:
|
|
201
|
+
_ListAccountsWithInvalidEffectivePolicyPaginatorBase = Paginator[
|
|
202
|
+
ListAccountsWithInvalidEffectivePolicyResponseTypeDef
|
|
203
|
+
]
|
|
204
|
+
else:
|
|
205
|
+
_ListAccountsWithInvalidEffectivePolicyPaginatorBase = Paginator # type: ignore[assignment]
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
class ListAccountsWithInvalidEffectivePolicyPaginator(
|
|
209
|
+
_ListAccountsWithInvalidEffectivePolicyPaginatorBase
|
|
210
|
+
):
|
|
211
|
+
"""
|
|
212
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsWithInvalidEffectivePolicy.html#Organizations.Paginator.ListAccountsWithInvalidEffectivePolicy)
|
|
213
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountswithinvalideffectivepolicypaginator)
|
|
214
|
+
"""
|
|
215
|
+
|
|
216
|
+
def paginate( # type: ignore[override]
|
|
217
|
+
self, **kwargs: Unpack[ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef]
|
|
218
|
+
) -> PageIterator[ListAccountsWithInvalidEffectivePolicyResponseTypeDef]:
|
|
219
|
+
"""
|
|
220
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsWithInvalidEffectivePolicy.html#Organizations.Paginator.ListAccountsWithInvalidEffectivePolicy.paginate)
|
|
221
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountswithinvalideffectivepolicypaginator)
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
|
|
190
225
|
if TYPE_CHECKING:
|
|
191
226
|
_ListChildrenPaginatorBase = Paginator[ListChildrenResponseTypeDef]
|
|
192
227
|
else:
|
|
@@ -275,6 +310,31 @@ class ListDelegatedServicesForAccountPaginator(_ListDelegatedServicesForAccountP
|
|
|
275
310
|
"""
|
|
276
311
|
|
|
277
312
|
|
|
313
|
+
if TYPE_CHECKING:
|
|
314
|
+
_ListEffectivePolicyValidationErrorsPaginatorBase = Paginator[
|
|
315
|
+
ListEffectivePolicyValidationErrorsResponseTypeDef
|
|
316
|
+
]
|
|
317
|
+
else:
|
|
318
|
+
_ListEffectivePolicyValidationErrorsPaginatorBase = Paginator # type: ignore[assignment]
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
class ListEffectivePolicyValidationErrorsPaginator(
|
|
322
|
+
_ListEffectivePolicyValidationErrorsPaginatorBase
|
|
323
|
+
):
|
|
324
|
+
"""
|
|
325
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListEffectivePolicyValidationErrors.html#Organizations.Paginator.ListEffectivePolicyValidationErrors)
|
|
326
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listeffectivepolicyvalidationerrorspaginator)
|
|
327
|
+
"""
|
|
328
|
+
|
|
329
|
+
def paginate( # type: ignore[override]
|
|
330
|
+
self, **kwargs: Unpack[ListEffectivePolicyValidationErrorsRequestPaginateTypeDef]
|
|
331
|
+
) -> PageIterator[ListEffectivePolicyValidationErrorsResponseTypeDef]:
|
|
332
|
+
"""
|
|
333
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListEffectivePolicyValidationErrors.html#Organizations.Paginator.ListEffectivePolicyValidationErrors.paginate)
|
|
334
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listeffectivepolicyvalidationerrorspaginator)
|
|
335
|
+
"""
|
|
336
|
+
|
|
337
|
+
|
|
278
338
|
if TYPE_CHECKING:
|
|
279
339
|
_ListHandshakesForAccountPaginatorBase = Paginator[
|
|
280
340
|
ListHandshakesForAccountResponsePaginatorTypeDef
|
|
@@ -15,10 +15,12 @@ Usage::
|
|
|
15
15
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
16
16
|
ListAccountsForParentPaginator,
|
|
17
17
|
ListAccountsPaginator,
|
|
18
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
18
19
|
ListChildrenPaginator,
|
|
19
20
|
ListCreateAccountStatusPaginator,
|
|
20
21
|
ListDelegatedAdministratorsPaginator,
|
|
21
22
|
ListDelegatedServicesForAccountPaginator,
|
|
23
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
22
24
|
ListHandshakesForAccountPaginator,
|
|
23
25
|
ListHandshakesForOrganizationPaginator,
|
|
24
26
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -36,10 +38,12 @@ Usage::
|
|
|
36
38
|
list_aws_service_access_for_organization_paginator: ListAWSServiceAccessForOrganizationPaginator = client.get_paginator("list_aws_service_access_for_organization")
|
|
37
39
|
list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_paginator("list_accounts_for_parent")
|
|
38
40
|
list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
|
|
41
|
+
list_accounts_with_invalid_effective_policy_paginator: ListAccountsWithInvalidEffectivePolicyPaginator = client.get_paginator("list_accounts_with_invalid_effective_policy")
|
|
39
42
|
list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
|
|
40
43
|
list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator("list_create_account_status")
|
|
41
44
|
list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator = client.get_paginator("list_delegated_administrators")
|
|
42
45
|
list_delegated_services_for_account_paginator: ListDelegatedServicesForAccountPaginator = client.get_paginator("list_delegated_services_for_account")
|
|
46
|
+
list_effective_policy_validation_errors_paginator: ListEffectivePolicyValidationErrorsPaginator = client.get_paginator("list_effective_policy_validation_errors")
|
|
43
47
|
list_handshakes_for_account_paginator: ListHandshakesForAccountPaginator = client.get_paginator("list_handshakes_for_account")
|
|
44
48
|
list_handshakes_for_organization_paginator: ListHandshakesForOrganizationPaginator = client.get_paginator("list_handshakes_for_organization")
|
|
45
49
|
list_organizational_units_for_parent_paginator: ListOrganizationalUnitsForParentPaginator = client.get_paginator("list_organizational_units_for_parent")
|
|
@@ -64,6 +68,8 @@ from .type_defs import (
|
|
|
64
68
|
ListAccountsForParentResponseTypeDef,
|
|
65
69
|
ListAccountsRequestPaginateTypeDef,
|
|
66
70
|
ListAccountsResponseTypeDef,
|
|
71
|
+
ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef,
|
|
72
|
+
ListAccountsWithInvalidEffectivePolicyResponseTypeDef,
|
|
67
73
|
ListAWSServiceAccessForOrganizationRequestPaginateTypeDef,
|
|
68
74
|
ListAWSServiceAccessForOrganizationResponseTypeDef,
|
|
69
75
|
ListChildrenRequestPaginateTypeDef,
|
|
@@ -74,6 +80,8 @@ from .type_defs import (
|
|
|
74
80
|
ListDelegatedAdministratorsResponseTypeDef,
|
|
75
81
|
ListDelegatedServicesForAccountRequestPaginateTypeDef,
|
|
76
82
|
ListDelegatedServicesForAccountResponseTypeDef,
|
|
83
|
+
ListEffectivePolicyValidationErrorsRequestPaginateTypeDef,
|
|
84
|
+
ListEffectivePolicyValidationErrorsResponseTypeDef,
|
|
77
85
|
ListHandshakesForAccountRequestPaginateTypeDef,
|
|
78
86
|
ListHandshakesForAccountResponsePaginatorTypeDef,
|
|
79
87
|
ListHandshakesForOrganizationRequestPaginateTypeDef,
|
|
@@ -103,10 +111,12 @@ __all__ = (
|
|
|
103
111
|
"ListAWSServiceAccessForOrganizationPaginator",
|
|
104
112
|
"ListAccountsForParentPaginator",
|
|
105
113
|
"ListAccountsPaginator",
|
|
114
|
+
"ListAccountsWithInvalidEffectivePolicyPaginator",
|
|
106
115
|
"ListChildrenPaginator",
|
|
107
116
|
"ListCreateAccountStatusPaginator",
|
|
108
117
|
"ListDelegatedAdministratorsPaginator",
|
|
109
118
|
"ListDelegatedServicesForAccountPaginator",
|
|
119
|
+
"ListEffectivePolicyValidationErrorsPaginator",
|
|
110
120
|
"ListHandshakesForAccountPaginator",
|
|
111
121
|
"ListHandshakesForOrganizationPaginator",
|
|
112
122
|
"ListOrganizationalUnitsForParentPaginator",
|
|
@@ -176,6 +186,28 @@ class ListAccountsPaginator(_ListAccountsPaginatorBase):
|
|
|
176
186
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountspaginator)
|
|
177
187
|
"""
|
|
178
188
|
|
|
189
|
+
if TYPE_CHECKING:
|
|
190
|
+
_ListAccountsWithInvalidEffectivePolicyPaginatorBase = Paginator[
|
|
191
|
+
ListAccountsWithInvalidEffectivePolicyResponseTypeDef
|
|
192
|
+
]
|
|
193
|
+
else:
|
|
194
|
+
_ListAccountsWithInvalidEffectivePolicyPaginatorBase = Paginator # type: ignore[assignment]
|
|
195
|
+
|
|
196
|
+
class ListAccountsWithInvalidEffectivePolicyPaginator(
|
|
197
|
+
_ListAccountsWithInvalidEffectivePolicyPaginatorBase
|
|
198
|
+
):
|
|
199
|
+
"""
|
|
200
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsWithInvalidEffectivePolicy.html#Organizations.Paginator.ListAccountsWithInvalidEffectivePolicy)
|
|
201
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountswithinvalideffectivepolicypaginator)
|
|
202
|
+
"""
|
|
203
|
+
def paginate( # type: ignore[override]
|
|
204
|
+
self, **kwargs: Unpack[ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef]
|
|
205
|
+
) -> PageIterator[ListAccountsWithInvalidEffectivePolicyResponseTypeDef]:
|
|
206
|
+
"""
|
|
207
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListAccountsWithInvalidEffectivePolicy.html#Organizations.Paginator.ListAccountsWithInvalidEffectivePolicy.paginate)
|
|
208
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listaccountswithinvalideffectivepolicypaginator)
|
|
209
|
+
"""
|
|
210
|
+
|
|
179
211
|
if TYPE_CHECKING:
|
|
180
212
|
_ListChildrenPaginatorBase = Paginator[ListChildrenResponseTypeDef]
|
|
181
213
|
else:
|
|
@@ -252,6 +284,28 @@ class ListDelegatedServicesForAccountPaginator(_ListDelegatedServicesForAccountP
|
|
|
252
284
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listdelegatedservicesforaccountpaginator)
|
|
253
285
|
"""
|
|
254
286
|
|
|
287
|
+
if TYPE_CHECKING:
|
|
288
|
+
_ListEffectivePolicyValidationErrorsPaginatorBase = Paginator[
|
|
289
|
+
ListEffectivePolicyValidationErrorsResponseTypeDef
|
|
290
|
+
]
|
|
291
|
+
else:
|
|
292
|
+
_ListEffectivePolicyValidationErrorsPaginatorBase = Paginator # type: ignore[assignment]
|
|
293
|
+
|
|
294
|
+
class ListEffectivePolicyValidationErrorsPaginator(
|
|
295
|
+
_ListEffectivePolicyValidationErrorsPaginatorBase
|
|
296
|
+
):
|
|
297
|
+
"""
|
|
298
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListEffectivePolicyValidationErrors.html#Organizations.Paginator.ListEffectivePolicyValidationErrors)
|
|
299
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listeffectivepolicyvalidationerrorspaginator)
|
|
300
|
+
"""
|
|
301
|
+
def paginate( # type: ignore[override]
|
|
302
|
+
self, **kwargs: Unpack[ListEffectivePolicyValidationErrorsRequestPaginateTypeDef]
|
|
303
|
+
) -> PageIterator[ListEffectivePolicyValidationErrorsResponseTypeDef]:
|
|
304
|
+
"""
|
|
305
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/organizations/paginator/ListEffectivePolicyValidationErrors.html#Organizations.Paginator.ListEffectivePolicyValidationErrors.paginate)
|
|
306
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/paginators/#listeffectivepolicyvalidationerrorspaginator)
|
|
307
|
+
"""
|
|
308
|
+
|
|
255
309
|
if TYPE_CHECKING:
|
|
256
310
|
_ListHandshakesForAccountPaginatorBase = Paginator[
|
|
257
311
|
ListHandshakesForAccountResponsePaginatorTypeDef
|
|
@@ -22,6 +22,7 @@ from typing import Any
|
|
|
22
22
|
|
|
23
23
|
from .literals import (
|
|
24
24
|
AccountJoinedMethodType,
|
|
25
|
+
AccountStateType,
|
|
25
26
|
AccountStatusType,
|
|
26
27
|
ActionTypeType,
|
|
27
28
|
ChildTypeType,
|
|
@@ -97,6 +98,7 @@ __all__ = (
|
|
|
97
98
|
"DisablePolicyTypeRequestTypeDef",
|
|
98
99
|
"DisablePolicyTypeResponseTypeDef",
|
|
99
100
|
"EffectivePolicyTypeDef",
|
|
101
|
+
"EffectivePolicyValidationErrorTypeDef",
|
|
100
102
|
"EmptyResponseMetadataTypeDef",
|
|
101
103
|
"EnableAWSServiceAccessRequestTypeDef",
|
|
102
104
|
"EnableAllFeaturesResponseTypeDef",
|
|
@@ -120,6 +122,9 @@ __all__ = (
|
|
|
120
122
|
"ListAccountsRequestPaginateTypeDef",
|
|
121
123
|
"ListAccountsRequestTypeDef",
|
|
122
124
|
"ListAccountsResponseTypeDef",
|
|
125
|
+
"ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef",
|
|
126
|
+
"ListAccountsWithInvalidEffectivePolicyRequestTypeDef",
|
|
127
|
+
"ListAccountsWithInvalidEffectivePolicyResponseTypeDef",
|
|
123
128
|
"ListChildrenRequestPaginateTypeDef",
|
|
124
129
|
"ListChildrenRequestTypeDef",
|
|
125
130
|
"ListChildrenResponseTypeDef",
|
|
@@ -132,6 +137,9 @@ __all__ = (
|
|
|
132
137
|
"ListDelegatedServicesForAccountRequestPaginateTypeDef",
|
|
133
138
|
"ListDelegatedServicesForAccountRequestTypeDef",
|
|
134
139
|
"ListDelegatedServicesForAccountResponseTypeDef",
|
|
140
|
+
"ListEffectivePolicyValidationErrorsRequestPaginateTypeDef",
|
|
141
|
+
"ListEffectivePolicyValidationErrorsRequestTypeDef",
|
|
142
|
+
"ListEffectivePolicyValidationErrorsResponseTypeDef",
|
|
135
143
|
"ListHandshakesForAccountRequestPaginateTypeDef",
|
|
136
144
|
"ListHandshakesForAccountRequestTypeDef",
|
|
137
145
|
"ListHandshakesForAccountResponsePaginatorTypeDef",
|
|
@@ -206,6 +214,7 @@ class AccountTypeDef(TypedDict):
|
|
|
206
214
|
Email: NotRequired[str]
|
|
207
215
|
Name: NotRequired[str]
|
|
208
216
|
Status: NotRequired[AccountStatusType]
|
|
217
|
+
State: NotRequired[AccountStateType]
|
|
209
218
|
JoinedMethod: NotRequired[AccountJoinedMethodType]
|
|
210
219
|
JoinedTimestamp: NotRequired[datetime]
|
|
211
220
|
|
|
@@ -337,6 +346,13 @@ class DisablePolicyTypeRequestTypeDef(TypedDict):
|
|
|
337
346
|
PolicyType: PolicyTypeType
|
|
338
347
|
|
|
339
348
|
|
|
349
|
+
class EffectivePolicyValidationErrorTypeDef(TypedDict):
|
|
350
|
+
ErrorCode: NotRequired[str]
|
|
351
|
+
ErrorMessage: NotRequired[str]
|
|
352
|
+
PathToError: NotRequired[str]
|
|
353
|
+
ContributingPolicies: NotRequired[List[str]]
|
|
354
|
+
|
|
355
|
+
|
|
340
356
|
class EnableAWSServiceAccessRequestTypeDef(TypedDict):
|
|
341
357
|
ServicePrincipal: str
|
|
342
358
|
|
|
@@ -403,6 +419,12 @@ class ListAccountsRequestTypeDef(TypedDict):
|
|
|
403
419
|
MaxResults: NotRequired[int]
|
|
404
420
|
|
|
405
421
|
|
|
422
|
+
class ListAccountsWithInvalidEffectivePolicyRequestTypeDef(TypedDict):
|
|
423
|
+
PolicyType: EffectivePolicyTypeType
|
|
424
|
+
NextToken: NotRequired[str]
|
|
425
|
+
MaxResults: NotRequired[int]
|
|
426
|
+
|
|
427
|
+
|
|
406
428
|
class ListChildrenRequestTypeDef(TypedDict):
|
|
407
429
|
ParentId: str
|
|
408
430
|
ChildType: ChildTypeType
|
|
@@ -428,6 +450,13 @@ class ListDelegatedServicesForAccountRequestTypeDef(TypedDict):
|
|
|
428
450
|
MaxResults: NotRequired[int]
|
|
429
451
|
|
|
430
452
|
|
|
453
|
+
class ListEffectivePolicyValidationErrorsRequestTypeDef(TypedDict):
|
|
454
|
+
AccountId: str
|
|
455
|
+
PolicyType: EffectivePolicyTypeType
|
|
456
|
+
NextToken: NotRequired[str]
|
|
457
|
+
MaxResults: NotRequired[int]
|
|
458
|
+
|
|
459
|
+
|
|
431
460
|
class ListOrganizationalUnitsForParentRequestTypeDef(TypedDict):
|
|
432
461
|
ParentId: str
|
|
433
462
|
NextToken: NotRequired[str]
|
|
@@ -569,6 +598,13 @@ class ListAccountsResponseTypeDef(TypedDict):
|
|
|
569
598
|
NextToken: NotRequired[str]
|
|
570
599
|
|
|
571
600
|
|
|
601
|
+
class ListAccountsWithInvalidEffectivePolicyResponseTypeDef(TypedDict):
|
|
602
|
+
Accounts: List[AccountTypeDef]
|
|
603
|
+
PolicyType: EffectivePolicyTypeType
|
|
604
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
605
|
+
NextToken: NotRequired[str]
|
|
606
|
+
|
|
607
|
+
|
|
572
608
|
class ListChildrenResponseTypeDef(TypedDict):
|
|
573
609
|
Children: List[ChildTypeDef]
|
|
574
610
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -684,6 +720,16 @@ class DescribeEffectivePolicyResponseTypeDef(TypedDict):
|
|
|
684
720
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
685
721
|
|
|
686
722
|
|
|
723
|
+
class ListEffectivePolicyValidationErrorsResponseTypeDef(TypedDict):
|
|
724
|
+
AccountId: str
|
|
725
|
+
PolicyType: EffectivePolicyTypeType
|
|
726
|
+
Path: str
|
|
727
|
+
EvaluationTimestamp: datetime
|
|
728
|
+
EffectivePolicyValidationErrors: List[EffectivePolicyValidationErrorTypeDef]
|
|
729
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
730
|
+
NextToken: NotRequired[str]
|
|
731
|
+
|
|
732
|
+
|
|
687
733
|
class ListAWSServiceAccessForOrganizationResponseTypeDef(TypedDict):
|
|
688
734
|
EnabledServicePrincipals: List[EnabledServicePrincipalTypeDef]
|
|
689
735
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -743,6 +789,11 @@ class ListAccountsRequestPaginateTypeDef(TypedDict):
|
|
|
743
789
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
744
790
|
|
|
745
791
|
|
|
792
|
+
class ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef(TypedDict):
|
|
793
|
+
PolicyType: EffectivePolicyTypeType
|
|
794
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
795
|
+
|
|
796
|
+
|
|
746
797
|
class ListChildrenRequestPaginateTypeDef(TypedDict):
|
|
747
798
|
ParentId: str
|
|
748
799
|
ChildType: ChildTypeType
|
|
@@ -764,6 +815,12 @@ class ListDelegatedServicesForAccountRequestPaginateTypeDef(TypedDict):
|
|
|
764
815
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
765
816
|
|
|
766
817
|
|
|
818
|
+
class ListEffectivePolicyValidationErrorsRequestPaginateTypeDef(TypedDict):
|
|
819
|
+
AccountId: str
|
|
820
|
+
PolicyType: EffectivePolicyTypeType
|
|
821
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
822
|
+
|
|
823
|
+
|
|
767
824
|
class ListHandshakesForAccountRequestPaginateTypeDef(TypedDict):
|
|
768
825
|
Filter: NotRequired[HandshakeFilterTypeDef]
|
|
769
826
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -22,6 +22,7 @@ from typing import Any
|
|
|
22
22
|
|
|
23
23
|
from .literals import (
|
|
24
24
|
AccountJoinedMethodType,
|
|
25
|
+
AccountStateType,
|
|
25
26
|
AccountStatusType,
|
|
26
27
|
ActionTypeType,
|
|
27
28
|
ChildTypeType,
|
|
@@ -96,6 +97,7 @@ __all__ = (
|
|
|
96
97
|
"DisablePolicyTypeRequestTypeDef",
|
|
97
98
|
"DisablePolicyTypeResponseTypeDef",
|
|
98
99
|
"EffectivePolicyTypeDef",
|
|
100
|
+
"EffectivePolicyValidationErrorTypeDef",
|
|
99
101
|
"EmptyResponseMetadataTypeDef",
|
|
100
102
|
"EnableAWSServiceAccessRequestTypeDef",
|
|
101
103
|
"EnableAllFeaturesResponseTypeDef",
|
|
@@ -119,6 +121,9 @@ __all__ = (
|
|
|
119
121
|
"ListAccountsRequestPaginateTypeDef",
|
|
120
122
|
"ListAccountsRequestTypeDef",
|
|
121
123
|
"ListAccountsResponseTypeDef",
|
|
124
|
+
"ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef",
|
|
125
|
+
"ListAccountsWithInvalidEffectivePolicyRequestTypeDef",
|
|
126
|
+
"ListAccountsWithInvalidEffectivePolicyResponseTypeDef",
|
|
122
127
|
"ListChildrenRequestPaginateTypeDef",
|
|
123
128
|
"ListChildrenRequestTypeDef",
|
|
124
129
|
"ListChildrenResponseTypeDef",
|
|
@@ -131,6 +136,9 @@ __all__ = (
|
|
|
131
136
|
"ListDelegatedServicesForAccountRequestPaginateTypeDef",
|
|
132
137
|
"ListDelegatedServicesForAccountRequestTypeDef",
|
|
133
138
|
"ListDelegatedServicesForAccountResponseTypeDef",
|
|
139
|
+
"ListEffectivePolicyValidationErrorsRequestPaginateTypeDef",
|
|
140
|
+
"ListEffectivePolicyValidationErrorsRequestTypeDef",
|
|
141
|
+
"ListEffectivePolicyValidationErrorsResponseTypeDef",
|
|
134
142
|
"ListHandshakesForAccountRequestPaginateTypeDef",
|
|
135
143
|
"ListHandshakesForAccountRequestTypeDef",
|
|
136
144
|
"ListHandshakesForAccountResponsePaginatorTypeDef",
|
|
@@ -202,6 +210,7 @@ class AccountTypeDef(TypedDict):
|
|
|
202
210
|
Email: NotRequired[str]
|
|
203
211
|
Name: NotRequired[str]
|
|
204
212
|
Status: NotRequired[AccountStatusType]
|
|
213
|
+
State: NotRequired[AccountStateType]
|
|
205
214
|
JoinedMethod: NotRequired[AccountJoinedMethodType]
|
|
206
215
|
JoinedTimestamp: NotRequired[datetime]
|
|
207
216
|
|
|
@@ -308,6 +317,12 @@ class DisablePolicyTypeRequestTypeDef(TypedDict):
|
|
|
308
317
|
RootId: str
|
|
309
318
|
PolicyType: PolicyTypeType
|
|
310
319
|
|
|
320
|
+
class EffectivePolicyValidationErrorTypeDef(TypedDict):
|
|
321
|
+
ErrorCode: NotRequired[str]
|
|
322
|
+
ErrorMessage: NotRequired[str]
|
|
323
|
+
PathToError: NotRequired[str]
|
|
324
|
+
ContributingPolicies: NotRequired[List[str]]
|
|
325
|
+
|
|
311
326
|
class EnableAWSServiceAccessRequestTypeDef(TypedDict):
|
|
312
327
|
ServicePrincipal: str
|
|
313
328
|
|
|
@@ -365,6 +380,11 @@ class ListAccountsRequestTypeDef(TypedDict):
|
|
|
365
380
|
NextToken: NotRequired[str]
|
|
366
381
|
MaxResults: NotRequired[int]
|
|
367
382
|
|
|
383
|
+
class ListAccountsWithInvalidEffectivePolicyRequestTypeDef(TypedDict):
|
|
384
|
+
PolicyType: EffectivePolicyTypeType
|
|
385
|
+
NextToken: NotRequired[str]
|
|
386
|
+
MaxResults: NotRequired[int]
|
|
387
|
+
|
|
368
388
|
class ListChildrenRequestTypeDef(TypedDict):
|
|
369
389
|
ParentId: str
|
|
370
390
|
ChildType: ChildTypeType
|
|
@@ -386,6 +406,12 @@ class ListDelegatedServicesForAccountRequestTypeDef(TypedDict):
|
|
|
386
406
|
NextToken: NotRequired[str]
|
|
387
407
|
MaxResults: NotRequired[int]
|
|
388
408
|
|
|
409
|
+
class ListEffectivePolicyValidationErrorsRequestTypeDef(TypedDict):
|
|
410
|
+
AccountId: str
|
|
411
|
+
PolicyType: EffectivePolicyTypeType
|
|
412
|
+
NextToken: NotRequired[str]
|
|
413
|
+
MaxResults: NotRequired[int]
|
|
414
|
+
|
|
389
415
|
class ListOrganizationalUnitsForParentRequestTypeDef(TypedDict):
|
|
390
416
|
ParentId: str
|
|
391
417
|
NextToken: NotRequired[str]
|
|
@@ -505,6 +531,12 @@ class ListAccountsResponseTypeDef(TypedDict):
|
|
|
505
531
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
506
532
|
NextToken: NotRequired[str]
|
|
507
533
|
|
|
534
|
+
class ListAccountsWithInvalidEffectivePolicyResponseTypeDef(TypedDict):
|
|
535
|
+
Accounts: List[AccountTypeDef]
|
|
536
|
+
PolicyType: EffectivePolicyTypeType
|
|
537
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
538
|
+
NextToken: NotRequired[str]
|
|
539
|
+
|
|
508
540
|
class ListChildrenResponseTypeDef(TypedDict):
|
|
509
541
|
Children: List[ChildTypeDef]
|
|
510
542
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -601,6 +633,15 @@ class DescribeEffectivePolicyResponseTypeDef(TypedDict):
|
|
|
601
633
|
EffectivePolicy: EffectivePolicyTypeDef
|
|
602
634
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
603
635
|
|
|
636
|
+
class ListEffectivePolicyValidationErrorsResponseTypeDef(TypedDict):
|
|
637
|
+
AccountId: str
|
|
638
|
+
PolicyType: EffectivePolicyTypeType
|
|
639
|
+
Path: str
|
|
640
|
+
EvaluationTimestamp: datetime
|
|
641
|
+
EffectivePolicyValidationErrors: List[EffectivePolicyValidationErrorTypeDef]
|
|
642
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
643
|
+
NextToken: NotRequired[str]
|
|
644
|
+
|
|
604
645
|
class ListAWSServiceAccessForOrganizationResponseTypeDef(TypedDict):
|
|
605
646
|
EnabledServicePrincipals: List[EnabledServicePrincipalTypeDef]
|
|
606
647
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -651,6 +692,10 @@ class ListAccountsForParentRequestPaginateTypeDef(TypedDict):
|
|
|
651
692
|
class ListAccountsRequestPaginateTypeDef(TypedDict):
|
|
652
693
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
653
694
|
|
|
695
|
+
class ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef(TypedDict):
|
|
696
|
+
PolicyType: EffectivePolicyTypeType
|
|
697
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
698
|
+
|
|
654
699
|
class ListChildrenRequestPaginateTypeDef(TypedDict):
|
|
655
700
|
ParentId: str
|
|
656
701
|
ChildType: ChildTypeType
|
|
@@ -668,6 +713,11 @@ class ListDelegatedServicesForAccountRequestPaginateTypeDef(TypedDict):
|
|
|
668
713
|
AccountId: str
|
|
669
714
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
670
715
|
|
|
716
|
+
class ListEffectivePolicyValidationErrorsRequestPaginateTypeDef(TypedDict):
|
|
717
|
+
AccountId: str
|
|
718
|
+
PolicyType: EffectivePolicyTypeType
|
|
719
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
720
|
+
|
|
671
721
|
class ListHandshakesForAccountRequestPaginateTypeDef(TypedDict):
|
|
672
722
|
Filter: NotRequired[HandshakeFilterTypeDef]
|
|
673
723
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
{types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.27.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-organizations
|
|
3
|
-
Version: 1.40.
|
|
4
|
-
Summary: Type annotations for boto3 Organizations 1.40.
|
|
3
|
+
Version: 1.40.27
|
|
4
|
+
Summary: Type annotations for boto3 Organizations 1.40.27 service generated with mypy-boto3-builder 8.11.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -57,7 +57,7 @@ Dynamic: summary
|
|
|
57
57
|

|
|
58
58
|
|
|
59
59
|
Type annotations for
|
|
60
|
-
[boto3 Organizations 1.40.
|
|
60
|
+
[boto3 Organizations 1.40.27](https://pypi.org/project/boto3/) compatible with
|
|
61
61
|
[VSCode](https://code.visualstudio.com/),
|
|
62
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
63
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.27' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3` AWS SDK.
|
|
124
124
|
3. Add `Organizations` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -357,10 +357,12 @@ from types_boto3_organizations.paginator import (
|
|
|
357
357
|
ListAWSServiceAccessForOrganizationPaginator,
|
|
358
358
|
ListAccountsForParentPaginator,
|
|
359
359
|
ListAccountsPaginator,
|
|
360
|
+
ListAccountsWithInvalidEffectivePolicyPaginator,
|
|
360
361
|
ListChildrenPaginator,
|
|
361
362
|
ListCreateAccountStatusPaginator,
|
|
362
363
|
ListDelegatedAdministratorsPaginator,
|
|
363
364
|
ListDelegatedServicesForAccountPaginator,
|
|
365
|
+
ListEffectivePolicyValidationErrorsPaginator,
|
|
364
366
|
ListHandshakesForAccountPaginator,
|
|
365
367
|
ListHandshakesForOrganizationPaginator,
|
|
366
368
|
ListOrganizationalUnitsForParentPaginator,
|
|
@@ -383,6 +385,9 @@ list_accounts_for_parent_paginator: ListAccountsForParentPaginator = client.get_
|
|
|
383
385
|
"list_accounts_for_parent"
|
|
384
386
|
)
|
|
385
387
|
list_accounts_paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
|
|
388
|
+
list_accounts_with_invalid_effective_policy_paginator: ListAccountsWithInvalidEffectivePolicyPaginator = client.get_paginator(
|
|
389
|
+
"list_accounts_with_invalid_effective_policy"
|
|
390
|
+
)
|
|
386
391
|
list_children_paginator: ListChildrenPaginator = client.get_paginator("list_children")
|
|
387
392
|
list_create_account_status_paginator: ListCreateAccountStatusPaginator = client.get_paginator(
|
|
388
393
|
"list_create_account_status"
|
|
@@ -393,6 +398,9 @@ list_delegated_administrators_paginator: ListDelegatedAdministratorsPaginator =
|
|
|
393
398
|
list_delegated_services_for_account_paginator: ListDelegatedServicesForAccountPaginator = (
|
|
394
399
|
client.get_paginator("list_delegated_services_for_account")
|
|
395
400
|
)
|
|
401
|
+
list_effective_policy_validation_errors_paginator: ListEffectivePolicyValidationErrorsPaginator = (
|
|
402
|
+
client.get_paginator("list_effective_policy_validation_errors")
|
|
403
|
+
)
|
|
396
404
|
list_handshakes_for_account_paginator: ListHandshakesForAccountPaginator = client.get_paginator(
|
|
397
405
|
"list_handshakes_for_account"
|
|
398
406
|
)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_organizations/__init__.py,sha256=j5k4gS5GIZc5Omvul7ULnHqNIMklXg0jEmHinMmbQb8,5019
|
|
2
|
+
types_boto3_organizations/__init__.pyi,sha256=bdgthDK4ut81T2WcQriTz_fHbC0Dgr78z4E3bK8YTo0,5018
|
|
3
|
+
types_boto3_organizations/__main__.py,sha256=VbRPSxLNT1oepHuSxIwVnsmfHvQQ2Ld1boqAaQq7Mt4,1009
|
|
4
|
+
types_boto3_organizations/client.py,sha256=9XtEAL7jQvUV-bCCc_JLINGRE6KQRXf0AIwCCaLzKtM,51924
|
|
5
|
+
types_boto3_organizations/client.pyi,sha256=q9Jgdumz7c3UtpeesYAmL-rrQf0tH2KDqhSWeL8aGM4,51921
|
|
6
|
+
types_boto3_organizations/literals.py,sha256=XmqKMorEUP_Hm_f03mXSob8aV5NonO_lDvvbp2lq55g,14430
|
|
7
|
+
types_boto3_organizations/literals.pyi,sha256=-C1FDEBTtsVC6SEJ4SBTUAH5E2RTH6AWo0e3c8yDKlk,14428
|
|
8
|
+
types_boto3_organizations/paginator.py,sha256=dre63DeMTBNVPGON0KpxiA0K0uqN9yWCfyIPMLk4iMg,28816
|
|
9
|
+
types_boto3_organizations/paginator.pyi,sha256=3Q2IGYt0OPqEv7eLJ8iD850gJKpUdQ_Bddg4uYcWF44,28761
|
|
10
|
+
types_boto3_organizations/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_organizations/type_defs.py,sha256=cLkPBfqqicdL6MoHHj0nHiXEIhsps7mooLTt6Tkoi3I,28878
|
|
12
|
+
types_boto3_organizations/type_defs.pyi,sha256=Adnmtsd5wv9QIlZ6xM3gsqDYLrz8u1pQzKyIi_rdDOQ,28739
|
|
13
|
+
types_boto3_organizations/version.py,sha256=9PTwN1jQ_D1FaRahsQXUNrBJTx72H0-GN9ZKkr8vx8M,93
|
|
14
|
+
types_boto3_organizations-1.40.27.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_organizations-1.40.27.dist-info/METADATA,sha256=_049ha61QQJ2Hgq3IkBEiiRfG0tEetRllPjWsDjYwRo,18168
|
|
16
|
+
types_boto3_organizations-1.40.27.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
types_boto3_organizations-1.40.27.dist-info/top_level.txt,sha256=I8ZXuz_JrEGWJ6VviBxmXd7L1Hl5hobFGqMURv_zCbo,26
|
|
18
|
+
types_boto3_organizations-1.40.27.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
types_boto3_organizations/__init__.py,sha256=Rd6dN1ZshwGKqMbFc95qpEUUkjkEVNjNCAyMO9XttSg,4355
|
|
2
|
-
types_boto3_organizations/__init__.pyi,sha256=bsbUNlpaQkNg7K-5mOQ_OnhDnW1E_JmgnSU7XdSBITc,4354
|
|
3
|
-
types_boto3_organizations/__main__.py,sha256=KUriebtWXGOvy5fWnx1KQUNG3RJk6IIoPSHu7cIs8yc,1006
|
|
4
|
-
types_boto3_organizations/client.py,sha256=cjwGww8xPXjJ0oZ2hci3Iy9REiXLosDz3zjHcXnv9j0,48983
|
|
5
|
-
types_boto3_organizations/client.pyi,sha256=sZv28sa0uByS4GCDUGVYiG-izewNI_PvDFbKaK9K6Og,48980
|
|
6
|
-
types_boto3_organizations/literals.py,sha256=gOBmB_gIKaYFghS5Oq2GfRxD7AOhrn9a6shW-l7oHjw,13874
|
|
7
|
-
types_boto3_organizations/literals.pyi,sha256=wf6Lx2SBGU_kLFWcqXX101FPVG58I1gG0NAKDDU2Y6E,13872
|
|
8
|
-
types_boto3_organizations/paginator.py,sha256=cLJT8Mdt8mpeDhnYtpxEZMOkr0X2oiE3kVxPCtZpstI,25128
|
|
9
|
-
types_boto3_organizations/paginator.pyi,sha256=pfI5wJ58_XfojvU1JzNQOj6tSkxKb1EuYKdP9fOymR0,25079
|
|
10
|
-
types_boto3_organizations/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_organizations/type_defs.py,sha256=vgMQMeBhBT-gB6oKrnY6ftzcqU7iSJHPwRCi9rJNS6I,26883
|
|
12
|
-
types_boto3_organizations/type_defs.pyi,sha256=IyA255diiNCIMeEnhiRw-rDsFldoeiLLKwXiaOhvKNc,26751
|
|
13
|
-
types_boto3_organizations/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
|
|
14
|
-
types_boto3_organizations-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_organizations-1.40.0.dist-info/METADATA,sha256=T_tGf2MRYA3hFuAxomLcd0DYYEw940VWZtymsOXwTpQ,17712
|
|
16
|
-
types_boto3_organizations-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
types_boto3_organizations-1.40.0.dist-info/top_level.txt,sha256=I8ZXuz_JrEGWJ6VviBxmXd7L1Hl5hobFGqMURv_zCbo,26
|
|
18
|
-
types_boto3_organizations-1.40.0.dist-info/RECORD,,
|
{types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.27.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|