@aws-sdk/client-organizations 3.39.0 → 3.43.0
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.
- package/CHANGELOG.md +38 -0
- package/dist-cjs/endpoints.js +100 -13
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/endpoints.js +100 -13
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/OrganizationsClient.d.ts +8 -0
- package/dist-types/commands/AcceptHandshakeCommand.d.ts +1 -1
- package/dist-types/commands/AttachPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CancelHandshakeCommand.d.ts +1 -1
- package/dist-types/commands/CreateAccountCommand.d.ts +1 -1
- package/dist-types/commands/CreateGovCloudAccountCommand.d.ts +1 -1
- package/dist-types/commands/CreateOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/CreateOrganizationalUnitCommand.d.ts +1 -1
- package/dist-types/commands/CreatePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeclineHandshakeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteOrganizationalUnitCommand.d.ts +1 -1
- package/dist-types/commands/DeletePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterDelegatedAdministratorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccountCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCreateAccountStatusCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEffectivePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHandshakeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeOrganizationalUnitCommand.d.ts +1 -1
- package/dist-types/commands/DescribePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DetachPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DisableAWSServiceAccessCommand.d.ts +1 -1
- package/dist-types/commands/DisablePolicyTypeCommand.d.ts +1 -1
- package/dist-types/commands/EnableAWSServiceAccessCommand.d.ts +1 -1
- package/dist-types/commands/EnableAllFeaturesCommand.d.ts +1 -1
- package/dist-types/commands/EnablePolicyTypeCommand.d.ts +1 -1
- package/dist-types/commands/InviteAccountToOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/LeaveOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/ListAWSServiceAccessForOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ListAccountsForParentCommand.d.ts +1 -1
- package/dist-types/commands/ListChildrenCommand.d.ts +1 -1
- package/dist-types/commands/ListCreateAccountStatusCommand.d.ts +1 -1
- package/dist-types/commands/ListDelegatedAdministratorsCommand.d.ts +1 -1
- package/dist-types/commands/ListDelegatedServicesForAccountCommand.d.ts +1 -1
- package/dist-types/commands/ListHandshakesForAccountCommand.d.ts +1 -1
- package/dist-types/commands/ListHandshakesForOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/ListOrganizationalUnitsForParentCommand.d.ts +1 -1
- package/dist-types/commands/ListParentsCommand.d.ts +1 -1
- package/dist-types/commands/ListPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListPoliciesForTargetCommand.d.ts +1 -1
- package/dist-types/commands/ListRootsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTargetsForPolicyCommand.d.ts +1 -1
- package/dist-types/commands/MoveAccountCommand.d.ts +1 -1
- package/dist-types/commands/RegisterDelegatedAdministratorCommand.d.ts +1 -1
- package/dist-types/commands/RemoveAccountFromOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateOrganizationalUnitCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePolicyCommand.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/OrganizationsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
|
@@ -26,7 +26,7 @@ export interface DescribeHandshakeCommandOutput extends DescribeHandshakeRespons
|
|
|
26
26
|
*
|
|
27
27
|
* @see {@link DescribeHandshakeCommandInput} for command's `input` shape.
|
|
28
28
|
* @see {@link DescribeHandshakeCommandOutput} for command's `response` shape.
|
|
29
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
29
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
30
30
|
*
|
|
31
31
|
*/
|
|
32
32
|
export declare class DescribeHandshakeCommand extends $Command<DescribeHandshakeCommandInput, DescribeHandshakeCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -27,7 +27,7 @@ export interface DescribeOrganizationCommandOutput extends DescribeOrganizationR
|
|
|
27
27
|
*
|
|
28
28
|
* @see {@link DescribeOrganizationCommandInput} for command's `input` shape.
|
|
29
29
|
* @see {@link DescribeOrganizationCommandOutput} for command's `response` shape.
|
|
30
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
30
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
31
31
|
*
|
|
32
32
|
*/
|
|
33
33
|
export declare class DescribeOrganizationCommand extends $Command<DescribeOrganizationCommandInput, DescribeOrganizationCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface DescribeOrganizationalUnitCommandOutput extends DescribeOrganiz
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link DescribeOrganizationalUnitCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link DescribeOrganizationalUnitCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class DescribeOrganizationalUnitCommand extends $Command<DescribeOrganizationalUnitCommandInput, DescribeOrganizationalUnitCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface DescribePolicyCommandOutput extends DescribePolicyResponse, __M
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link DescribePolicyCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link DescribePolicyCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class DescribePolicyCommand extends $Command<DescribePolicyCommandInput, DescribePolicyCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -34,7 +34,7 @@ export interface DetachPolicyCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
*
|
|
35
35
|
* @see {@link DetachPolicyCommandInput} for command's `input` shape.
|
|
36
36
|
* @see {@link DetachPolicyCommandOutput} for command's `response` shape.
|
|
37
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
37
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
38
38
|
*
|
|
39
39
|
*/
|
|
40
40
|
export declare class DetachPolicyCommand extends $Command<DetachPolicyCommandInput, DetachPolicyCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -75,7 +75,7 @@ export interface DisableAWSServiceAccessCommandOutput extends __MetadataBearer {
|
|
|
75
75
|
*
|
|
76
76
|
* @see {@link DisableAWSServiceAccessCommandInput} for command's `input` shape.
|
|
77
77
|
* @see {@link DisableAWSServiceAccessCommandOutput} for command's `response` shape.
|
|
78
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
78
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
79
79
|
*
|
|
80
80
|
*/
|
|
81
81
|
export declare class DisableAWSServiceAccessCommand extends $Command<DisableAWSServiceAccessCommandInput, DisableAWSServiceAccessCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -30,7 +30,7 @@ export interface DisablePolicyTypeCommandOutput extends DisablePolicyTypeRespons
|
|
|
30
30
|
*
|
|
31
31
|
* @see {@link DisablePolicyTypeCommandInput} for command's `input` shape.
|
|
32
32
|
* @see {@link DisablePolicyTypeCommandOutput} for command's `response` shape.
|
|
33
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
33
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
export declare class DisablePolicyTypeCommand extends $Command<DisablePolicyTypeCommandInput, DisablePolicyTypeCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -38,7 +38,7 @@ export interface EnableAWSServiceAccessCommandOutput extends __MetadataBearer {
|
|
|
38
38
|
*
|
|
39
39
|
* @see {@link EnableAWSServiceAccessCommandInput} for command's `input` shape.
|
|
40
40
|
* @see {@link EnableAWSServiceAccessCommandOutput} for command's `response` shape.
|
|
41
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
41
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
42
42
|
*
|
|
43
43
|
*/
|
|
44
44
|
export declare class EnableAWSServiceAccessCommand extends $Command<EnableAWSServiceAccessCommandInput, EnableAWSServiceAccessCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -45,7 +45,7 @@ export interface EnableAllFeaturesCommandOutput extends EnableAllFeaturesRespons
|
|
|
45
45
|
*
|
|
46
46
|
* @see {@link EnableAllFeaturesCommandInput} for command's `input` shape.
|
|
47
47
|
* @see {@link EnableAllFeaturesCommandOutput} for command's `response` shape.
|
|
48
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
48
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
49
49
|
*
|
|
50
50
|
*/
|
|
51
51
|
export declare class EnableAllFeaturesCommand extends $Command<EnableAllFeaturesCommandInput, EnableAllFeaturesCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -30,7 +30,7 @@ export interface EnablePolicyTypeCommandOutput extends EnablePolicyTypeResponse,
|
|
|
30
30
|
*
|
|
31
31
|
* @see {@link EnablePolicyTypeCommandInput} for command's `input` shape.
|
|
32
32
|
* @see {@link EnablePolicyTypeCommandOutput} for command's `response` shape.
|
|
33
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
33
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
export declare class EnablePolicyTypeCommand extends $Command<EnablePolicyTypeCommandInput, EnablePolicyTypeCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -45,7 +45,7 @@ export interface InviteAccountToOrganizationCommandOutput extends InviteAccountT
|
|
|
45
45
|
*
|
|
46
46
|
* @see {@link InviteAccountToOrganizationCommandInput} for command's `input` shape.
|
|
47
47
|
* @see {@link InviteAccountToOrganizationCommandOutput} for command's `response` shape.
|
|
48
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
48
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
49
49
|
*
|
|
50
50
|
*/
|
|
51
51
|
export declare class InviteAccountToOrganizationCommand extends $Command<InviteAccountToOrganizationCommandInput, InviteAccountToOrganizationCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -83,7 +83,7 @@ export interface LeaveOrganizationCommandOutput extends __MetadataBearer {
|
|
|
83
83
|
*
|
|
84
84
|
* @see {@link LeaveOrganizationCommandInput} for command's `input` shape.
|
|
85
85
|
* @see {@link LeaveOrganizationCommandOutput} for command's `response` shape.
|
|
86
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
86
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
87
87
|
*
|
|
88
88
|
*/
|
|
89
89
|
export declare class LeaveOrganizationCommand extends $Command<LeaveOrganizationCommandInput, LeaveOrganizationCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -28,7 +28,7 @@ export interface ListAWSServiceAccessForOrganizationCommandOutput extends ListAW
|
|
|
28
28
|
*
|
|
29
29
|
* @see {@link ListAWSServiceAccessForOrganizationCommandInput} for command's `input` shape.
|
|
30
30
|
* @see {@link ListAWSServiceAccessForOrganizationCommandOutput} for command's `response` shape.
|
|
31
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
31
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
export declare class ListAWSServiceAccessForOrganizationCommand extends $Command<ListAWSServiceAccessForOrganizationCommandInput, ListAWSServiceAccessForOrganizationCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -31,7 +31,7 @@ export interface ListAccountsCommandOutput extends ListAccountsResponse, __Metad
|
|
|
31
31
|
*
|
|
32
32
|
* @see {@link ListAccountsCommandInput} for command's `input` shape.
|
|
33
33
|
* @see {@link ListAccountsCommandOutput} for command's `response` shape.
|
|
34
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
34
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
35
35
|
*
|
|
36
36
|
*/
|
|
37
37
|
export declare class ListAccountsCommand extends $Command<ListAccountsCommandInput, ListAccountsCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -34,7 +34,7 @@ export interface ListAccountsForParentCommandOutput extends ListAccountsForParen
|
|
|
34
34
|
*
|
|
35
35
|
* @see {@link ListAccountsForParentCommandInput} for command's `input` shape.
|
|
36
36
|
* @see {@link ListAccountsForParentCommandOutput} for command's `response` shape.
|
|
37
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
37
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
38
38
|
*
|
|
39
39
|
*/
|
|
40
40
|
export declare class ListAccountsForParentCommand extends $Command<ListAccountsForParentCommandInput, ListAccountsForParentCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -32,7 +32,7 @@ export interface ListChildrenCommandOutput extends ListChildrenResponse, __Metad
|
|
|
32
32
|
*
|
|
33
33
|
* @see {@link ListChildrenCommandInput} for command's `input` shape.
|
|
34
34
|
* @see {@link ListChildrenCommandOutput} for command's `response` shape.
|
|
35
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
35
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
38
38
|
export declare class ListChildrenCommand extends $Command<ListChildrenCommandInput, ListChildrenCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -31,7 +31,7 @@ export interface ListCreateAccountStatusCommandOutput extends ListCreateAccountS
|
|
|
31
31
|
*
|
|
32
32
|
* @see {@link ListCreateAccountStatusCommandInput} for command's `input` shape.
|
|
33
33
|
* @see {@link ListCreateAccountStatusCommandOutput} for command's `response` shape.
|
|
34
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
34
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
35
35
|
*
|
|
36
36
|
*/
|
|
37
37
|
export declare class ListCreateAccountStatusCommand extends $Command<ListCreateAccountStatusCommandInput, ListCreateAccountStatusCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface ListDelegatedAdministratorsCommandOutput extends ListDelegatedA
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link ListDelegatedAdministratorsCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link ListDelegatedAdministratorsCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class ListDelegatedAdministratorsCommand extends $Command<ListDelegatedAdministratorsCommandInput, ListDelegatedAdministratorsCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface ListDelegatedServicesForAccountCommandOutput extends ListDelega
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link ListDelegatedServicesForAccountCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link ListDelegatedServicesForAccountCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class ListDelegatedServicesForAccountCommand extends $Command<ListDelegatedServicesForAccountCommandInput, ListDelegatedServicesForAccountCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -33,7 +33,7 @@ export interface ListHandshakesForAccountCommandOutput extends ListHandshakesFor
|
|
|
33
33
|
*
|
|
34
34
|
* @see {@link ListHandshakesForAccountCommandInput} for command's `input` shape.
|
|
35
35
|
* @see {@link ListHandshakesForAccountCommandOutput} for command's `response` shape.
|
|
36
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
36
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
37
37
|
*
|
|
38
38
|
*/
|
|
39
39
|
export declare class ListHandshakesForAccountCommand extends $Command<ListHandshakesForAccountCommandInput, ListHandshakesForAccountCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -36,7 +36,7 @@ export interface ListHandshakesForOrganizationCommandOutput extends ListHandshak
|
|
|
36
36
|
*
|
|
37
37
|
* @see {@link ListHandshakesForOrganizationCommandInput} for command's `input` shape.
|
|
38
38
|
* @see {@link ListHandshakesForOrganizationCommandOutput} for command's `response` shape.
|
|
39
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
39
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
40
40
|
*
|
|
41
41
|
*/
|
|
42
42
|
export declare class ListHandshakesForOrganizationCommand extends $Command<ListHandshakesForOrganizationCommandInput, ListHandshakesForOrganizationCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -30,7 +30,7 @@ export interface ListOrganizationalUnitsForParentCommandOutput extends ListOrgan
|
|
|
30
30
|
*
|
|
31
31
|
* @see {@link ListOrganizationalUnitsForParentCommandInput} for command's `input` shape.
|
|
32
32
|
* @see {@link ListOrganizationalUnitsForParentCommandOutput} for command's `response` shape.
|
|
33
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
33
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
export declare class ListOrganizationalUnitsForParentCommand extends $Command<ListOrganizationalUnitsForParentCommandInput, ListOrganizationalUnitsForParentCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -35,7 +35,7 @@ export interface ListParentsCommandOutput extends ListParentsResponse, __Metadat
|
|
|
35
35
|
*
|
|
36
36
|
* @see {@link ListParentsCommandInput} for command's `input` shape.
|
|
37
37
|
* @see {@link ListParentsCommandOutput} for command's `response` shape.
|
|
38
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
38
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
39
39
|
*
|
|
40
40
|
*/
|
|
41
41
|
export declare class ListParentsCommand extends $Command<ListParentsCommandInput, ListParentsCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -30,7 +30,7 @@ export interface ListPoliciesCommandOutput extends ListPoliciesResponse, __Metad
|
|
|
30
30
|
*
|
|
31
31
|
* @see {@link ListPoliciesCommandInput} for command's `input` shape.
|
|
32
32
|
* @see {@link ListPoliciesCommandOutput} for command's `response` shape.
|
|
33
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
33
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
export declare class ListPoliciesCommand extends $Command<ListPoliciesCommandInput, ListPoliciesCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -32,7 +32,7 @@ export interface ListPoliciesForTargetCommandOutput extends ListPoliciesForTarge
|
|
|
32
32
|
*
|
|
33
33
|
* @see {@link ListPoliciesForTargetCommandInput} for command's `input` shape.
|
|
34
34
|
* @see {@link ListPoliciesForTargetCommandOutput} for command's `response` shape.
|
|
35
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
35
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
36
36
|
*
|
|
37
37
|
*/
|
|
38
38
|
export declare class ListPoliciesForTargetCommand extends $Command<ListPoliciesForTargetCommandInput, ListPoliciesForTargetCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -37,7 +37,7 @@ export interface ListRootsCommandOutput extends ListRootsResponse, __MetadataBea
|
|
|
37
37
|
*
|
|
38
38
|
* @see {@link ListRootsCommandInput} for command's `input` shape.
|
|
39
39
|
* @see {@link ListRootsCommandOutput} for command's `response` shape.
|
|
40
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
40
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
41
41
|
*
|
|
42
42
|
*/
|
|
43
43
|
export declare class ListRootsCommand extends $Command<ListRootsCommandInput, ListRootsCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -37,7 +37,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
37
37
|
*
|
|
38
38
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
39
39
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
40
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
40
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
41
41
|
*
|
|
42
42
|
*/
|
|
43
43
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -31,7 +31,7 @@ export interface ListTargetsForPolicyCommandOutput extends ListTargetsForPolicyR
|
|
|
31
31
|
*
|
|
32
32
|
* @see {@link ListTargetsForPolicyCommandInput} for command's `input` shape.
|
|
33
33
|
* @see {@link ListTargetsForPolicyCommandOutput} for command's `response` shape.
|
|
34
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
34
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
35
35
|
*
|
|
36
36
|
*/
|
|
37
37
|
export declare class ListTargetsForPolicyCommand extends $Command<ListTargetsForPolicyCommandInput, ListTargetsForPolicyCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface MoveAccountCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link MoveAccountCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link MoveAccountCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class MoveAccountCommand extends $Command<MoveAccountCommandInput, MoveAccountCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -28,7 +28,7 @@ export interface RegisterDelegatedAdministratorCommandOutput extends __MetadataB
|
|
|
28
28
|
*
|
|
29
29
|
* @see {@link RegisterDelegatedAdministratorCommandInput} for command's `input` shape.
|
|
30
30
|
* @see {@link RegisterDelegatedAdministratorCommandOutput} for command's `response` shape.
|
|
31
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
31
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
export declare class RegisterDelegatedAdministratorCommand extends $Command<RegisterDelegatedAdministratorCommandInput, RegisterDelegatedAdministratorCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -57,7 +57,7 @@ export interface RemoveAccountFromOrganizationCommandOutput extends __MetadataBe
|
|
|
57
57
|
*
|
|
58
58
|
* @see {@link RemoveAccountFromOrganizationCommandInput} for command's `input` shape.
|
|
59
59
|
* @see {@link RemoveAccountFromOrganizationCommandOutput} for command's `response` shape.
|
|
60
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
60
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
61
61
|
*
|
|
62
62
|
*/
|
|
63
63
|
export declare class RemoveAccountFromOrganizationCommand extends $Command<RemoveAccountFromOrganizationCommandInput, RemoveAccountFromOrganizationCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -36,7 +36,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
36
36
|
*
|
|
37
37
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
38
38
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
39
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
39
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
40
40
|
*
|
|
41
41
|
*/
|
|
42
42
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -36,7 +36,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
36
36
|
*
|
|
37
37
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
38
38
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
39
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
39
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
40
40
|
*
|
|
41
41
|
*/
|
|
42
42
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface UpdateOrganizationalUnitCommandOutput extends UpdateOrganizatio
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link UpdateOrganizationalUnitCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link UpdateOrganizationalUnitCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class UpdateOrganizationalUnitCommand extends $Command<UpdateOrganizationalUnitCommandInput, UpdateOrganizationalUnitCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface UpdatePolicyCommandOutput extends UpdatePolicyResponse, __Metad
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link UpdatePolicyCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link UpdatePolicyCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link OrganizationsClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class UpdatePolicyCommand extends $Command<UpdatePolicyCommandInput, UpdatePolicyCommandOutput, OrganizationsClientResolvedConfig> {
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: OrganizationsClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: OrganizationsClientConfig) => {
|
|
|
16
16
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
18
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
20
22
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
21
23
|
apiVersion: string;
|
|
@@ -18,6 +18,8 @@ export declare const getRuntimeConfig: (config: OrganizationsClientConfig) => {
|
|
|
18
18
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
19
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
20
|
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
23
|
serviceId: string;
|
|
22
24
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
@@ -89,6 +89,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
89
89
|
|
|
90
90
|
logger?: __Logger;
|
|
91
91
|
|
|
92
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
93
|
+
|
|
94
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
95
|
+
|
|
92
96
|
serviceId?: string;
|
|
93
97
|
|
|
94
98
|
region?: string | __Provider<string>;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: OrganizationsClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: OrganizationsClientConfig) => {
|
|
|
14
14
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
15
15
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
16
16
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
17
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
18
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
17
19
|
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
18
20
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
19
21
|
apiVersion: string;
|
|
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: OrganizationsClientConfig) => {
|
|
|
16
16
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
17
|
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
18
|
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
21
|
serviceId: string;
|
|
20
22
|
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
21
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-organizations",
|
|
3
3
|
"description": "AWS SDK for JavaScript Organizations Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.43.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
@@ -21,32 +21,32 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.43.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.40.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.41.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.40.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.40.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.40.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.40.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.40.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.40.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.40.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.40.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.40.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.40.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.40.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.40.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.40.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.40.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.41.0",
|
|
42
|
+
"@aws-sdk/types": "3.40.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.40.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.37.0",
|
|
45
45
|
"@aws-sdk/util-base64-node": "3.37.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.37.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.37.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.40.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.40.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.37.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.37.0",
|
|
52
52
|
"tslib": "^2.3.0"
|