types-boto3-organizations 1.35.93__py3-none-any.whl → 1.37.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_organizations/__init__.py +4 -2
- types_boto3_organizations/__init__.pyi +4 -2
- types_boto3_organizations/__main__.py +4 -4
- types_boto3_organizations/client.py +100 -102
- types_boto3_organizations/client.pyi +100 -102
- types_boto3_organizations/literals.py +2 -5
- types_boto3_organizations/literals.pyi +2 -5
- types_boto3_organizations/paginator.py +2 -2
- types_boto3_organizations/paginator.pyi +2 -2
- types_boto3_organizations/type_defs.py +103 -103
- types_boto3_organizations/type_defs.pyi +103 -103
- types_boto3_organizations/version.py +1 -1
- {types_boto3_organizations-1.35.93.dist-info → types_boto3_organizations-1.37.0.dist-info}/METADATA +27 -11
- types_boto3_organizations-1.37.0.dist-info/RECORD +18 -0
- {types_boto3_organizations-1.35.93.dist-info → types_boto3_organizations-1.37.0.dist-info}/WHEEL +1 -1
- types_boto3_organizations-1.35.93.dist-info/RECORD +0 -18
- {types_boto3_organizations-1.35.93.dist-info → types_boto3_organizations-1.37.0.dist-info}/LICENSE +0 -0
- {types_boto3_organizations-1.35.93.dist-info → types_boto3_organizations-1.37.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for organizations service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -46,8 +50,6 @@ Usage::
|
|
|
46
50
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
47
51
|
list_targets_for_policy_paginator: ListTargetsForPolicyPaginator = client.get_paginator("list_targets_for_policy")
|
|
48
52
|
```
|
|
49
|
-
|
|
50
|
-
Copyright 2025 Vlad Emelianov
|
|
51
53
|
"""
|
|
52
54
|
|
|
53
55
|
from .client import OrganizationsClient
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for organizations service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -46,8 +50,6 @@ Usage::
|
|
|
46
50
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
47
51
|
list_targets_for_policy_paginator: ListTargetsForPolicyPaginator = client.get_paginator("list_targets_for_policy")
|
|
48
52
|
```
|
|
49
|
-
|
|
50
|
-
Copyright 2025 Vlad Emelianov
|
|
51
53
|
"""
|
|
52
54
|
|
|
53
55
|
from .client import OrganizationsClient
|
|
@@ -12,9 +12,9 @@ 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.
|
|
16
|
-
"Version: 1.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Organizations 1.37.0\n"
|
|
16
|
+
"Version: 1.37.0\n"
|
|
17
|
+
"Builder version: 8.9.2\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"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\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.
|
|
29
|
+
sys.stdout.write("1.37.0\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -3,6 +3,8 @@ Type annotations for organizations service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -12,8 +14,6 @@ Usage::
|
|
|
12
14
|
session = Session()
|
|
13
15
|
client: OrganizationsClient = session.client("organizations")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
@@ -44,94 +44,94 @@ from .paginator import (
|
|
|
44
44
|
ListTargetsForPolicyPaginator,
|
|
45
45
|
)
|
|
46
46
|
from .type_defs import (
|
|
47
|
-
|
|
47
|
+
AcceptHandshakeRequestTypeDef,
|
|
48
48
|
AcceptHandshakeResponseTypeDef,
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
AttachPolicyRequestTypeDef,
|
|
50
|
+
CancelHandshakeRequestTypeDef,
|
|
51
51
|
CancelHandshakeResponseTypeDef,
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
CloseAccountRequestTypeDef,
|
|
53
|
+
CreateAccountRequestTypeDef,
|
|
54
54
|
CreateAccountResponseTypeDef,
|
|
55
|
-
|
|
55
|
+
CreateGovCloudAccountRequestTypeDef,
|
|
56
56
|
CreateGovCloudAccountResponseTypeDef,
|
|
57
|
-
|
|
57
|
+
CreateOrganizationalUnitRequestTypeDef,
|
|
58
58
|
CreateOrganizationalUnitResponseTypeDef,
|
|
59
|
-
|
|
59
|
+
CreateOrganizationRequestTypeDef,
|
|
60
60
|
CreateOrganizationResponseTypeDef,
|
|
61
|
-
|
|
61
|
+
CreatePolicyRequestTypeDef,
|
|
62
62
|
CreatePolicyResponseTypeDef,
|
|
63
|
-
|
|
63
|
+
DeclineHandshakeRequestTypeDef,
|
|
64
64
|
DeclineHandshakeResponseTypeDef,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
65
|
+
DeleteOrganizationalUnitRequestTypeDef,
|
|
66
|
+
DeletePolicyRequestTypeDef,
|
|
67
|
+
DeregisterDelegatedAdministratorRequestTypeDef,
|
|
68
|
+
DescribeAccountRequestTypeDef,
|
|
69
69
|
DescribeAccountResponseTypeDef,
|
|
70
|
-
|
|
70
|
+
DescribeCreateAccountStatusRequestTypeDef,
|
|
71
71
|
DescribeCreateAccountStatusResponseTypeDef,
|
|
72
|
-
|
|
72
|
+
DescribeEffectivePolicyRequestTypeDef,
|
|
73
73
|
DescribeEffectivePolicyResponseTypeDef,
|
|
74
|
-
|
|
74
|
+
DescribeHandshakeRequestTypeDef,
|
|
75
75
|
DescribeHandshakeResponseTypeDef,
|
|
76
|
-
|
|
76
|
+
DescribeOrganizationalUnitRequestTypeDef,
|
|
77
77
|
DescribeOrganizationalUnitResponseTypeDef,
|
|
78
78
|
DescribeOrganizationResponseTypeDef,
|
|
79
|
-
|
|
79
|
+
DescribePolicyRequestTypeDef,
|
|
80
80
|
DescribePolicyResponseTypeDef,
|
|
81
81
|
DescribeResourcePolicyResponseTypeDef,
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
82
|
+
DetachPolicyRequestTypeDef,
|
|
83
|
+
DisableAWSServiceAccessRequestTypeDef,
|
|
84
|
+
DisablePolicyTypeRequestTypeDef,
|
|
85
85
|
DisablePolicyTypeResponseTypeDef,
|
|
86
86
|
EmptyResponseMetadataTypeDef,
|
|
87
87
|
EnableAllFeaturesResponseTypeDef,
|
|
88
|
-
|
|
89
|
-
|
|
88
|
+
EnableAWSServiceAccessRequestTypeDef,
|
|
89
|
+
EnablePolicyTypeRequestTypeDef,
|
|
90
90
|
EnablePolicyTypeResponseTypeDef,
|
|
91
|
-
|
|
91
|
+
InviteAccountToOrganizationRequestTypeDef,
|
|
92
92
|
InviteAccountToOrganizationResponseTypeDef,
|
|
93
|
-
|
|
93
|
+
ListAccountsForParentRequestTypeDef,
|
|
94
94
|
ListAccountsForParentResponseTypeDef,
|
|
95
|
-
|
|
95
|
+
ListAccountsRequestTypeDef,
|
|
96
96
|
ListAccountsResponseTypeDef,
|
|
97
|
-
|
|
97
|
+
ListAWSServiceAccessForOrganizationRequestTypeDef,
|
|
98
98
|
ListAWSServiceAccessForOrganizationResponseTypeDef,
|
|
99
|
-
|
|
99
|
+
ListChildrenRequestTypeDef,
|
|
100
100
|
ListChildrenResponseTypeDef,
|
|
101
|
-
|
|
101
|
+
ListCreateAccountStatusRequestTypeDef,
|
|
102
102
|
ListCreateAccountStatusResponseTypeDef,
|
|
103
|
-
|
|
103
|
+
ListDelegatedAdministratorsRequestTypeDef,
|
|
104
104
|
ListDelegatedAdministratorsResponseTypeDef,
|
|
105
|
-
|
|
105
|
+
ListDelegatedServicesForAccountRequestTypeDef,
|
|
106
106
|
ListDelegatedServicesForAccountResponseTypeDef,
|
|
107
|
-
|
|
107
|
+
ListHandshakesForAccountRequestTypeDef,
|
|
108
108
|
ListHandshakesForAccountResponseTypeDef,
|
|
109
|
-
|
|
109
|
+
ListHandshakesForOrganizationRequestTypeDef,
|
|
110
110
|
ListHandshakesForOrganizationResponseTypeDef,
|
|
111
|
-
|
|
111
|
+
ListOrganizationalUnitsForParentRequestTypeDef,
|
|
112
112
|
ListOrganizationalUnitsForParentResponseTypeDef,
|
|
113
|
-
|
|
113
|
+
ListParentsRequestTypeDef,
|
|
114
114
|
ListParentsResponseTypeDef,
|
|
115
|
-
|
|
115
|
+
ListPoliciesForTargetRequestTypeDef,
|
|
116
116
|
ListPoliciesForTargetResponseTypeDef,
|
|
117
|
-
|
|
117
|
+
ListPoliciesRequestTypeDef,
|
|
118
118
|
ListPoliciesResponseTypeDef,
|
|
119
|
-
|
|
119
|
+
ListRootsRequestTypeDef,
|
|
120
120
|
ListRootsResponseTypeDef,
|
|
121
|
-
|
|
121
|
+
ListTagsForResourceRequestTypeDef,
|
|
122
122
|
ListTagsForResourceResponseTypeDef,
|
|
123
|
-
|
|
123
|
+
ListTargetsForPolicyRequestTypeDef,
|
|
124
124
|
ListTargetsForPolicyResponseTypeDef,
|
|
125
|
-
|
|
126
|
-
|
|
125
|
+
MoveAccountRequestTypeDef,
|
|
126
|
+
PutResourcePolicyRequestTypeDef,
|
|
127
127
|
PutResourcePolicyResponseTypeDef,
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
128
|
+
RegisterDelegatedAdministratorRequestTypeDef,
|
|
129
|
+
RemoveAccountFromOrganizationRequestTypeDef,
|
|
130
|
+
TagResourceRequestTypeDef,
|
|
131
|
+
UntagResourceRequestTypeDef,
|
|
132
|
+
UpdateOrganizationalUnitRequestTypeDef,
|
|
133
133
|
UpdateOrganizationalUnitResponseTypeDef,
|
|
134
|
-
|
|
134
|
+
UpdatePolicyRequestTypeDef,
|
|
135
135
|
UpdatePolicyResponseTypeDef,
|
|
136
136
|
)
|
|
137
137
|
|
|
@@ -236,7 +236,7 @@ class OrganizationsClient(BaseClient):
|
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
def accept_handshake(
|
|
239
|
-
self, **kwargs: Unpack[
|
|
239
|
+
self, **kwargs: Unpack[AcceptHandshakeRequestTypeDef]
|
|
240
240
|
) -> AcceptHandshakeResponseTypeDef:
|
|
241
241
|
"""
|
|
242
242
|
Sends a response to the originator of a handshake agreeing to the action
|
|
@@ -247,7 +247,7 @@ class OrganizationsClient(BaseClient):
|
|
|
247
247
|
"""
|
|
248
248
|
|
|
249
249
|
def attach_policy(
|
|
250
|
-
self, **kwargs: Unpack[
|
|
250
|
+
self, **kwargs: Unpack[AttachPolicyRequestTypeDef]
|
|
251
251
|
) -> EmptyResponseMetadataTypeDef:
|
|
252
252
|
"""
|
|
253
253
|
Attaches a policy to a root, an organizational unit (OU), or an individual
|
|
@@ -258,7 +258,7 @@ class OrganizationsClient(BaseClient):
|
|
|
258
258
|
"""
|
|
259
259
|
|
|
260
260
|
def cancel_handshake(
|
|
261
|
-
self, **kwargs: Unpack[
|
|
261
|
+
self, **kwargs: Unpack[CancelHandshakeRequestTypeDef]
|
|
262
262
|
) -> CancelHandshakeResponseTypeDef:
|
|
263
263
|
"""
|
|
264
264
|
Cancels a handshake.
|
|
@@ -268,7 +268,7 @@ class OrganizationsClient(BaseClient):
|
|
|
268
268
|
"""
|
|
269
269
|
|
|
270
270
|
def close_account(
|
|
271
|
-
self, **kwargs: Unpack[
|
|
271
|
+
self, **kwargs: Unpack[CloseAccountRequestTypeDef]
|
|
272
272
|
) -> EmptyResponseMetadataTypeDef:
|
|
273
273
|
"""
|
|
274
274
|
Closes an Amazon Web Services member account within an organization.
|
|
@@ -278,7 +278,7 @@ class OrganizationsClient(BaseClient):
|
|
|
278
278
|
"""
|
|
279
279
|
|
|
280
280
|
def create_account(
|
|
281
|
-
self, **kwargs: Unpack[
|
|
281
|
+
self, **kwargs: Unpack[CreateAccountRequestTypeDef]
|
|
282
282
|
) -> CreateAccountResponseTypeDef:
|
|
283
283
|
"""
|
|
284
284
|
Creates an Amazon Web Services account that is automatically a member of the
|
|
@@ -289,7 +289,7 @@ class OrganizationsClient(BaseClient):
|
|
|
289
289
|
"""
|
|
290
290
|
|
|
291
291
|
def create_gov_cloud_account(
|
|
292
|
-
self, **kwargs: Unpack[
|
|
292
|
+
self, **kwargs: Unpack[CreateGovCloudAccountRequestTypeDef]
|
|
293
293
|
) -> CreateGovCloudAccountResponseTypeDef:
|
|
294
294
|
"""
|
|
295
295
|
This action is available if all of the following are true:.
|
|
@@ -299,7 +299,7 @@ class OrganizationsClient(BaseClient):
|
|
|
299
299
|
"""
|
|
300
300
|
|
|
301
301
|
def create_organization(
|
|
302
|
-
self, **kwargs: Unpack[
|
|
302
|
+
self, **kwargs: Unpack[CreateOrganizationRequestTypeDef]
|
|
303
303
|
) -> CreateOrganizationResponseTypeDef:
|
|
304
304
|
"""
|
|
305
305
|
Creates an Amazon Web Services organization.
|
|
@@ -309,7 +309,7 @@ class OrganizationsClient(BaseClient):
|
|
|
309
309
|
"""
|
|
310
310
|
|
|
311
311
|
def create_organizational_unit(
|
|
312
|
-
self, **kwargs: Unpack[
|
|
312
|
+
self, **kwargs: Unpack[CreateOrganizationalUnitRequestTypeDef]
|
|
313
313
|
) -> CreateOrganizationalUnitResponseTypeDef:
|
|
314
314
|
"""
|
|
315
315
|
Creates an organizational unit (OU) within a root or parent OU.
|
|
@@ -319,7 +319,7 @@ class OrganizationsClient(BaseClient):
|
|
|
319
319
|
"""
|
|
320
320
|
|
|
321
321
|
def create_policy(
|
|
322
|
-
self, **kwargs: Unpack[
|
|
322
|
+
self, **kwargs: Unpack[CreatePolicyRequestTypeDef]
|
|
323
323
|
) -> CreatePolicyResponseTypeDef:
|
|
324
324
|
"""
|
|
325
325
|
Creates a policy of a specified type that you can attach to a root, an
|
|
@@ -330,7 +330,7 @@ class OrganizationsClient(BaseClient):
|
|
|
330
330
|
"""
|
|
331
331
|
|
|
332
332
|
def decline_handshake(
|
|
333
|
-
self, **kwargs: Unpack[
|
|
333
|
+
self, **kwargs: Unpack[DeclineHandshakeRequestTypeDef]
|
|
334
334
|
) -> DeclineHandshakeResponseTypeDef:
|
|
335
335
|
"""
|
|
336
336
|
Declines a handshake request.
|
|
@@ -348,7 +348,7 @@ class OrganizationsClient(BaseClient):
|
|
|
348
348
|
"""
|
|
349
349
|
|
|
350
350
|
def delete_organizational_unit(
|
|
351
|
-
self, **kwargs: Unpack[
|
|
351
|
+
self, **kwargs: Unpack[DeleteOrganizationalUnitRequestTypeDef]
|
|
352
352
|
) -> EmptyResponseMetadataTypeDef:
|
|
353
353
|
"""
|
|
354
354
|
Deletes an organizational unit (OU) from a root or another OU.
|
|
@@ -358,7 +358,7 @@ class OrganizationsClient(BaseClient):
|
|
|
358
358
|
"""
|
|
359
359
|
|
|
360
360
|
def delete_policy(
|
|
361
|
-
self, **kwargs: Unpack[
|
|
361
|
+
self, **kwargs: Unpack[DeletePolicyRequestTypeDef]
|
|
362
362
|
) -> EmptyResponseMetadataTypeDef:
|
|
363
363
|
"""
|
|
364
364
|
Deletes the specified policy from your organization.
|
|
@@ -376,7 +376,7 @@ class OrganizationsClient(BaseClient):
|
|
|
376
376
|
"""
|
|
377
377
|
|
|
378
378
|
def deregister_delegated_administrator(
|
|
379
|
-
self, **kwargs: Unpack[
|
|
379
|
+
self, **kwargs: Unpack[DeregisterDelegatedAdministratorRequestTypeDef]
|
|
380
380
|
) -> EmptyResponseMetadataTypeDef:
|
|
381
381
|
"""
|
|
382
382
|
Removes the specified member Amazon Web Services account as a delegated
|
|
@@ -387,7 +387,7 @@ class OrganizationsClient(BaseClient):
|
|
|
387
387
|
"""
|
|
388
388
|
|
|
389
389
|
def describe_account(
|
|
390
|
-
self, **kwargs: Unpack[
|
|
390
|
+
self, **kwargs: Unpack[DescribeAccountRequestTypeDef]
|
|
391
391
|
) -> DescribeAccountResponseTypeDef:
|
|
392
392
|
"""
|
|
393
393
|
Retrieves Organizations-related information about the specified account.
|
|
@@ -397,7 +397,7 @@ class OrganizationsClient(BaseClient):
|
|
|
397
397
|
"""
|
|
398
398
|
|
|
399
399
|
def describe_create_account_status(
|
|
400
|
-
self, **kwargs: Unpack[
|
|
400
|
+
self, **kwargs: Unpack[DescribeCreateAccountStatusRequestTypeDef]
|
|
401
401
|
) -> DescribeCreateAccountStatusResponseTypeDef:
|
|
402
402
|
"""
|
|
403
403
|
Retrieves the current status of an asynchronous request to create an account.
|
|
@@ -407,7 +407,7 @@ class OrganizationsClient(BaseClient):
|
|
|
407
407
|
"""
|
|
408
408
|
|
|
409
409
|
def describe_effective_policy(
|
|
410
|
-
self, **kwargs: Unpack[
|
|
410
|
+
self, **kwargs: Unpack[DescribeEffectivePolicyRequestTypeDef]
|
|
411
411
|
) -> DescribeEffectivePolicyResponseTypeDef:
|
|
412
412
|
"""
|
|
413
413
|
Returns the contents of the effective policy for specified policy type and
|
|
@@ -418,7 +418,7 @@ class OrganizationsClient(BaseClient):
|
|
|
418
418
|
"""
|
|
419
419
|
|
|
420
420
|
def describe_handshake(
|
|
421
|
-
self, **kwargs: Unpack[
|
|
421
|
+
self, **kwargs: Unpack[DescribeHandshakeRequestTypeDef]
|
|
422
422
|
) -> DescribeHandshakeResponseTypeDef:
|
|
423
423
|
"""
|
|
424
424
|
Retrieves information about a previously requested handshake.
|
|
@@ -436,7 +436,7 @@ class OrganizationsClient(BaseClient):
|
|
|
436
436
|
"""
|
|
437
437
|
|
|
438
438
|
def describe_organizational_unit(
|
|
439
|
-
self, **kwargs: Unpack[
|
|
439
|
+
self, **kwargs: Unpack[DescribeOrganizationalUnitRequestTypeDef]
|
|
440
440
|
) -> DescribeOrganizationalUnitResponseTypeDef:
|
|
441
441
|
"""
|
|
442
442
|
Retrieves information about an organizational unit (OU).
|
|
@@ -446,7 +446,7 @@ class OrganizationsClient(BaseClient):
|
|
|
446
446
|
"""
|
|
447
447
|
|
|
448
448
|
def describe_policy(
|
|
449
|
-
self, **kwargs: Unpack[
|
|
449
|
+
self, **kwargs: Unpack[DescribePolicyRequestTypeDef]
|
|
450
450
|
) -> DescribePolicyResponseTypeDef:
|
|
451
451
|
"""
|
|
452
452
|
Retrieves information about a policy.
|
|
@@ -464,7 +464,7 @@ class OrganizationsClient(BaseClient):
|
|
|
464
464
|
"""
|
|
465
465
|
|
|
466
466
|
def detach_policy(
|
|
467
|
-
self, **kwargs: Unpack[
|
|
467
|
+
self, **kwargs: Unpack[DetachPolicyRequestTypeDef]
|
|
468
468
|
) -> EmptyResponseMetadataTypeDef:
|
|
469
469
|
"""
|
|
470
470
|
Detaches a policy from a target root, organizational unit (OU), or account.
|
|
@@ -474,7 +474,7 @@ class OrganizationsClient(BaseClient):
|
|
|
474
474
|
"""
|
|
475
475
|
|
|
476
476
|
def disable_aws_service_access(
|
|
477
|
-
self, **kwargs: Unpack[
|
|
477
|
+
self, **kwargs: Unpack[DisableAWSServiceAccessRequestTypeDef]
|
|
478
478
|
) -> EmptyResponseMetadataTypeDef:
|
|
479
479
|
"""
|
|
480
480
|
Disables the integration of an Amazon Web Services service (the service that is
|
|
@@ -485,7 +485,7 @@ class OrganizationsClient(BaseClient):
|
|
|
485
485
|
"""
|
|
486
486
|
|
|
487
487
|
def disable_policy_type(
|
|
488
|
-
self, **kwargs: Unpack[
|
|
488
|
+
self, **kwargs: Unpack[DisablePolicyTypeRequestTypeDef]
|
|
489
489
|
) -> DisablePolicyTypeResponseTypeDef:
|
|
490
490
|
"""
|
|
491
491
|
Disables an organizational policy type in a root.
|
|
@@ -495,7 +495,7 @@ class OrganizationsClient(BaseClient):
|
|
|
495
495
|
"""
|
|
496
496
|
|
|
497
497
|
def enable_aws_service_access(
|
|
498
|
-
self, **kwargs: Unpack[
|
|
498
|
+
self, **kwargs: Unpack[EnableAWSServiceAccessRequestTypeDef]
|
|
499
499
|
) -> EmptyResponseMetadataTypeDef:
|
|
500
500
|
"""
|
|
501
501
|
Provides an Amazon Web Services service (the service that is specified by
|
|
@@ -517,7 +517,7 @@ class OrganizationsClient(BaseClient):
|
|
|
517
517
|
"""
|
|
518
518
|
|
|
519
519
|
def enable_policy_type(
|
|
520
|
-
self, **kwargs: Unpack[
|
|
520
|
+
self, **kwargs: Unpack[EnablePolicyTypeRequestTypeDef]
|
|
521
521
|
) -> EnablePolicyTypeResponseTypeDef:
|
|
522
522
|
"""
|
|
523
523
|
Enables a policy type in a root.
|
|
@@ -527,7 +527,7 @@ class OrganizationsClient(BaseClient):
|
|
|
527
527
|
"""
|
|
528
528
|
|
|
529
529
|
def invite_account_to_organization(
|
|
530
|
-
self, **kwargs: Unpack[
|
|
530
|
+
self, **kwargs: Unpack[InviteAccountToOrganizationRequestTypeDef]
|
|
531
531
|
) -> InviteAccountToOrganizationResponseTypeDef:
|
|
532
532
|
"""
|
|
533
533
|
Sends an invitation to another account to join your organization as a member
|
|
@@ -546,7 +546,7 @@ class OrganizationsClient(BaseClient):
|
|
|
546
546
|
"""
|
|
547
547
|
|
|
548
548
|
def list_aws_service_access_for_organization(
|
|
549
|
-
self, **kwargs: Unpack[
|
|
549
|
+
self, **kwargs: Unpack[ListAWSServiceAccessForOrganizationRequestTypeDef]
|
|
550
550
|
) -> ListAWSServiceAccessForOrganizationResponseTypeDef:
|
|
551
551
|
"""
|
|
552
552
|
Returns a list of the Amazon Web Services services that you enabled to
|
|
@@ -557,7 +557,7 @@ class OrganizationsClient(BaseClient):
|
|
|
557
557
|
"""
|
|
558
558
|
|
|
559
559
|
def list_accounts(
|
|
560
|
-
self, **kwargs: Unpack[
|
|
560
|
+
self, **kwargs: Unpack[ListAccountsRequestTypeDef]
|
|
561
561
|
) -> ListAccountsResponseTypeDef:
|
|
562
562
|
"""
|
|
563
563
|
Lists all the accounts in the organization.
|
|
@@ -567,7 +567,7 @@ class OrganizationsClient(BaseClient):
|
|
|
567
567
|
"""
|
|
568
568
|
|
|
569
569
|
def list_accounts_for_parent(
|
|
570
|
-
self, **kwargs: Unpack[
|
|
570
|
+
self, **kwargs: Unpack[ListAccountsForParentRequestTypeDef]
|
|
571
571
|
) -> ListAccountsForParentResponseTypeDef:
|
|
572
572
|
"""
|
|
573
573
|
Lists the accounts in an organization that are contained by the specified
|
|
@@ -578,7 +578,7 @@ class OrganizationsClient(BaseClient):
|
|
|
578
578
|
"""
|
|
579
579
|
|
|
580
580
|
def list_children(
|
|
581
|
-
self, **kwargs: Unpack[
|
|
581
|
+
self, **kwargs: Unpack[ListChildrenRequestTypeDef]
|
|
582
582
|
) -> ListChildrenResponseTypeDef:
|
|
583
583
|
"""
|
|
584
584
|
Lists all of the organizational units (OUs) or accounts that are contained in
|
|
@@ -589,7 +589,7 @@ class OrganizationsClient(BaseClient):
|
|
|
589
589
|
"""
|
|
590
590
|
|
|
591
591
|
def list_create_account_status(
|
|
592
|
-
self, **kwargs: Unpack[
|
|
592
|
+
self, **kwargs: Unpack[ListCreateAccountStatusRequestTypeDef]
|
|
593
593
|
) -> ListCreateAccountStatusResponseTypeDef:
|
|
594
594
|
"""
|
|
595
595
|
Lists the account creation requests that match the specified status that is
|
|
@@ -600,7 +600,7 @@ class OrganizationsClient(BaseClient):
|
|
|
600
600
|
"""
|
|
601
601
|
|
|
602
602
|
def list_delegated_administrators(
|
|
603
|
-
self, **kwargs: Unpack[
|
|
603
|
+
self, **kwargs: Unpack[ListDelegatedAdministratorsRequestTypeDef]
|
|
604
604
|
) -> ListDelegatedAdministratorsResponseTypeDef:
|
|
605
605
|
"""
|
|
606
606
|
Lists the Amazon Web Services accounts that are designated as delegated
|
|
@@ -611,7 +611,7 @@ class OrganizationsClient(BaseClient):
|
|
|
611
611
|
"""
|
|
612
612
|
|
|
613
613
|
def list_delegated_services_for_account(
|
|
614
|
-
self, **kwargs: Unpack[
|
|
614
|
+
self, **kwargs: Unpack[ListDelegatedServicesForAccountRequestTypeDef]
|
|
615
615
|
) -> ListDelegatedServicesForAccountResponseTypeDef:
|
|
616
616
|
"""
|
|
617
617
|
List the Amazon Web Services services for which the specified account is a
|
|
@@ -622,7 +622,7 @@ class OrganizationsClient(BaseClient):
|
|
|
622
622
|
"""
|
|
623
623
|
|
|
624
624
|
def list_handshakes_for_account(
|
|
625
|
-
self, **kwargs: Unpack[
|
|
625
|
+
self, **kwargs: Unpack[ListHandshakesForAccountRequestTypeDef]
|
|
626
626
|
) -> ListHandshakesForAccountResponseTypeDef:
|
|
627
627
|
"""
|
|
628
628
|
Lists the current handshakes that are associated with the account of the
|
|
@@ -633,7 +633,7 @@ class OrganizationsClient(BaseClient):
|
|
|
633
633
|
"""
|
|
634
634
|
|
|
635
635
|
def list_handshakes_for_organization(
|
|
636
|
-
self, **kwargs: Unpack[
|
|
636
|
+
self, **kwargs: Unpack[ListHandshakesForOrganizationRequestTypeDef]
|
|
637
637
|
) -> ListHandshakesForOrganizationResponseTypeDef:
|
|
638
638
|
"""
|
|
639
639
|
Lists the handshakes that are associated with the organization that the
|
|
@@ -644,7 +644,7 @@ class OrganizationsClient(BaseClient):
|
|
|
644
644
|
"""
|
|
645
645
|
|
|
646
646
|
def list_organizational_units_for_parent(
|
|
647
|
-
self, **kwargs: Unpack[
|
|
647
|
+
self, **kwargs: Unpack[ListOrganizationalUnitsForParentRequestTypeDef]
|
|
648
648
|
) -> ListOrganizationalUnitsForParentResponseTypeDef:
|
|
649
649
|
"""
|
|
650
650
|
Lists the organizational units (OUs) in a parent organizational unit or root.
|
|
@@ -654,7 +654,7 @@ class OrganizationsClient(BaseClient):
|
|
|
654
654
|
"""
|
|
655
655
|
|
|
656
656
|
def list_parents(
|
|
657
|
-
self, **kwargs: Unpack[
|
|
657
|
+
self, **kwargs: Unpack[ListParentsRequestTypeDef]
|
|
658
658
|
) -> ListParentsResponseTypeDef:
|
|
659
659
|
"""
|
|
660
660
|
Lists the root or organizational units (OUs) that serve as the immediate parent
|
|
@@ -665,7 +665,7 @@ class OrganizationsClient(BaseClient):
|
|
|
665
665
|
"""
|
|
666
666
|
|
|
667
667
|
def list_policies(
|
|
668
|
-
self, **kwargs: Unpack[
|
|
668
|
+
self, **kwargs: Unpack[ListPoliciesRequestTypeDef]
|
|
669
669
|
) -> ListPoliciesResponseTypeDef:
|
|
670
670
|
"""
|
|
671
671
|
Retrieves the list of all policies in an organization of a specified type.
|
|
@@ -675,7 +675,7 @@ class OrganizationsClient(BaseClient):
|
|
|
675
675
|
"""
|
|
676
676
|
|
|
677
677
|
def list_policies_for_target(
|
|
678
|
-
self, **kwargs: Unpack[
|
|
678
|
+
self, **kwargs: Unpack[ListPoliciesForTargetRequestTypeDef]
|
|
679
679
|
) -> ListPoliciesForTargetResponseTypeDef:
|
|
680
680
|
"""
|
|
681
681
|
Lists the policies that are directly attached to the specified target root,
|
|
@@ -685,9 +685,7 @@ class OrganizationsClient(BaseClient):
|
|
|
685
685
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_organizations/client/#list_policies_for_target)
|
|
686
686
|
"""
|
|
687
687
|
|
|
688
|
-
def list_roots(
|
|
689
|
-
self, **kwargs: Unpack[ListRootsRequestRequestTypeDef]
|
|
690
|
-
) -> ListRootsResponseTypeDef:
|
|
688
|
+
def list_roots(self, **kwargs: Unpack[ListRootsRequestTypeDef]) -> ListRootsResponseTypeDef:
|
|
691
689
|
"""
|
|
692
690
|
Lists the roots that are defined in the current organization.
|
|
693
691
|
|
|
@@ -696,7 +694,7 @@ class OrganizationsClient(BaseClient):
|
|
|
696
694
|
"""
|
|
697
695
|
|
|
698
696
|
def list_tags_for_resource(
|
|
699
|
-
self, **kwargs: Unpack[
|
|
697
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
|
|
700
698
|
) -> ListTagsForResourceResponseTypeDef:
|
|
701
699
|
"""
|
|
702
700
|
Lists tags that are attached to the specified resource.
|
|
@@ -706,7 +704,7 @@ class OrganizationsClient(BaseClient):
|
|
|
706
704
|
"""
|
|
707
705
|
|
|
708
706
|
def list_targets_for_policy(
|
|
709
|
-
self, **kwargs: Unpack[
|
|
707
|
+
self, **kwargs: Unpack[ListTargetsForPolicyRequestTypeDef]
|
|
710
708
|
) -> ListTargetsForPolicyResponseTypeDef:
|
|
711
709
|
"""
|
|
712
710
|
Lists all the roots, organizational units (OUs), and accounts that the
|
|
@@ -717,7 +715,7 @@ class OrganizationsClient(BaseClient):
|
|
|
717
715
|
"""
|
|
718
716
|
|
|
719
717
|
def move_account(
|
|
720
|
-
self, **kwargs: Unpack[
|
|
718
|
+
self, **kwargs: Unpack[MoveAccountRequestTypeDef]
|
|
721
719
|
) -> EmptyResponseMetadataTypeDef:
|
|
722
720
|
"""
|
|
723
721
|
Moves an account from its current source parent root or organizational unit
|
|
@@ -728,7 +726,7 @@ class OrganizationsClient(BaseClient):
|
|
|
728
726
|
"""
|
|
729
727
|
|
|
730
728
|
def put_resource_policy(
|
|
731
|
-
self, **kwargs: Unpack[
|
|
729
|
+
self, **kwargs: Unpack[PutResourcePolicyRequestTypeDef]
|
|
732
730
|
) -> PutResourcePolicyResponseTypeDef:
|
|
733
731
|
"""
|
|
734
732
|
Creates or updates a resource policy.
|
|
@@ -738,7 +736,7 @@ class OrganizationsClient(BaseClient):
|
|
|
738
736
|
"""
|
|
739
737
|
|
|
740
738
|
def register_delegated_administrator(
|
|
741
|
-
self, **kwargs: Unpack[
|
|
739
|
+
self, **kwargs: Unpack[RegisterDelegatedAdministratorRequestTypeDef]
|
|
742
740
|
) -> EmptyResponseMetadataTypeDef:
|
|
743
741
|
"""
|
|
744
742
|
Enables the specified member account to administer the Organizations features
|
|
@@ -749,7 +747,7 @@ class OrganizationsClient(BaseClient):
|
|
|
749
747
|
"""
|
|
750
748
|
|
|
751
749
|
def remove_account_from_organization(
|
|
752
|
-
self, **kwargs: Unpack[
|
|
750
|
+
self, **kwargs: Unpack[RemoveAccountFromOrganizationRequestTypeDef]
|
|
753
751
|
) -> EmptyResponseMetadataTypeDef:
|
|
754
752
|
"""
|
|
755
753
|
Removes the specified account from the organization.
|
|
@@ -759,7 +757,7 @@ class OrganizationsClient(BaseClient):
|
|
|
759
757
|
"""
|
|
760
758
|
|
|
761
759
|
def tag_resource(
|
|
762
|
-
self, **kwargs: Unpack[
|
|
760
|
+
self, **kwargs: Unpack[TagResourceRequestTypeDef]
|
|
763
761
|
) -> EmptyResponseMetadataTypeDef:
|
|
764
762
|
"""
|
|
765
763
|
Adds one or more tags to the specified resource.
|
|
@@ -769,7 +767,7 @@ class OrganizationsClient(BaseClient):
|
|
|
769
767
|
"""
|
|
770
768
|
|
|
771
769
|
def untag_resource(
|
|
772
|
-
self, **kwargs: Unpack[
|
|
770
|
+
self, **kwargs: Unpack[UntagResourceRequestTypeDef]
|
|
773
771
|
) -> EmptyResponseMetadataTypeDef:
|
|
774
772
|
"""
|
|
775
773
|
Removes any tags with the specified keys from the specified resource.
|
|
@@ -779,7 +777,7 @@ class OrganizationsClient(BaseClient):
|
|
|
779
777
|
"""
|
|
780
778
|
|
|
781
779
|
def update_organizational_unit(
|
|
782
|
-
self, **kwargs: Unpack[
|
|
780
|
+
self, **kwargs: Unpack[UpdateOrganizationalUnitRequestTypeDef]
|
|
783
781
|
) -> UpdateOrganizationalUnitResponseTypeDef:
|
|
784
782
|
"""
|
|
785
783
|
Renames the specified organizational unit (OU).
|
|
@@ -789,7 +787,7 @@ class OrganizationsClient(BaseClient):
|
|
|
789
787
|
"""
|
|
790
788
|
|
|
791
789
|
def update_policy(
|
|
792
|
-
self, **kwargs: Unpack[
|
|
790
|
+
self, **kwargs: Unpack[UpdatePolicyRequestTypeDef]
|
|
793
791
|
) -> UpdatePolicyResponseTypeDef:
|
|
794
792
|
"""
|
|
795
793
|
Updates an existing policy with a new name, description, or content.
|