@aws-sdk/client-controltower 3.511.0 → 3.514.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/README.md +81 -9
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/DisableBaselineCommand.js +1 -0
- package/dist-cjs/commands/EnableBaselineCommand.js +1 -0
- package/dist-cjs/commands/GetBaselineCommand.js +1 -0
- package/dist-cjs/commands/GetBaselineOperationCommand.js +1 -0
- package/dist-cjs/commands/GetEnabledBaselineCommand.js +1 -0
- package/dist-cjs/commands/ListBaselinesCommand.js +1 -0
- package/dist-cjs/commands/ListEnabledBaselinesCommand.js +1 -0
- package/dist-cjs/commands/ResetEnabledBaselineCommand.js +1 -0
- package/dist-cjs/commands/UpdateEnabledBaselineCommand.js +1 -0
- package/dist-cjs/index.js +638 -49
- package/dist-cjs/pagination/ListBaselinesPaginator.js +1 -0
- package/dist-cjs/pagination/ListEnabledBaselinesPaginator.js +1 -0
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/ControlTower.js +18 -0
- package/dist-es/ControlTowerClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/DisableBaselineCommand.js +24 -0
- package/dist-es/commands/EnableBaselineCommand.js +24 -0
- package/dist-es/commands/GetBaselineCommand.js +24 -0
- package/dist-es/commands/GetBaselineOperationCommand.js +24 -0
- package/dist-es/commands/GetEnabledBaselineCommand.js +24 -0
- package/dist-es/commands/ListBaselinesCommand.js +24 -0
- package/dist-es/commands/ListEnabledBaselinesCommand.js +24 -0
- package/dist-es/commands/ResetEnabledBaselineCommand.js +24 -0
- package/dist-es/commands/UpdateEnabledBaselineCommand.js +24 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +40 -29
- package/dist-es/pagination/ListBaselinesPaginator.js +4 -0
- package/dist-es/pagination/ListEnabledBaselinesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +310 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/ControlTower.d.ts +65 -2
- package/dist-types/ControlTowerClient.d.ts +26 -15
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateLandingZoneCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLandingZoneCommand.d.ts +1 -1
- package/dist-types/commands/DisableBaselineCommand.d.ts +79 -0
- package/dist-types/commands/DisableControlCommand.d.ts +2 -2
- package/dist-types/commands/EnableBaselineCommand.d.ts +91 -0
- package/dist-types/commands/EnableControlCommand.d.ts +1 -1
- package/dist-types/commands/GetBaselineCommand.d.ts +75 -0
- package/dist-types/commands/GetBaselineOperationCommand.d.ts +80 -0
- package/dist-types/commands/GetControlOperationCommand.d.ts +1 -1
- package/dist-types/commands/GetEnabledBaselineCommand.d.ts +88 -0
- package/dist-types/commands/GetEnabledControlCommand.d.ts +1 -1
- package/dist-types/commands/GetLandingZoneCommand.d.ts +1 -1
- package/dist-types/commands/GetLandingZoneOperationCommand.d.ts +1 -1
- package/dist-types/commands/ListBaselinesCommand.d.ts +78 -0
- package/dist-types/commands/ListEnabledBaselinesCommand.d.ts +91 -0
- package/dist-types/commands/ListEnabledControlsCommand.d.ts +1 -1
- package/dist-types/commands/ListLandingZonesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ResetEnabledBaselineCommand.d.ts +79 -0
- package/dist-types/commands/ResetLandingZoneCommand.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/UpdateEnabledBaselineCommand.d.ts +86 -0
- package/dist-types/commands/UpdateEnabledControlCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLandingZoneCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +541 -94
- package/dist-types/pagination/ListBaselinesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnabledBaselinesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/ControlTower.d.ts +153 -0
- package/dist-types/ts3.4/ControlTowerClient.d.ts +65 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/DisableBaselineCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/EnableBaselineCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/GetBaselineCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/GetBaselineOperationCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/GetEnabledBaselineCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/ListBaselinesCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/ListEnabledBaselinesCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/ResetEnabledBaselineCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/UpdateEnabledBaselineCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +151 -28
- package/dist-types/ts3.4/pagination/ListBaselinesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnabledBaselinesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListBaselinesCommandInput, ListBaselinesCommandOutput } from "../commands/ListBaselinesCommand";
|
|
3
|
+
import { ControlTowerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListBaselines: (config: ControlTowerPaginationConfiguration, input: ListBaselinesCommandInput, ...rest: any[]) => Paginator<ListBaselinesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEnabledBaselinesCommandInput, ListEnabledBaselinesCommandOutput } from "../commands/ListEnabledBaselinesCommand";
|
|
3
|
+
import { ControlTowerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListEnabledBaselines: (config: ControlTowerPaginationConfiguration, input: ListEnabledBaselinesCommandInput, ...rest: any[]) => Paginator<ListEnabledBaselinesCommandOutput>;
|
|
@@ -2,18 +2,27 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
|
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { CreateLandingZoneCommandInput, CreateLandingZoneCommandOutput } from "../commands/CreateLandingZoneCommand";
|
|
4
4
|
import { DeleteLandingZoneCommandInput, DeleteLandingZoneCommandOutput } from "../commands/DeleteLandingZoneCommand";
|
|
5
|
+
import { DisableBaselineCommandInput, DisableBaselineCommandOutput } from "../commands/DisableBaselineCommand";
|
|
5
6
|
import { DisableControlCommandInput, DisableControlCommandOutput } from "../commands/DisableControlCommand";
|
|
7
|
+
import { EnableBaselineCommandInput, EnableBaselineCommandOutput } from "../commands/EnableBaselineCommand";
|
|
6
8
|
import { EnableControlCommandInput, EnableControlCommandOutput } from "../commands/EnableControlCommand";
|
|
9
|
+
import { GetBaselineCommandInput, GetBaselineCommandOutput } from "../commands/GetBaselineCommand";
|
|
10
|
+
import { GetBaselineOperationCommandInput, GetBaselineOperationCommandOutput } from "../commands/GetBaselineOperationCommand";
|
|
7
11
|
import { GetControlOperationCommandInput, GetControlOperationCommandOutput } from "../commands/GetControlOperationCommand";
|
|
12
|
+
import { GetEnabledBaselineCommandInput, GetEnabledBaselineCommandOutput } from "../commands/GetEnabledBaselineCommand";
|
|
8
13
|
import { GetEnabledControlCommandInput, GetEnabledControlCommandOutput } from "../commands/GetEnabledControlCommand";
|
|
9
14
|
import { GetLandingZoneCommandInput, GetLandingZoneCommandOutput } from "../commands/GetLandingZoneCommand";
|
|
10
15
|
import { GetLandingZoneOperationCommandInput, GetLandingZoneOperationCommandOutput } from "../commands/GetLandingZoneOperationCommand";
|
|
16
|
+
import { ListBaselinesCommandInput, ListBaselinesCommandOutput } from "../commands/ListBaselinesCommand";
|
|
17
|
+
import { ListEnabledBaselinesCommandInput, ListEnabledBaselinesCommandOutput } from "../commands/ListEnabledBaselinesCommand";
|
|
11
18
|
import { ListEnabledControlsCommandInput, ListEnabledControlsCommandOutput } from "../commands/ListEnabledControlsCommand";
|
|
12
19
|
import { ListLandingZonesCommandInput, ListLandingZonesCommandOutput } from "../commands/ListLandingZonesCommand";
|
|
13
20
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
21
|
+
import { ResetEnabledBaselineCommandInput, ResetEnabledBaselineCommandOutput } from "../commands/ResetEnabledBaselineCommand";
|
|
14
22
|
import { ResetLandingZoneCommandInput, ResetLandingZoneCommandOutput } from "../commands/ResetLandingZoneCommand";
|
|
15
23
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
16
24
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
25
|
+
import { UpdateEnabledBaselineCommandInput, UpdateEnabledBaselineCommandOutput } from "../commands/UpdateEnabledBaselineCommand";
|
|
17
26
|
import { UpdateEnabledControlCommandInput, UpdateEnabledControlCommandOutput } from "../commands/UpdateEnabledControlCommand";
|
|
18
27
|
import { UpdateLandingZoneCommandInput, UpdateLandingZoneCommandOutput } from "../commands/UpdateLandingZoneCommand";
|
|
19
28
|
/**
|
|
@@ -24,18 +33,38 @@ export declare const se_CreateLandingZoneCommand: (input: CreateLandingZoneComma
|
|
|
24
33
|
* serializeAws_restJson1DeleteLandingZoneCommand
|
|
25
34
|
*/
|
|
26
35
|
export declare const se_DeleteLandingZoneCommand: (input: DeleteLandingZoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
/**
|
|
37
|
+
* serializeAws_restJson1DisableBaselineCommand
|
|
38
|
+
*/
|
|
39
|
+
export declare const se_DisableBaselineCommand: (input: DisableBaselineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
40
|
/**
|
|
28
41
|
* serializeAws_restJson1DisableControlCommand
|
|
29
42
|
*/
|
|
30
43
|
export declare const se_DisableControlCommand: (input: DisableControlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
/**
|
|
45
|
+
* serializeAws_restJson1EnableBaselineCommand
|
|
46
|
+
*/
|
|
47
|
+
export declare const se_EnableBaselineCommand: (input: EnableBaselineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
48
|
/**
|
|
32
49
|
* serializeAws_restJson1EnableControlCommand
|
|
33
50
|
*/
|
|
34
51
|
export declare const se_EnableControlCommand: (input: EnableControlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
/**
|
|
53
|
+
* serializeAws_restJson1GetBaselineCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const se_GetBaselineCommand: (input: GetBaselineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
/**
|
|
57
|
+
* serializeAws_restJson1GetBaselineOperationCommand
|
|
58
|
+
*/
|
|
59
|
+
export declare const se_GetBaselineOperationCommand: (input: GetBaselineOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
60
|
/**
|
|
36
61
|
* serializeAws_restJson1GetControlOperationCommand
|
|
37
62
|
*/
|
|
38
63
|
export declare const se_GetControlOperationCommand: (input: GetControlOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
/**
|
|
65
|
+
* serializeAws_restJson1GetEnabledBaselineCommand
|
|
66
|
+
*/
|
|
67
|
+
export declare const se_GetEnabledBaselineCommand: (input: GetEnabledBaselineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
68
|
/**
|
|
40
69
|
* serializeAws_restJson1GetEnabledControlCommand
|
|
41
70
|
*/
|
|
@@ -48,6 +77,14 @@ export declare const se_GetLandingZoneCommand: (input: GetLandingZoneCommandInpu
|
|
|
48
77
|
* serializeAws_restJson1GetLandingZoneOperationCommand
|
|
49
78
|
*/
|
|
50
79
|
export declare const se_GetLandingZoneOperationCommand: (input: GetLandingZoneOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
+
/**
|
|
81
|
+
* serializeAws_restJson1ListBaselinesCommand
|
|
82
|
+
*/
|
|
83
|
+
export declare const se_ListBaselinesCommand: (input: ListBaselinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
/**
|
|
85
|
+
* serializeAws_restJson1ListEnabledBaselinesCommand
|
|
86
|
+
*/
|
|
87
|
+
export declare const se_ListEnabledBaselinesCommand: (input: ListEnabledBaselinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
88
|
/**
|
|
52
89
|
* serializeAws_restJson1ListEnabledControlsCommand
|
|
53
90
|
*/
|
|
@@ -60,6 +97,10 @@ export declare const se_ListLandingZonesCommand: (input: ListLandingZonesCommand
|
|
|
60
97
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
61
98
|
*/
|
|
62
99
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
/**
|
|
101
|
+
* serializeAws_restJson1ResetEnabledBaselineCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const se_ResetEnabledBaselineCommand: (input: ResetEnabledBaselineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
104
|
/**
|
|
64
105
|
* serializeAws_restJson1ResetLandingZoneCommand
|
|
65
106
|
*/
|
|
@@ -72,6 +113,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
72
113
|
* serializeAws_restJson1UntagResourceCommand
|
|
73
114
|
*/
|
|
74
115
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_restJson1UpdateEnabledBaselineCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_UpdateEnabledBaselineCommand: (input: UpdateEnabledBaselineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
120
|
/**
|
|
76
121
|
* serializeAws_restJson1UpdateEnabledControlCommand
|
|
77
122
|
*/
|
|
@@ -88,18 +133,38 @@ export declare const de_CreateLandingZoneCommand: (output: __HttpResponse, conte
|
|
|
88
133
|
* deserializeAws_restJson1DeleteLandingZoneCommand
|
|
89
134
|
*/
|
|
90
135
|
export declare const de_DeleteLandingZoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLandingZoneCommandOutput>;
|
|
136
|
+
/**
|
|
137
|
+
* deserializeAws_restJson1DisableBaselineCommand
|
|
138
|
+
*/
|
|
139
|
+
export declare const de_DisableBaselineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableBaselineCommandOutput>;
|
|
91
140
|
/**
|
|
92
141
|
* deserializeAws_restJson1DisableControlCommand
|
|
93
142
|
*/
|
|
94
143
|
export declare const de_DisableControlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableControlCommandOutput>;
|
|
144
|
+
/**
|
|
145
|
+
* deserializeAws_restJson1EnableBaselineCommand
|
|
146
|
+
*/
|
|
147
|
+
export declare const de_EnableBaselineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableBaselineCommandOutput>;
|
|
95
148
|
/**
|
|
96
149
|
* deserializeAws_restJson1EnableControlCommand
|
|
97
150
|
*/
|
|
98
151
|
export declare const de_EnableControlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableControlCommandOutput>;
|
|
152
|
+
/**
|
|
153
|
+
* deserializeAws_restJson1GetBaselineCommand
|
|
154
|
+
*/
|
|
155
|
+
export declare const de_GetBaselineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBaselineCommandOutput>;
|
|
156
|
+
/**
|
|
157
|
+
* deserializeAws_restJson1GetBaselineOperationCommand
|
|
158
|
+
*/
|
|
159
|
+
export declare const de_GetBaselineOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBaselineOperationCommandOutput>;
|
|
99
160
|
/**
|
|
100
161
|
* deserializeAws_restJson1GetControlOperationCommand
|
|
101
162
|
*/
|
|
102
163
|
export declare const de_GetControlOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetControlOperationCommandOutput>;
|
|
164
|
+
/**
|
|
165
|
+
* deserializeAws_restJson1GetEnabledBaselineCommand
|
|
166
|
+
*/
|
|
167
|
+
export declare const de_GetEnabledBaselineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnabledBaselineCommandOutput>;
|
|
103
168
|
/**
|
|
104
169
|
* deserializeAws_restJson1GetEnabledControlCommand
|
|
105
170
|
*/
|
|
@@ -112,6 +177,14 @@ export declare const de_GetLandingZoneCommand: (output: __HttpResponse, context:
|
|
|
112
177
|
* deserializeAws_restJson1GetLandingZoneOperationCommand
|
|
113
178
|
*/
|
|
114
179
|
export declare const de_GetLandingZoneOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLandingZoneOperationCommandOutput>;
|
|
180
|
+
/**
|
|
181
|
+
* deserializeAws_restJson1ListBaselinesCommand
|
|
182
|
+
*/
|
|
183
|
+
export declare const de_ListBaselinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListBaselinesCommandOutput>;
|
|
184
|
+
/**
|
|
185
|
+
* deserializeAws_restJson1ListEnabledBaselinesCommand
|
|
186
|
+
*/
|
|
187
|
+
export declare const de_ListEnabledBaselinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnabledBaselinesCommandOutput>;
|
|
115
188
|
/**
|
|
116
189
|
* deserializeAws_restJson1ListEnabledControlsCommand
|
|
117
190
|
*/
|
|
@@ -124,6 +197,10 @@ export declare const de_ListLandingZonesCommand: (output: __HttpResponse, contex
|
|
|
124
197
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
125
198
|
*/
|
|
126
199
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
200
|
+
/**
|
|
201
|
+
* deserializeAws_restJson1ResetEnabledBaselineCommand
|
|
202
|
+
*/
|
|
203
|
+
export declare const de_ResetEnabledBaselineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetEnabledBaselineCommandOutput>;
|
|
127
204
|
/**
|
|
128
205
|
* deserializeAws_restJson1ResetLandingZoneCommand
|
|
129
206
|
*/
|
|
@@ -136,6 +213,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
136
213
|
* deserializeAws_restJson1UntagResourceCommand
|
|
137
214
|
*/
|
|
138
215
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
216
|
+
/**
|
|
217
|
+
* deserializeAws_restJson1UpdateEnabledBaselineCommand
|
|
218
|
+
*/
|
|
219
|
+
export declare const de_UpdateEnabledBaselineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEnabledBaselineCommandOutput>;
|
|
139
220
|
/**
|
|
140
221
|
* deserializeAws_restJson1UpdateEnabledControlCommand
|
|
141
222
|
*/
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -36,11 +36,13 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
|
|
|
36
36
|
}) => import("@smithy/types").EndpointV2;
|
|
37
37
|
tls?: boolean | undefined;
|
|
38
38
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
39
|
-
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlTowerHttpAuthSchemeProvider;
|
|
42
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
40
43
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
44
|
signingEscapePath?: boolean | undefined;
|
|
42
45
|
systemClockOffset?: number | undefined;
|
|
43
46
|
signingRegion?: string | undefined;
|
|
44
47
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
48
|
};
|
|
@@ -36,11 +36,13 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
|
|
|
36
36
|
}) => import("@smithy/types").EndpointV2;
|
|
37
37
|
tls?: boolean | undefined;
|
|
38
38
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
39
|
-
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlTowerHttpAuthSchemeProvider;
|
|
42
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
40
43
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
44
|
signingEscapePath?: boolean | undefined;
|
|
42
45
|
systemClockOffset?: number | undefined;
|
|
43
46
|
signingRegion?: string | undefined;
|
|
44
47
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
48
|
};
|
|
@@ -21,9 +21,9 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
|
|
|
21
21
|
serviceId: string;
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
24
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
25
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
26
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
27
27
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
28
28
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
29
29
|
logger: import("@smithy/types").Logger;
|
|
@@ -35,11 +35,13 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
|
|
|
35
35
|
}) => import("@smithy/types").EndpointV2;
|
|
36
36
|
tls?: boolean | undefined;
|
|
37
37
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
38
|
-
|
|
38
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
39
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
40
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlTowerHttpAuthSchemeProvider;
|
|
41
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
39
42
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
40
43
|
signingEscapePath?: boolean | undefined;
|
|
41
44
|
systemClockOffset?: number | undefined;
|
|
42
45
|
signingRegion?: string | undefined;
|
|
43
46
|
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
44
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
45
47
|
};
|
|
@@ -11,6 +11,8 @@ export declare const getRuntimeConfig: (config: ControlTowerClientConfig) => {
|
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
12
12
|
}) => import("@smithy/types").EndpointV2;
|
|
13
13
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ControlTowerHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
14
16
|
logger: import("@smithy/types").Logger;
|
|
15
17
|
serviceId: string;
|
|
16
18
|
urlParser: import("@smithy/types").UrlParser;
|
|
@@ -7,18 +7,38 @@ import {
|
|
|
7
7
|
DeleteLandingZoneCommandInput,
|
|
8
8
|
DeleteLandingZoneCommandOutput,
|
|
9
9
|
} from "./commands/DeleteLandingZoneCommand";
|
|
10
|
+
import {
|
|
11
|
+
DisableBaselineCommandInput,
|
|
12
|
+
DisableBaselineCommandOutput,
|
|
13
|
+
} from "./commands/DisableBaselineCommand";
|
|
10
14
|
import {
|
|
11
15
|
DisableControlCommandInput,
|
|
12
16
|
DisableControlCommandOutput,
|
|
13
17
|
} from "./commands/DisableControlCommand";
|
|
18
|
+
import {
|
|
19
|
+
EnableBaselineCommandInput,
|
|
20
|
+
EnableBaselineCommandOutput,
|
|
21
|
+
} from "./commands/EnableBaselineCommand";
|
|
14
22
|
import {
|
|
15
23
|
EnableControlCommandInput,
|
|
16
24
|
EnableControlCommandOutput,
|
|
17
25
|
} from "./commands/EnableControlCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetBaselineCommandInput,
|
|
28
|
+
GetBaselineCommandOutput,
|
|
29
|
+
} from "./commands/GetBaselineCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetBaselineOperationCommandInput,
|
|
32
|
+
GetBaselineOperationCommandOutput,
|
|
33
|
+
} from "./commands/GetBaselineOperationCommand";
|
|
18
34
|
import {
|
|
19
35
|
GetControlOperationCommandInput,
|
|
20
36
|
GetControlOperationCommandOutput,
|
|
21
37
|
} from "./commands/GetControlOperationCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetEnabledBaselineCommandInput,
|
|
40
|
+
GetEnabledBaselineCommandOutput,
|
|
41
|
+
} from "./commands/GetEnabledBaselineCommand";
|
|
22
42
|
import {
|
|
23
43
|
GetEnabledControlCommandInput,
|
|
24
44
|
GetEnabledControlCommandOutput,
|
|
@@ -31,6 +51,14 @@ import {
|
|
|
31
51
|
GetLandingZoneOperationCommandInput,
|
|
32
52
|
GetLandingZoneOperationCommandOutput,
|
|
33
53
|
} from "./commands/GetLandingZoneOperationCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListBaselinesCommandInput,
|
|
56
|
+
ListBaselinesCommandOutput,
|
|
57
|
+
} from "./commands/ListBaselinesCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListEnabledBaselinesCommandInput,
|
|
60
|
+
ListEnabledBaselinesCommandOutput,
|
|
61
|
+
} from "./commands/ListEnabledBaselinesCommand";
|
|
34
62
|
import {
|
|
35
63
|
ListEnabledControlsCommandInput,
|
|
36
64
|
ListEnabledControlsCommandOutput,
|
|
@@ -43,6 +71,10 @@ import {
|
|
|
43
71
|
ListTagsForResourceCommandInput,
|
|
44
72
|
ListTagsForResourceCommandOutput,
|
|
45
73
|
} from "./commands/ListTagsForResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
ResetEnabledBaselineCommandInput,
|
|
76
|
+
ResetEnabledBaselineCommandOutput,
|
|
77
|
+
} from "./commands/ResetEnabledBaselineCommand";
|
|
46
78
|
import {
|
|
47
79
|
ResetLandingZoneCommandInput,
|
|
48
80
|
ResetLandingZoneCommandOutput,
|
|
@@ -55,6 +87,10 @@ import {
|
|
|
55
87
|
UntagResourceCommandInput,
|
|
56
88
|
UntagResourceCommandOutput,
|
|
57
89
|
} from "./commands/UntagResourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
UpdateEnabledBaselineCommandInput,
|
|
92
|
+
UpdateEnabledBaselineCommandOutput,
|
|
93
|
+
} from "./commands/UpdateEnabledBaselineCommand";
|
|
58
94
|
import {
|
|
59
95
|
UpdateEnabledControlCommandInput,
|
|
60
96
|
UpdateEnabledControlCommandOutput,
|
|
@@ -91,6 +127,19 @@ export interface ControlTower {
|
|
|
91
127
|
options: __HttpHandlerOptions,
|
|
92
128
|
cb: (err: any, data?: DeleteLandingZoneCommandOutput) => void
|
|
93
129
|
): void;
|
|
130
|
+
disableBaseline(
|
|
131
|
+
args: DisableBaselineCommandInput,
|
|
132
|
+
options?: __HttpHandlerOptions
|
|
133
|
+
): Promise<DisableBaselineCommandOutput>;
|
|
134
|
+
disableBaseline(
|
|
135
|
+
args: DisableBaselineCommandInput,
|
|
136
|
+
cb: (err: any, data?: DisableBaselineCommandOutput) => void
|
|
137
|
+
): void;
|
|
138
|
+
disableBaseline(
|
|
139
|
+
args: DisableBaselineCommandInput,
|
|
140
|
+
options: __HttpHandlerOptions,
|
|
141
|
+
cb: (err: any, data?: DisableBaselineCommandOutput) => void
|
|
142
|
+
): void;
|
|
94
143
|
disableControl(
|
|
95
144
|
args: DisableControlCommandInput,
|
|
96
145
|
options?: __HttpHandlerOptions
|
|
@@ -104,6 +153,19 @@ export interface ControlTower {
|
|
|
104
153
|
options: __HttpHandlerOptions,
|
|
105
154
|
cb: (err: any, data?: DisableControlCommandOutput) => void
|
|
106
155
|
): void;
|
|
156
|
+
enableBaseline(
|
|
157
|
+
args: EnableBaselineCommandInput,
|
|
158
|
+
options?: __HttpHandlerOptions
|
|
159
|
+
): Promise<EnableBaselineCommandOutput>;
|
|
160
|
+
enableBaseline(
|
|
161
|
+
args: EnableBaselineCommandInput,
|
|
162
|
+
cb: (err: any, data?: EnableBaselineCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
enableBaseline(
|
|
165
|
+
args: EnableBaselineCommandInput,
|
|
166
|
+
options: __HttpHandlerOptions,
|
|
167
|
+
cb: (err: any, data?: EnableBaselineCommandOutput) => void
|
|
168
|
+
): void;
|
|
107
169
|
enableControl(
|
|
108
170
|
args: EnableControlCommandInput,
|
|
109
171
|
options?: __HttpHandlerOptions
|
|
@@ -117,6 +179,32 @@ export interface ControlTower {
|
|
|
117
179
|
options: __HttpHandlerOptions,
|
|
118
180
|
cb: (err: any, data?: EnableControlCommandOutput) => void
|
|
119
181
|
): void;
|
|
182
|
+
getBaseline(
|
|
183
|
+
args: GetBaselineCommandInput,
|
|
184
|
+
options?: __HttpHandlerOptions
|
|
185
|
+
): Promise<GetBaselineCommandOutput>;
|
|
186
|
+
getBaseline(
|
|
187
|
+
args: GetBaselineCommandInput,
|
|
188
|
+
cb: (err: any, data?: GetBaselineCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
getBaseline(
|
|
191
|
+
args: GetBaselineCommandInput,
|
|
192
|
+
options: __HttpHandlerOptions,
|
|
193
|
+
cb: (err: any, data?: GetBaselineCommandOutput) => void
|
|
194
|
+
): void;
|
|
195
|
+
getBaselineOperation(
|
|
196
|
+
args: GetBaselineOperationCommandInput,
|
|
197
|
+
options?: __HttpHandlerOptions
|
|
198
|
+
): Promise<GetBaselineOperationCommandOutput>;
|
|
199
|
+
getBaselineOperation(
|
|
200
|
+
args: GetBaselineOperationCommandInput,
|
|
201
|
+
cb: (err: any, data?: GetBaselineOperationCommandOutput) => void
|
|
202
|
+
): void;
|
|
203
|
+
getBaselineOperation(
|
|
204
|
+
args: GetBaselineOperationCommandInput,
|
|
205
|
+
options: __HttpHandlerOptions,
|
|
206
|
+
cb: (err: any, data?: GetBaselineOperationCommandOutput) => void
|
|
207
|
+
): void;
|
|
120
208
|
getControlOperation(
|
|
121
209
|
args: GetControlOperationCommandInput,
|
|
122
210
|
options?: __HttpHandlerOptions
|
|
@@ -130,6 +218,19 @@ export interface ControlTower {
|
|
|
130
218
|
options: __HttpHandlerOptions,
|
|
131
219
|
cb: (err: any, data?: GetControlOperationCommandOutput) => void
|
|
132
220
|
): void;
|
|
221
|
+
getEnabledBaseline(
|
|
222
|
+
args: GetEnabledBaselineCommandInput,
|
|
223
|
+
options?: __HttpHandlerOptions
|
|
224
|
+
): Promise<GetEnabledBaselineCommandOutput>;
|
|
225
|
+
getEnabledBaseline(
|
|
226
|
+
args: GetEnabledBaselineCommandInput,
|
|
227
|
+
cb: (err: any, data?: GetEnabledBaselineCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
getEnabledBaseline(
|
|
230
|
+
args: GetEnabledBaselineCommandInput,
|
|
231
|
+
options: __HttpHandlerOptions,
|
|
232
|
+
cb: (err: any, data?: GetEnabledBaselineCommandOutput) => void
|
|
233
|
+
): void;
|
|
133
234
|
getEnabledControl(
|
|
134
235
|
args: GetEnabledControlCommandInput,
|
|
135
236
|
options?: __HttpHandlerOptions
|
|
@@ -169,6 +270,32 @@ export interface ControlTower {
|
|
|
169
270
|
options: __HttpHandlerOptions,
|
|
170
271
|
cb: (err: any, data?: GetLandingZoneOperationCommandOutput) => void
|
|
171
272
|
): void;
|
|
273
|
+
listBaselines(
|
|
274
|
+
args: ListBaselinesCommandInput,
|
|
275
|
+
options?: __HttpHandlerOptions
|
|
276
|
+
): Promise<ListBaselinesCommandOutput>;
|
|
277
|
+
listBaselines(
|
|
278
|
+
args: ListBaselinesCommandInput,
|
|
279
|
+
cb: (err: any, data?: ListBaselinesCommandOutput) => void
|
|
280
|
+
): void;
|
|
281
|
+
listBaselines(
|
|
282
|
+
args: ListBaselinesCommandInput,
|
|
283
|
+
options: __HttpHandlerOptions,
|
|
284
|
+
cb: (err: any, data?: ListBaselinesCommandOutput) => void
|
|
285
|
+
): void;
|
|
286
|
+
listEnabledBaselines(
|
|
287
|
+
args: ListEnabledBaselinesCommandInput,
|
|
288
|
+
options?: __HttpHandlerOptions
|
|
289
|
+
): Promise<ListEnabledBaselinesCommandOutput>;
|
|
290
|
+
listEnabledBaselines(
|
|
291
|
+
args: ListEnabledBaselinesCommandInput,
|
|
292
|
+
cb: (err: any, data?: ListEnabledBaselinesCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
listEnabledBaselines(
|
|
295
|
+
args: ListEnabledBaselinesCommandInput,
|
|
296
|
+
options: __HttpHandlerOptions,
|
|
297
|
+
cb: (err: any, data?: ListEnabledBaselinesCommandOutput) => void
|
|
298
|
+
): void;
|
|
172
299
|
listEnabledControls(
|
|
173
300
|
args: ListEnabledControlsCommandInput,
|
|
174
301
|
options?: __HttpHandlerOptions
|
|
@@ -208,6 +335,19 @@ export interface ControlTower {
|
|
|
208
335
|
options: __HttpHandlerOptions,
|
|
209
336
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
210
337
|
): void;
|
|
338
|
+
resetEnabledBaseline(
|
|
339
|
+
args: ResetEnabledBaselineCommandInput,
|
|
340
|
+
options?: __HttpHandlerOptions
|
|
341
|
+
): Promise<ResetEnabledBaselineCommandOutput>;
|
|
342
|
+
resetEnabledBaseline(
|
|
343
|
+
args: ResetEnabledBaselineCommandInput,
|
|
344
|
+
cb: (err: any, data?: ResetEnabledBaselineCommandOutput) => void
|
|
345
|
+
): void;
|
|
346
|
+
resetEnabledBaseline(
|
|
347
|
+
args: ResetEnabledBaselineCommandInput,
|
|
348
|
+
options: __HttpHandlerOptions,
|
|
349
|
+
cb: (err: any, data?: ResetEnabledBaselineCommandOutput) => void
|
|
350
|
+
): void;
|
|
211
351
|
resetLandingZone(
|
|
212
352
|
args: ResetLandingZoneCommandInput,
|
|
213
353
|
options?: __HttpHandlerOptions
|
|
@@ -247,6 +387,19 @@ export interface ControlTower {
|
|
|
247
387
|
options: __HttpHandlerOptions,
|
|
248
388
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
249
389
|
): void;
|
|
390
|
+
updateEnabledBaseline(
|
|
391
|
+
args: UpdateEnabledBaselineCommandInput,
|
|
392
|
+
options?: __HttpHandlerOptions
|
|
393
|
+
): Promise<UpdateEnabledBaselineCommandOutput>;
|
|
394
|
+
updateEnabledBaseline(
|
|
395
|
+
args: UpdateEnabledBaselineCommandInput,
|
|
396
|
+
cb: (err: any, data?: UpdateEnabledBaselineCommandOutput) => void
|
|
397
|
+
): void;
|
|
398
|
+
updateEnabledBaseline(
|
|
399
|
+
args: UpdateEnabledBaselineCommandInput,
|
|
400
|
+
options: __HttpHandlerOptions,
|
|
401
|
+
cb: (err: any, data?: UpdateEnabledBaselineCommandOutput) => void
|
|
402
|
+
): void;
|
|
250
403
|
updateEnabledControl(
|
|
251
404
|
args: UpdateEnabledControlCommandInput,
|
|
252
405
|
options?: __HttpHandlerOptions
|