@aws-sdk/client-controltower 3.451.0 → 3.458.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 +86 -30
- package/dist-cjs/ControlTower.js +14 -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/UpdateLandingZoneCommand.js +51 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +21 -1
- package/dist-cjs/pagination/ListLandingZonesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +508 -1
- package/dist-es/ControlTower.js +14 -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/UpdateLandingZoneCommand.js +47 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/pagination/ListLandingZonesPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +493 -0
- package/dist-types/ControlTower.d.ts +64 -15
- package/dist-types/ControlTowerClient.d.ts +24 -17
- 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 +5 -5
- package/dist-types/commands/EnableControlCommand.d.ts +5 -5
- package/dist-types/commands/GetControlOperationCommand.d.ts +4 -4
- package/dist-types/commands/GetEnabledControlCommand.d.ts +6 -6
- 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 +7 -7
- package/dist-types/commands/ListLandingZonesCommand.d.ts +93 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/ResetLandingZoneCommand.d.ts +92 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLandingZoneCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +15 -15
- package/dist-types/models/models_0.d.ts +400 -12
- 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 +63 -0
- package/dist-types/ts3.4/ControlTower.d.ts +119 -0
- package/dist-types/ts3.4/ControlTowerClient.d.ts +44 -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/UpdateLandingZoneCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +99 -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 +84 -0
- package/package.json +3 -3
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateLandingZoneCommandInput, CreateLandingZoneCommandOutput } from "../commands/CreateLandingZoneCommand";
|
|
4
|
+
import { DeleteLandingZoneCommandInput, DeleteLandingZoneCommandOutput } from "../commands/DeleteLandingZoneCommand";
|
|
3
5
|
import { DisableControlCommandInput, DisableControlCommandOutput } from "../commands/DisableControlCommand";
|
|
4
6
|
import { EnableControlCommandInput, EnableControlCommandOutput } from "../commands/EnableControlCommand";
|
|
5
7
|
import { GetControlOperationCommandInput, GetControlOperationCommandOutput } from "../commands/GetControlOperationCommand";
|
|
6
8
|
import { GetEnabledControlCommandInput, GetEnabledControlCommandOutput } from "../commands/GetEnabledControlCommand";
|
|
9
|
+
import { GetLandingZoneCommandInput, GetLandingZoneCommandOutput } from "../commands/GetLandingZoneCommand";
|
|
10
|
+
import { GetLandingZoneOperationCommandInput, GetLandingZoneOperationCommandOutput } from "../commands/GetLandingZoneOperationCommand";
|
|
7
11
|
import { ListEnabledControlsCommandInput, ListEnabledControlsCommandOutput } from "../commands/ListEnabledControlsCommand";
|
|
12
|
+
import { ListLandingZonesCommandInput, ListLandingZonesCommandOutput } from "../commands/ListLandingZonesCommand";
|
|
8
13
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
|
+
import { ResetLandingZoneCommandInput, ResetLandingZoneCommandOutput } from "../commands/ResetLandingZoneCommand";
|
|
9
15
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
10
16
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
17
|
+
import { UpdateLandingZoneCommandInput, UpdateLandingZoneCommandOutput } from "../commands/UpdateLandingZoneCommand";
|
|
18
|
+
/**
|
|
19
|
+
* serializeAws_restJson1CreateLandingZoneCommand
|
|
20
|
+
*/
|
|
21
|
+
export declare const se_CreateLandingZoneCommand: (input: CreateLandingZoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
/**
|
|
23
|
+
* serializeAws_restJson1DeleteLandingZoneCommand
|
|
24
|
+
*/
|
|
25
|
+
export declare const se_DeleteLandingZoneCommand: (input: DeleteLandingZoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
26
|
/**
|
|
12
27
|
* serializeAws_restJson1DisableControlCommand
|
|
13
28
|
*/
|
|
@@ -24,14 +39,30 @@ export declare const se_GetControlOperationCommand: (input: GetControlOperationC
|
|
|
24
39
|
* serializeAws_restJson1GetEnabledControlCommand
|
|
25
40
|
*/
|
|
26
41
|
export declare const se_GetEnabledControlCommand: (input: GetEnabledControlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_restJson1GetLandingZoneCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_GetLandingZoneCommand: (input: GetLandingZoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_restJson1GetLandingZoneOperationCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_GetLandingZoneOperationCommand: (input: GetLandingZoneOperationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
50
|
/**
|
|
28
51
|
* serializeAws_restJson1ListEnabledControlsCommand
|
|
29
52
|
*/
|
|
30
53
|
export declare const se_ListEnabledControlsCommand: (input: ListEnabledControlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_restJson1ListLandingZonesCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_ListLandingZonesCommand: (input: ListLandingZonesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
58
|
/**
|
|
32
59
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
33
60
|
*/
|
|
34
61
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
+
/**
|
|
63
|
+
* serializeAws_restJson1ResetLandingZoneCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const se_ResetLandingZoneCommand: (input: ResetLandingZoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
66
|
/**
|
|
36
67
|
* serializeAws_restJson1TagResourceCommand
|
|
37
68
|
*/
|
|
@@ -40,6 +71,18 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
|
|
|
40
71
|
* serializeAws_restJson1UntagResourceCommand
|
|
41
72
|
*/
|
|
42
73
|
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* serializeAws_restJson1UpdateLandingZoneCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const se_UpdateLandingZoneCommand: (input: UpdateLandingZoneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
+
/**
|
|
79
|
+
* deserializeAws_restJson1CreateLandingZoneCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const de_CreateLandingZoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLandingZoneCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* deserializeAws_restJson1DeleteLandingZoneCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const de_DeleteLandingZoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLandingZoneCommandOutput>;
|
|
43
86
|
/**
|
|
44
87
|
* deserializeAws_restJson1DisableControlCommand
|
|
45
88
|
*/
|
|
@@ -56,14 +99,30 @@ export declare const de_GetControlOperationCommand: (output: __HttpResponse, con
|
|
|
56
99
|
* deserializeAws_restJson1GetEnabledControlCommand
|
|
57
100
|
*/
|
|
58
101
|
export declare const de_GetEnabledControlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnabledControlCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* deserializeAws_restJson1GetLandingZoneCommand
|
|
104
|
+
*/
|
|
105
|
+
export declare const de_GetLandingZoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLandingZoneCommandOutput>;
|
|
106
|
+
/**
|
|
107
|
+
* deserializeAws_restJson1GetLandingZoneOperationCommand
|
|
108
|
+
*/
|
|
109
|
+
export declare const de_GetLandingZoneOperationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLandingZoneOperationCommandOutput>;
|
|
59
110
|
/**
|
|
60
111
|
* deserializeAws_restJson1ListEnabledControlsCommand
|
|
61
112
|
*/
|
|
62
113
|
export declare const de_ListEnabledControlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnabledControlsCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* deserializeAws_restJson1ListLandingZonesCommand
|
|
116
|
+
*/
|
|
117
|
+
export declare const de_ListLandingZonesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLandingZonesCommandOutput>;
|
|
63
118
|
/**
|
|
64
119
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
65
120
|
*/
|
|
66
121
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
122
|
+
/**
|
|
123
|
+
* deserializeAws_restJson1ResetLandingZoneCommand
|
|
124
|
+
*/
|
|
125
|
+
export declare const de_ResetLandingZoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResetLandingZoneCommandOutput>;
|
|
67
126
|
/**
|
|
68
127
|
* deserializeAws_restJson1TagResourceCommand
|
|
69
128
|
*/
|
|
@@ -72,3 +131,7 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
|
|
|
72
131
|
* deserializeAws_restJson1UntagResourceCommand
|
|
73
132
|
*/
|
|
74
133
|
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
134
|
+
/**
|
|
135
|
+
* deserializeAws_restJson1UpdateLandingZoneCommand
|
|
136
|
+
*/
|
|
137
|
+
export declare const de_UpdateLandingZoneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLandingZoneCommandOutput>;
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateLandingZoneCommandInput,
|
|
4
|
+
CreateLandingZoneCommandOutput,
|
|
5
|
+
} from "./commands/CreateLandingZoneCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteLandingZoneCommandInput,
|
|
8
|
+
DeleteLandingZoneCommandOutput,
|
|
9
|
+
} from "./commands/DeleteLandingZoneCommand";
|
|
2
10
|
import {
|
|
3
11
|
DisableControlCommandInput,
|
|
4
12
|
DisableControlCommandOutput,
|
|
@@ -15,14 +23,30 @@ import {
|
|
|
15
23
|
GetEnabledControlCommandInput,
|
|
16
24
|
GetEnabledControlCommandOutput,
|
|
17
25
|
} from "./commands/GetEnabledControlCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetLandingZoneCommandInput,
|
|
28
|
+
GetLandingZoneCommandOutput,
|
|
29
|
+
} from "./commands/GetLandingZoneCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetLandingZoneOperationCommandInput,
|
|
32
|
+
GetLandingZoneOperationCommandOutput,
|
|
33
|
+
} from "./commands/GetLandingZoneOperationCommand";
|
|
18
34
|
import {
|
|
19
35
|
ListEnabledControlsCommandInput,
|
|
20
36
|
ListEnabledControlsCommandOutput,
|
|
21
37
|
} from "./commands/ListEnabledControlsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListLandingZonesCommandInput,
|
|
40
|
+
ListLandingZonesCommandOutput,
|
|
41
|
+
} from "./commands/ListLandingZonesCommand";
|
|
22
42
|
import {
|
|
23
43
|
ListTagsForResourceCommandInput,
|
|
24
44
|
ListTagsForResourceCommandOutput,
|
|
25
45
|
} from "./commands/ListTagsForResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
ResetLandingZoneCommandInput,
|
|
48
|
+
ResetLandingZoneCommandOutput,
|
|
49
|
+
} from "./commands/ResetLandingZoneCommand";
|
|
26
50
|
import {
|
|
27
51
|
TagResourceCommandInput,
|
|
28
52
|
TagResourceCommandOutput,
|
|
@@ -31,8 +55,38 @@ import {
|
|
|
31
55
|
UntagResourceCommandInput,
|
|
32
56
|
UntagResourceCommandOutput,
|
|
33
57
|
} from "./commands/UntagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateLandingZoneCommandInput,
|
|
60
|
+
UpdateLandingZoneCommandOutput,
|
|
61
|
+
} from "./commands/UpdateLandingZoneCommand";
|
|
34
62
|
import { ControlTowerClient } from "./ControlTowerClient";
|
|
35
63
|
export interface ControlTower {
|
|
64
|
+
createLandingZone(
|
|
65
|
+
args: CreateLandingZoneCommandInput,
|
|
66
|
+
options?: __HttpHandlerOptions
|
|
67
|
+
): Promise<CreateLandingZoneCommandOutput>;
|
|
68
|
+
createLandingZone(
|
|
69
|
+
args: CreateLandingZoneCommandInput,
|
|
70
|
+
cb: (err: any, data?: CreateLandingZoneCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
createLandingZone(
|
|
73
|
+
args: CreateLandingZoneCommandInput,
|
|
74
|
+
options: __HttpHandlerOptions,
|
|
75
|
+
cb: (err: any, data?: CreateLandingZoneCommandOutput) => void
|
|
76
|
+
): void;
|
|
77
|
+
deleteLandingZone(
|
|
78
|
+
args: DeleteLandingZoneCommandInput,
|
|
79
|
+
options?: __HttpHandlerOptions
|
|
80
|
+
): Promise<DeleteLandingZoneCommandOutput>;
|
|
81
|
+
deleteLandingZone(
|
|
82
|
+
args: DeleteLandingZoneCommandInput,
|
|
83
|
+
cb: (err: any, data?: DeleteLandingZoneCommandOutput) => void
|
|
84
|
+
): void;
|
|
85
|
+
deleteLandingZone(
|
|
86
|
+
args: DeleteLandingZoneCommandInput,
|
|
87
|
+
options: __HttpHandlerOptions,
|
|
88
|
+
cb: (err: any, data?: DeleteLandingZoneCommandOutput) => void
|
|
89
|
+
): void;
|
|
36
90
|
disableControl(
|
|
37
91
|
args: DisableControlCommandInput,
|
|
38
92
|
options?: __HttpHandlerOptions
|
|
@@ -85,6 +139,32 @@ export interface ControlTower {
|
|
|
85
139
|
options: __HttpHandlerOptions,
|
|
86
140
|
cb: (err: any, data?: GetEnabledControlCommandOutput) => void
|
|
87
141
|
): void;
|
|
142
|
+
getLandingZone(
|
|
143
|
+
args: GetLandingZoneCommandInput,
|
|
144
|
+
options?: __HttpHandlerOptions
|
|
145
|
+
): Promise<GetLandingZoneCommandOutput>;
|
|
146
|
+
getLandingZone(
|
|
147
|
+
args: GetLandingZoneCommandInput,
|
|
148
|
+
cb: (err: any, data?: GetLandingZoneCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
getLandingZone(
|
|
151
|
+
args: GetLandingZoneCommandInput,
|
|
152
|
+
options: __HttpHandlerOptions,
|
|
153
|
+
cb: (err: any, data?: GetLandingZoneCommandOutput) => void
|
|
154
|
+
): void;
|
|
155
|
+
getLandingZoneOperation(
|
|
156
|
+
args: GetLandingZoneOperationCommandInput,
|
|
157
|
+
options?: __HttpHandlerOptions
|
|
158
|
+
): Promise<GetLandingZoneOperationCommandOutput>;
|
|
159
|
+
getLandingZoneOperation(
|
|
160
|
+
args: GetLandingZoneOperationCommandInput,
|
|
161
|
+
cb: (err: any, data?: GetLandingZoneOperationCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
getLandingZoneOperation(
|
|
164
|
+
args: GetLandingZoneOperationCommandInput,
|
|
165
|
+
options: __HttpHandlerOptions,
|
|
166
|
+
cb: (err: any, data?: GetLandingZoneOperationCommandOutput) => void
|
|
167
|
+
): void;
|
|
88
168
|
listEnabledControls(
|
|
89
169
|
args: ListEnabledControlsCommandInput,
|
|
90
170
|
options?: __HttpHandlerOptions
|
|
@@ -98,6 +178,19 @@ export interface ControlTower {
|
|
|
98
178
|
options: __HttpHandlerOptions,
|
|
99
179
|
cb: (err: any, data?: ListEnabledControlsCommandOutput) => void
|
|
100
180
|
): void;
|
|
181
|
+
listLandingZones(
|
|
182
|
+
args: ListLandingZonesCommandInput,
|
|
183
|
+
options?: __HttpHandlerOptions
|
|
184
|
+
): Promise<ListLandingZonesCommandOutput>;
|
|
185
|
+
listLandingZones(
|
|
186
|
+
args: ListLandingZonesCommandInput,
|
|
187
|
+
cb: (err: any, data?: ListLandingZonesCommandOutput) => void
|
|
188
|
+
): void;
|
|
189
|
+
listLandingZones(
|
|
190
|
+
args: ListLandingZonesCommandInput,
|
|
191
|
+
options: __HttpHandlerOptions,
|
|
192
|
+
cb: (err: any, data?: ListLandingZonesCommandOutput) => void
|
|
193
|
+
): void;
|
|
101
194
|
listTagsForResource(
|
|
102
195
|
args: ListTagsForResourceCommandInput,
|
|
103
196
|
options?: __HttpHandlerOptions
|
|
@@ -111,6 +204,19 @@ export interface ControlTower {
|
|
|
111
204
|
options: __HttpHandlerOptions,
|
|
112
205
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
113
206
|
): void;
|
|
207
|
+
resetLandingZone(
|
|
208
|
+
args: ResetLandingZoneCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<ResetLandingZoneCommandOutput>;
|
|
211
|
+
resetLandingZone(
|
|
212
|
+
args: ResetLandingZoneCommandInput,
|
|
213
|
+
cb: (err: any, data?: ResetLandingZoneCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
resetLandingZone(
|
|
216
|
+
args: ResetLandingZoneCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: ResetLandingZoneCommandOutput) => void
|
|
219
|
+
): void;
|
|
114
220
|
tagResource(
|
|
115
221
|
args: TagResourceCommandInput,
|
|
116
222
|
options?: __HttpHandlerOptions
|
|
@@ -137,6 +243,19 @@ export interface ControlTower {
|
|
|
137
243
|
options: __HttpHandlerOptions,
|
|
138
244
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
139
245
|
): void;
|
|
246
|
+
updateLandingZone(
|
|
247
|
+
args: UpdateLandingZoneCommandInput,
|
|
248
|
+
options?: __HttpHandlerOptions
|
|
249
|
+
): Promise<UpdateLandingZoneCommandOutput>;
|
|
250
|
+
updateLandingZone(
|
|
251
|
+
args: UpdateLandingZoneCommandInput,
|
|
252
|
+
cb: (err: any, data?: UpdateLandingZoneCommandOutput) => void
|
|
253
|
+
): void;
|
|
254
|
+
updateLandingZone(
|
|
255
|
+
args: UpdateLandingZoneCommandInput,
|
|
256
|
+
options: __HttpHandlerOptions,
|
|
257
|
+
cb: (err: any, data?: UpdateLandingZoneCommandOutput) => void
|
|
258
|
+
): void;
|
|
140
259
|
}
|
|
141
260
|
export declare class ControlTower
|
|
142
261
|
extends ControlTowerClient
|
|
@@ -45,6 +45,14 @@ import {
|
|
|
45
45
|
UrlParser as __UrlParser,
|
|
46
46
|
UserAgent as __UserAgent,
|
|
47
47
|
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CreateLandingZoneCommandInput,
|
|
50
|
+
CreateLandingZoneCommandOutput,
|
|
51
|
+
} from "./commands/CreateLandingZoneCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteLandingZoneCommandInput,
|
|
54
|
+
DeleteLandingZoneCommandOutput,
|
|
55
|
+
} from "./commands/DeleteLandingZoneCommand";
|
|
48
56
|
import {
|
|
49
57
|
DisableControlCommandInput,
|
|
50
58
|
DisableControlCommandOutput,
|
|
@@ -61,14 +69,30 @@ import {
|
|
|
61
69
|
GetEnabledControlCommandInput,
|
|
62
70
|
GetEnabledControlCommandOutput,
|
|
63
71
|
} from "./commands/GetEnabledControlCommand";
|
|
72
|
+
import {
|
|
73
|
+
GetLandingZoneCommandInput,
|
|
74
|
+
GetLandingZoneCommandOutput,
|
|
75
|
+
} from "./commands/GetLandingZoneCommand";
|
|
76
|
+
import {
|
|
77
|
+
GetLandingZoneOperationCommandInput,
|
|
78
|
+
GetLandingZoneOperationCommandOutput,
|
|
79
|
+
} from "./commands/GetLandingZoneOperationCommand";
|
|
64
80
|
import {
|
|
65
81
|
ListEnabledControlsCommandInput,
|
|
66
82
|
ListEnabledControlsCommandOutput,
|
|
67
83
|
} from "./commands/ListEnabledControlsCommand";
|
|
84
|
+
import {
|
|
85
|
+
ListLandingZonesCommandInput,
|
|
86
|
+
ListLandingZonesCommandOutput,
|
|
87
|
+
} from "./commands/ListLandingZonesCommand";
|
|
68
88
|
import {
|
|
69
89
|
ListTagsForResourceCommandInput,
|
|
70
90
|
ListTagsForResourceCommandOutput,
|
|
71
91
|
} from "./commands/ListTagsForResourceCommand";
|
|
92
|
+
import {
|
|
93
|
+
ResetLandingZoneCommandInput,
|
|
94
|
+
ResetLandingZoneCommandOutput,
|
|
95
|
+
} from "./commands/ResetLandingZoneCommand";
|
|
72
96
|
import {
|
|
73
97
|
TagResourceCommandInput,
|
|
74
98
|
TagResourceCommandOutput,
|
|
@@ -77,6 +101,10 @@ import {
|
|
|
77
101
|
UntagResourceCommandInput,
|
|
78
102
|
UntagResourceCommandOutput,
|
|
79
103
|
} from "./commands/UntagResourceCommand";
|
|
104
|
+
import {
|
|
105
|
+
UpdateLandingZoneCommandInput,
|
|
106
|
+
UpdateLandingZoneCommandOutput,
|
|
107
|
+
} from "./commands/UpdateLandingZoneCommand";
|
|
80
108
|
import {
|
|
81
109
|
ClientInputEndpointParameters,
|
|
82
110
|
ClientResolvedEndpointParameters,
|
|
@@ -85,23 +113,37 @@ import {
|
|
|
85
113
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
86
114
|
export { __Client };
|
|
87
115
|
export type ServiceInputTypes =
|
|
116
|
+
| CreateLandingZoneCommandInput
|
|
117
|
+
| DeleteLandingZoneCommandInput
|
|
88
118
|
| DisableControlCommandInput
|
|
89
119
|
| EnableControlCommandInput
|
|
90
120
|
| GetControlOperationCommandInput
|
|
91
121
|
| GetEnabledControlCommandInput
|
|
122
|
+
| GetLandingZoneCommandInput
|
|
123
|
+
| GetLandingZoneOperationCommandInput
|
|
92
124
|
| ListEnabledControlsCommandInput
|
|
125
|
+
| ListLandingZonesCommandInput
|
|
93
126
|
| ListTagsForResourceCommandInput
|
|
127
|
+
| ResetLandingZoneCommandInput
|
|
94
128
|
| TagResourceCommandInput
|
|
95
|
-
| UntagResourceCommandInput
|
|
129
|
+
| UntagResourceCommandInput
|
|
130
|
+
| UpdateLandingZoneCommandInput;
|
|
96
131
|
export type ServiceOutputTypes =
|
|
132
|
+
| CreateLandingZoneCommandOutput
|
|
133
|
+
| DeleteLandingZoneCommandOutput
|
|
97
134
|
| DisableControlCommandOutput
|
|
98
135
|
| EnableControlCommandOutput
|
|
99
136
|
| GetControlOperationCommandOutput
|
|
100
137
|
| GetEnabledControlCommandOutput
|
|
138
|
+
| GetLandingZoneCommandOutput
|
|
139
|
+
| GetLandingZoneOperationCommandOutput
|
|
101
140
|
| ListEnabledControlsCommandOutput
|
|
141
|
+
| ListLandingZonesCommandOutput
|
|
102
142
|
| ListTagsForResourceCommandOutput
|
|
143
|
+
| ResetLandingZoneCommandOutput
|
|
103
144
|
| TagResourceCommandOutput
|
|
104
|
-
| UntagResourceCommandOutput
|
|
145
|
+
| UntagResourceCommandOutput
|
|
146
|
+
| UpdateLandingZoneCommandOutput;
|
|
105
147
|
export interface ClientDefaults
|
|
106
148
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
107
149
|
requestHandler?: __HttpHandler;
|
|
@@ -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
|
+
CreateLandingZoneInput,
|
|
16
|
+
CreateLandingZoneOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateLandingZoneCommandInput extends CreateLandingZoneInput {}
|
|
20
|
+
export interface CreateLandingZoneCommandOutput
|
|
21
|
+
extends CreateLandingZoneOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateLandingZoneCommand extends $Command<
|
|
24
|
+
CreateLandingZoneCommandInput,
|
|
25
|
+
CreateLandingZoneCommandOutput,
|
|
26
|
+
ControlTowerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateLandingZoneCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateLandingZoneCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateLandingZoneCommandInput, CreateLandingZoneCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
DeleteLandingZoneInput,
|
|
16
|
+
DeleteLandingZoneOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteLandingZoneCommandInput extends DeleteLandingZoneInput {}
|
|
20
|
+
export interface DeleteLandingZoneCommandOutput
|
|
21
|
+
extends DeleteLandingZoneOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteLandingZoneCommand extends $Command<
|
|
24
|
+
DeleteLandingZoneCommandInput,
|
|
25
|
+
DeleteLandingZoneCommandOutput,
|
|
26
|
+
ControlTowerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteLandingZoneCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteLandingZoneCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteLandingZoneCommandInput, DeleteLandingZoneCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 { GetLandingZoneInput, GetLandingZoneOutput } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetLandingZoneCommandInput extends GetLandingZoneInput {}
|
|
17
|
+
export interface GetLandingZoneCommandOutput
|
|
18
|
+
extends GetLandingZoneOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetLandingZoneCommand extends $Command<
|
|
21
|
+
GetLandingZoneCommandInput,
|
|
22
|
+
GetLandingZoneCommandOutput,
|
|
23
|
+
ControlTowerClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetLandingZoneCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetLandingZoneCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetLandingZoneCommandInput, GetLandingZoneCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
GetLandingZoneOperationInput,
|
|
16
|
+
GetLandingZoneOperationOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetLandingZoneOperationCommandInput
|
|
20
|
+
extends GetLandingZoneOperationInput {}
|
|
21
|
+
export interface GetLandingZoneOperationCommandOutput
|
|
22
|
+
extends GetLandingZoneOperationOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetLandingZoneOperationCommand extends $Command<
|
|
25
|
+
GetLandingZoneOperationCommandInput,
|
|
26
|
+
GetLandingZoneOperationCommandOutput,
|
|
27
|
+
ControlTowerClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetLandingZoneOperationCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetLandingZoneOperationCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetLandingZoneOperationCommandInput,
|
|
38
|
+
GetLandingZoneOperationCommandOutput
|
|
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
|
+
ListLandingZonesInput,
|
|
16
|
+
ListLandingZonesOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListLandingZonesCommandInput extends ListLandingZonesInput {}
|
|
20
|
+
export interface ListLandingZonesCommandOutput
|
|
21
|
+
extends ListLandingZonesOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListLandingZonesCommand extends $Command<
|
|
24
|
+
ListLandingZonesCommandInput,
|
|
25
|
+
ListLandingZonesCommandOutput,
|
|
26
|
+
ControlTowerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListLandingZonesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListLandingZonesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListLandingZonesCommandInput, ListLandingZonesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
ResetLandingZoneInput,
|
|
16
|
+
ResetLandingZoneOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ResetLandingZoneCommandInput extends ResetLandingZoneInput {}
|
|
20
|
+
export interface ResetLandingZoneCommandOutput
|
|
21
|
+
extends ResetLandingZoneOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ResetLandingZoneCommand extends $Command<
|
|
24
|
+
ResetLandingZoneCommandInput,
|
|
25
|
+
ResetLandingZoneCommandOutput,
|
|
26
|
+
ControlTowerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ResetLandingZoneCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ResetLandingZoneCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ControlTowerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ResetLandingZoneCommandInput, ResetLandingZoneCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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,15 @@
|
|
|
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 "./UpdateLandingZoneCommand";
|