types-boto3-organizations 1.40.0__py3-none-any.whl → 1.40.8__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 +11 -0
- types_boto3_organizations/literals.pyi +11 -0
- types_boto3_organizations/paginator.py +60 -0
- types_boto3_organizations/paginator.pyi +54 -0
- types_boto3_organizations/type_defs.py +55 -0
- types_boto3_organizations/type_defs.pyi +48 -0
- types_boto3_organizations/version.py +1 -1
- {types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.8.dist-info}/METADATA +12 -4
- types_boto3_organizations-1.40.8.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.8.dist-info}/WHEEL +0 -0
- {types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.8.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.8.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.8\n"
|
|
16
|
+
"Version: 1.40.8\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.8\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"]
|
|
@@ -37,10 +37,12 @@ __all__ = (
|
|
|
37
37
|
"ListAWSServiceAccessForOrganizationPaginatorName",
|
|
38
38
|
"ListAccountsForParentPaginatorName",
|
|
39
39
|
"ListAccountsPaginatorName",
|
|
40
|
+
"ListAccountsWithInvalidEffectivePolicyPaginatorName",
|
|
40
41
|
"ListChildrenPaginatorName",
|
|
41
42
|
"ListCreateAccountStatusPaginatorName",
|
|
42
43
|
"ListDelegatedAdministratorsPaginatorName",
|
|
43
44
|
"ListDelegatedServicesForAccountPaginatorName",
|
|
45
|
+
"ListEffectivePolicyValidationErrorsPaginatorName",
|
|
44
46
|
"ListHandshakesForAccountPaginatorName",
|
|
45
47
|
"ListHandshakesForOrganizationPaginatorName",
|
|
46
48
|
"ListOrganizationalUnitsForParentPaginatorName",
|
|
@@ -112,10 +114,16 @@ ListAWSServiceAccessForOrganizationPaginatorName = Literal[
|
|
|
112
114
|
]
|
|
113
115
|
ListAccountsForParentPaginatorName = Literal["list_accounts_for_parent"]
|
|
114
116
|
ListAccountsPaginatorName = Literal["list_accounts"]
|
|
117
|
+
ListAccountsWithInvalidEffectivePolicyPaginatorName = Literal[
|
|
118
|
+
"list_accounts_with_invalid_effective_policy"
|
|
119
|
+
]
|
|
115
120
|
ListChildrenPaginatorName = Literal["list_children"]
|
|
116
121
|
ListCreateAccountStatusPaginatorName = Literal["list_create_account_status"]
|
|
117
122
|
ListDelegatedAdministratorsPaginatorName = Literal["list_delegated_administrators"]
|
|
118
123
|
ListDelegatedServicesForAccountPaginatorName = Literal["list_delegated_services_for_account"]
|
|
124
|
+
ListEffectivePolicyValidationErrorsPaginatorName = Literal[
|
|
125
|
+
"list_effective_policy_validation_errors"
|
|
126
|
+
]
|
|
119
127
|
ListHandshakesForAccountPaginatorName = Literal["list_handshakes_for_account"]
|
|
120
128
|
ListHandshakesForOrganizationPaginatorName = Literal["list_handshakes_for_organization"]
|
|
121
129
|
ListOrganizationalUnitsForParentPaginatorName = Literal["list_organizational_units_for_parent"]
|
|
@@ -167,6 +175,7 @@ ServiceName = Literal[
|
|
|
167
175
|
"appstream",
|
|
168
176
|
"appsync",
|
|
169
177
|
"apptest",
|
|
178
|
+
"arc-region-switch",
|
|
170
179
|
"arc-zonal-shift",
|
|
171
180
|
"artifact",
|
|
172
181
|
"athena",
|
|
@@ -569,11 +578,13 @@ ResourceServiceName = Literal[
|
|
|
569
578
|
PaginatorName = Literal[
|
|
570
579
|
"list_accounts",
|
|
571
580
|
"list_accounts_for_parent",
|
|
581
|
+
"list_accounts_with_invalid_effective_policy",
|
|
572
582
|
"list_aws_service_access_for_organization",
|
|
573
583
|
"list_children",
|
|
574
584
|
"list_create_account_status",
|
|
575
585
|
"list_delegated_administrators",
|
|
576
586
|
"list_delegated_services_for_account",
|
|
587
|
+
"list_effective_policy_validation_errors",
|
|
577
588
|
"list_handshakes_for_account",
|
|
578
589
|
"list_handshakes_for_organization",
|
|
579
590
|
"list_organizational_units_for_parent",
|
|
@@ -36,10 +36,12 @@ __all__ = (
|
|
|
36
36
|
"ListAWSServiceAccessForOrganizationPaginatorName",
|
|
37
37
|
"ListAccountsForParentPaginatorName",
|
|
38
38
|
"ListAccountsPaginatorName",
|
|
39
|
+
"ListAccountsWithInvalidEffectivePolicyPaginatorName",
|
|
39
40
|
"ListChildrenPaginatorName",
|
|
40
41
|
"ListCreateAccountStatusPaginatorName",
|
|
41
42
|
"ListDelegatedAdministratorsPaginatorName",
|
|
42
43
|
"ListDelegatedServicesForAccountPaginatorName",
|
|
44
|
+
"ListEffectivePolicyValidationErrorsPaginatorName",
|
|
43
45
|
"ListHandshakesForAccountPaginatorName",
|
|
44
46
|
"ListHandshakesForOrganizationPaginatorName",
|
|
45
47
|
"ListOrganizationalUnitsForParentPaginatorName",
|
|
@@ -110,10 +112,16 @@ ListAWSServiceAccessForOrganizationPaginatorName = Literal[
|
|
|
110
112
|
]
|
|
111
113
|
ListAccountsForParentPaginatorName = Literal["list_accounts_for_parent"]
|
|
112
114
|
ListAccountsPaginatorName = Literal["list_accounts"]
|
|
115
|
+
ListAccountsWithInvalidEffectivePolicyPaginatorName = Literal[
|
|
116
|
+
"list_accounts_with_invalid_effective_policy"
|
|
117
|
+
]
|
|
113
118
|
ListChildrenPaginatorName = Literal["list_children"]
|
|
114
119
|
ListCreateAccountStatusPaginatorName = Literal["list_create_account_status"]
|
|
115
120
|
ListDelegatedAdministratorsPaginatorName = Literal["list_delegated_administrators"]
|
|
116
121
|
ListDelegatedServicesForAccountPaginatorName = Literal["list_delegated_services_for_account"]
|
|
122
|
+
ListEffectivePolicyValidationErrorsPaginatorName = Literal[
|
|
123
|
+
"list_effective_policy_validation_errors"
|
|
124
|
+
]
|
|
117
125
|
ListHandshakesForAccountPaginatorName = Literal["list_handshakes_for_account"]
|
|
118
126
|
ListHandshakesForOrganizationPaginatorName = Literal["list_handshakes_for_organization"]
|
|
119
127
|
ListOrganizationalUnitsForParentPaginatorName = Literal["list_organizational_units_for_parent"]
|
|
@@ -165,6 +173,7 @@ ServiceName = Literal[
|
|
|
165
173
|
"appstream",
|
|
166
174
|
"appsync",
|
|
167
175
|
"apptest",
|
|
176
|
+
"arc-region-switch",
|
|
168
177
|
"arc-zonal-shift",
|
|
169
178
|
"artifact",
|
|
170
179
|
"athena",
|
|
@@ -567,11 +576,13 @@ ResourceServiceName = Literal[
|
|
|
567
576
|
PaginatorName = Literal[
|
|
568
577
|
"list_accounts",
|
|
569
578
|
"list_accounts_for_parent",
|
|
579
|
+
"list_accounts_with_invalid_effective_policy",
|
|
570
580
|
"list_aws_service_access_for_organization",
|
|
571
581
|
"list_children",
|
|
572
582
|
"list_create_account_status",
|
|
573
583
|
"list_delegated_administrators",
|
|
574
584
|
"list_delegated_services_for_account",
|
|
585
|
+
"list_effective_policy_validation_errors",
|
|
575
586
|
"list_handshakes_for_account",
|
|
576
587
|
"list_handshakes_for_organization",
|
|
577
588
|
"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
|
|
@@ -97,6 +97,7 @@ __all__ = (
|
|
|
97
97
|
"DisablePolicyTypeRequestTypeDef",
|
|
98
98
|
"DisablePolicyTypeResponseTypeDef",
|
|
99
99
|
"EffectivePolicyTypeDef",
|
|
100
|
+
"EffectivePolicyValidationErrorTypeDef",
|
|
100
101
|
"EmptyResponseMetadataTypeDef",
|
|
101
102
|
"EnableAWSServiceAccessRequestTypeDef",
|
|
102
103
|
"EnableAllFeaturesResponseTypeDef",
|
|
@@ -120,6 +121,9 @@ __all__ = (
|
|
|
120
121
|
"ListAccountsRequestPaginateTypeDef",
|
|
121
122
|
"ListAccountsRequestTypeDef",
|
|
122
123
|
"ListAccountsResponseTypeDef",
|
|
124
|
+
"ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef",
|
|
125
|
+
"ListAccountsWithInvalidEffectivePolicyRequestTypeDef",
|
|
126
|
+
"ListAccountsWithInvalidEffectivePolicyResponseTypeDef",
|
|
123
127
|
"ListChildrenRequestPaginateTypeDef",
|
|
124
128
|
"ListChildrenRequestTypeDef",
|
|
125
129
|
"ListChildrenResponseTypeDef",
|
|
@@ -132,6 +136,9 @@ __all__ = (
|
|
|
132
136
|
"ListDelegatedServicesForAccountRequestPaginateTypeDef",
|
|
133
137
|
"ListDelegatedServicesForAccountRequestTypeDef",
|
|
134
138
|
"ListDelegatedServicesForAccountResponseTypeDef",
|
|
139
|
+
"ListEffectivePolicyValidationErrorsRequestPaginateTypeDef",
|
|
140
|
+
"ListEffectivePolicyValidationErrorsRequestTypeDef",
|
|
141
|
+
"ListEffectivePolicyValidationErrorsResponseTypeDef",
|
|
135
142
|
"ListHandshakesForAccountRequestPaginateTypeDef",
|
|
136
143
|
"ListHandshakesForAccountRequestTypeDef",
|
|
137
144
|
"ListHandshakesForAccountResponsePaginatorTypeDef",
|
|
@@ -337,6 +344,13 @@ class DisablePolicyTypeRequestTypeDef(TypedDict):
|
|
|
337
344
|
PolicyType: PolicyTypeType
|
|
338
345
|
|
|
339
346
|
|
|
347
|
+
class EffectivePolicyValidationErrorTypeDef(TypedDict):
|
|
348
|
+
ErrorCode: NotRequired[str]
|
|
349
|
+
ErrorMessage: NotRequired[str]
|
|
350
|
+
PathToError: NotRequired[str]
|
|
351
|
+
ContributingPolicies: NotRequired[List[str]]
|
|
352
|
+
|
|
353
|
+
|
|
340
354
|
class EnableAWSServiceAccessRequestTypeDef(TypedDict):
|
|
341
355
|
ServicePrincipal: str
|
|
342
356
|
|
|
@@ -403,6 +417,12 @@ class ListAccountsRequestTypeDef(TypedDict):
|
|
|
403
417
|
MaxResults: NotRequired[int]
|
|
404
418
|
|
|
405
419
|
|
|
420
|
+
class ListAccountsWithInvalidEffectivePolicyRequestTypeDef(TypedDict):
|
|
421
|
+
PolicyType: EffectivePolicyTypeType
|
|
422
|
+
NextToken: NotRequired[str]
|
|
423
|
+
MaxResults: NotRequired[int]
|
|
424
|
+
|
|
425
|
+
|
|
406
426
|
class ListChildrenRequestTypeDef(TypedDict):
|
|
407
427
|
ParentId: str
|
|
408
428
|
ChildType: ChildTypeType
|
|
@@ -428,6 +448,13 @@ class ListDelegatedServicesForAccountRequestTypeDef(TypedDict):
|
|
|
428
448
|
MaxResults: NotRequired[int]
|
|
429
449
|
|
|
430
450
|
|
|
451
|
+
class ListEffectivePolicyValidationErrorsRequestTypeDef(TypedDict):
|
|
452
|
+
AccountId: str
|
|
453
|
+
PolicyType: EffectivePolicyTypeType
|
|
454
|
+
NextToken: NotRequired[str]
|
|
455
|
+
MaxResults: NotRequired[int]
|
|
456
|
+
|
|
457
|
+
|
|
431
458
|
class ListOrganizationalUnitsForParentRequestTypeDef(TypedDict):
|
|
432
459
|
ParentId: str
|
|
433
460
|
NextToken: NotRequired[str]
|
|
@@ -569,6 +596,13 @@ class ListAccountsResponseTypeDef(TypedDict):
|
|
|
569
596
|
NextToken: NotRequired[str]
|
|
570
597
|
|
|
571
598
|
|
|
599
|
+
class ListAccountsWithInvalidEffectivePolicyResponseTypeDef(TypedDict):
|
|
600
|
+
Accounts: List[AccountTypeDef]
|
|
601
|
+
PolicyType: EffectivePolicyTypeType
|
|
602
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
603
|
+
NextToken: NotRequired[str]
|
|
604
|
+
|
|
605
|
+
|
|
572
606
|
class ListChildrenResponseTypeDef(TypedDict):
|
|
573
607
|
Children: List[ChildTypeDef]
|
|
574
608
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -684,6 +718,16 @@ class DescribeEffectivePolicyResponseTypeDef(TypedDict):
|
|
|
684
718
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
685
719
|
|
|
686
720
|
|
|
721
|
+
class ListEffectivePolicyValidationErrorsResponseTypeDef(TypedDict):
|
|
722
|
+
AccountId: str
|
|
723
|
+
PolicyType: EffectivePolicyTypeType
|
|
724
|
+
Path: str
|
|
725
|
+
EvaluationTimestamp: datetime
|
|
726
|
+
EffectivePolicyValidationErrors: List[EffectivePolicyValidationErrorTypeDef]
|
|
727
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
728
|
+
NextToken: NotRequired[str]
|
|
729
|
+
|
|
730
|
+
|
|
687
731
|
class ListAWSServiceAccessForOrganizationResponseTypeDef(TypedDict):
|
|
688
732
|
EnabledServicePrincipals: List[EnabledServicePrincipalTypeDef]
|
|
689
733
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -743,6 +787,11 @@ class ListAccountsRequestPaginateTypeDef(TypedDict):
|
|
|
743
787
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
744
788
|
|
|
745
789
|
|
|
790
|
+
class ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef(TypedDict):
|
|
791
|
+
PolicyType: EffectivePolicyTypeType
|
|
792
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
793
|
+
|
|
794
|
+
|
|
746
795
|
class ListChildrenRequestPaginateTypeDef(TypedDict):
|
|
747
796
|
ParentId: str
|
|
748
797
|
ChildType: ChildTypeType
|
|
@@ -764,6 +813,12 @@ class ListDelegatedServicesForAccountRequestPaginateTypeDef(TypedDict):
|
|
|
764
813
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
765
814
|
|
|
766
815
|
|
|
816
|
+
class ListEffectivePolicyValidationErrorsRequestPaginateTypeDef(TypedDict):
|
|
817
|
+
AccountId: str
|
|
818
|
+
PolicyType: EffectivePolicyTypeType
|
|
819
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
820
|
+
|
|
821
|
+
|
|
767
822
|
class ListHandshakesForAccountRequestPaginateTypeDef(TypedDict):
|
|
768
823
|
Filter: NotRequired[HandshakeFilterTypeDef]
|
|
769
824
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -96,6 +96,7 @@ __all__ = (
|
|
|
96
96
|
"DisablePolicyTypeRequestTypeDef",
|
|
97
97
|
"DisablePolicyTypeResponseTypeDef",
|
|
98
98
|
"EffectivePolicyTypeDef",
|
|
99
|
+
"EffectivePolicyValidationErrorTypeDef",
|
|
99
100
|
"EmptyResponseMetadataTypeDef",
|
|
100
101
|
"EnableAWSServiceAccessRequestTypeDef",
|
|
101
102
|
"EnableAllFeaturesResponseTypeDef",
|
|
@@ -119,6 +120,9 @@ __all__ = (
|
|
|
119
120
|
"ListAccountsRequestPaginateTypeDef",
|
|
120
121
|
"ListAccountsRequestTypeDef",
|
|
121
122
|
"ListAccountsResponseTypeDef",
|
|
123
|
+
"ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef",
|
|
124
|
+
"ListAccountsWithInvalidEffectivePolicyRequestTypeDef",
|
|
125
|
+
"ListAccountsWithInvalidEffectivePolicyResponseTypeDef",
|
|
122
126
|
"ListChildrenRequestPaginateTypeDef",
|
|
123
127
|
"ListChildrenRequestTypeDef",
|
|
124
128
|
"ListChildrenResponseTypeDef",
|
|
@@ -131,6 +135,9 @@ __all__ = (
|
|
|
131
135
|
"ListDelegatedServicesForAccountRequestPaginateTypeDef",
|
|
132
136
|
"ListDelegatedServicesForAccountRequestTypeDef",
|
|
133
137
|
"ListDelegatedServicesForAccountResponseTypeDef",
|
|
138
|
+
"ListEffectivePolicyValidationErrorsRequestPaginateTypeDef",
|
|
139
|
+
"ListEffectivePolicyValidationErrorsRequestTypeDef",
|
|
140
|
+
"ListEffectivePolicyValidationErrorsResponseTypeDef",
|
|
134
141
|
"ListHandshakesForAccountRequestPaginateTypeDef",
|
|
135
142
|
"ListHandshakesForAccountRequestTypeDef",
|
|
136
143
|
"ListHandshakesForAccountResponsePaginatorTypeDef",
|
|
@@ -308,6 +315,12 @@ class DisablePolicyTypeRequestTypeDef(TypedDict):
|
|
|
308
315
|
RootId: str
|
|
309
316
|
PolicyType: PolicyTypeType
|
|
310
317
|
|
|
318
|
+
class EffectivePolicyValidationErrorTypeDef(TypedDict):
|
|
319
|
+
ErrorCode: NotRequired[str]
|
|
320
|
+
ErrorMessage: NotRequired[str]
|
|
321
|
+
PathToError: NotRequired[str]
|
|
322
|
+
ContributingPolicies: NotRequired[List[str]]
|
|
323
|
+
|
|
311
324
|
class EnableAWSServiceAccessRequestTypeDef(TypedDict):
|
|
312
325
|
ServicePrincipal: str
|
|
313
326
|
|
|
@@ -365,6 +378,11 @@ class ListAccountsRequestTypeDef(TypedDict):
|
|
|
365
378
|
NextToken: NotRequired[str]
|
|
366
379
|
MaxResults: NotRequired[int]
|
|
367
380
|
|
|
381
|
+
class ListAccountsWithInvalidEffectivePolicyRequestTypeDef(TypedDict):
|
|
382
|
+
PolicyType: EffectivePolicyTypeType
|
|
383
|
+
NextToken: NotRequired[str]
|
|
384
|
+
MaxResults: NotRequired[int]
|
|
385
|
+
|
|
368
386
|
class ListChildrenRequestTypeDef(TypedDict):
|
|
369
387
|
ParentId: str
|
|
370
388
|
ChildType: ChildTypeType
|
|
@@ -386,6 +404,12 @@ class ListDelegatedServicesForAccountRequestTypeDef(TypedDict):
|
|
|
386
404
|
NextToken: NotRequired[str]
|
|
387
405
|
MaxResults: NotRequired[int]
|
|
388
406
|
|
|
407
|
+
class ListEffectivePolicyValidationErrorsRequestTypeDef(TypedDict):
|
|
408
|
+
AccountId: str
|
|
409
|
+
PolicyType: EffectivePolicyTypeType
|
|
410
|
+
NextToken: NotRequired[str]
|
|
411
|
+
MaxResults: NotRequired[int]
|
|
412
|
+
|
|
389
413
|
class ListOrganizationalUnitsForParentRequestTypeDef(TypedDict):
|
|
390
414
|
ParentId: str
|
|
391
415
|
NextToken: NotRequired[str]
|
|
@@ -505,6 +529,12 @@ class ListAccountsResponseTypeDef(TypedDict):
|
|
|
505
529
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
506
530
|
NextToken: NotRequired[str]
|
|
507
531
|
|
|
532
|
+
class ListAccountsWithInvalidEffectivePolicyResponseTypeDef(TypedDict):
|
|
533
|
+
Accounts: List[AccountTypeDef]
|
|
534
|
+
PolicyType: EffectivePolicyTypeType
|
|
535
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
536
|
+
NextToken: NotRequired[str]
|
|
537
|
+
|
|
508
538
|
class ListChildrenResponseTypeDef(TypedDict):
|
|
509
539
|
Children: List[ChildTypeDef]
|
|
510
540
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -601,6 +631,15 @@ class DescribeEffectivePolicyResponseTypeDef(TypedDict):
|
|
|
601
631
|
EffectivePolicy: EffectivePolicyTypeDef
|
|
602
632
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
603
633
|
|
|
634
|
+
class ListEffectivePolicyValidationErrorsResponseTypeDef(TypedDict):
|
|
635
|
+
AccountId: str
|
|
636
|
+
PolicyType: EffectivePolicyTypeType
|
|
637
|
+
Path: str
|
|
638
|
+
EvaluationTimestamp: datetime
|
|
639
|
+
EffectivePolicyValidationErrors: List[EffectivePolicyValidationErrorTypeDef]
|
|
640
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
641
|
+
NextToken: NotRequired[str]
|
|
642
|
+
|
|
604
643
|
class ListAWSServiceAccessForOrganizationResponseTypeDef(TypedDict):
|
|
605
644
|
EnabledServicePrincipals: List[EnabledServicePrincipalTypeDef]
|
|
606
645
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -651,6 +690,10 @@ class ListAccountsForParentRequestPaginateTypeDef(TypedDict):
|
|
|
651
690
|
class ListAccountsRequestPaginateTypeDef(TypedDict):
|
|
652
691
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
653
692
|
|
|
693
|
+
class ListAccountsWithInvalidEffectivePolicyRequestPaginateTypeDef(TypedDict):
|
|
694
|
+
PolicyType: EffectivePolicyTypeType
|
|
695
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
696
|
+
|
|
654
697
|
class ListChildrenRequestPaginateTypeDef(TypedDict):
|
|
655
698
|
ParentId: str
|
|
656
699
|
ChildType: ChildTypeType
|
|
@@ -668,6 +711,11 @@ class ListDelegatedServicesForAccountRequestPaginateTypeDef(TypedDict):
|
|
|
668
711
|
AccountId: str
|
|
669
712
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
670
713
|
|
|
714
|
+
class ListEffectivePolicyValidationErrorsRequestPaginateTypeDef(TypedDict):
|
|
715
|
+
AccountId: str
|
|
716
|
+
PolicyType: EffectivePolicyTypeType
|
|
717
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
718
|
+
|
|
671
719
|
class ListHandshakesForAccountRequestPaginateTypeDef(TypedDict):
|
|
672
720
|
Filter: NotRequired[HandshakeFilterTypeDef]
|
|
673
721
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
{types_boto3_organizations-1.40.0.dist-info → types_boto3_organizations-1.40.8.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.8
|
|
4
|
+
Summary: Type annotations for boto3 Organizations 1.40.8 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.8](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.8' 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=TU9B1znJWRD6uOzKIyNM64tIotY9JSmFv3sdQoVLLMA,1006
|
|
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=1NElHjYONKTH7N1F_qIlnG0juxNTaImSgjFMKRoJZ1M,14335
|
|
7
|
+
types_boto3_organizations/literals.pyi,sha256=GMHEt1comc9-xV-dg3LRlTbVXmKPzwCgEOW4O6d2gaw,14333
|
|
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=C5yxcg-isLrlelL_AS6UAtqo_9rGn83S30PK_lGKngA,28815
|
|
12
|
+
types_boto3_organizations/type_defs.pyi,sha256=nc8orrMrwKshBEeEu8Cky4trq8AQlUeHZdLCBx5stBQ,28676
|
|
13
|
+
types_boto3_organizations/version.py,sha256=DzOGA28WQMuwB5MyD2S0onEkRo5It_yYd4uuwIOrTss,92
|
|
14
|
+
types_boto3_organizations-1.40.8.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_organizations-1.40.8.dist-info/METADATA,sha256=SOpsHvtwaZ6SwZx0zDl47a9NksVr76KzHD3Z6AaRNYQ,18164
|
|
16
|
+
types_boto3_organizations-1.40.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
types_boto3_organizations-1.40.8.dist-info/top_level.txt,sha256=I8ZXuz_JrEGWJ6VviBxmXd7L1Hl5hobFGqMURv_zCbo,26
|
|
18
|
+
types_boto3_organizations-1.40.8.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.8.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|