@aws-sdk/client-controltower 3.1075.0 → 3.1076.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/dist-cjs/index.js +1217 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ControlTowerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -95
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -919
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultControlTowerHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "controltower",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultControlTowerHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1041 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://controltower-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://controltower-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://controltower.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://controltower.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class ControlTowerServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, ControlTowerServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends ControlTowerServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class InternalServerException extends ControlTowerServiceException {
|
|
152
|
+
name = "InternalServerException";
|
|
153
|
+
$fault = "server";
|
|
154
|
+
$retryable = {};
|
|
155
|
+
constructor(opts) {
|
|
156
|
+
super({
|
|
157
|
+
name: "InternalServerException",
|
|
158
|
+
$fault: "server",
|
|
159
|
+
...opts,
|
|
160
|
+
});
|
|
161
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
class ResourceNotFoundException extends ControlTowerServiceException {
|
|
165
|
+
name = "ResourceNotFoundException";
|
|
166
|
+
$fault = "client";
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "ResourceNotFoundException",
|
|
170
|
+
$fault: "client",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class ThrottlingException extends ControlTowerServiceException {
|
|
177
|
+
name = "ThrottlingException";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
$retryable = {
|
|
180
|
+
throttling: true,
|
|
181
|
+
};
|
|
182
|
+
serviceCode;
|
|
183
|
+
quotaCode;
|
|
184
|
+
retryAfterSeconds;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "ThrottlingException",
|
|
188
|
+
$fault: "client",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
192
|
+
this.serviceCode = opts.serviceCode;
|
|
193
|
+
this.quotaCode = opts.quotaCode;
|
|
194
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
class ValidationException extends ControlTowerServiceException {
|
|
198
|
+
name = "ValidationException";
|
|
199
|
+
$fault = "client";
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "ValidationException",
|
|
203
|
+
$fault: "client",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class ConflictException extends ControlTowerServiceException {
|
|
210
|
+
name = "ConflictException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
constructor(opts) {
|
|
213
|
+
super({
|
|
214
|
+
name: "ConflictException",
|
|
215
|
+
$fault: "client",
|
|
216
|
+
...opts,
|
|
217
|
+
});
|
|
218
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
class ServiceQuotaExceededException extends ControlTowerServiceException {
|
|
222
|
+
name = "ServiceQuotaExceededException";
|
|
223
|
+
$fault = "client";
|
|
224
|
+
constructor(opts) {
|
|
225
|
+
super({
|
|
226
|
+
name: "ServiceQuotaExceededException",
|
|
227
|
+
$fault: "client",
|
|
228
|
+
...opts,
|
|
229
|
+
});
|
|
230
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
const _ADE = "AccessDeniedException";
|
|
235
|
+
const _B = "Baselines";
|
|
236
|
+
const _BO = "BaselineOperation";
|
|
237
|
+
const _BS = "BaselineSummary";
|
|
238
|
+
const _CE = "ConflictException";
|
|
239
|
+
const _CLZ = "CreateLandingZone";
|
|
240
|
+
const _CLZI = "CreateLandingZoneInput";
|
|
241
|
+
const _CLZO = "CreateLandingZoneOutput";
|
|
242
|
+
const _CO = "ControlOperation";
|
|
243
|
+
const _COF = "ControlOperationFilter";
|
|
244
|
+
const _COS = "ControlOperationSummary";
|
|
245
|
+
const _COo = "ControlOperations";
|
|
246
|
+
const _DB = "DisableBaseline";
|
|
247
|
+
const _DBI = "DisableBaselineInput";
|
|
248
|
+
const _DBO = "DisableBaselineOutput";
|
|
249
|
+
const _DC = "DisableControl";
|
|
250
|
+
const _DCI = "DisableControlInput";
|
|
251
|
+
const _DCO = "DisableControlOutput";
|
|
252
|
+
const _DLZ = "DeleteLandingZone";
|
|
253
|
+
const _DLZI = "DeleteLandingZoneInput";
|
|
254
|
+
const _DLZO = "DeleteLandingZoneOutput";
|
|
255
|
+
const _DSS = "DriftStatusSummary";
|
|
256
|
+
const _EB = "EnabledBaselines";
|
|
257
|
+
const _EBD = "EnabledBaselineDetails";
|
|
258
|
+
const _EBDSS = "EnabledBaselineDriftStatusSummary";
|
|
259
|
+
const _EBDT = "EnabledBaselineDriftTypes";
|
|
260
|
+
const _EBF = "EnabledBaselineFilter";
|
|
261
|
+
const _EBI = "EnableBaselineInput";
|
|
262
|
+
const _EBID = "EnabledBaselineInheritanceDrift";
|
|
263
|
+
const _EBO = "EnableBaselineOutput";
|
|
264
|
+
const _EBP = "EnabledBaselineParameter";
|
|
265
|
+
const _EBPS = "EnabledBaselineParameterSummary";
|
|
266
|
+
const _EBPSn = "EnabledBaselineParameterSummaries";
|
|
267
|
+
const _EBPn = "EnabledBaselineParameters";
|
|
268
|
+
const _EBS = "EnabledBaselineSummary";
|
|
269
|
+
const _EBn = "EnableBaseline";
|
|
270
|
+
const _EC = "EnabledControls";
|
|
271
|
+
const _ECD = "EnabledControlDetails";
|
|
272
|
+
const _ECDT = "EnabledControlDriftTypes";
|
|
273
|
+
const _ECF = "EnabledControlFilter";
|
|
274
|
+
const _ECI = "EnableControlInput";
|
|
275
|
+
const _ECID = "EnabledControlInheritanceDrift";
|
|
276
|
+
const _ECO = "EnableControlOutput";
|
|
277
|
+
const _ECP = "EnabledControlParameter";
|
|
278
|
+
const _ECPS = "EnabledControlParameterSummary";
|
|
279
|
+
const _ECPSn = "EnabledControlParameterSummaries";
|
|
280
|
+
const _ECPn = "EnabledControlParameters";
|
|
281
|
+
const _ECRD = "EnabledControlResourceDrift";
|
|
282
|
+
const _ECS = "EnabledControlSummary";
|
|
283
|
+
const _ECn = "EnableControl";
|
|
284
|
+
const _ESS = "EnablementStatusSummary";
|
|
285
|
+
const _GB = "GetBaseline";
|
|
286
|
+
const _GBI = "GetBaselineInput";
|
|
287
|
+
const _GBO = "GetBaselineOutput";
|
|
288
|
+
const _GBOI = "GetBaselineOperationInput";
|
|
289
|
+
const _GBOO = "GetBaselineOperationOutput";
|
|
290
|
+
const _GBOe = "GetBaselineOperation";
|
|
291
|
+
const _GCO = "GetControlOperation";
|
|
292
|
+
const _GCOI = "GetControlOperationInput";
|
|
293
|
+
const _GCOO = "GetControlOperationOutput";
|
|
294
|
+
const _GEB = "GetEnabledBaseline";
|
|
295
|
+
const _GEBI = "GetEnabledBaselineInput";
|
|
296
|
+
const _GEBO = "GetEnabledBaselineOutput";
|
|
297
|
+
const _GEC = "GetEnabledControl";
|
|
298
|
+
const _GECI = "GetEnabledControlInput";
|
|
299
|
+
const _GECO = "GetEnabledControlOutput";
|
|
300
|
+
const _GLZ = "GetLandingZone";
|
|
301
|
+
const _GLZI = "GetLandingZoneInput";
|
|
302
|
+
const _GLZO = "GetLandingZoneOutput";
|
|
303
|
+
const _GLZOI = "GetLandingZoneOperationInput";
|
|
304
|
+
const _GLZOO = "GetLandingZoneOperationOutput";
|
|
305
|
+
const _GLZOe = "GetLandingZoneOperation";
|
|
306
|
+
const _ISE = "InternalServerException";
|
|
307
|
+
const _LB = "ListBaselines";
|
|
308
|
+
const _LBI = "ListBaselinesInput";
|
|
309
|
+
const _LBO = "ListBaselinesOutput";
|
|
310
|
+
const _LCO = "ListControlOperations";
|
|
311
|
+
const _LCOI = "ListControlOperationsInput";
|
|
312
|
+
const _LCOO = "ListControlOperationsOutput";
|
|
313
|
+
const _LEB = "ListEnabledBaselines";
|
|
314
|
+
const _LEBI = "ListEnabledBaselinesInput";
|
|
315
|
+
const _LEBO = "ListEnabledBaselinesOutput";
|
|
316
|
+
const _LEC = "ListEnabledControls";
|
|
317
|
+
const _LECI = "ListEnabledControlsInput";
|
|
318
|
+
const _LECO = "ListEnabledControlsOutput";
|
|
319
|
+
const _LLZ = "ListLandingZones";
|
|
320
|
+
const _LLZI = "ListLandingZonesInput";
|
|
321
|
+
const _LLZO = "ListLandingZonesOutput";
|
|
322
|
+
const _LLZOI = "ListLandingZoneOperationsInput";
|
|
323
|
+
const _LLZOO = "ListLandingZoneOperationsOutput";
|
|
324
|
+
const _LLZOi = "ListLandingZoneOperations";
|
|
325
|
+
const _LTFR = "ListTagsForResource";
|
|
326
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
327
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
328
|
+
const _LZD = "LandingZoneDetail";
|
|
329
|
+
const _LZDSS = "LandingZoneDriftStatusSummary";
|
|
330
|
+
const _LZO = "LandingZoneOperations";
|
|
331
|
+
const _LZOD = "LandingZoneOperationDetail";
|
|
332
|
+
const _LZOF = "LandingZoneOperationFilter";
|
|
333
|
+
const _LZOS = "LandingZoneOperationSummary";
|
|
334
|
+
const _LZS = "LandingZoneSummary";
|
|
335
|
+
const _LZSa = "LandingZoneSummaries";
|
|
336
|
+
const _R = "Region";
|
|
337
|
+
const _RA = "Retry-After";
|
|
338
|
+
const _REB = "ResetEnabledBaseline";
|
|
339
|
+
const _REBI = "ResetEnabledBaselineInput";
|
|
340
|
+
const _REBO = "ResetEnabledBaselineOutput";
|
|
341
|
+
const _REC = "ResetEnabledControl";
|
|
342
|
+
const _RECI = "ResetEnabledControlInput";
|
|
343
|
+
const _RECO = "ResetEnabledControlOutput";
|
|
344
|
+
const _RLZ = "ResetLandingZone";
|
|
345
|
+
const _RLZI = "ResetLandingZoneInput";
|
|
346
|
+
const _RLZO = "ResetLandingZoneOutput";
|
|
347
|
+
const _RNFE = "ResourceNotFoundException";
|
|
348
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
349
|
+
const _TE = "ThrottlingException";
|
|
350
|
+
const _TR = "TargetRegions";
|
|
351
|
+
const _TRI = "TagResourceInput";
|
|
352
|
+
const _TRO = "TagResourceOutput";
|
|
353
|
+
const _TRa = "TagResource";
|
|
354
|
+
const _UEB = "UpdateEnabledBaseline";
|
|
355
|
+
const _UEBI = "UpdateEnabledBaselineInput";
|
|
356
|
+
const _UEBO = "UpdateEnabledBaselineOutput";
|
|
357
|
+
const _UEC = "UpdateEnabledControl";
|
|
358
|
+
const _UECI = "UpdateEnabledControlInput";
|
|
359
|
+
const _UECO = "UpdateEnabledControlOutput";
|
|
360
|
+
const _ULZ = "UpdateLandingZone";
|
|
361
|
+
const _ULZI = "UpdateLandingZoneInput";
|
|
362
|
+
const _ULZO = "UpdateLandingZoneOutput";
|
|
363
|
+
const _UR = "UntagResource";
|
|
364
|
+
const _URI = "UntagResourceInput";
|
|
365
|
+
const _URO = "UntagResourceOutput";
|
|
366
|
+
const _VE = "ValidationException";
|
|
367
|
+
const _a = "arn";
|
|
368
|
+
const _b = "baselines";
|
|
369
|
+
const _bI = "baselineIdentifier";
|
|
370
|
+
const _bIa = "baselineIdentifiers";
|
|
371
|
+
const _bO = "baselineOperation";
|
|
372
|
+
const _bV = "baselineVersion";
|
|
373
|
+
const _c = "client";
|
|
374
|
+
const _cI = "controlIdentifier";
|
|
375
|
+
const _cIo = "controlIdentifiers";
|
|
376
|
+
const _cO = "controlOperation";
|
|
377
|
+
const _cOT = "controlOperationTypes";
|
|
378
|
+
const _cOo = "controlOperations";
|
|
379
|
+
const _d = "description";
|
|
380
|
+
const _dS = "driftStatus";
|
|
381
|
+
const _dSS = "driftStatusSummary";
|
|
382
|
+
const _dSr = "driftStatuses";
|
|
383
|
+
const _e = "error";
|
|
384
|
+
const _eB = "enabledBaselines";
|
|
385
|
+
const _eBD = "enabledBaselineDetails";
|
|
386
|
+
const _eBI = "enabledBaselineIdentifier";
|
|
387
|
+
const _eC = "enabledControls";
|
|
388
|
+
const _eCD = "enabledControlDetails";
|
|
389
|
+
const _eCI = "enabledControlIdentifier";
|
|
390
|
+
const _eCIn = "enabledControlIdentifiers";
|
|
391
|
+
const _eT = "endTime";
|
|
392
|
+
const _f = "filter";
|
|
393
|
+
const _h = "http";
|
|
394
|
+
const _hE = "httpError";
|
|
395
|
+
const _hH = "httpHeader";
|
|
396
|
+
const _hQ = "httpQuery";
|
|
397
|
+
const _i = "inheritance";
|
|
398
|
+
const _iC = "includeChildren";
|
|
399
|
+
const _iDS = "inheritanceDriftStatuses";
|
|
400
|
+
const _k = "key";
|
|
401
|
+
const _lAV = "latestAvailableVersion";
|
|
402
|
+
const _lOI = "lastOperationIdentifier";
|
|
403
|
+
const _lZ = "landingZone";
|
|
404
|
+
const _lZI = "landingZoneIdentifier";
|
|
405
|
+
const _lZO = "landingZoneOperations";
|
|
406
|
+
const _lZa = "landingZones";
|
|
407
|
+
const _m = "message";
|
|
408
|
+
const _mR = "maxResults";
|
|
409
|
+
const _ma = "manifest";
|
|
410
|
+
const _n = "name";
|
|
411
|
+
const _nT = "nextToken";
|
|
412
|
+
const _oD = "operationDetails";
|
|
413
|
+
const _oI = "operationIdentifier";
|
|
414
|
+
const _oT = "operationType";
|
|
415
|
+
const _p = "parameters";
|
|
416
|
+
const _pI = "parentIdentifier";
|
|
417
|
+
const _pIa = "parentIdentifiers";
|
|
418
|
+
const _qC = "quotaCode";
|
|
419
|
+
const _r = "resource";
|
|
420
|
+
const _rA = "resourceArn";
|
|
421
|
+
const _rAS = "retryAfterSeconds";
|
|
422
|
+
const _rDS = "resourceDriftStatuses";
|
|
423
|
+
const _rT = "remediationTypes";
|
|
424
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.controltower";
|
|
425
|
+
const _sC = "serviceCode";
|
|
426
|
+
const _sM = "statusMessage";
|
|
427
|
+
const _sS = "statusSummary";
|
|
428
|
+
const _sT = "startTime";
|
|
429
|
+
const _se = "server";
|
|
430
|
+
const _st = "status";
|
|
431
|
+
const _sta = "statuses";
|
|
432
|
+
const _t = "tags";
|
|
433
|
+
const _tI = "targetIdentifier";
|
|
434
|
+
const _tIa = "targetIdentifiers";
|
|
435
|
+
const _tK = "tagKeys";
|
|
436
|
+
const _tR = "targetRegions";
|
|
437
|
+
const _ty = "types";
|
|
438
|
+
const _v = "version";
|
|
439
|
+
const _va = "value";
|
|
440
|
+
const n0 = "com.amazonaws.controltower";
|
|
441
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
442
|
+
var ControlTowerServiceException$ = [-3, _s, "ControlTowerServiceException", 0, [], []];
|
|
443
|
+
_s_registry.registerError(ControlTowerServiceException$, ControlTowerServiceException);
|
|
444
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
445
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
446
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
447
|
+
[_m],
|
|
448
|
+
[0], 1
|
|
449
|
+
];
|
|
450
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
451
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
452
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
453
|
+
[_m],
|
|
454
|
+
[0], 1
|
|
455
|
+
];
|
|
456
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
457
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
458
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
459
|
+
[_m],
|
|
460
|
+
[0], 1
|
|
461
|
+
];
|
|
462
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
463
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
464
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
465
|
+
[_m],
|
|
466
|
+
[0], 1
|
|
467
|
+
];
|
|
468
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
469
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
470
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
471
|
+
[_m],
|
|
472
|
+
[0], 1
|
|
473
|
+
];
|
|
474
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
475
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
476
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
477
|
+
[_m, _sC, _qC, _rAS],
|
|
478
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
479
|
+
];
|
|
480
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
481
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
482
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
483
|
+
[_m],
|
|
484
|
+
[0], 1
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
487
|
+
const errorTypeRegistries = [
|
|
488
|
+
_s_registry,
|
|
489
|
+
n0_registry,
|
|
490
|
+
];
|
|
491
|
+
var BaselineOperation$ = [3, n0, _BO,
|
|
492
|
+
0,
|
|
493
|
+
[_oI, _oT, _st, _sT, _eT, _sM],
|
|
494
|
+
[0, 0, 0, 5, 5, 0]
|
|
495
|
+
];
|
|
496
|
+
var BaselineSummary$ = [3, n0, _BS,
|
|
497
|
+
0,
|
|
498
|
+
[_a, _n, _d],
|
|
499
|
+
[0, 0, 0], 2
|
|
500
|
+
];
|
|
501
|
+
var ControlOperation$ = [3, n0, _CO,
|
|
502
|
+
0,
|
|
503
|
+
[_oT, _sT, _eT, _st, _sM, _oI, _cI, _tI, _eCI],
|
|
504
|
+
[0, 5, 5, 0, 0, 0, 0, 0, 0]
|
|
505
|
+
];
|
|
506
|
+
var ControlOperationFilter$ = [3, n0, _COF,
|
|
507
|
+
0,
|
|
508
|
+
[_cIo, _tIa, _eCIn, _sta, _cOT],
|
|
509
|
+
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
510
|
+
];
|
|
511
|
+
var ControlOperationSummary$ = [3, n0, _COS,
|
|
512
|
+
0,
|
|
513
|
+
[_oT, _sT, _eT, _st, _sM, _oI, _cI, _tI, _eCI],
|
|
514
|
+
[0, 5, 5, 0, 0, 0, 0, 0, 0]
|
|
515
|
+
];
|
|
516
|
+
var CreateLandingZoneInput$ = [3, n0, _CLZI,
|
|
517
|
+
0,
|
|
518
|
+
[_v, _rT, _t, _ma],
|
|
519
|
+
[0, 64 | 0, 128 | 0, 15], 1
|
|
520
|
+
];
|
|
521
|
+
var CreateLandingZoneOutput$ = [3, n0, _CLZO,
|
|
522
|
+
0,
|
|
523
|
+
[_a, _oI],
|
|
524
|
+
[0, 0], 2
|
|
525
|
+
];
|
|
526
|
+
var DeleteLandingZoneInput$ = [3, n0, _DLZI,
|
|
527
|
+
0,
|
|
528
|
+
[_lZI],
|
|
529
|
+
[0], 1
|
|
530
|
+
];
|
|
531
|
+
var DeleteLandingZoneOutput$ = [3, n0, _DLZO,
|
|
532
|
+
0,
|
|
533
|
+
[_oI],
|
|
534
|
+
[0], 1
|
|
535
|
+
];
|
|
536
|
+
var DisableBaselineInput$ = [3, n0, _DBI,
|
|
537
|
+
0,
|
|
538
|
+
[_eBI],
|
|
539
|
+
[0], 1
|
|
540
|
+
];
|
|
541
|
+
var DisableBaselineOutput$ = [3, n0, _DBO,
|
|
542
|
+
0,
|
|
543
|
+
[_oI],
|
|
544
|
+
[0], 1
|
|
545
|
+
];
|
|
546
|
+
var DisableControlInput$ = [3, n0, _DCI,
|
|
547
|
+
0,
|
|
548
|
+
[_cI, _tI, _eCI],
|
|
549
|
+
[0, 0, 0]
|
|
550
|
+
];
|
|
551
|
+
var DisableControlOutput$ = [3, n0, _DCO,
|
|
552
|
+
0,
|
|
553
|
+
[_oI],
|
|
554
|
+
[0], 1
|
|
555
|
+
];
|
|
556
|
+
var DriftStatusSummary$ = [3, n0, _DSS,
|
|
557
|
+
0,
|
|
558
|
+
[_dS, _ty],
|
|
559
|
+
[0, () => EnabledControlDriftTypes$]
|
|
560
|
+
];
|
|
561
|
+
var EnableBaselineInput$ = [3, n0, _EBI,
|
|
562
|
+
0,
|
|
563
|
+
[_bV, _bI, _tI, _p, _t],
|
|
564
|
+
[0, 0, 0, () => EnabledBaselineParameters, 128 | 0], 3
|
|
565
|
+
];
|
|
566
|
+
var EnableBaselineOutput$ = [3, n0, _EBO,
|
|
567
|
+
0,
|
|
568
|
+
[_oI, _a],
|
|
569
|
+
[0, 0], 2
|
|
570
|
+
];
|
|
571
|
+
var EnableControlInput$ = [3, n0, _ECI,
|
|
572
|
+
0,
|
|
573
|
+
[_cI, _tI, _t, _p],
|
|
574
|
+
[0, 0, 128 | 0, () => EnabledControlParameters], 2
|
|
575
|
+
];
|
|
576
|
+
var EnableControlOutput$ = [3, n0, _ECO,
|
|
577
|
+
0,
|
|
578
|
+
[_oI, _a],
|
|
579
|
+
[0, 0], 1
|
|
580
|
+
];
|
|
581
|
+
var EnabledBaselineDetails$ = [3, n0, _EBD,
|
|
582
|
+
0,
|
|
583
|
+
[_a, _bI, _tI, _sS, _bV, _dSS, _pI, _p],
|
|
584
|
+
[0, 0, 0, () => EnablementStatusSummary$, 0, () => EnabledBaselineDriftStatusSummary$, 0, () => EnabledBaselineParameterSummaries], 4
|
|
585
|
+
];
|
|
586
|
+
var EnabledBaselineDriftStatusSummary$ = [3, n0, _EBDSS,
|
|
587
|
+
0,
|
|
588
|
+
[_ty],
|
|
589
|
+
[() => EnabledBaselineDriftTypes$]
|
|
590
|
+
];
|
|
591
|
+
var EnabledBaselineDriftTypes$ = [3, n0, _EBDT,
|
|
592
|
+
0,
|
|
593
|
+
[_i],
|
|
594
|
+
[() => EnabledBaselineInheritanceDrift$]
|
|
595
|
+
];
|
|
596
|
+
var EnabledBaselineFilter$ = [3, n0, _EBF,
|
|
597
|
+
0,
|
|
598
|
+
[_tIa, _bIa, _pIa, _sta, _iDS],
|
|
599
|
+
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
600
|
+
];
|
|
601
|
+
var EnabledBaselineInheritanceDrift$ = [3, n0, _EBID,
|
|
602
|
+
0,
|
|
603
|
+
[_st],
|
|
604
|
+
[0]
|
|
605
|
+
];
|
|
606
|
+
var EnabledBaselineParameter$ = [3, n0, _EBP,
|
|
607
|
+
0,
|
|
608
|
+
[_k, _va],
|
|
609
|
+
[0, 15], 2
|
|
610
|
+
];
|
|
611
|
+
var EnabledBaselineParameterSummary$ = [3, n0, _EBPS,
|
|
612
|
+
0,
|
|
613
|
+
[_k, _va],
|
|
614
|
+
[0, 15], 2
|
|
615
|
+
];
|
|
616
|
+
var EnabledBaselineSummary$ = [3, n0, _EBS,
|
|
617
|
+
0,
|
|
618
|
+
[_a, _bI, _tI, _sS, _bV, _dSS, _pI],
|
|
619
|
+
[0, 0, 0, () => EnablementStatusSummary$, 0, () => EnabledBaselineDriftStatusSummary$, 0], 4
|
|
620
|
+
];
|
|
621
|
+
var EnabledControlDetails$ = [3, n0, _ECD,
|
|
622
|
+
0,
|
|
623
|
+
[_a, _cI, _tI, _sS, _dSS, _pI, _tR, _p],
|
|
624
|
+
[0, 0, 0, () => EnablementStatusSummary$, () => DriftStatusSummary$, 0, () => TargetRegions, () => EnabledControlParameterSummaries]
|
|
625
|
+
];
|
|
626
|
+
var EnabledControlDriftTypes$ = [3, n0, _ECDT,
|
|
627
|
+
0,
|
|
628
|
+
[_i, _r],
|
|
629
|
+
[() => EnabledControlInheritanceDrift$, () => EnabledControlResourceDrift$]
|
|
630
|
+
];
|
|
631
|
+
var EnabledControlFilter$ = [3, n0, _ECF,
|
|
632
|
+
0,
|
|
633
|
+
[_cIo, _sta, _dSr, _pIa, _iDS, _rDS],
|
|
634
|
+
[64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
635
|
+
];
|
|
636
|
+
var EnabledControlInheritanceDrift$ = [3, n0, _ECID,
|
|
637
|
+
0,
|
|
638
|
+
[_st],
|
|
639
|
+
[0]
|
|
640
|
+
];
|
|
641
|
+
var EnabledControlParameter$ = [3, n0, _ECP,
|
|
642
|
+
0,
|
|
643
|
+
[_k, _va],
|
|
644
|
+
[0, 15], 2
|
|
645
|
+
];
|
|
646
|
+
var EnabledControlParameterSummary$ = [3, n0, _ECPS,
|
|
647
|
+
0,
|
|
648
|
+
[_k, _va],
|
|
649
|
+
[0, 15], 2
|
|
650
|
+
];
|
|
651
|
+
var EnabledControlResourceDrift$ = [3, n0, _ECRD,
|
|
652
|
+
0,
|
|
653
|
+
[_st],
|
|
654
|
+
[0]
|
|
655
|
+
];
|
|
656
|
+
var EnabledControlSummary$ = [3, n0, _ECS,
|
|
657
|
+
0,
|
|
658
|
+
[_a, _cI, _tI, _sS, _dSS, _pI],
|
|
659
|
+
[0, 0, 0, () => EnablementStatusSummary$, () => DriftStatusSummary$, 0]
|
|
660
|
+
];
|
|
661
|
+
var EnablementStatusSummary$ = [3, n0, _ESS,
|
|
662
|
+
0,
|
|
663
|
+
[_st, _lOI],
|
|
664
|
+
[0, 0]
|
|
665
|
+
];
|
|
666
|
+
var GetBaselineInput$ = [3, n0, _GBI,
|
|
667
|
+
0,
|
|
668
|
+
[_bI],
|
|
669
|
+
[0], 1
|
|
670
|
+
];
|
|
671
|
+
var GetBaselineOperationInput$ = [3, n0, _GBOI,
|
|
672
|
+
0,
|
|
673
|
+
[_oI],
|
|
674
|
+
[0], 1
|
|
675
|
+
];
|
|
676
|
+
var GetBaselineOperationOutput$ = [3, n0, _GBOO,
|
|
677
|
+
0,
|
|
678
|
+
[_bO],
|
|
679
|
+
[() => BaselineOperation$], 1
|
|
680
|
+
];
|
|
681
|
+
var GetBaselineOutput$ = [3, n0, _GBO,
|
|
682
|
+
0,
|
|
683
|
+
[_a, _n, _d],
|
|
684
|
+
[0, 0, 0], 2
|
|
685
|
+
];
|
|
686
|
+
var GetControlOperationInput$ = [3, n0, _GCOI,
|
|
687
|
+
0,
|
|
688
|
+
[_oI],
|
|
689
|
+
[0], 1
|
|
690
|
+
];
|
|
691
|
+
var GetControlOperationOutput$ = [3, n0, _GCOO,
|
|
692
|
+
0,
|
|
693
|
+
[_cO],
|
|
694
|
+
[() => ControlOperation$], 1
|
|
695
|
+
];
|
|
696
|
+
var GetEnabledBaselineInput$ = [3, n0, _GEBI,
|
|
697
|
+
0,
|
|
698
|
+
[_eBI],
|
|
699
|
+
[0], 1
|
|
700
|
+
];
|
|
701
|
+
var GetEnabledBaselineOutput$ = [3, n0, _GEBO,
|
|
702
|
+
0,
|
|
703
|
+
[_eBD],
|
|
704
|
+
[() => EnabledBaselineDetails$]
|
|
705
|
+
];
|
|
706
|
+
var GetEnabledControlInput$ = [3, n0, _GECI,
|
|
707
|
+
0,
|
|
708
|
+
[_eCI],
|
|
709
|
+
[0], 1
|
|
710
|
+
];
|
|
711
|
+
var GetEnabledControlOutput$ = [3, n0, _GECO,
|
|
712
|
+
0,
|
|
713
|
+
[_eCD],
|
|
714
|
+
[() => EnabledControlDetails$], 1
|
|
715
|
+
];
|
|
716
|
+
var GetLandingZoneInput$ = [3, n0, _GLZI,
|
|
717
|
+
0,
|
|
718
|
+
[_lZI],
|
|
719
|
+
[0], 1
|
|
720
|
+
];
|
|
721
|
+
var GetLandingZoneOperationInput$ = [3, n0, _GLZOI,
|
|
722
|
+
0,
|
|
723
|
+
[_oI],
|
|
724
|
+
[0], 1
|
|
725
|
+
];
|
|
726
|
+
var GetLandingZoneOperationOutput$ = [3, n0, _GLZOO,
|
|
727
|
+
0,
|
|
728
|
+
[_oD],
|
|
729
|
+
[() => LandingZoneOperationDetail$], 1
|
|
730
|
+
];
|
|
731
|
+
var GetLandingZoneOutput$ = [3, n0, _GLZO,
|
|
732
|
+
0,
|
|
733
|
+
[_lZ],
|
|
734
|
+
[() => LandingZoneDetail$], 1
|
|
735
|
+
];
|
|
736
|
+
var LandingZoneDetail$ = [3, n0, _LZD,
|
|
737
|
+
0,
|
|
738
|
+
[_v, _ma, _rT, _a, _st, _lAV, _dS],
|
|
739
|
+
[0, 15, 64 | 0, 0, 0, 0, () => LandingZoneDriftStatusSummary$], 2
|
|
740
|
+
];
|
|
741
|
+
var LandingZoneDriftStatusSummary$ = [3, n0, _LZDSS,
|
|
742
|
+
0,
|
|
743
|
+
[_st],
|
|
744
|
+
[0]
|
|
745
|
+
];
|
|
746
|
+
var LandingZoneOperationDetail$ = [3, n0, _LZOD,
|
|
747
|
+
0,
|
|
748
|
+
[_oT, _oI, _st, _sT, _eT, _sM],
|
|
749
|
+
[0, 0, 0, 5, 5, 0]
|
|
750
|
+
];
|
|
751
|
+
var LandingZoneOperationFilter$ = [3, n0, _LZOF,
|
|
752
|
+
0,
|
|
753
|
+
[_ty, _sta],
|
|
754
|
+
[64 | 0, 64 | 0]
|
|
755
|
+
];
|
|
756
|
+
var LandingZoneOperationSummary$ = [3, n0, _LZOS,
|
|
757
|
+
0,
|
|
758
|
+
[_oT, _oI, _st],
|
|
759
|
+
[0, 0, 0]
|
|
760
|
+
];
|
|
761
|
+
var LandingZoneSummary$ = [3, n0, _LZS,
|
|
762
|
+
0,
|
|
763
|
+
[_a],
|
|
764
|
+
[0]
|
|
765
|
+
];
|
|
766
|
+
var ListBaselinesInput$ = [3, n0, _LBI,
|
|
767
|
+
0,
|
|
768
|
+
[_nT, _mR],
|
|
769
|
+
[0, 1]
|
|
770
|
+
];
|
|
771
|
+
var ListBaselinesOutput$ = [3, n0, _LBO,
|
|
772
|
+
0,
|
|
773
|
+
[_b, _nT],
|
|
774
|
+
[() => Baselines, 0], 1
|
|
775
|
+
];
|
|
776
|
+
var ListControlOperationsInput$ = [3, n0, _LCOI,
|
|
777
|
+
0,
|
|
778
|
+
[_f, _nT, _mR],
|
|
779
|
+
[() => ControlOperationFilter$, 0, 1]
|
|
780
|
+
];
|
|
781
|
+
var ListControlOperationsOutput$ = [3, n0, _LCOO,
|
|
782
|
+
0,
|
|
783
|
+
[_cOo, _nT],
|
|
784
|
+
[() => ControlOperations, 0], 1
|
|
785
|
+
];
|
|
786
|
+
var ListEnabledBaselinesInput$ = [3, n0, _LEBI,
|
|
787
|
+
0,
|
|
788
|
+
[_f, _nT, _mR, _iC],
|
|
789
|
+
[() => EnabledBaselineFilter$, 0, 1, 2]
|
|
790
|
+
];
|
|
791
|
+
var ListEnabledBaselinesOutput$ = [3, n0, _LEBO,
|
|
792
|
+
0,
|
|
793
|
+
[_eB, _nT],
|
|
794
|
+
[() => EnabledBaselines, 0], 1
|
|
795
|
+
];
|
|
796
|
+
var ListEnabledControlsInput$ = [3, n0, _LECI,
|
|
797
|
+
0,
|
|
798
|
+
[_tI, _nT, _mR, _f, _iC],
|
|
799
|
+
[0, 0, 1, () => EnabledControlFilter$, 2]
|
|
800
|
+
];
|
|
801
|
+
var ListEnabledControlsOutput$ = [3, n0, _LECO,
|
|
802
|
+
0,
|
|
803
|
+
[_eC, _nT],
|
|
804
|
+
[() => EnabledControls, 0], 1
|
|
805
|
+
];
|
|
806
|
+
var ListLandingZoneOperationsInput$ = [3, n0, _LLZOI,
|
|
807
|
+
0,
|
|
808
|
+
[_f, _nT, _mR],
|
|
809
|
+
[() => LandingZoneOperationFilter$, 0, 1]
|
|
810
|
+
];
|
|
811
|
+
var ListLandingZoneOperationsOutput$ = [3, n0, _LLZOO,
|
|
812
|
+
0,
|
|
813
|
+
[_lZO, _nT],
|
|
814
|
+
[() => LandingZoneOperations, 0], 1
|
|
815
|
+
];
|
|
816
|
+
var ListLandingZonesInput$ = [3, n0, _LLZI,
|
|
817
|
+
0,
|
|
818
|
+
[_nT, _mR],
|
|
819
|
+
[0, 1]
|
|
820
|
+
];
|
|
821
|
+
var ListLandingZonesOutput$ = [3, n0, _LLZO,
|
|
822
|
+
0,
|
|
823
|
+
[_lZa, _nT],
|
|
824
|
+
[() => LandingZoneSummaries, 0], 1
|
|
825
|
+
];
|
|
826
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
827
|
+
0,
|
|
828
|
+
[_rA],
|
|
829
|
+
[[0, 1]], 1
|
|
830
|
+
];
|
|
831
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
832
|
+
0,
|
|
833
|
+
[_t],
|
|
834
|
+
[128 | 0], 1
|
|
835
|
+
];
|
|
836
|
+
var Region$ = [3, n0, _R,
|
|
837
|
+
0,
|
|
838
|
+
[_n],
|
|
839
|
+
[0]
|
|
840
|
+
];
|
|
841
|
+
var ResetEnabledBaselineInput$ = [3, n0, _REBI,
|
|
842
|
+
0,
|
|
843
|
+
[_eBI],
|
|
844
|
+
[0], 1
|
|
845
|
+
];
|
|
846
|
+
var ResetEnabledBaselineOutput$ = [3, n0, _REBO,
|
|
847
|
+
0,
|
|
848
|
+
[_oI],
|
|
849
|
+
[0], 1
|
|
850
|
+
];
|
|
851
|
+
var ResetEnabledControlInput$ = [3, n0, _RECI,
|
|
852
|
+
0,
|
|
853
|
+
[_eCI],
|
|
854
|
+
[0], 1
|
|
855
|
+
];
|
|
856
|
+
var ResetEnabledControlOutput$ = [3, n0, _RECO,
|
|
857
|
+
0,
|
|
858
|
+
[_oI],
|
|
859
|
+
[0], 1
|
|
860
|
+
];
|
|
861
|
+
var ResetLandingZoneInput$ = [3, n0, _RLZI,
|
|
862
|
+
0,
|
|
863
|
+
[_lZI],
|
|
864
|
+
[0], 1
|
|
865
|
+
];
|
|
866
|
+
var ResetLandingZoneOutput$ = [3, n0, _RLZO,
|
|
867
|
+
0,
|
|
868
|
+
[_oI],
|
|
869
|
+
[0], 1
|
|
870
|
+
];
|
|
871
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
872
|
+
0,
|
|
873
|
+
[_rA, _t],
|
|
874
|
+
[[0, 1], 128 | 0], 2
|
|
875
|
+
];
|
|
876
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
877
|
+
0,
|
|
878
|
+
[],
|
|
879
|
+
[]
|
|
880
|
+
];
|
|
881
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
882
|
+
0,
|
|
883
|
+
[_rA, _tK],
|
|
884
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
885
|
+
];
|
|
886
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
887
|
+
0,
|
|
888
|
+
[],
|
|
889
|
+
[]
|
|
890
|
+
];
|
|
891
|
+
var UpdateEnabledBaselineInput$ = [3, n0, _UEBI,
|
|
892
|
+
0,
|
|
893
|
+
[_bV, _eBI, _p],
|
|
894
|
+
[0, 0, () => EnabledBaselineParameters], 2
|
|
895
|
+
];
|
|
896
|
+
var UpdateEnabledBaselineOutput$ = [3, n0, _UEBO,
|
|
897
|
+
0,
|
|
898
|
+
[_oI],
|
|
899
|
+
[0], 1
|
|
900
|
+
];
|
|
901
|
+
var UpdateEnabledControlInput$ = [3, n0, _UECI,
|
|
902
|
+
0,
|
|
903
|
+
[_p, _eCI],
|
|
904
|
+
[() => EnabledControlParameters, 0], 2
|
|
905
|
+
];
|
|
906
|
+
var UpdateEnabledControlOutput$ = [3, n0, _UECO,
|
|
907
|
+
0,
|
|
908
|
+
[_oI],
|
|
909
|
+
[0], 1
|
|
910
|
+
];
|
|
911
|
+
var UpdateLandingZoneInput$ = [3, n0, _ULZI,
|
|
912
|
+
0,
|
|
913
|
+
[_v, _lZI, _rT, _ma],
|
|
914
|
+
[0, 0, 64 | 0, 15], 2
|
|
915
|
+
];
|
|
916
|
+
var UpdateLandingZoneOutput$ = [3, n0, _ULZO,
|
|
917
|
+
0,
|
|
918
|
+
[_oI],
|
|
919
|
+
[0], 1
|
|
920
|
+
];
|
|
921
|
+
var Baselines = [1, n0, _B,
|
|
922
|
+
0, () => BaselineSummary$
|
|
923
|
+
];
|
|
924
|
+
var ControlOperations = [1, n0, _COo,
|
|
925
|
+
0, () => ControlOperationSummary$
|
|
926
|
+
];
|
|
927
|
+
var EnabledBaselineParameters = [1, n0, _EBPn,
|
|
928
|
+
0, () => EnabledBaselineParameter$
|
|
929
|
+
];
|
|
930
|
+
var EnabledBaselineParameterSummaries = [1, n0, _EBPSn,
|
|
931
|
+
0, () => EnabledBaselineParameterSummary$
|
|
932
|
+
];
|
|
933
|
+
var EnabledBaselines = [1, n0, _EB,
|
|
934
|
+
0, () => EnabledBaselineSummary$
|
|
935
|
+
];
|
|
936
|
+
var EnabledControlParameters = [1, n0, _ECPn,
|
|
937
|
+
0, () => EnabledControlParameter$
|
|
938
|
+
];
|
|
939
|
+
var EnabledControlParameterSummaries = [1, n0, _ECPSn,
|
|
940
|
+
0, () => EnabledControlParameterSummary$
|
|
941
|
+
];
|
|
942
|
+
var EnabledControls = [1, n0, _EC,
|
|
943
|
+
0, () => EnabledControlSummary$
|
|
944
|
+
];
|
|
945
|
+
var LandingZoneOperations = [1, n0, _LZO,
|
|
946
|
+
0, () => LandingZoneOperationSummary$
|
|
947
|
+
];
|
|
948
|
+
var LandingZoneSummaries = [1, n0, _LZSa,
|
|
949
|
+
0, () => LandingZoneSummary$
|
|
950
|
+
];
|
|
951
|
+
var TargetRegions = [1, n0, _TR,
|
|
952
|
+
0, () => Region$
|
|
953
|
+
];
|
|
954
|
+
var CreateLandingZone$ = [9, n0, _CLZ,
|
|
955
|
+
{ [_h]: ["POST", "/create-landingzone", 200] }, () => CreateLandingZoneInput$, () => CreateLandingZoneOutput$
|
|
956
|
+
];
|
|
957
|
+
var DeleteLandingZone$ = [9, n0, _DLZ,
|
|
958
|
+
{ [_h]: ["POST", "/delete-landingzone", 200] }, () => DeleteLandingZoneInput$, () => DeleteLandingZoneOutput$
|
|
959
|
+
];
|
|
960
|
+
var DisableBaseline$ = [9, n0, _DB,
|
|
961
|
+
{ [_h]: ["POST", "/disable-baseline", 200] }, () => DisableBaselineInput$, () => DisableBaselineOutput$
|
|
962
|
+
];
|
|
963
|
+
var DisableControl$ = [9, n0, _DC,
|
|
964
|
+
{ [_h]: ["POST", "/disable-control", 200] }, () => DisableControlInput$, () => DisableControlOutput$
|
|
965
|
+
];
|
|
966
|
+
var EnableBaseline$ = [9, n0, _EBn,
|
|
967
|
+
{ [_h]: ["POST", "/enable-baseline", 200] }, () => EnableBaselineInput$, () => EnableBaselineOutput$
|
|
968
|
+
];
|
|
969
|
+
var EnableControl$ = [9, n0, _ECn,
|
|
970
|
+
{ [_h]: ["POST", "/enable-control", 200] }, () => EnableControlInput$, () => EnableControlOutput$
|
|
971
|
+
];
|
|
972
|
+
var GetBaseline$ = [9, n0, _GB,
|
|
973
|
+
{ [_h]: ["POST", "/get-baseline", 200] }, () => GetBaselineInput$, () => GetBaselineOutput$
|
|
974
|
+
];
|
|
975
|
+
var GetBaselineOperation$ = [9, n0, _GBOe,
|
|
976
|
+
{ [_h]: ["POST", "/get-baseline-operation", 200] }, () => GetBaselineOperationInput$, () => GetBaselineOperationOutput$
|
|
977
|
+
];
|
|
978
|
+
var GetControlOperation$ = [9, n0, _GCO,
|
|
979
|
+
{ [_h]: ["POST", "/get-control-operation", 200] }, () => GetControlOperationInput$, () => GetControlOperationOutput$
|
|
980
|
+
];
|
|
981
|
+
var GetEnabledBaseline$ = [9, n0, _GEB,
|
|
982
|
+
{ [_h]: ["POST", "/get-enabled-baseline", 200] }, () => GetEnabledBaselineInput$, () => GetEnabledBaselineOutput$
|
|
983
|
+
];
|
|
984
|
+
var GetEnabledControl$ = [9, n0, _GEC,
|
|
985
|
+
{ [_h]: ["POST", "/get-enabled-control", 200] }, () => GetEnabledControlInput$, () => GetEnabledControlOutput$
|
|
986
|
+
];
|
|
987
|
+
var GetLandingZone$ = [9, n0, _GLZ,
|
|
988
|
+
{ [_h]: ["POST", "/get-landingzone", 200] }, () => GetLandingZoneInput$, () => GetLandingZoneOutput$
|
|
989
|
+
];
|
|
990
|
+
var GetLandingZoneOperation$ = [9, n0, _GLZOe,
|
|
991
|
+
{ [_h]: ["POST", "/get-landingzone-operation", 200] }, () => GetLandingZoneOperationInput$, () => GetLandingZoneOperationOutput$
|
|
992
|
+
];
|
|
993
|
+
var ListBaselines$ = [9, n0, _LB,
|
|
994
|
+
{ [_h]: ["POST", "/list-baselines", 200] }, () => ListBaselinesInput$, () => ListBaselinesOutput$
|
|
995
|
+
];
|
|
996
|
+
var ListControlOperations$ = [9, n0, _LCO,
|
|
997
|
+
{ [_h]: ["POST", "/list-control-operations", 200] }, () => ListControlOperationsInput$, () => ListControlOperationsOutput$
|
|
998
|
+
];
|
|
999
|
+
var ListEnabledBaselines$ = [9, n0, _LEB,
|
|
1000
|
+
{ [_h]: ["POST", "/list-enabled-baselines", 200] }, () => ListEnabledBaselinesInput$, () => ListEnabledBaselinesOutput$
|
|
1001
|
+
];
|
|
1002
|
+
var ListEnabledControls$ = [9, n0, _LEC,
|
|
1003
|
+
{ [_h]: ["POST", "/list-enabled-controls", 200] }, () => ListEnabledControlsInput$, () => ListEnabledControlsOutput$
|
|
1004
|
+
];
|
|
1005
|
+
var ListLandingZoneOperations$ = [9, n0, _LLZOi,
|
|
1006
|
+
{ [_h]: ["POST", "/list-landingzone-operations", 200] }, () => ListLandingZoneOperationsInput$, () => ListLandingZoneOperationsOutput$
|
|
1007
|
+
];
|
|
1008
|
+
var ListLandingZones$ = [9, n0, _LLZ,
|
|
1009
|
+
{ [_h]: ["POST", "/list-landingzones", 200] }, () => ListLandingZonesInput$, () => ListLandingZonesOutput$
|
|
1010
|
+
];
|
|
1011
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1012
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
1013
|
+
];
|
|
1014
|
+
var ResetEnabledBaseline$ = [9, n0, _REB,
|
|
1015
|
+
{ [_h]: ["POST", "/reset-enabled-baseline", 200] }, () => ResetEnabledBaselineInput$, () => ResetEnabledBaselineOutput$
|
|
1016
|
+
];
|
|
1017
|
+
var ResetEnabledControl$ = [9, n0, _REC,
|
|
1018
|
+
{ [_h]: ["POST", "/reset-enabled-control", 200] }, () => ResetEnabledControlInput$, () => ResetEnabledControlOutput$
|
|
1019
|
+
];
|
|
1020
|
+
var ResetLandingZone$ = [9, n0, _RLZ,
|
|
1021
|
+
{ [_h]: ["POST", "/reset-landingzone", 200] }, () => ResetLandingZoneInput$, () => ResetLandingZoneOutput$
|
|
1022
|
+
];
|
|
1023
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1024
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
1025
|
+
];
|
|
1026
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1027
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
1028
|
+
];
|
|
1029
|
+
var UpdateEnabledBaseline$ = [9, n0, _UEB,
|
|
1030
|
+
{ [_h]: ["POST", "/update-enabled-baseline", 200] }, () => UpdateEnabledBaselineInput$, () => UpdateEnabledBaselineOutput$
|
|
1031
|
+
];
|
|
1032
|
+
var UpdateEnabledControl$ = [9, n0, _UEC,
|
|
1033
|
+
{ [_h]: ["POST", "/update-enabled-control", 200] }, () => UpdateEnabledControlInput$, () => UpdateEnabledControlOutput$
|
|
1034
|
+
];
|
|
1035
|
+
var UpdateLandingZone$ = [9, n0, _ULZ,
|
|
1036
|
+
{ [_h]: ["POST", "/update-landingzone", 200] }, () => UpdateLandingZoneInput$, () => UpdateLandingZoneOutput$
|
|
1037
|
+
];
|
|
1038
|
+
|
|
1039
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1040
|
+
return {
|
|
1041
|
+
apiVersion: "2018-05-10",
|
|
1042
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1043
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1044
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1045
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1046
|
+
extensions: config?.extensions ?? [],
|
|
1047
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultControlTowerHttpAuthSchemeProvider,
|
|
1048
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1049
|
+
{
|
|
1050
|
+
schemeId: "aws.auth#sigv4",
|
|
1051
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1052
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1053
|
+
},
|
|
1054
|
+
],
|
|
1055
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1056
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1057
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1058
|
+
defaultNamespace: "com.amazonaws.controltower",
|
|
1059
|
+
errorTypeRegistries,
|
|
1060
|
+
version: "2018-05-10",
|
|
1061
|
+
serviceTarget: "AWSControlTowerApis",
|
|
1062
|
+
},
|
|
1063
|
+
serviceId: config?.serviceId ?? "ControlTower",
|
|
1064
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1065
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1066
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1067
|
+
};
|
|
1068
|
+
};
|
|
1069
|
+
|
|
1070
|
+
const getRuntimeConfig = (config) => {
|
|
1071
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1072
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1073
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1074
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1075
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1076
|
+
const loaderConfig = {
|
|
1077
|
+
profile: config?.profile,
|
|
1078
|
+
logger: clientSharedValues.logger,
|
|
1079
|
+
};
|
|
1080
|
+
return {
|
|
1081
|
+
...clientSharedValues,
|
|
1082
|
+
...config,
|
|
1083
|
+
runtime: "node",
|
|
1084
|
+
defaultsMode,
|
|
1085
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1086
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1087
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1088
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1089
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1090
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1091
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1092
|
+
retryMode: config?.retryMode ??
|
|
1093
|
+
loadConfig({
|
|
1094
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1095
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1096
|
+
}, config),
|
|
1097
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1098
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1099
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1100
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1101
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1102
|
+
};
|
|
1103
|
+
};
|
|
1104
|
+
|
|
34
1105
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1106
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1107
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -562,48 +1633,179 @@ const LandingZoneStatus = {
|
|
|
562
1633
|
PROCESSING: "PROCESSING",
|
|
563
1634
|
};
|
|
564
1635
|
|
|
1636
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1637
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1638
|
+
exports.BaselineOperation$ = BaselineOperation$;
|
|
565
1639
|
exports.BaselineOperationStatus = BaselineOperationStatus;
|
|
566
1640
|
exports.BaselineOperationType = BaselineOperationType;
|
|
1641
|
+
exports.BaselineSummary$ = BaselineSummary$;
|
|
1642
|
+
exports.ConflictException = ConflictException;
|
|
1643
|
+
exports.ConflictException$ = ConflictException$;
|
|
1644
|
+
exports.ControlOperation$ = ControlOperation$;
|
|
1645
|
+
exports.ControlOperationFilter$ = ControlOperationFilter$;
|
|
567
1646
|
exports.ControlOperationStatus = ControlOperationStatus;
|
|
1647
|
+
exports.ControlOperationSummary$ = ControlOperationSummary$;
|
|
568
1648
|
exports.ControlOperationType = ControlOperationType;
|
|
569
1649
|
exports.ControlTower = ControlTower;
|
|
570
1650
|
exports.ControlTowerClient = ControlTowerClient;
|
|
1651
|
+
exports.ControlTowerServiceException = ControlTowerServiceException;
|
|
1652
|
+
exports.ControlTowerServiceException$ = ControlTowerServiceException$;
|
|
1653
|
+
exports.CreateLandingZone$ = CreateLandingZone$;
|
|
571
1654
|
exports.CreateLandingZoneCommand = CreateLandingZoneCommand;
|
|
1655
|
+
exports.CreateLandingZoneInput$ = CreateLandingZoneInput$;
|
|
1656
|
+
exports.CreateLandingZoneOutput$ = CreateLandingZoneOutput$;
|
|
1657
|
+
exports.DeleteLandingZone$ = DeleteLandingZone$;
|
|
572
1658
|
exports.DeleteLandingZoneCommand = DeleteLandingZoneCommand;
|
|
1659
|
+
exports.DeleteLandingZoneInput$ = DeleteLandingZoneInput$;
|
|
1660
|
+
exports.DeleteLandingZoneOutput$ = DeleteLandingZoneOutput$;
|
|
1661
|
+
exports.DisableBaseline$ = DisableBaseline$;
|
|
573
1662
|
exports.DisableBaselineCommand = DisableBaselineCommand;
|
|
1663
|
+
exports.DisableBaselineInput$ = DisableBaselineInput$;
|
|
1664
|
+
exports.DisableBaselineOutput$ = DisableBaselineOutput$;
|
|
1665
|
+
exports.DisableControl$ = DisableControl$;
|
|
574
1666
|
exports.DisableControlCommand = DisableControlCommand;
|
|
1667
|
+
exports.DisableControlInput$ = DisableControlInput$;
|
|
1668
|
+
exports.DisableControlOutput$ = DisableControlOutput$;
|
|
575
1669
|
exports.DriftStatus = DriftStatus;
|
|
1670
|
+
exports.DriftStatusSummary$ = DriftStatusSummary$;
|
|
1671
|
+
exports.EnableBaseline$ = EnableBaseline$;
|
|
576
1672
|
exports.EnableBaselineCommand = EnableBaselineCommand;
|
|
1673
|
+
exports.EnableBaselineInput$ = EnableBaselineInput$;
|
|
1674
|
+
exports.EnableBaselineOutput$ = EnableBaselineOutput$;
|
|
1675
|
+
exports.EnableControl$ = EnableControl$;
|
|
577
1676
|
exports.EnableControlCommand = EnableControlCommand;
|
|
1677
|
+
exports.EnableControlInput$ = EnableControlInput$;
|
|
1678
|
+
exports.EnableControlOutput$ = EnableControlOutput$;
|
|
1679
|
+
exports.EnabledBaselineDetails$ = EnabledBaselineDetails$;
|
|
578
1680
|
exports.EnabledBaselineDriftStatus = EnabledBaselineDriftStatus;
|
|
1681
|
+
exports.EnabledBaselineDriftStatusSummary$ = EnabledBaselineDriftStatusSummary$;
|
|
1682
|
+
exports.EnabledBaselineDriftTypes$ = EnabledBaselineDriftTypes$;
|
|
1683
|
+
exports.EnabledBaselineFilter$ = EnabledBaselineFilter$;
|
|
1684
|
+
exports.EnabledBaselineInheritanceDrift$ = EnabledBaselineInheritanceDrift$;
|
|
1685
|
+
exports.EnabledBaselineParameter$ = EnabledBaselineParameter$;
|
|
1686
|
+
exports.EnabledBaselineParameterSummary$ = EnabledBaselineParameterSummary$;
|
|
1687
|
+
exports.EnabledBaselineSummary$ = EnabledBaselineSummary$;
|
|
1688
|
+
exports.EnabledControlDetails$ = EnabledControlDetails$;
|
|
1689
|
+
exports.EnabledControlDriftTypes$ = EnabledControlDriftTypes$;
|
|
1690
|
+
exports.EnabledControlFilter$ = EnabledControlFilter$;
|
|
1691
|
+
exports.EnabledControlInheritanceDrift$ = EnabledControlInheritanceDrift$;
|
|
1692
|
+
exports.EnabledControlParameter$ = EnabledControlParameter$;
|
|
1693
|
+
exports.EnabledControlParameterSummary$ = EnabledControlParameterSummary$;
|
|
1694
|
+
exports.EnabledControlResourceDrift$ = EnabledControlResourceDrift$;
|
|
1695
|
+
exports.EnabledControlSummary$ = EnabledControlSummary$;
|
|
579
1696
|
exports.EnablementStatus = EnablementStatus;
|
|
1697
|
+
exports.EnablementStatusSummary$ = EnablementStatusSummary$;
|
|
1698
|
+
exports.GetBaseline$ = GetBaseline$;
|
|
580
1699
|
exports.GetBaselineCommand = GetBaselineCommand;
|
|
1700
|
+
exports.GetBaselineInput$ = GetBaselineInput$;
|
|
1701
|
+
exports.GetBaselineOperation$ = GetBaselineOperation$;
|
|
581
1702
|
exports.GetBaselineOperationCommand = GetBaselineOperationCommand;
|
|
1703
|
+
exports.GetBaselineOperationInput$ = GetBaselineOperationInput$;
|
|
1704
|
+
exports.GetBaselineOperationOutput$ = GetBaselineOperationOutput$;
|
|
1705
|
+
exports.GetBaselineOutput$ = GetBaselineOutput$;
|
|
1706
|
+
exports.GetControlOperation$ = GetControlOperation$;
|
|
582
1707
|
exports.GetControlOperationCommand = GetControlOperationCommand;
|
|
1708
|
+
exports.GetControlOperationInput$ = GetControlOperationInput$;
|
|
1709
|
+
exports.GetControlOperationOutput$ = GetControlOperationOutput$;
|
|
1710
|
+
exports.GetEnabledBaseline$ = GetEnabledBaseline$;
|
|
583
1711
|
exports.GetEnabledBaselineCommand = GetEnabledBaselineCommand;
|
|
1712
|
+
exports.GetEnabledBaselineInput$ = GetEnabledBaselineInput$;
|
|
1713
|
+
exports.GetEnabledBaselineOutput$ = GetEnabledBaselineOutput$;
|
|
1714
|
+
exports.GetEnabledControl$ = GetEnabledControl$;
|
|
584
1715
|
exports.GetEnabledControlCommand = GetEnabledControlCommand;
|
|
1716
|
+
exports.GetEnabledControlInput$ = GetEnabledControlInput$;
|
|
1717
|
+
exports.GetEnabledControlOutput$ = GetEnabledControlOutput$;
|
|
1718
|
+
exports.GetLandingZone$ = GetLandingZone$;
|
|
585
1719
|
exports.GetLandingZoneCommand = GetLandingZoneCommand;
|
|
1720
|
+
exports.GetLandingZoneInput$ = GetLandingZoneInput$;
|
|
1721
|
+
exports.GetLandingZoneOperation$ = GetLandingZoneOperation$;
|
|
586
1722
|
exports.GetLandingZoneOperationCommand = GetLandingZoneOperationCommand;
|
|
1723
|
+
exports.GetLandingZoneOperationInput$ = GetLandingZoneOperationInput$;
|
|
1724
|
+
exports.GetLandingZoneOperationOutput$ = GetLandingZoneOperationOutput$;
|
|
1725
|
+
exports.GetLandingZoneOutput$ = GetLandingZoneOutput$;
|
|
1726
|
+
exports.InternalServerException = InternalServerException;
|
|
1727
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1728
|
+
exports.LandingZoneDetail$ = LandingZoneDetail$;
|
|
587
1729
|
exports.LandingZoneDriftStatus = LandingZoneDriftStatus;
|
|
1730
|
+
exports.LandingZoneDriftStatusSummary$ = LandingZoneDriftStatusSummary$;
|
|
1731
|
+
exports.LandingZoneOperationDetail$ = LandingZoneOperationDetail$;
|
|
1732
|
+
exports.LandingZoneOperationFilter$ = LandingZoneOperationFilter$;
|
|
588
1733
|
exports.LandingZoneOperationStatus = LandingZoneOperationStatus;
|
|
1734
|
+
exports.LandingZoneOperationSummary$ = LandingZoneOperationSummary$;
|
|
589
1735
|
exports.LandingZoneOperationType = LandingZoneOperationType;
|
|
590
1736
|
exports.LandingZoneStatus = LandingZoneStatus;
|
|
1737
|
+
exports.LandingZoneSummary$ = LandingZoneSummary$;
|
|
1738
|
+
exports.ListBaselines$ = ListBaselines$;
|
|
591
1739
|
exports.ListBaselinesCommand = ListBaselinesCommand;
|
|
1740
|
+
exports.ListBaselinesInput$ = ListBaselinesInput$;
|
|
1741
|
+
exports.ListBaselinesOutput$ = ListBaselinesOutput$;
|
|
1742
|
+
exports.ListControlOperations$ = ListControlOperations$;
|
|
592
1743
|
exports.ListControlOperationsCommand = ListControlOperationsCommand;
|
|
1744
|
+
exports.ListControlOperationsInput$ = ListControlOperationsInput$;
|
|
1745
|
+
exports.ListControlOperationsOutput$ = ListControlOperationsOutput$;
|
|
1746
|
+
exports.ListEnabledBaselines$ = ListEnabledBaselines$;
|
|
593
1747
|
exports.ListEnabledBaselinesCommand = ListEnabledBaselinesCommand;
|
|
1748
|
+
exports.ListEnabledBaselinesInput$ = ListEnabledBaselinesInput$;
|
|
1749
|
+
exports.ListEnabledBaselinesOutput$ = ListEnabledBaselinesOutput$;
|
|
1750
|
+
exports.ListEnabledControls$ = ListEnabledControls$;
|
|
594
1751
|
exports.ListEnabledControlsCommand = ListEnabledControlsCommand;
|
|
1752
|
+
exports.ListEnabledControlsInput$ = ListEnabledControlsInput$;
|
|
1753
|
+
exports.ListEnabledControlsOutput$ = ListEnabledControlsOutput$;
|
|
1754
|
+
exports.ListLandingZoneOperations$ = ListLandingZoneOperations$;
|
|
595
1755
|
exports.ListLandingZoneOperationsCommand = ListLandingZoneOperationsCommand;
|
|
1756
|
+
exports.ListLandingZoneOperationsInput$ = ListLandingZoneOperationsInput$;
|
|
1757
|
+
exports.ListLandingZoneOperationsOutput$ = ListLandingZoneOperationsOutput$;
|
|
1758
|
+
exports.ListLandingZones$ = ListLandingZones$;
|
|
596
1759
|
exports.ListLandingZonesCommand = ListLandingZonesCommand;
|
|
1760
|
+
exports.ListLandingZonesInput$ = ListLandingZonesInput$;
|
|
1761
|
+
exports.ListLandingZonesOutput$ = ListLandingZonesOutput$;
|
|
1762
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
597
1763
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1764
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1765
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
1766
|
+
exports.Region$ = Region$;
|
|
598
1767
|
exports.RemediationType = RemediationType;
|
|
1768
|
+
exports.ResetEnabledBaseline$ = ResetEnabledBaseline$;
|
|
599
1769
|
exports.ResetEnabledBaselineCommand = ResetEnabledBaselineCommand;
|
|
1770
|
+
exports.ResetEnabledBaselineInput$ = ResetEnabledBaselineInput$;
|
|
1771
|
+
exports.ResetEnabledBaselineOutput$ = ResetEnabledBaselineOutput$;
|
|
1772
|
+
exports.ResetEnabledControl$ = ResetEnabledControl$;
|
|
600
1773
|
exports.ResetEnabledControlCommand = ResetEnabledControlCommand;
|
|
1774
|
+
exports.ResetEnabledControlInput$ = ResetEnabledControlInput$;
|
|
1775
|
+
exports.ResetEnabledControlOutput$ = ResetEnabledControlOutput$;
|
|
1776
|
+
exports.ResetLandingZone$ = ResetLandingZone$;
|
|
601
1777
|
exports.ResetLandingZoneCommand = ResetLandingZoneCommand;
|
|
1778
|
+
exports.ResetLandingZoneInput$ = ResetLandingZoneInput$;
|
|
1779
|
+
exports.ResetLandingZoneOutput$ = ResetLandingZoneOutput$;
|
|
1780
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1781
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1782
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1783
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1784
|
+
exports.TagResource$ = TagResource$;
|
|
602
1785
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1786
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1787
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
1788
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1789
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1790
|
+
exports.UntagResource$ = UntagResource$;
|
|
603
1791
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1792
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1793
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
1794
|
+
exports.UpdateEnabledBaseline$ = UpdateEnabledBaseline$;
|
|
604
1795
|
exports.UpdateEnabledBaselineCommand = UpdateEnabledBaselineCommand;
|
|
1796
|
+
exports.UpdateEnabledBaselineInput$ = UpdateEnabledBaselineInput$;
|
|
1797
|
+
exports.UpdateEnabledBaselineOutput$ = UpdateEnabledBaselineOutput$;
|
|
1798
|
+
exports.UpdateEnabledControl$ = UpdateEnabledControl$;
|
|
605
1799
|
exports.UpdateEnabledControlCommand = UpdateEnabledControlCommand;
|
|
1800
|
+
exports.UpdateEnabledControlInput$ = UpdateEnabledControlInput$;
|
|
1801
|
+
exports.UpdateEnabledControlOutput$ = UpdateEnabledControlOutput$;
|
|
1802
|
+
exports.UpdateLandingZone$ = UpdateLandingZone$;
|
|
606
1803
|
exports.UpdateLandingZoneCommand = UpdateLandingZoneCommand;
|
|
1804
|
+
exports.UpdateLandingZoneInput$ = UpdateLandingZoneInput$;
|
|
1805
|
+
exports.UpdateLandingZoneOutput$ = UpdateLandingZoneOutput$;
|
|
1806
|
+
exports.ValidationException = ValidationException;
|
|
1807
|
+
exports.ValidationException$ = ValidationException$;
|
|
1808
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
607
1809
|
exports.paginateListBaselines = paginateListBaselines;
|
|
608
1810
|
exports.paginateListControlOperations = paginateListControlOperations;
|
|
609
1811
|
exports.paginateListEnabledBaselines = paginateListEnabledBaselines;
|