@aws-sdk/client-controltower 3.454.0 → 3.459.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 +95 -31
- package/dist-cjs/ControlTower.js +16 -0
- package/dist-cjs/commands/CreateLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/DeleteLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/GetLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/GetLandingZoneOperationCommand.js +51 -0
- package/dist-cjs/commands/ListLandingZonesCommand.js +51 -0
- package/dist-cjs/commands/ResetLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/UpdateEnabledControlCommand.js +51 -0
- package/dist-cjs/commands/UpdateLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +22 -1
- package/dist-cjs/pagination/ListLandingZonesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +682 -56
- package/dist-es/ControlTower.js +16 -0
- package/dist-es/commands/CreateLandingZoneCommand.js +47 -0
- package/dist-es/commands/DeleteLandingZoneCommand.js +47 -0
- package/dist-es/commands/GetLandingZoneCommand.js +47 -0
- package/dist-es/commands/GetLandingZoneOperationCommand.js +47 -0
- package/dist-es/commands/ListLandingZonesCommand.js +47 -0
- package/dist-es/commands/ResetLandingZoneCommand.js +47 -0
- package/dist-es/commands/UpdateEnabledControlCommand.js +47 -0
- package/dist-es/commands/UpdateLandingZoneCommand.js +47 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +21 -0
- package/dist-es/pagination/ListLandingZonesPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +659 -49
- package/dist-types/ControlTower.d.ts +72 -16
- package/dist-types/ControlTowerClient.d.ts +26 -18
- package/dist-types/commands/CreateLandingZoneCommand.d.ts +94 -0
- package/dist-types/commands/DeleteLandingZoneCommand.d.ts +92 -0
- package/dist-types/commands/DisableControlCommand.d.ts +9 -9
- package/dist-types/commands/EnableControlCommand.d.ts +15 -9
- package/dist-types/commands/GetControlOperationCommand.d.ts +6 -6
- package/dist-types/commands/GetEnabledControlCommand.d.ts +14 -8
- package/dist-types/commands/GetLandingZoneCommand.d.ts +97 -0
- package/dist-types/commands/GetLandingZoneOperationCommand.d.ts +95 -0
- package/dist-types/commands/ListEnabledControlsCommand.d.ts +9 -9
- package/dist-types/commands/ListLandingZonesCommand.d.ts +93 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -4
- package/dist-types/commands/ResetLandingZoneCommand.d.ts +92 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UpdateEnabledControlCommand.d.ts +107 -0
- package/dist-types/commands/UpdateLandingZoneCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/index.d.ts +16 -16
- package/dist-types/models/models_0.d.ts +472 -29
- package/dist-types/pagination/ListLandingZonesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +72 -0
- package/dist-types/ts3.4/ControlTower.d.ts +136 -0
- package/dist-types/ts3.4/ControlTowerClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetLandingZoneCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetLandingZoneOperationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListLandingZonesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ResetLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateEnabledControlCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +117 -0
- package/dist-types/ts3.4/pagination/ListLandingZonesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
- package/package.json +3 -3
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ControlTowerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ControlTowerClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateEnabledControlInput,
|
|
16
|
+
UpdateEnabledControlOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateEnabledControlCommandInput
|
|
20
|
+
extends UpdateEnabledControlInput {}
|
|
21
|
+
export interface UpdateEnabledControlCommandOutput
|
|
22
|
+
extends UpdateEnabledControlOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateEnabledControlCommand extends $Command<
|
|
25
|
+
UpdateEnabledControlCommandInput,
|
|
26
|
+
UpdateEnabledControlCommandOutput,
|
|
27
|
+
ControlTowerClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateEnabledControlCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateEnabledControlCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateEnabledControlCommandInput,
|
|
38
|
+
UpdateEnabledControlCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ControlTowerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ControlTowerClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateLandingZoneInput,
|
|
16
|
+
UpdateLandingZoneOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateLandingZoneCommandInput extends UpdateLandingZoneInput {}
|
|
20
|
+
export interface UpdateLandingZoneCommandOutput
|
|
21
|
+
extends UpdateLandingZoneOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateLandingZoneCommand extends $Command<
|
|
24
|
+
UpdateLandingZoneCommandInput,
|
|
25
|
+
UpdateLandingZoneCommandOutput,
|
|
26
|
+
ControlTowerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateLandingZoneCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateLandingZoneCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateLandingZoneCommandInput, UpdateLandingZoneCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
export * from "./CreateLandingZoneCommand";
|
|
2
|
+
export * from "./DeleteLandingZoneCommand";
|
|
1
3
|
export * from "./DisableControlCommand";
|
|
2
4
|
export * from "./EnableControlCommand";
|
|
3
5
|
export * from "./GetControlOperationCommand";
|
|
4
6
|
export * from "./GetEnabledControlCommand";
|
|
7
|
+
export * from "./GetLandingZoneCommand";
|
|
8
|
+
export * from "./GetLandingZoneOperationCommand";
|
|
5
9
|
export * from "./ListEnabledControlsCommand";
|
|
10
|
+
export * from "./ListLandingZonesCommand";
|
|
6
11
|
export * from "./ListTagsForResourceCommand";
|
|
12
|
+
export * from "./ResetLandingZoneCommand";
|
|
7
13
|
export * from "./TagResourceCommand";
|
|
8
14
|
export * from "./UntagResourceCommand";
|
|
15
|
+
export * from "./UpdateEnabledControlCommand";
|
|
16
|
+
export * from "./UpdateLandingZoneCommand";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
3
|
import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException";
|
|
3
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
5
|
readonly name: "AccessDeniedException";
|
|
@@ -61,10 +62,15 @@ export declare class ValidationException extends __BaseException {
|
|
|
61
62
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
62
63
|
);
|
|
63
64
|
}
|
|
65
|
+
export interface EnabledControlParameter {
|
|
66
|
+
key: string | undefined;
|
|
67
|
+
value: __DocumentType | undefined;
|
|
68
|
+
}
|
|
64
69
|
export interface EnableControlInput {
|
|
65
70
|
controlIdentifier: string | undefined;
|
|
66
71
|
targetIdentifier: string | undefined;
|
|
67
72
|
tags?: Record<string, string>;
|
|
73
|
+
parameters?: EnabledControlParameter[];
|
|
68
74
|
}
|
|
69
75
|
export interface EnableControlOutput {
|
|
70
76
|
operationIdentifier: string | undefined;
|
|
@@ -76,6 +82,7 @@ export interface GetControlOperationInput {
|
|
|
76
82
|
export declare const ControlOperationType: {
|
|
77
83
|
readonly DISABLE_CONTROL: "DISABLE_CONTROL";
|
|
78
84
|
readonly ENABLE_CONTROL: "ENABLE_CONTROL";
|
|
85
|
+
readonly UPDATE_ENABLED_CONTROL: "UPDATE_ENABLED_CONTROL";
|
|
79
86
|
};
|
|
80
87
|
export type ControlOperationType =
|
|
81
88
|
(typeof ControlOperationType)[keyof typeof ControlOperationType];
|
|
@@ -109,6 +116,10 @@ export type DriftStatus = (typeof DriftStatus)[keyof typeof DriftStatus];
|
|
|
109
116
|
export interface DriftStatusSummary {
|
|
110
117
|
driftStatus?: DriftStatus;
|
|
111
118
|
}
|
|
119
|
+
export interface EnabledControlParameterSummary {
|
|
120
|
+
key: string | undefined;
|
|
121
|
+
value: __DocumentType | undefined;
|
|
122
|
+
}
|
|
112
123
|
export declare const EnablementStatus: {
|
|
113
124
|
readonly FAILED: "FAILED";
|
|
114
125
|
readonly SUCCEEDED: "SUCCEEDED";
|
|
@@ -130,10 +141,109 @@ export interface EnabledControlDetails {
|
|
|
130
141
|
targetRegions?: Region[];
|
|
131
142
|
statusSummary?: EnablementStatusSummary;
|
|
132
143
|
driftStatusSummary?: DriftStatusSummary;
|
|
144
|
+
parameters?: EnabledControlParameterSummary[];
|
|
133
145
|
}
|
|
134
146
|
export interface GetEnabledControlOutput {
|
|
135
147
|
enabledControlDetails: EnabledControlDetails | undefined;
|
|
136
148
|
}
|
|
149
|
+
export interface CreateLandingZoneInput {
|
|
150
|
+
version: string | undefined;
|
|
151
|
+
manifest: __DocumentType | undefined;
|
|
152
|
+
tags?: Record<string, string>;
|
|
153
|
+
}
|
|
154
|
+
export interface CreateLandingZoneOutput {
|
|
155
|
+
arn: string | undefined;
|
|
156
|
+
operationIdentifier: string | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface DeleteLandingZoneInput {
|
|
159
|
+
landingZoneIdentifier: string | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface DeleteLandingZoneOutput {
|
|
162
|
+
operationIdentifier: string | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface GetLandingZoneInput {
|
|
165
|
+
landingZoneIdentifier: string | undefined;
|
|
166
|
+
}
|
|
167
|
+
export declare const LandingZoneDriftStatus: {
|
|
168
|
+
readonly DRIFTED: "DRIFTED";
|
|
169
|
+
readonly IN_SYNC: "IN_SYNC";
|
|
170
|
+
};
|
|
171
|
+
export type LandingZoneDriftStatus =
|
|
172
|
+
(typeof LandingZoneDriftStatus)[keyof typeof LandingZoneDriftStatus];
|
|
173
|
+
export interface LandingZoneDriftStatusSummary {
|
|
174
|
+
status?: LandingZoneDriftStatus;
|
|
175
|
+
}
|
|
176
|
+
export declare const LandingZoneStatus: {
|
|
177
|
+
readonly ACTIVE: "ACTIVE";
|
|
178
|
+
readonly FAILED: "FAILED";
|
|
179
|
+
readonly PROCESSING: "PROCESSING";
|
|
180
|
+
};
|
|
181
|
+
export type LandingZoneStatus =
|
|
182
|
+
(typeof LandingZoneStatus)[keyof typeof LandingZoneStatus];
|
|
183
|
+
export interface LandingZoneDetail {
|
|
184
|
+
version: string | undefined;
|
|
185
|
+
manifest: __DocumentType | undefined;
|
|
186
|
+
arn?: string;
|
|
187
|
+
status?: LandingZoneStatus;
|
|
188
|
+
latestAvailableVersion?: string;
|
|
189
|
+
driftStatus?: LandingZoneDriftStatusSummary;
|
|
190
|
+
}
|
|
191
|
+
export interface GetLandingZoneOutput {
|
|
192
|
+
landingZone: LandingZoneDetail | undefined;
|
|
193
|
+
}
|
|
194
|
+
export interface GetLandingZoneOperationInput {
|
|
195
|
+
operationIdentifier: string | undefined;
|
|
196
|
+
}
|
|
197
|
+
export declare const LandingZoneOperationType: {
|
|
198
|
+
readonly CREATE: "CREATE";
|
|
199
|
+
readonly DELETE: "DELETE";
|
|
200
|
+
readonly RESET: "RESET";
|
|
201
|
+
readonly UPDATE: "UPDATE";
|
|
202
|
+
};
|
|
203
|
+
export type LandingZoneOperationType =
|
|
204
|
+
(typeof LandingZoneOperationType)[keyof typeof LandingZoneOperationType];
|
|
205
|
+
export declare const LandingZoneOperationStatus: {
|
|
206
|
+
readonly FAILED: "FAILED";
|
|
207
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
208
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
209
|
+
};
|
|
210
|
+
export type LandingZoneOperationStatus =
|
|
211
|
+
(typeof LandingZoneOperationStatus)[keyof typeof LandingZoneOperationStatus];
|
|
212
|
+
export interface LandingZoneOperationDetail {
|
|
213
|
+
operationType?: LandingZoneOperationType;
|
|
214
|
+
startTime?: Date;
|
|
215
|
+
endTime?: Date;
|
|
216
|
+
status?: LandingZoneOperationStatus;
|
|
217
|
+
statusMessage?: string;
|
|
218
|
+
}
|
|
219
|
+
export interface GetLandingZoneOperationOutput {
|
|
220
|
+
operationDetails: LandingZoneOperationDetail | undefined;
|
|
221
|
+
}
|
|
222
|
+
export interface ListLandingZonesInput {
|
|
223
|
+
nextToken?: string;
|
|
224
|
+
maxResults?: number;
|
|
225
|
+
}
|
|
226
|
+
export interface LandingZoneSummary {
|
|
227
|
+
arn?: string;
|
|
228
|
+
}
|
|
229
|
+
export interface ListLandingZonesOutput {
|
|
230
|
+
landingZones: LandingZoneSummary[] | undefined;
|
|
231
|
+
nextToken?: string;
|
|
232
|
+
}
|
|
233
|
+
export interface ResetLandingZoneInput {
|
|
234
|
+
landingZoneIdentifier: string | undefined;
|
|
235
|
+
}
|
|
236
|
+
export interface ResetLandingZoneOutput {
|
|
237
|
+
operationIdentifier: string | undefined;
|
|
238
|
+
}
|
|
239
|
+
export interface UpdateLandingZoneInput {
|
|
240
|
+
version: string | undefined;
|
|
241
|
+
manifest: __DocumentType | undefined;
|
|
242
|
+
landingZoneIdentifier: string | undefined;
|
|
243
|
+
}
|
|
244
|
+
export interface UpdateLandingZoneOutput {
|
|
245
|
+
operationIdentifier: string | undefined;
|
|
246
|
+
}
|
|
137
247
|
export interface ListEnabledControlsInput {
|
|
138
248
|
targetIdentifier: string | undefined;
|
|
139
249
|
nextToken?: string;
|
|
@@ -166,3 +276,10 @@ export interface UntagResourceInput {
|
|
|
166
276
|
tagKeys: string[] | undefined;
|
|
167
277
|
}
|
|
168
278
|
export interface UntagResourceOutput {}
|
|
279
|
+
export interface UpdateEnabledControlInput {
|
|
280
|
+
parameters: EnabledControlParameter[] | undefined;
|
|
281
|
+
enabledControlIdentifier: string | undefined;
|
|
282
|
+
}
|
|
283
|
+
export interface UpdateEnabledControlOutput {
|
|
284
|
+
operationIdentifier: string | undefined;
|
|
285
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListLandingZonesCommandInput,
|
|
4
|
+
ListLandingZonesCommandOutput,
|
|
5
|
+
} from "../commands/ListLandingZonesCommand";
|
|
6
|
+
import { ControlTowerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListLandingZones(
|
|
8
|
+
config: ControlTowerPaginationConfiguration,
|
|
9
|
+
input: ListLandingZonesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListLandingZonesCommandOutput>;
|
|
@@ -3,6 +3,14 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateLandingZoneCommandInput,
|
|
8
|
+
CreateLandingZoneCommandOutput,
|
|
9
|
+
} from "../commands/CreateLandingZoneCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteLandingZoneCommandInput,
|
|
12
|
+
DeleteLandingZoneCommandOutput,
|
|
13
|
+
} from "../commands/DeleteLandingZoneCommand";
|
|
6
14
|
import {
|
|
7
15
|
DisableControlCommandInput,
|
|
8
16
|
DisableControlCommandOutput,
|
|
@@ -19,14 +27,30 @@ import {
|
|
|
19
27
|
GetEnabledControlCommandInput,
|
|
20
28
|
GetEnabledControlCommandOutput,
|
|
21
29
|
} from "../commands/GetEnabledControlCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetLandingZoneCommandInput,
|
|
32
|
+
GetLandingZoneCommandOutput,
|
|
33
|
+
} from "../commands/GetLandingZoneCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetLandingZoneOperationCommandInput,
|
|
36
|
+
GetLandingZoneOperationCommandOutput,
|
|
37
|
+
} from "../commands/GetLandingZoneOperationCommand";
|
|
22
38
|
import {
|
|
23
39
|
ListEnabledControlsCommandInput,
|
|
24
40
|
ListEnabledControlsCommandOutput,
|
|
25
41
|
} from "../commands/ListEnabledControlsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListLandingZonesCommandInput,
|
|
44
|
+
ListLandingZonesCommandOutput,
|
|
45
|
+
} from "../commands/ListLandingZonesCommand";
|
|
26
46
|
import {
|
|
27
47
|
ListTagsForResourceCommandInput,
|
|
28
48
|
ListTagsForResourceCommandOutput,
|
|
29
49
|
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
ResetLandingZoneCommandInput,
|
|
52
|
+
ResetLandingZoneCommandOutput,
|
|
53
|
+
} from "../commands/ResetLandingZoneCommand";
|
|
30
54
|
import {
|
|
31
55
|
TagResourceCommandInput,
|
|
32
56
|
TagResourceCommandOutput,
|
|
@@ -35,6 +59,22 @@ import {
|
|
|
35
59
|
UntagResourceCommandInput,
|
|
36
60
|
UntagResourceCommandOutput,
|
|
37
61
|
} from "../commands/UntagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateEnabledControlCommandInput,
|
|
64
|
+
UpdateEnabledControlCommandOutput,
|
|
65
|
+
} from "../commands/UpdateEnabledControlCommand";
|
|
66
|
+
import {
|
|
67
|
+
UpdateLandingZoneCommandInput,
|
|
68
|
+
UpdateLandingZoneCommandOutput,
|
|
69
|
+
} from "../commands/UpdateLandingZoneCommand";
|
|
70
|
+
export declare const se_CreateLandingZoneCommand: (
|
|
71
|
+
input: CreateLandingZoneCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_DeleteLandingZoneCommand: (
|
|
75
|
+
input: DeleteLandingZoneCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
38
78
|
export declare const se_DisableControlCommand: (
|
|
39
79
|
input: DisableControlCommandInput,
|
|
40
80
|
context: __SerdeContext
|
|
@@ -51,14 +91,30 @@ export declare const se_GetEnabledControlCommand: (
|
|
|
51
91
|
input: GetEnabledControlCommandInput,
|
|
52
92
|
context: __SerdeContext
|
|
53
93
|
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_GetLandingZoneCommand: (
|
|
95
|
+
input: GetLandingZoneCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_GetLandingZoneOperationCommand: (
|
|
99
|
+
input: GetLandingZoneOperationCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
54
102
|
export declare const se_ListEnabledControlsCommand: (
|
|
55
103
|
input: ListEnabledControlsCommandInput,
|
|
56
104
|
context: __SerdeContext
|
|
57
105
|
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_ListLandingZonesCommand: (
|
|
107
|
+
input: ListLandingZonesCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
58
110
|
export declare const se_ListTagsForResourceCommand: (
|
|
59
111
|
input: ListTagsForResourceCommandInput,
|
|
60
112
|
context: __SerdeContext
|
|
61
113
|
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_ResetLandingZoneCommand: (
|
|
115
|
+
input: ResetLandingZoneCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
62
118
|
export declare const se_TagResourceCommand: (
|
|
63
119
|
input: TagResourceCommandInput,
|
|
64
120
|
context: __SerdeContext
|
|
@@ -67,6 +123,22 @@ export declare const se_UntagResourceCommand: (
|
|
|
67
123
|
input: UntagResourceCommandInput,
|
|
68
124
|
context: __SerdeContext
|
|
69
125
|
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_UpdateEnabledControlCommand: (
|
|
127
|
+
input: UpdateEnabledControlCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_UpdateLandingZoneCommand: (
|
|
131
|
+
input: UpdateLandingZoneCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const de_CreateLandingZoneCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<CreateLandingZoneCommandOutput>;
|
|
138
|
+
export declare const de_DeleteLandingZoneCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<DeleteLandingZoneCommandOutput>;
|
|
70
142
|
export declare const de_DisableControlCommand: (
|
|
71
143
|
output: __HttpResponse,
|
|
72
144
|
context: __SerdeContext
|
|
@@ -83,14 +155,30 @@ export declare const de_GetEnabledControlCommand: (
|
|
|
83
155
|
output: __HttpResponse,
|
|
84
156
|
context: __SerdeContext
|
|
85
157
|
) => Promise<GetEnabledControlCommandOutput>;
|
|
158
|
+
export declare const de_GetLandingZoneCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<GetLandingZoneCommandOutput>;
|
|
162
|
+
export declare const de_GetLandingZoneOperationCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<GetLandingZoneOperationCommandOutput>;
|
|
86
166
|
export declare const de_ListEnabledControlsCommand: (
|
|
87
167
|
output: __HttpResponse,
|
|
88
168
|
context: __SerdeContext
|
|
89
169
|
) => Promise<ListEnabledControlsCommandOutput>;
|
|
170
|
+
export declare const de_ListLandingZonesCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<ListLandingZonesCommandOutput>;
|
|
90
174
|
export declare const de_ListTagsForResourceCommand: (
|
|
91
175
|
output: __HttpResponse,
|
|
92
176
|
context: __SerdeContext
|
|
93
177
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
178
|
+
export declare const de_ResetLandingZoneCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<ResetLandingZoneCommandOutput>;
|
|
94
182
|
export declare const de_TagResourceCommand: (
|
|
95
183
|
output: __HttpResponse,
|
|
96
184
|
context: __SerdeContext
|
|
@@ -99,3 +187,11 @@ export declare const de_UntagResourceCommand: (
|
|
|
99
187
|
output: __HttpResponse,
|
|
100
188
|
context: __SerdeContext
|
|
101
189
|
) => Promise<UntagResourceCommandOutput>;
|
|
190
|
+
export declare const de_UpdateEnabledControlCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<UpdateEnabledControlCommandOutput>;
|
|
194
|
+
export declare const de_UpdateLandingZoneCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<UpdateLandingZoneCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-controltower",
|
|
3
3
|
"description": "AWS SDK for JavaScript Controltower Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.459.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.458.0",
|
|
25
25
|
"@aws-sdk/core": "3.451.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.458.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.451.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.451.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.451.0",
|