@aws-sdk/client-imagebuilder 3.986.0 → 3.988.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 +96 -3161
- package/dist-cjs/models/ImagebuilderServiceException.js +12 -0
- package/dist-cjs/models/errors.js +264 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +2497 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +161 -155
- package/dist-types/schemas/schemas_0.d.ts +27 -20
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -20
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ImagebuilderServiceException = require('./models/ImagebuilderServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,2715 +113,6 @@ class ImagebuilderClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ImagebuilderServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ImagebuilderServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends ImagebuilderServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class CallRateLimitExceededException extends ImagebuilderServiceException {
|
|
133
|
-
name = "CallRateLimitExceededException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "CallRateLimitExceededException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, CallRateLimitExceededException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ClientException extends ImagebuilderServiceException {
|
|
145
|
-
name = "ClientException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ClientException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ClientException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ForbiddenException extends ImagebuilderServiceException {
|
|
157
|
-
name = "ForbiddenException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ForbiddenException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class IdempotentParameterMismatchException extends ImagebuilderServiceException {
|
|
169
|
-
name = "IdempotentParameterMismatchException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "IdempotentParameterMismatchException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class InvalidRequestException extends ImagebuilderServiceException {
|
|
181
|
-
name = "InvalidRequestException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "InvalidRequestException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ResourceInUseException extends ImagebuilderServiceException {
|
|
193
|
-
name = "ResourceInUseException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ResourceInUseException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ServiceException extends ImagebuilderServiceException {
|
|
205
|
-
name = "ServiceException";
|
|
206
|
-
$fault = "server";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "ServiceException",
|
|
210
|
-
$fault: "server",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, ServiceException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class ServiceUnavailableException extends ImagebuilderServiceException {
|
|
217
|
-
name = "ServiceUnavailableException";
|
|
218
|
-
$fault = "server";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "ServiceUnavailableException",
|
|
222
|
-
$fault: "server",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class DryRunOperationException extends ImagebuilderServiceException {
|
|
229
|
-
name = "DryRunOperationException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "DryRunOperationException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, DryRunOperationException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class InvalidParameterCombinationException extends ImagebuilderServiceException {
|
|
241
|
-
name = "InvalidParameterCombinationException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "InvalidParameterCombinationException",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
class InvalidVersionNumberException extends ImagebuilderServiceException {
|
|
253
|
-
name = "InvalidVersionNumberException";
|
|
254
|
-
$fault = "client";
|
|
255
|
-
constructor(opts) {
|
|
256
|
-
super({
|
|
257
|
-
name: "InvalidVersionNumberException",
|
|
258
|
-
$fault: "client",
|
|
259
|
-
...opts,
|
|
260
|
-
});
|
|
261
|
-
Object.setPrototypeOf(this, InvalidVersionNumberException.prototype);
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
class ServiceQuotaExceededException extends ImagebuilderServiceException {
|
|
265
|
-
name = "ServiceQuotaExceededException";
|
|
266
|
-
$fault = "client";
|
|
267
|
-
constructor(opts) {
|
|
268
|
-
super({
|
|
269
|
-
name: "ServiceQuotaExceededException",
|
|
270
|
-
$fault: "client",
|
|
271
|
-
...opts,
|
|
272
|
-
});
|
|
273
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
class ResourceAlreadyExistsException extends ImagebuilderServiceException {
|
|
277
|
-
name = "ResourceAlreadyExistsException";
|
|
278
|
-
$fault = "client";
|
|
279
|
-
constructor(opts) {
|
|
280
|
-
super({
|
|
281
|
-
name: "ResourceAlreadyExistsException",
|
|
282
|
-
$fault: "client",
|
|
283
|
-
...opts,
|
|
284
|
-
});
|
|
285
|
-
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
class ResourceDependencyException extends ImagebuilderServiceException {
|
|
289
|
-
name = "ResourceDependencyException";
|
|
290
|
-
$fault = "client";
|
|
291
|
-
constructor(opts) {
|
|
292
|
-
super({
|
|
293
|
-
name: "ResourceDependencyException",
|
|
294
|
-
$fault: "client",
|
|
295
|
-
...opts,
|
|
296
|
-
});
|
|
297
|
-
Object.setPrototypeOf(this, ResourceDependencyException.prototype);
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
class ResourceNotFoundException extends ImagebuilderServiceException {
|
|
301
|
-
name = "ResourceNotFoundException";
|
|
302
|
-
$fault = "client";
|
|
303
|
-
constructor(opts) {
|
|
304
|
-
super({
|
|
305
|
-
name: "ResourceNotFoundException",
|
|
306
|
-
$fault: "client",
|
|
307
|
-
...opts,
|
|
308
|
-
});
|
|
309
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
class TooManyRequestsException extends ImagebuilderServiceException {
|
|
313
|
-
name = "TooManyRequestsException";
|
|
314
|
-
$fault = "client";
|
|
315
|
-
constructor(opts) {
|
|
316
|
-
super({
|
|
317
|
-
name: "TooManyRequestsException",
|
|
318
|
-
$fault: "client",
|
|
319
|
-
...opts,
|
|
320
|
-
});
|
|
321
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
322
|
-
}
|
|
323
|
-
}
|
|
324
|
-
class InvalidPaginationTokenException extends ImagebuilderServiceException {
|
|
325
|
-
name = "InvalidPaginationTokenException";
|
|
326
|
-
$fault = "client";
|
|
327
|
-
constructor(opts) {
|
|
328
|
-
super({
|
|
329
|
-
name: "InvalidPaginationTokenException",
|
|
330
|
-
$fault: "client",
|
|
331
|
-
...opts,
|
|
332
|
-
});
|
|
333
|
-
Object.setPrototypeOf(this, InvalidPaginationTokenException.prototype);
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
class InvalidParameterException extends ImagebuilderServiceException {
|
|
337
|
-
name = "InvalidParameterException";
|
|
338
|
-
$fault = "client";
|
|
339
|
-
constructor(opts) {
|
|
340
|
-
super({
|
|
341
|
-
name: "InvalidParameterException",
|
|
342
|
-
$fault: "client",
|
|
343
|
-
...opts,
|
|
344
|
-
});
|
|
345
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
class InvalidParameterValueException extends ImagebuilderServiceException {
|
|
349
|
-
name = "InvalidParameterValueException";
|
|
350
|
-
$fault = "client";
|
|
351
|
-
constructor(opts) {
|
|
352
|
-
super({
|
|
353
|
-
name: "InvalidParameterValueException",
|
|
354
|
-
$fault: "client",
|
|
355
|
-
...opts,
|
|
356
|
-
});
|
|
357
|
-
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
const _A = "Ami";
|
|
362
|
-
const _AA = "AccountAggregation";
|
|
363
|
-
const _ADC = "AmiDistributionConfiguration";
|
|
364
|
-
const _ADE = "AccessDeniedException";
|
|
365
|
-
const _ADP = "AutoDisablePolicy";
|
|
366
|
-
const _AIC = "AdditionalInstanceConfiguration";
|
|
367
|
-
const _AL = "AmiList";
|
|
368
|
-
const _C = "Component";
|
|
369
|
-
const _CC = "ComponentConfiguration";
|
|
370
|
-
const _CCL = "ComponentConfigurationList";
|
|
371
|
-
const _CCR = "CreateComponentRequest";
|
|
372
|
-
const _CCRR = "CreateContainerRecipeRequest";
|
|
373
|
-
const _CCRRr = "CreateContainerRecipeResponse";
|
|
374
|
-
const _CCRr = "CreateComponentResponse";
|
|
375
|
-
const _CCRre = "CreateContainerRecipe";
|
|
376
|
-
const _CCr = "CreateComponent";
|
|
377
|
-
const _CDC = "ContainerDistributionConfiguration";
|
|
378
|
-
const _CDCR = "CreateDistributionConfigurationRequest";
|
|
379
|
-
const _CDCRr = "CreateDistributionConfigurationResponse";
|
|
380
|
-
const _CDCr = "CreateDistributionConfiguration";
|
|
381
|
-
const _CE = "ClientException";
|
|
382
|
-
const _CI = "CreateImage";
|
|
383
|
-
const _CIC = "CancelImageCreation";
|
|
384
|
-
const _CICR = "CancelImageCreationRequest";
|
|
385
|
-
const _CICRa = "CancelImageCreationResponse";
|
|
386
|
-
const _CICRr = "CreateInfrastructureConfigurationRequest";
|
|
387
|
-
const _CICRre = "CreateInfrastructureConfigurationResponse";
|
|
388
|
-
const _CICr = "CreateInfrastructureConfiguration";
|
|
389
|
-
const _CIP = "CreateImagePipeline";
|
|
390
|
-
const _CIPR = "CreateImagePipelineRequest";
|
|
391
|
-
const _CIPRr = "CreateImagePipelineResponse";
|
|
392
|
-
const _CIR = "CreateImageRequest";
|
|
393
|
-
const _CIRR = "CreateImageRecipeRequest";
|
|
394
|
-
const _CIRRr = "CreateImageRecipeResponse";
|
|
395
|
-
const _CIRr = "CreateImageResponse";
|
|
396
|
-
const _CIRre = "CreateImageRecipe";
|
|
397
|
-
const _CL = "ContainerList";
|
|
398
|
-
const _CLE = "CancelLifecycleExecution";
|
|
399
|
-
const _CLER = "CancelLifecycleExecutionRequest";
|
|
400
|
-
const _CLERa = "CancelLifecycleExecutionResponse";
|
|
401
|
-
const _CLP = "CreateLifecyclePolicy";
|
|
402
|
-
const _CLPR = "CreateLifecyclePolicyRequest";
|
|
403
|
-
const _CLPRr = "CreateLifecyclePolicyResponse";
|
|
404
|
-
const _CP = "ComponentParameter";
|
|
405
|
-
const _CPD = "ComponentParameterDetail";
|
|
406
|
-
const _CPDL = "ComponentParameterDetailList";
|
|
407
|
-
const _CPL = "ComponentParameterList";
|
|
408
|
-
const _CR = "ContainerRecipe";
|
|
409
|
-
const _CRLEE = "CallRateLimitExceededException";
|
|
410
|
-
const _CRS = "ContainerRecipeSummary";
|
|
411
|
-
const _CRSL = "ContainerRecipeSummaryList";
|
|
412
|
-
const _CS = "ComponentState";
|
|
413
|
-
const _CSA = "CvssScoreAdjustment";
|
|
414
|
-
const _CSAL = "CvssScoreAdjustmentList";
|
|
415
|
-
const _CSD = "CvssScoreDetails";
|
|
416
|
-
const _CSL = "ComponentSummaryList";
|
|
417
|
-
const _CSLv = "CvssScoreList";
|
|
418
|
-
const _CSo = "ComponentSummary";
|
|
419
|
-
const _CSv = "CvssScore";
|
|
420
|
-
const _CV = "ComponentVersion";
|
|
421
|
-
const _CVL = "ComponentVersionList";
|
|
422
|
-
const _CW = "CreateWorkflow";
|
|
423
|
-
const _CWR = "CreateWorkflowRequest";
|
|
424
|
-
const _CWRr = "CreateWorkflowResponse";
|
|
425
|
-
const _Co = "Container";
|
|
426
|
-
const _D = "Distribution";
|
|
427
|
-
const _DC = "DistributionConfiguration";
|
|
428
|
-
const _DCR = "DeleteComponentRequest";
|
|
429
|
-
const _DCRR = "DeleteContainerRecipeRequest";
|
|
430
|
-
const _DCRRe = "DeleteContainerRecipeResponse";
|
|
431
|
-
const _DCRe = "DeleteComponentResponse";
|
|
432
|
-
const _DCRel = "DeleteContainerRecipe";
|
|
433
|
-
const _DCS = "DistributionConfigurationSummary";
|
|
434
|
-
const _DCSL = "DistributionConfigurationSummaryList";
|
|
435
|
-
const _DCe = "DeleteComponent";
|
|
436
|
-
const _DDC = "DeleteDistributionConfiguration";
|
|
437
|
-
const _DDCR = "DeleteDistributionConfigurationRequest";
|
|
438
|
-
const _DDCRe = "DeleteDistributionConfigurationResponse";
|
|
439
|
-
const _DI = "DeleteImage";
|
|
440
|
-
const _DIC = "DeleteInfrastructureConfiguration";
|
|
441
|
-
const _DICR = "DeleteInfrastructureConfigurationRequest";
|
|
442
|
-
const _DICRe = "DeleteInfrastructureConfigurationResponse";
|
|
443
|
-
const _DIP = "DeleteImagePipeline";
|
|
444
|
-
const _DIPR = "DeleteImagePipelineRequest";
|
|
445
|
-
const _DIPRe = "DeleteImagePipelineResponse";
|
|
446
|
-
const _DIR = "DeleteImageRequest";
|
|
447
|
-
const _DIRR = "DeleteImageRecipeRequest";
|
|
448
|
-
const _DIRRe = "DeleteImageRecipeResponse";
|
|
449
|
-
const _DIRe = "DeleteImageResponse";
|
|
450
|
-
const _DIRel = "DeleteImageRecipe";
|
|
451
|
-
const _DIRi = "DistributeImageRequest";
|
|
452
|
-
const _DIRis = "DistributeImageResponse";
|
|
453
|
-
const _DIi = "DistributeImage";
|
|
454
|
-
const _DL = "DistributionList";
|
|
455
|
-
const _DLP = "DeleteLifecyclePolicy";
|
|
456
|
-
const _DLPR = "DeleteLifecyclePolicyRequest";
|
|
457
|
-
const _DLPRe = "DeleteLifecyclePolicyResponse";
|
|
458
|
-
const _DROE = "DryRunOperationException";
|
|
459
|
-
const _DW = "DeleteWorkflow";
|
|
460
|
-
const _DWR = "DeleteWorkflowRequest";
|
|
461
|
-
const _DWRe = "DeleteWorkflowResponse";
|
|
462
|
-
const _EC = "EcrConfiguration";
|
|
463
|
-
const _EIBDS = "EbsInstanceBlockDeviceSpecification";
|
|
464
|
-
const _F = "Filter";
|
|
465
|
-
const _FE = "ForbiddenException";
|
|
466
|
-
const _FL = "FilterList";
|
|
467
|
-
const _FLC = "FastLaunchConfiguration";
|
|
468
|
-
const _FLCL = "FastLaunchConfigurationList";
|
|
469
|
-
const _FLLTS = "FastLaunchLaunchTemplateSpecification";
|
|
470
|
-
const _FLSC = "FastLaunchSnapshotConfiguration";
|
|
471
|
-
const _GC = "GetComponent";
|
|
472
|
-
const _GCP = "GetComponentPolicy";
|
|
473
|
-
const _GCPR = "GetComponentPolicyRequest";
|
|
474
|
-
const _GCPRe = "GetComponentPolicyResponse";
|
|
475
|
-
const _GCR = "GetComponentRequest";
|
|
476
|
-
const _GCRP = "GetContainerRecipePolicy";
|
|
477
|
-
const _GCRPR = "GetContainerRecipePolicyRequest";
|
|
478
|
-
const _GCRPRe = "GetContainerRecipePolicyResponse";
|
|
479
|
-
const _GCRR = "GetContainerRecipeRequest";
|
|
480
|
-
const _GCRRe = "GetContainerRecipeResponse";
|
|
481
|
-
const _GCRe = "GetComponentResponse";
|
|
482
|
-
const _GCRet = "GetContainerRecipe";
|
|
483
|
-
const _GDC = "GetDistributionConfiguration";
|
|
484
|
-
const _GDCR = "GetDistributionConfigurationRequest";
|
|
485
|
-
const _GDCRe = "GetDistributionConfigurationResponse";
|
|
486
|
-
const _GI = "GetImage";
|
|
487
|
-
const _GIC = "GetInfrastructureConfiguration";
|
|
488
|
-
const _GICR = "GetInfrastructureConfigurationRequest";
|
|
489
|
-
const _GICRe = "GetInfrastructureConfigurationResponse";
|
|
490
|
-
const _GIP = "GetImagePipeline";
|
|
491
|
-
const _GIPR = "GetImagePipelineRequest";
|
|
492
|
-
const _GIPRe = "GetImagePipelineResponse";
|
|
493
|
-
const _GIPRet = "GetImagePolicyRequest";
|
|
494
|
-
const _GIPRetm = "GetImagePolicyResponse";
|
|
495
|
-
const _GIPe = "GetImagePolicy";
|
|
496
|
-
const _GIR = "GetImageRequest";
|
|
497
|
-
const _GIRP = "GetImageRecipePolicy";
|
|
498
|
-
const _GIRPR = "GetImageRecipePolicyRequest";
|
|
499
|
-
const _GIRPRe = "GetImageRecipePolicyResponse";
|
|
500
|
-
const _GIRR = "GetImageRecipeRequest";
|
|
501
|
-
const _GIRRe = "GetImageRecipeResponse";
|
|
502
|
-
const _GIRe = "GetImageResponse";
|
|
503
|
-
const _GIRet = "GetImageRecipe";
|
|
504
|
-
const _GLE = "GetLifecycleExecution";
|
|
505
|
-
const _GLER = "GetLifecycleExecutionRequest";
|
|
506
|
-
const _GLERe = "GetLifecycleExecutionResponse";
|
|
507
|
-
const _GLP = "GetLifecyclePolicy";
|
|
508
|
-
const _GLPR = "GetLifecyclePolicyRequest";
|
|
509
|
-
const _GLPRe = "GetLifecyclePolicyResponse";
|
|
510
|
-
const _GMR = "GetMarketplaceResource";
|
|
511
|
-
const _GMRR = "GetMarketplaceResourceRequest";
|
|
512
|
-
const _GMRRe = "GetMarketplaceResourceResponse";
|
|
513
|
-
const _GW = "GetWorkflow";
|
|
514
|
-
const _GWE = "GetWorkflowExecution";
|
|
515
|
-
const _GWER = "GetWorkflowExecutionRequest";
|
|
516
|
-
const _GWERe = "GetWorkflowExecutionResponse";
|
|
517
|
-
const _GWR = "GetWorkflowRequest";
|
|
518
|
-
const _GWRe = "GetWorkflowResponse";
|
|
519
|
-
const _GWSE = "GetWorkflowStepExecution";
|
|
520
|
-
const _GWSER = "GetWorkflowStepExecutionRequest";
|
|
521
|
-
const _GWSERe = "GetWorkflowStepExecutionResponse";
|
|
522
|
-
const _I = "Image";
|
|
523
|
-
const _IA = "ImageAggregation";
|
|
524
|
-
const _IBDM = "InstanceBlockDeviceMapping";
|
|
525
|
-
const _IBDMn = "InstanceBlockDeviceMappings";
|
|
526
|
-
const _IC = "InfrastructureConfiguration";
|
|
527
|
-
const _ICR = "ImportComponentRequest";
|
|
528
|
-
const _ICRm = "ImportComponentResponse";
|
|
529
|
-
const _ICS = "InfrastructureConfigurationSummary";
|
|
530
|
-
const _ICSL = "InfrastructureConfigurationSummaryList";
|
|
531
|
-
const _ICm = "ImportComponent";
|
|
532
|
-
const _ICn = "InstanceConfiguration";
|
|
533
|
-
const _IDI = "ImportDiskImage";
|
|
534
|
-
const _IDIR = "ImportDiskImageRequest";
|
|
535
|
-
const _IDIRm = "ImportDiskImageResponse";
|
|
536
|
-
const _ILC = "ImageLoggingConfiguration";
|
|
537
|
-
const _IMO = "InstanceMetadataOptions";
|
|
538
|
-
const _IP = "ImagePackage";
|
|
539
|
-
const _IPA = "ImagePipelineAggregation";
|
|
540
|
-
const _IPCE = "InvalidParameterCombinationException";
|
|
541
|
-
const _IPE = "InvalidParameterException";
|
|
542
|
-
const _IPL = "ImagePackageList";
|
|
543
|
-
const _IPLm = "ImagePipelineList";
|
|
544
|
-
const _IPME = "IdempotentParameterMismatchException";
|
|
545
|
-
const _IPTE = "InvalidPaginationTokenException";
|
|
546
|
-
const _IPVE = "InvalidParameterValueException";
|
|
547
|
-
const _IPm = "ImagePipeline";
|
|
548
|
-
const _IR = "ImageRecipe";
|
|
549
|
-
const _IRE = "InvalidRequestException";
|
|
550
|
-
const _IRS = "ImageRecipeSummary";
|
|
551
|
-
const _IRSL = "ImageRecipeSummaryList";
|
|
552
|
-
const _IS = "ImageState";
|
|
553
|
-
const _ISC = "ImageScanningConfiguration";
|
|
554
|
-
const _ISD = "InspectorScoreDetails";
|
|
555
|
-
const _ISF = "ImageScanFinding";
|
|
556
|
-
const _ISFA = "ImageScanFindingAggregation";
|
|
557
|
-
const _ISFAL = "ImageScanFindingAggregationsList";
|
|
558
|
-
const _ISFF = "ImageScanFindingsFilter";
|
|
559
|
-
const _ISFFL = "ImageScanFindingsFilterList";
|
|
560
|
-
const _ISFL = "ImageScanFindingsList";
|
|
561
|
-
const _ISL = "ImageSummaryList";
|
|
562
|
-
const _ISS = "ImageScanState";
|
|
563
|
-
const _ISm = "ImageSummary";
|
|
564
|
-
const _ITC = "ImageTestsConfiguration";
|
|
565
|
-
const _IV = "ImageVersion";
|
|
566
|
-
const _IVI = "ImportVmImage";
|
|
567
|
-
const _IVIR = "ImportVmImageRequest";
|
|
568
|
-
const _IVIRm = "ImportVmImageResponse";
|
|
569
|
-
const _IVL = "ImageVersionList";
|
|
570
|
-
const _IVNE = "InvalidVersionNumberException";
|
|
571
|
-
const _L = "Logging";
|
|
572
|
-
const _LC = "ListComponents";
|
|
573
|
-
const _LCBV = "ListComponentBuildVersions";
|
|
574
|
-
const _LCBVR = "ListComponentBuildVersionsRequest";
|
|
575
|
-
const _LCBVRi = "ListComponentBuildVersionsResponse";
|
|
576
|
-
const _LCR = "ListComponentsRequest";
|
|
577
|
-
const _LCRR = "ListContainerRecipesRequest";
|
|
578
|
-
const _LCRRi = "ListContainerRecipesResponse";
|
|
579
|
-
const _LCRi = "ListComponentsResponse";
|
|
580
|
-
const _LCRis = "ListContainerRecipes";
|
|
581
|
-
const _LDC = "ListDistributionConfigurations";
|
|
582
|
-
const _LDCR = "ListDistributionConfigurationsRequest";
|
|
583
|
-
const _LDCRi = "ListDistributionConfigurationsResponse";
|
|
584
|
-
const _LE = "LifecycleExecution";
|
|
585
|
-
const _LEL = "LifecycleExecutionsList";
|
|
586
|
-
const _LER = "LifecycleExecutionResource";
|
|
587
|
-
const _LERA = "LifecycleExecutionResourceAction";
|
|
588
|
-
const _LERIS = "LifecycleExecutionResourcesImpactedSummary";
|
|
589
|
-
const _LERL = "LifecycleExecutionResourceList";
|
|
590
|
-
const _LERS = "LifecycleExecutionResourceState";
|
|
591
|
-
const _LES = "LifecycleExecutionState";
|
|
592
|
-
const _LESR = "LifecycleExecutionSnapshotResource";
|
|
593
|
-
const _LESRL = "LifecycleExecutionSnapshotResourceList";
|
|
594
|
-
const _LI = "ListImages";
|
|
595
|
-
const _LIBV = "ListImageBuildVersions";
|
|
596
|
-
const _LIBVR = "ListImageBuildVersionsRequest";
|
|
597
|
-
const _LIBVRi = "ListImageBuildVersionsResponse";
|
|
598
|
-
const _LIC = "ListInfrastructureConfigurations";
|
|
599
|
-
const _LICR = "ListInfrastructureConfigurationsRequest";
|
|
600
|
-
const _LICRi = "ListInfrastructureConfigurationsResponse";
|
|
601
|
-
const _LIP = "ListImagePackages";
|
|
602
|
-
const _LIPI = "ListImagePipelineImages";
|
|
603
|
-
const _LIPIR = "ListImagePipelineImagesRequest";
|
|
604
|
-
const _LIPIRi = "ListImagePipelineImagesResponse";
|
|
605
|
-
const _LIPR = "ListImagePackagesRequest";
|
|
606
|
-
const _LIPRi = "ListImagePackagesResponse";
|
|
607
|
-
const _LIPRis = "ListImagePipelinesRequest";
|
|
608
|
-
const _LIPRist = "ListImagePipelinesResponse";
|
|
609
|
-
const _LIPi = "ListImagePipelines";
|
|
610
|
-
const _LIR = "ListImagesRequest";
|
|
611
|
-
const _LIRR = "ListImageRecipesRequest";
|
|
612
|
-
const _LIRRi = "ListImageRecipesResponse";
|
|
613
|
-
const _LIRi = "ListImagesResponse";
|
|
614
|
-
const _LIRis = "ListImageRecipes";
|
|
615
|
-
const _LISF = "ListImageScanFindings";
|
|
616
|
-
const _LISFA = "ListImageScanFindingAggregations";
|
|
617
|
-
const _LISFAR = "ListImageScanFindingAggregationsRequest";
|
|
618
|
-
const _LISFARi = "ListImageScanFindingAggregationsResponse";
|
|
619
|
-
const _LISFR = "ListImageScanFindingsRequest";
|
|
620
|
-
const _LISFRi = "ListImageScanFindingsResponse";
|
|
621
|
-
const _LLE = "ListLifecycleExecutions";
|
|
622
|
-
const _LLER = "ListLifecycleExecutionsRequest";
|
|
623
|
-
const _LLERR = "ListLifecycleExecutionResourcesRequest";
|
|
624
|
-
const _LLERRi = "ListLifecycleExecutionResourcesResponse";
|
|
625
|
-
const _LLERi = "ListLifecycleExecutionsResponse";
|
|
626
|
-
const _LLERis = "ListLifecycleExecutionResources";
|
|
627
|
-
const _LLP = "ListLifecyclePolicies";
|
|
628
|
-
const _LLPR = "ListLifecyclePoliciesRequest";
|
|
629
|
-
const _LLPRi = "ListLifecyclePoliciesResponse";
|
|
630
|
-
const _LP = "LifecyclePolicy";
|
|
631
|
-
const _LPC = "LaunchPermissionConfiguration";
|
|
632
|
-
const _LPD = "LifecyclePolicyDetail";
|
|
633
|
-
const _LPDA = "LifecyclePolicyDetailAction";
|
|
634
|
-
const _LPDAIR = "LifecyclePolicyDetailActionIncludeResources";
|
|
635
|
-
const _LPDER = "LifecyclePolicyDetailExclusionRules";
|
|
636
|
-
const _LPDERA = "LifecyclePolicyDetailExclusionRulesAmis";
|
|
637
|
-
const _LPDERALL = "LifecyclePolicyDetailExclusionRulesAmisLastLaunched";
|
|
638
|
-
const _LPDF = "LifecyclePolicyDetailFilter";
|
|
639
|
-
const _LPDi = "LifecyclePolicyDetails";
|
|
640
|
-
const _LPRS = "LifecyclePolicyResourceSelection";
|
|
641
|
-
const _LPRSR = "LifecyclePolicyResourceSelectionRecipe";
|
|
642
|
-
const _LPRSRi = "LifecyclePolicyResourceSelectionRecipes";
|
|
643
|
-
const _LPS = "LifecyclePolicySummary";
|
|
644
|
-
const _LPSL = "LifecyclePolicySummaryList";
|
|
645
|
-
const _LTC = "LaunchTemplateConfiguration";
|
|
646
|
-
const _LTCL = "LaunchTemplateConfigurationList";
|
|
647
|
-
const _LTFR = "ListTagsForResource";
|
|
648
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
649
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
650
|
-
const _LVR = "LatestVersionReferences";
|
|
651
|
-
const _LW = "ListWorkflows";
|
|
652
|
-
const _LWBV = "ListWorkflowBuildVersions";
|
|
653
|
-
const _LWBVR = "ListWorkflowBuildVersionsRequest";
|
|
654
|
-
const _LWBVRi = "ListWorkflowBuildVersionsResponse";
|
|
655
|
-
const _LWE = "ListWorkflowExecutions";
|
|
656
|
-
const _LWER = "ListWorkflowExecutionsRequest";
|
|
657
|
-
const _LWERi = "ListWorkflowExecutionsResponse";
|
|
658
|
-
const _LWR = "ListWorkflowsRequest";
|
|
659
|
-
const _LWRi = "ListWorkflowsResponse";
|
|
660
|
-
const _LWSE = "ListWorkflowStepExecutions";
|
|
661
|
-
const _LWSER = "ListWorkflowStepExecutionsRequest";
|
|
662
|
-
const _LWSERi = "ListWorkflowStepExecutionsResponse";
|
|
663
|
-
const _LWWS = "ListWaitingWorkflowSteps";
|
|
664
|
-
const _LWWSR = "ListWaitingWorkflowStepsRequest";
|
|
665
|
-
const _LWWSRi = "ListWaitingWorkflowStepsResponse";
|
|
666
|
-
const _OR = "OutputResources";
|
|
667
|
-
const _P = "Placement";
|
|
668
|
-
const _PCL = "ProductCodeList";
|
|
669
|
-
const _PCLI = "ProductCodeListItem";
|
|
670
|
-
const _PCP = "PutComponentPolicy";
|
|
671
|
-
const _PCPR = "PutComponentPolicyRequest";
|
|
672
|
-
const _PCPRu = "PutComponentPolicyResponse";
|
|
673
|
-
const _PCRP = "PutContainerRecipePolicy";
|
|
674
|
-
const _PCRPR = "PutContainerRecipePolicyRequest";
|
|
675
|
-
const _PCRPRu = "PutContainerRecipePolicyResponse";
|
|
676
|
-
const _PIP = "PutImagePolicy";
|
|
677
|
-
const _PIPR = "PutImagePolicyRequest";
|
|
678
|
-
const _PIPRu = "PutImagePolicyResponse";
|
|
679
|
-
const _PIRP = "PutImageRecipePolicy";
|
|
680
|
-
const _PIRPR = "PutImageRecipePolicyRequest";
|
|
681
|
-
const _PIRPRu = "PutImageRecipePolicyResponse";
|
|
682
|
-
const _PLC = "PipelineLoggingConfiguration";
|
|
683
|
-
const _PVD = "PackageVulnerabilityDetails";
|
|
684
|
-
const _R = "Remediation";
|
|
685
|
-
const _RAEE = "ResourceAlreadyExistsException";
|
|
686
|
-
const _RDE = "ResourceDependencyException";
|
|
687
|
-
const _RI = "RetryImage";
|
|
688
|
-
const _RIR = "RetryImageRequest";
|
|
689
|
-
const _RIRe = "RetryImageResponse";
|
|
690
|
-
const _RIUE = "ResourceInUseException";
|
|
691
|
-
const _RNFE = "ResourceNotFoundException";
|
|
692
|
-
const _RR = "RemediationRecommendation";
|
|
693
|
-
const _RS = "ResourceState";
|
|
694
|
-
const _RSUER = "ResourceStateUpdateExclusionRules";
|
|
695
|
-
const _RSUIR = "ResourceStateUpdateIncludeResources";
|
|
696
|
-
const _S = "Schedule";
|
|
697
|
-
const _SC = "SeverityCounts";
|
|
698
|
-
const _SE = "ServiceException";
|
|
699
|
-
const _SEC = "S3ExportConfiguration";
|
|
700
|
-
const _SIPE = "StartImagePipelineExecution";
|
|
701
|
-
const _SIPER = "StartImagePipelineExecutionRequest";
|
|
702
|
-
const _SIPERt = "StartImagePipelineExecutionResponse";
|
|
703
|
-
const _SL = "S3Logs";
|
|
704
|
-
const _SMA = "SystemsManagerAgent";
|
|
705
|
-
const _SPC = "SsmParameterConfiguration";
|
|
706
|
-
const _SPCL = "SsmParameterConfigurationList";
|
|
707
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
708
|
-
const _SRSU = "StartResourceStateUpdate";
|
|
709
|
-
const _SRSUR = "StartResourceStateUpdateRequest";
|
|
710
|
-
const _SRSURt = "StartResourceStateUpdateResponse";
|
|
711
|
-
const _SUE = "ServiceUnavailableException";
|
|
712
|
-
const _SWSA = "SendWorkflowStepAction";
|
|
713
|
-
const _SWSAR = "SendWorkflowStepActionRequest";
|
|
714
|
-
const _SWSARe = "SendWorkflowStepActionResponse";
|
|
715
|
-
const _TCR = "TargetContainerRepository";
|
|
716
|
-
const _TMRE = "TooManyRequestsException";
|
|
717
|
-
const _TR = "TagResource";
|
|
718
|
-
const _TRR = "TagResourceRequest";
|
|
719
|
-
const _TRRa = "TagResourceResponse";
|
|
720
|
-
const _UDC = "UpdateDistributionConfiguration";
|
|
721
|
-
const _UDCR = "UpdateDistributionConfigurationRequest";
|
|
722
|
-
const _UDCRp = "UpdateDistributionConfigurationResponse";
|
|
723
|
-
const _UIC = "UpdateInfrastructureConfiguration";
|
|
724
|
-
const _UICR = "UpdateInfrastructureConfigurationRequest";
|
|
725
|
-
const _UICRp = "UpdateInfrastructureConfigurationResponse";
|
|
726
|
-
const _UIP = "UpdateImagePipeline";
|
|
727
|
-
const _UIPR = "UpdateImagePipelineRequest";
|
|
728
|
-
const _UIPRp = "UpdateImagePipelineResponse";
|
|
729
|
-
const _ULP = "UpdateLifecyclePolicy";
|
|
730
|
-
const _ULPR = "UpdateLifecyclePolicyRequest";
|
|
731
|
-
const _ULPRp = "UpdateLifecyclePolicyResponse";
|
|
732
|
-
const _UR = "UntagResource";
|
|
733
|
-
const _URR = "UntagResourceRequest";
|
|
734
|
-
const _URRn = "UntagResourceResponse";
|
|
735
|
-
const _VIA = "VulnerabilityIdAggregation";
|
|
736
|
-
const _VP = "VulnerablePackage";
|
|
737
|
-
const _VPL = "VulnerablePackageList";
|
|
738
|
-
const _W = "Workflow";
|
|
739
|
-
const _WC = "WorkflowConfiguration";
|
|
740
|
-
const _WCL = "WorkflowConfigurationList";
|
|
741
|
-
const _WEL = "WorkflowExecutionsList";
|
|
742
|
-
const _WEM = "WorkflowExecutionMetadata";
|
|
743
|
-
const _WP = "WorkflowParameter";
|
|
744
|
-
const _WPD = "WorkflowParameterDetail";
|
|
745
|
-
const _WPDL = "WorkflowParameterDetailList";
|
|
746
|
-
const _WPL = "WorkflowParameterList";
|
|
747
|
-
const _WS = "WorkflowState";
|
|
748
|
-
const _WSE = "WorkflowStepExecution";
|
|
749
|
-
const _WSEL = "WorkflowStepExecutionList";
|
|
750
|
-
const _WSELo = "WorkflowStepExecutionsList";
|
|
751
|
-
const _WSL = "WorkflowSummaryList";
|
|
752
|
-
const _WSM = "WorkflowStepMetadata";
|
|
753
|
-
const _WSo = "WorkflowSummary";
|
|
754
|
-
const _WV = "WorkflowVersion";
|
|
755
|
-
const _WVL = "WorkflowVersionList";
|
|
756
|
-
const _a = "arn";
|
|
757
|
-
const _aA = "accountAggregation";
|
|
758
|
-
const _aAI = "awsAccountId";
|
|
759
|
-
const _aAIm = "amiAccountId";
|
|
760
|
-
const _aC = "adjustedCvss";
|
|
761
|
-
const _aDC = "amiDistributionConfiguration";
|
|
762
|
-
const _aDP = "autoDisablePolicy";
|
|
763
|
-
const _aI = "accountId";
|
|
764
|
-
const _aIC = "additionalInstanceConfiguration";
|
|
765
|
-
const _aT = "amiTags";
|
|
766
|
-
const _aTg = "aggregationType";
|
|
767
|
-
const _aZ = "availabilityZone";
|
|
768
|
-
const _ac = "action";
|
|
769
|
-
const _ad = "adjustments";
|
|
770
|
-
const _al = "all";
|
|
771
|
-
const _am = "amis";
|
|
772
|
-
const _ar = "arch";
|
|
773
|
-
const _bDM = "blockDeviceMappings";
|
|
774
|
-
const _bN = "byName";
|
|
775
|
-
const _bS = "baseScore";
|
|
776
|
-
const _bT = "buildType";
|
|
777
|
-
const _c = "client";
|
|
778
|
-
const _cA = "componentArn";
|
|
779
|
-
const _cBVA = "componentBuildVersionArn";
|
|
780
|
-
const _cD = "changeDescription";
|
|
781
|
-
const _cDC = "containerDistributionConfiguration";
|
|
782
|
-
const _cF = "consecutiveFailures";
|
|
783
|
-
const _cR = "containerRecipe";
|
|
784
|
-
const _cRA = "containerRecipeArn";
|
|
785
|
-
const _cRSL = "containerRecipeSummaryList";
|
|
786
|
-
const _cS = "cvssSource";
|
|
787
|
-
const _cSL = "componentSummaryList";
|
|
788
|
-
const _cT = "clientToken";
|
|
789
|
-
const _cTo = "containerTags";
|
|
790
|
-
const _cTon = "containerType";
|
|
791
|
-
const _cVA = "componentVersionArn";
|
|
792
|
-
const _cVL = "componentVersionList";
|
|
793
|
-
const _co = "components";
|
|
794
|
-
const _com = "component";
|
|
795
|
-
const _con = "containers";
|
|
796
|
-
const _cr = "critical";
|
|
797
|
-
const _cv = "cvss";
|
|
798
|
-
const _d = "description";
|
|
799
|
-
const _dC = "dateCreated";
|
|
800
|
-
const _dCA = "distributionConfigurationArn";
|
|
801
|
-
const _dCSL = "distributionConfigurationSummaryList";
|
|
802
|
-
const _dCi = "distributionConfiguration";
|
|
803
|
-
const _dIF = "diskImageFormat";
|
|
804
|
-
const _dLR = "dateLastRun";
|
|
805
|
-
const _dN = "deviceName";
|
|
806
|
-
const _dNR = "dateNextRun";
|
|
807
|
-
const _dOT = "deleteOnTermination";
|
|
808
|
-
const _dR = "dryRun";
|
|
809
|
-
const _dT = "deprecationTime";
|
|
810
|
-
const _dTD = "dockerfileTemplateData";
|
|
811
|
-
const _dTU = "dockerfileTemplateUri";
|
|
812
|
-
const _dTa = "dataType";
|
|
813
|
-
const _dU = "dateUpdated";
|
|
814
|
-
const _dV = "defaultValue";
|
|
815
|
-
const _da = "data";
|
|
816
|
-
const _di = "distributions";
|
|
817
|
-
const _e = "error";
|
|
818
|
-
const _eC = "ecrConfiguration";
|
|
819
|
-
const _eIME = "enhancedImageMetadataEnabled";
|
|
820
|
-
const _eR = "executionRole";
|
|
821
|
-
const _eRx = "exclusionRules";
|
|
822
|
-
const _eT = "endTime";
|
|
823
|
-
const _eb = "ebs";
|
|
824
|
-
const _en = "encrypted";
|
|
825
|
-
const _ena = "enabled";
|
|
826
|
-
const _ep = "epoch";
|
|
827
|
-
const _f = "format";
|
|
828
|
-
const _fA = "fixAvailable";
|
|
829
|
-
const _fC = "failureCount";
|
|
830
|
-
const _fIV = "fixedInVersion";
|
|
831
|
-
const _fLC = "fastLaunchConfigurations";
|
|
832
|
-
const _fOA = "firstObservedAt";
|
|
833
|
-
const _fP = "filePath";
|
|
834
|
-
const _fi = "filter";
|
|
835
|
-
const _fil = "filters";
|
|
836
|
-
const _fin = "findings";
|
|
837
|
-
const _h = "high";
|
|
838
|
-
const _hE = "httpError";
|
|
839
|
-
const _hI = "hostId";
|
|
840
|
-
const _hIR = "hasImpactedResources";
|
|
841
|
-
const _hPRHL = "httpPutResponseHopLimit";
|
|
842
|
-
const _hQ = "httpQuery";
|
|
843
|
-
const _hRGA = "hostResourceGroupArn";
|
|
844
|
-
const _hT = "httpTokens";
|
|
845
|
-
const _ht = "http";
|
|
846
|
-
const _i = "image";
|
|
847
|
-
const _iA = "imageArn";
|
|
848
|
-
const _iAm = "imageAggregation";
|
|
849
|
-
const _iBVA = "imageBuildVersionArn";
|
|
850
|
-
const _iC = "instanceConfiguration";
|
|
851
|
-
const _iCA = "infrastructureConfigurationArn";
|
|
852
|
-
const _iCSL = "infrastructureConfigurationSummaryList";
|
|
853
|
-
const _iCn = "infrastructureConfiguration";
|
|
854
|
-
const _iD = "includeDeprecated";
|
|
855
|
-
const _iI = "instanceImage";
|
|
856
|
-
const _iLGN = "imageLogGroupName";
|
|
857
|
-
const _iMO = "instanceMetadataOptions";
|
|
858
|
-
const _iOVO = "imageOsVersionOverride";
|
|
859
|
-
const _iP = "imagePipeline";
|
|
860
|
-
const _iPA = "imagePipelineArn";
|
|
861
|
-
const _iPAm = "imagePipelineAggregation";
|
|
862
|
-
const _iPL = "imagePackageList";
|
|
863
|
-
const _iPLm = "imagePipelineList";
|
|
864
|
-
const _iPN = "instanceProfileName";
|
|
865
|
-
const _iPs = "isPublic";
|
|
866
|
-
const _iR = "imageRecipe";
|
|
867
|
-
const _iRA = "imageRecipeArn";
|
|
868
|
-
const _iRSL = "imageRecipeSummaryList";
|
|
869
|
-
const _iRn = "includeResources";
|
|
870
|
-
const _iS = "imageSource";
|
|
871
|
-
const _iSC = "imageScanningConfiguration";
|
|
872
|
-
const _iSD = "inspectorScoreDetails";
|
|
873
|
-
const _iSE = "imageScanningEnabled";
|
|
874
|
-
const _iSL = "imageSummaryList";
|
|
875
|
-
const _iSn = "inspectorScore";
|
|
876
|
-
const _iT = "instanceTypes";
|
|
877
|
-
const _iTC = "imageTestsConfiguration";
|
|
878
|
-
const _iTE = "imageTestsEnabled";
|
|
879
|
-
const _iU = "imageUris";
|
|
880
|
-
const _iVA = "imageVersionArn";
|
|
881
|
-
const _iVL = "imageVersionList";
|
|
882
|
-
const _in = "inputs";
|
|
883
|
-
const _io = "iops";
|
|
884
|
-
const _kKI = "kmsKeyId";
|
|
885
|
-
const _kP = "keyPair";
|
|
886
|
-
const _l = "logging";
|
|
887
|
-
const _lC = "loggingConfiguration";
|
|
888
|
-
const _lCA = "licenseConfigurationArns";
|
|
889
|
-
const _lE = "lifecycleExecution";
|
|
890
|
-
const _lEI = "lifecycleExecutionId";
|
|
891
|
-
const _lES = "lifecycleExecutionState";
|
|
892
|
-
const _lEi = "lifecycleExecutions";
|
|
893
|
-
const _lGN = "logGroupName";
|
|
894
|
-
const _lL = "lastLaunched";
|
|
895
|
-
const _lMVA = "latestMajorVersionArn";
|
|
896
|
-
const _lMVAa = "latestMinorVersionArn";
|
|
897
|
-
const _lP = "launchPermission";
|
|
898
|
-
const _lPA = "lifecyclePolicyArn";
|
|
899
|
-
const _lPSL = "lifecyclePolicySummaryList";
|
|
900
|
-
const _lPVA = "latestPatchVersionArn";
|
|
901
|
-
const _lPi = "lifecyclePolicy";
|
|
902
|
-
const _lRS = "lastRunStatus";
|
|
903
|
-
const _lT = "launchTemplate";
|
|
904
|
-
const _lTC = "launchTemplateConfigurations";
|
|
905
|
-
const _lTI = "launchTemplateId";
|
|
906
|
-
const _lTN = "launchTemplateName";
|
|
907
|
-
const _lTV = "launchTemplateVersion";
|
|
908
|
-
const _lVA = "latestVersionArn";
|
|
909
|
-
const _lVR = "latestVersionReferences";
|
|
910
|
-
const _m = "message";
|
|
911
|
-
const _mPL = "maxParallelLaunches";
|
|
912
|
-
const _mR = "maxResults";
|
|
913
|
-
const _me = "metric";
|
|
914
|
-
const _med = "medium";
|
|
915
|
-
const _n = "name";
|
|
916
|
-
const _nD = "noDevice";
|
|
917
|
-
const _nT = "nextToken";
|
|
918
|
-
const _o = "owner";
|
|
919
|
-
const _oA = "organizationArns";
|
|
920
|
-
const _oF = "onFailure";
|
|
921
|
-
const _oR = "outputResources";
|
|
922
|
-
const _oUA = "organizationalUnitArns";
|
|
923
|
-
const _oV = "osVersion";
|
|
924
|
-
const _ob = "obfuscate";
|
|
925
|
-
const _ou = "outputs";
|
|
926
|
-
const _p = "platform";
|
|
927
|
-
const _pC = "productCodes";
|
|
928
|
-
const _pCI = "productCodeId";
|
|
929
|
-
const _pCT = "productCodeType";
|
|
930
|
-
const _pD = "policyDetails";
|
|
931
|
-
const _pESC = "pipelineExecutionStartCondition";
|
|
932
|
-
const _pG = "parallelGroup";
|
|
933
|
-
const _pI = "parentImage";
|
|
934
|
-
const _pLGN = "pipelineLogGroupName";
|
|
935
|
-
const _pM = "packageManager";
|
|
936
|
-
const _pN = "packageName";
|
|
937
|
-
const _pNa = "parameterName";
|
|
938
|
-
const _pO = "platformOverride";
|
|
939
|
-
const _pRI = "parentResourceId";
|
|
940
|
-
const _pV = "packageVersion";
|
|
941
|
-
const _pVD = "packageVulnerabilityDetails";
|
|
942
|
-
const _pa = "parameters";
|
|
943
|
-
const _pl = "placement";
|
|
944
|
-
const _po = "policy";
|
|
945
|
-
const _pu = "publisher";
|
|
946
|
-
const _r = "region";
|
|
947
|
-
const _rA = "resourceArn";
|
|
948
|
-
const _rAL = "retainAtLeast";
|
|
949
|
-
const _rI = "requestId";
|
|
950
|
-
const _rIS = "resourcesImpactedSummary";
|
|
951
|
-
const _rIe = "resourceId";
|
|
952
|
-
const _rL = "resourceLocation";
|
|
953
|
-
const _rN = "repositoryName";
|
|
954
|
-
const _rNo = "roleName";
|
|
955
|
-
const _rS = "resourceSelection";
|
|
956
|
-
const _rSo = "rollbackStatus";
|
|
957
|
-
const _rT = "resourceTags";
|
|
958
|
-
const _rTe = "resourceType";
|
|
959
|
-
const _rU = "referenceUrls";
|
|
960
|
-
const _rV = "relatedVulnerabilities";
|
|
961
|
-
const _re = "reason";
|
|
962
|
-
const _rec = "recipes";
|
|
963
|
-
const _reco = "recommendation";
|
|
964
|
-
const _reg = "regions";
|
|
965
|
-
const _rel = "release";
|
|
966
|
-
const _rem = "remediation";
|
|
967
|
-
const _res = "responses";
|
|
968
|
-
const _reso = "resources";
|
|
969
|
-
const _ret = "retried";
|
|
970
|
-
const _s = "state";
|
|
971
|
-
const _sA = "sharedAccounts";
|
|
972
|
-
const _sB = "s3Bucket";
|
|
973
|
-
const _sBN = "s3BucketName";
|
|
974
|
-
const _sC = "severityCounts";
|
|
975
|
-
const _sCn = "snapshotConfiguration";
|
|
976
|
-
const _sDV = "setDefaultVersion";
|
|
977
|
-
const _sE = "scheduleExpression";
|
|
978
|
-
const _sEC = "s3ExportConfiguration";
|
|
979
|
-
const _sEI = "stepExecutionId";
|
|
980
|
-
const _sGI = "securityGroupIds";
|
|
981
|
-
const _sI = "subnetId";
|
|
982
|
-
const _sIn = "snapshotId";
|
|
983
|
-
const _sIo = "sourceImage";
|
|
984
|
-
const _sKP = "s3KeyPrefix";
|
|
985
|
-
const _sL = "s3Logs";
|
|
986
|
-
const _sLH = "sourceLayerHash";
|
|
987
|
-
const _sMA = "systemsManagerAgent";
|
|
988
|
-
const _sOV = "supportedOsVersions";
|
|
989
|
-
const _sP = "s3Prefix";
|
|
990
|
-
const _sPA = "sourcePipelineArn";
|
|
991
|
-
const _sPC = "ssmParameterConfigurations";
|
|
992
|
-
const _sPN = "sourcePipelineName";
|
|
993
|
-
const _sS = "scoreSource";
|
|
994
|
-
const _sSc = "scanState";
|
|
995
|
-
const _sT = "startTime";
|
|
996
|
-
const _sTA = "snsTopicArn";
|
|
997
|
-
const _sU = "sourceUrl";
|
|
998
|
-
const _sV = "semanticVersion";
|
|
999
|
-
const _sVc = "scoringVector";
|
|
1000
|
-
const _sc = "schedule";
|
|
1001
|
-
const _sco = "score";
|
|
1002
|
-
const _se = "severity";
|
|
1003
|
-
const _ser = "server";
|
|
1004
|
-
const _serv = "service";
|
|
1005
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.imagebuilder";
|
|
1006
|
-
const _sn = "snapshots";
|
|
1007
|
-
const _so = "source";
|
|
1008
|
-
const _st = "status";
|
|
1009
|
-
const _ste = "steps";
|
|
1010
|
-
const _t = "type";
|
|
1011
|
-
const _tAI = "targetAccountIds";
|
|
1012
|
-
const _tIOF = "terminateInstanceOnFailure";
|
|
1013
|
-
const _tK = "tagKeys";
|
|
1014
|
-
const _tM = "timeoutMinutes";
|
|
1015
|
-
const _tMa = "tagMap";
|
|
1016
|
-
const _tR = "targetRepository";
|
|
1017
|
-
const _tRC = "targetResourceCount";
|
|
1018
|
-
const _tS = "timeoutSeconds";
|
|
1019
|
-
const _tSC = "totalStepCount";
|
|
1020
|
-
const _tSF = "totalStepsFailed";
|
|
1021
|
-
const _tSS = "totalStepsSucceeded";
|
|
1022
|
-
const _tSSo = "totalStepsSkipped";
|
|
1023
|
-
const _ta = "tags";
|
|
1024
|
-
const _te = "tenancy";
|
|
1025
|
-
const _tex = "text";
|
|
1026
|
-
const _th = "throughput";
|
|
1027
|
-
const _ti = "title";
|
|
1028
|
-
const _tim = "timezone";
|
|
1029
|
-
const _u = "uri";
|
|
1030
|
-
const _uA = "updatedAt";
|
|
1031
|
-
const _uAB = "uninstallAfterBuild";
|
|
1032
|
-
const _uAp = "updateAt";
|
|
1033
|
-
const _uDO = "userDataOverride";
|
|
1034
|
-
const _uG = "userGroups";
|
|
1035
|
-
const _uI = "userIds";
|
|
1036
|
-
const _un = "unit";
|
|
1037
|
-
const _ur = "url";
|
|
1038
|
-
const _v = "version";
|
|
1039
|
-
const _vCA = "vendorCreatedAt";
|
|
1040
|
-
const _vI = "vulnerabilityId";
|
|
1041
|
-
const _vIA = "vulnerabilityIdAggregation";
|
|
1042
|
-
const _vITI = "vmImportTaskId";
|
|
1043
|
-
const _vN = "virtualName";
|
|
1044
|
-
const _vP = "vulnerablePackages";
|
|
1045
|
-
const _vS = "volumeSize";
|
|
1046
|
-
const _vSe = "vendorSeverity";
|
|
1047
|
-
const _vT = "volumeType";
|
|
1048
|
-
const _vUA = "vendorUpdatedAt";
|
|
1049
|
-
const _va = "value";
|
|
1050
|
-
const _val = "values";
|
|
1051
|
-
const _w = "workflows";
|
|
1052
|
-
const _wA = "workflowArn";
|
|
1053
|
-
const _wBVA = "workflowBuildVersionArn";
|
|
1054
|
-
const _wD = "workingDirectory";
|
|
1055
|
-
const _wE = "workflowExecutions";
|
|
1056
|
-
const _wEI = "workflowExecutionId";
|
|
1057
|
-
const _wSL = "workflowSummaryList";
|
|
1058
|
-
const _wVA = "workflowVersionArn";
|
|
1059
|
-
const _wVL = "workflowVersionList";
|
|
1060
|
-
const _wo = "workflow";
|
|
1061
|
-
const n0 = "com.amazonaws.imagebuilder";
|
|
1062
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
1063
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1064
|
-
[_m],
|
|
1065
|
-
[0]
|
|
1066
|
-
];
|
|
1067
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
1068
|
-
var AccountAggregation$ = [3, n0, _AA,
|
|
1069
|
-
0,
|
|
1070
|
-
[_aI, _sC],
|
|
1071
|
-
[0, () => SeverityCounts$]
|
|
1072
|
-
];
|
|
1073
|
-
var AdditionalInstanceConfiguration$ = [3, n0, _AIC,
|
|
1074
|
-
0,
|
|
1075
|
-
[_sMA, _uDO],
|
|
1076
|
-
[() => SystemsManagerAgent$, 0]
|
|
1077
|
-
];
|
|
1078
|
-
var Ami$ = [3, n0, _A,
|
|
1079
|
-
0,
|
|
1080
|
-
[_r, _i, _n, _d, _s, _aI],
|
|
1081
|
-
[0, 0, 0, 0, () => ImageState$, 0]
|
|
1082
|
-
];
|
|
1083
|
-
var AmiDistributionConfiguration$ = [3, n0, _ADC,
|
|
1084
|
-
0,
|
|
1085
|
-
[_n, _d, _tAI, _aT, _kKI, _lP],
|
|
1086
|
-
[0, 0, 64 | 0, 128 | 0, 0, () => LaunchPermissionConfiguration$]
|
|
1087
|
-
];
|
|
1088
|
-
var AutoDisablePolicy$ = [3, n0, _ADP,
|
|
1089
|
-
0,
|
|
1090
|
-
[_fC],
|
|
1091
|
-
[1], 1
|
|
1092
|
-
];
|
|
1093
|
-
var CallRateLimitExceededException$ = [-3, n0, _CRLEE,
|
|
1094
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1095
|
-
[_m],
|
|
1096
|
-
[0]
|
|
1097
|
-
];
|
|
1098
|
-
schema.TypeRegistry.for(n0).registerError(CallRateLimitExceededException$, CallRateLimitExceededException);
|
|
1099
|
-
var CancelImageCreationRequest$ = [3, n0, _CICR,
|
|
1100
|
-
0,
|
|
1101
|
-
[_iBVA, _cT],
|
|
1102
|
-
[0, [0, 4]], 1
|
|
1103
|
-
];
|
|
1104
|
-
var CancelImageCreationResponse$ = [3, n0, _CICRa,
|
|
1105
|
-
0,
|
|
1106
|
-
[_rI, _cT, _iBVA],
|
|
1107
|
-
[0, 0, 0]
|
|
1108
|
-
];
|
|
1109
|
-
var CancelLifecycleExecutionRequest$ = [3, n0, _CLER,
|
|
1110
|
-
0,
|
|
1111
|
-
[_lEI, _cT],
|
|
1112
|
-
[0, [0, 4]], 1
|
|
1113
|
-
];
|
|
1114
|
-
var CancelLifecycleExecutionResponse$ = [3, n0, _CLERa,
|
|
1115
|
-
0,
|
|
1116
|
-
[_lEI],
|
|
1117
|
-
[0]
|
|
1118
|
-
];
|
|
1119
|
-
var ClientException$ = [-3, n0, _CE,
|
|
1120
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1121
|
-
[_m],
|
|
1122
|
-
[0]
|
|
1123
|
-
];
|
|
1124
|
-
schema.TypeRegistry.for(n0).registerError(ClientException$, ClientException);
|
|
1125
|
-
var Component$ = [3, n0, _C,
|
|
1126
|
-
0,
|
|
1127
|
-
[_a, _n, _v, _d, _cD, _t, _p, _sOV, _s, _pa, _o, _da, _kKI, _en, _dC, _ta, _pu, _ob, _pC],
|
|
1128
|
-
[0, 0, 0, 0, 0, 0, 0, 64 | 0, () => ComponentState$, () => ComponentParameterDetailList, 0, 0, 0, 2, 0, 128 | 0, 0, 2, () => ProductCodeList]
|
|
1129
|
-
];
|
|
1130
|
-
var ComponentConfiguration$ = [3, n0, _CC,
|
|
1131
|
-
0,
|
|
1132
|
-
[_cA, _pa],
|
|
1133
|
-
[0, () => ComponentParameterList], 1
|
|
1134
|
-
];
|
|
1135
|
-
var ComponentParameter$ = [3, n0, _CP,
|
|
1136
|
-
0,
|
|
1137
|
-
[_n, _va],
|
|
1138
|
-
[0, 64 | 0], 2
|
|
1139
|
-
];
|
|
1140
|
-
var ComponentParameterDetail$ = [3, n0, _CPD,
|
|
1141
|
-
0,
|
|
1142
|
-
[_n, _t, _dV, _d],
|
|
1143
|
-
[0, 0, 64 | 0, 0], 2
|
|
1144
|
-
];
|
|
1145
|
-
var ComponentState$ = [3, n0, _CS,
|
|
1146
|
-
0,
|
|
1147
|
-
[_st, _re],
|
|
1148
|
-
[0, 0]
|
|
1149
|
-
];
|
|
1150
|
-
var ComponentSummary$ = [3, n0, _CSo,
|
|
1151
|
-
0,
|
|
1152
|
-
[_a, _n, _v, _p, _sOV, _s, _t, _o, _d, _cD, _dC, _ta, _pu, _ob],
|
|
1153
|
-
[0, 0, 0, 0, 64 | 0, () => ComponentState$, 0, 0, 0, 0, 0, 128 | 0, 0, 2]
|
|
1154
|
-
];
|
|
1155
|
-
var ComponentVersion$ = [3, n0, _CV,
|
|
1156
|
-
0,
|
|
1157
|
-
[_a, _n, _v, _d, _p, _sOV, _t, _o, _dC, _st, _pC],
|
|
1158
|
-
[0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, () => ProductCodeList]
|
|
1159
|
-
];
|
|
1160
|
-
var Container$ = [3, n0, _Co,
|
|
1161
|
-
0,
|
|
1162
|
-
[_r, _iU],
|
|
1163
|
-
[0, 64 | 0]
|
|
1164
|
-
];
|
|
1165
|
-
var ContainerDistributionConfiguration$ = [3, n0, _CDC,
|
|
1166
|
-
0,
|
|
1167
|
-
[_tR, _d, _cTo],
|
|
1168
|
-
[() => TargetContainerRepository$, 0, 64 | 0], 1
|
|
1169
|
-
];
|
|
1170
|
-
var ContainerRecipe$ = [3, n0, _CR,
|
|
1171
|
-
0,
|
|
1172
|
-
[_a, _cTon, _n, _d, _p, _o, _v, _co, _iC, _dTD, _kKI, _en, _pI, _dC, _ta, _wD, _tR],
|
|
1173
|
-
[0, 0, 0, 0, 0, 0, 0, () => ComponentConfigurationList, () => InstanceConfiguration$, 0, 0, 2, 0, 0, 128 | 0, 0, () => TargetContainerRepository$]
|
|
1174
|
-
];
|
|
1175
|
-
var ContainerRecipeSummary$ = [3, n0, _CRS,
|
|
1176
|
-
0,
|
|
1177
|
-
[_a, _cTon, _n, _p, _o, _pI, _dC, _iI, _ta],
|
|
1178
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1179
|
-
];
|
|
1180
|
-
var CreateComponentRequest$ = [3, n0, _CCR,
|
|
1181
|
-
0,
|
|
1182
|
-
[_n, _sV, _p, _d, _cD, _sOV, _da, _u, _kKI, _ta, _cT, _dR],
|
|
1183
|
-
[0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 128 | 0, [0, 4], 2], 3
|
|
1184
|
-
];
|
|
1185
|
-
var CreateComponentResponse$ = [3, n0, _CCRr,
|
|
1186
|
-
0,
|
|
1187
|
-
[_rI, _cT, _cBVA, _lVR],
|
|
1188
|
-
[0, 0, 0, () => LatestVersionReferences$]
|
|
1189
|
-
];
|
|
1190
|
-
var CreateContainerRecipeRequest$ = [3, n0, _CCRR,
|
|
1191
|
-
0,
|
|
1192
|
-
[_cTon, _n, _sV, _pI, _tR, _d, _co, _iC, _dTD, _dTU, _pO, _iOVO, _ta, _wD, _kKI, _cT],
|
|
1193
|
-
[0, 0, 0, 0, () => TargetContainerRepository$, 0, () => ComponentConfigurationList, () => InstanceConfiguration$, 0, 0, 0, 0, 128 | 0, 0, 0, [0, 4]], 5
|
|
1194
|
-
];
|
|
1195
|
-
var CreateContainerRecipeResponse$ = [3, n0, _CCRRr,
|
|
1196
|
-
0,
|
|
1197
|
-
[_rI, _cT, _cRA, _lVR],
|
|
1198
|
-
[0, 0, 0, () => LatestVersionReferences$]
|
|
1199
|
-
];
|
|
1200
|
-
var CreateDistributionConfigurationRequest$ = [3, n0, _CDCR,
|
|
1201
|
-
0,
|
|
1202
|
-
[_n, _di, _d, _ta, _cT],
|
|
1203
|
-
[0, () => DistributionList, 0, 128 | 0, [0, 4]], 2
|
|
1204
|
-
];
|
|
1205
|
-
var CreateDistributionConfigurationResponse$ = [3, n0, _CDCRr,
|
|
1206
|
-
0,
|
|
1207
|
-
[_rI, _cT, _dCA],
|
|
1208
|
-
[0, 0, 0]
|
|
1209
|
-
];
|
|
1210
|
-
var CreateImagePipelineRequest$ = [3, n0, _CIPR,
|
|
1211
|
-
0,
|
|
1212
|
-
[_n, _iCA, _d, _iRA, _cRA, _dCA, _iTC, _eIME, _sc, _st, _ta, _cT, _iSC, _w, _eR, _lC],
|
|
1213
|
-
[0, 0, 0, 0, 0, 0, () => ImageTestsConfiguration$, 2, () => Schedule$, 0, 128 | 0, [0, 4], () => ImageScanningConfiguration$, () => WorkflowConfigurationList, 0, () => PipelineLoggingConfiguration$], 2
|
|
1214
|
-
];
|
|
1215
|
-
var CreateImagePipelineResponse$ = [3, n0, _CIPRr,
|
|
1216
|
-
0,
|
|
1217
|
-
[_rI, _cT, _iPA],
|
|
1218
|
-
[0, 0, 0]
|
|
1219
|
-
];
|
|
1220
|
-
var CreateImageRecipeRequest$ = [3, n0, _CIRR,
|
|
1221
|
-
0,
|
|
1222
|
-
[_n, _sV, _pI, _d, _co, _bDM, _ta, _wD, _aIC, _aT, _cT],
|
|
1223
|
-
[0, 0, 0, 0, () => ComponentConfigurationList, () => InstanceBlockDeviceMappings, 128 | 0, 0, () => AdditionalInstanceConfiguration$, 128 | 0, [0, 4]], 3
|
|
1224
|
-
];
|
|
1225
|
-
var CreateImageRecipeResponse$ = [3, n0, _CIRRr,
|
|
1226
|
-
0,
|
|
1227
|
-
[_rI, _cT, _iRA, _lVR],
|
|
1228
|
-
[0, 0, 0, () => LatestVersionReferences$]
|
|
1229
|
-
];
|
|
1230
|
-
var CreateImageRequest$ = [3, n0, _CIR,
|
|
1231
|
-
0,
|
|
1232
|
-
[_iCA, _iRA, _cRA, _dCA, _iTC, _eIME, _ta, _cT, _iSC, _w, _eR, _lC],
|
|
1233
|
-
[0, 0, 0, 0, () => ImageTestsConfiguration$, 2, 128 | 0, [0, 4], () => ImageScanningConfiguration$, () => WorkflowConfigurationList, 0, () => ImageLoggingConfiguration$], 1
|
|
1234
|
-
];
|
|
1235
|
-
var CreateImageResponse$ = [3, n0, _CIRr,
|
|
1236
|
-
0,
|
|
1237
|
-
[_rI, _cT, _iBVA, _lVR],
|
|
1238
|
-
[0, 0, 0, () => LatestVersionReferences$]
|
|
1239
|
-
];
|
|
1240
|
-
var CreateInfrastructureConfigurationRequest$ = [3, n0, _CICRr,
|
|
1241
|
-
0,
|
|
1242
|
-
[_n, _iPN, _d, _iT, _sGI, _sI, _l, _kP, _tIOF, _sTA, _rT, _iMO, _ta, _pl, _cT],
|
|
1243
|
-
[0, 0, 0, 64 | 0, 64 | 0, 0, () => Logging$, 0, 2, 0, 128 | 0, () => InstanceMetadataOptions$, 128 | 0, () => Placement$, [0, 4]], 2
|
|
1244
|
-
];
|
|
1245
|
-
var CreateInfrastructureConfigurationResponse$ = [3, n0, _CICRre,
|
|
1246
|
-
0,
|
|
1247
|
-
[_rI, _cT, _iCA],
|
|
1248
|
-
[0, 0, 0]
|
|
1249
|
-
];
|
|
1250
|
-
var CreateLifecyclePolicyRequest$ = [3, n0, _CLPR,
|
|
1251
|
-
0,
|
|
1252
|
-
[_n, _eR, _rTe, _pD, _rS, _d, _st, _ta, _cT],
|
|
1253
|
-
[0, 0, 0, () => LifecyclePolicyDetails, () => LifecyclePolicyResourceSelection$, 0, 0, 128 | 0, [0, 4]], 5
|
|
1254
|
-
];
|
|
1255
|
-
var CreateLifecyclePolicyResponse$ = [3, n0, _CLPRr,
|
|
1256
|
-
0,
|
|
1257
|
-
[_cT, _lPA],
|
|
1258
|
-
[0, 0]
|
|
1259
|
-
];
|
|
1260
|
-
var CreateWorkflowRequest$ = [3, n0, _CWR,
|
|
1261
|
-
0,
|
|
1262
|
-
[_n, _sV, _t, _d, _cD, _da, _u, _kKI, _ta, _cT, _dR],
|
|
1263
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, [0, 4], 2], 3
|
|
1264
|
-
];
|
|
1265
|
-
var CreateWorkflowResponse$ = [3, n0, _CWRr,
|
|
1266
|
-
0,
|
|
1267
|
-
[_cT, _wBVA, _lVR],
|
|
1268
|
-
[0, 0, () => LatestVersionReferences$]
|
|
1269
|
-
];
|
|
1270
|
-
var CvssScore$ = [3, n0, _CSv,
|
|
1271
|
-
0,
|
|
1272
|
-
[_bS, _sVc, _v, _so],
|
|
1273
|
-
[1, 0, 0, 0]
|
|
1274
|
-
];
|
|
1275
|
-
var CvssScoreAdjustment$ = [3, n0, _CSA,
|
|
1276
|
-
0,
|
|
1277
|
-
[_me, _re],
|
|
1278
|
-
[0, 0]
|
|
1279
|
-
];
|
|
1280
|
-
var CvssScoreDetails$ = [3, n0, _CSD,
|
|
1281
|
-
0,
|
|
1282
|
-
[_sS, _cS, _v, _sco, _sVc, _ad],
|
|
1283
|
-
[0, 0, 0, 1, 0, () => CvssScoreAdjustmentList]
|
|
1284
|
-
];
|
|
1285
|
-
var DeleteComponentRequest$ = [3, n0, _DCR,
|
|
1286
|
-
0,
|
|
1287
|
-
[_cBVA],
|
|
1288
|
-
[[0, { [_hQ]: _cBVA }]], 1
|
|
1289
|
-
];
|
|
1290
|
-
var DeleteComponentResponse$ = [3, n0, _DCRe,
|
|
1291
|
-
0,
|
|
1292
|
-
[_rI, _cBVA],
|
|
1293
|
-
[0, 0]
|
|
1294
|
-
];
|
|
1295
|
-
var DeleteContainerRecipeRequest$ = [3, n0, _DCRR,
|
|
1296
|
-
0,
|
|
1297
|
-
[_cRA],
|
|
1298
|
-
[[0, { [_hQ]: _cRA }]], 1
|
|
1299
|
-
];
|
|
1300
|
-
var DeleteContainerRecipeResponse$ = [3, n0, _DCRRe,
|
|
1301
|
-
0,
|
|
1302
|
-
[_rI, _cRA],
|
|
1303
|
-
[0, 0]
|
|
1304
|
-
];
|
|
1305
|
-
var DeleteDistributionConfigurationRequest$ = [3, n0, _DDCR,
|
|
1306
|
-
0,
|
|
1307
|
-
[_dCA],
|
|
1308
|
-
[[0, { [_hQ]: _dCA }]], 1
|
|
1309
|
-
];
|
|
1310
|
-
var DeleteDistributionConfigurationResponse$ = [3, n0, _DDCRe,
|
|
1311
|
-
0,
|
|
1312
|
-
[_rI, _dCA],
|
|
1313
|
-
[0, 0]
|
|
1314
|
-
];
|
|
1315
|
-
var DeleteImagePipelineRequest$ = [3, n0, _DIPR,
|
|
1316
|
-
0,
|
|
1317
|
-
[_iPA],
|
|
1318
|
-
[[0, { [_hQ]: _iPA }]], 1
|
|
1319
|
-
];
|
|
1320
|
-
var DeleteImagePipelineResponse$ = [3, n0, _DIPRe,
|
|
1321
|
-
0,
|
|
1322
|
-
[_rI, _iPA],
|
|
1323
|
-
[0, 0]
|
|
1324
|
-
];
|
|
1325
|
-
var DeleteImageRecipeRequest$ = [3, n0, _DIRR,
|
|
1326
|
-
0,
|
|
1327
|
-
[_iRA],
|
|
1328
|
-
[[0, { [_hQ]: _iRA }]], 1
|
|
1329
|
-
];
|
|
1330
|
-
var DeleteImageRecipeResponse$ = [3, n0, _DIRRe,
|
|
1331
|
-
0,
|
|
1332
|
-
[_rI, _iRA],
|
|
1333
|
-
[0, 0]
|
|
1334
|
-
];
|
|
1335
|
-
var DeleteImageRequest$ = [3, n0, _DIR,
|
|
1336
|
-
0,
|
|
1337
|
-
[_iBVA],
|
|
1338
|
-
[[0, { [_hQ]: _iBVA }]], 1
|
|
1339
|
-
];
|
|
1340
|
-
var DeleteImageResponse$ = [3, n0, _DIRe,
|
|
1341
|
-
0,
|
|
1342
|
-
[_rI, _iBVA],
|
|
1343
|
-
[0, 0]
|
|
1344
|
-
];
|
|
1345
|
-
var DeleteInfrastructureConfigurationRequest$ = [3, n0, _DICR,
|
|
1346
|
-
0,
|
|
1347
|
-
[_iCA],
|
|
1348
|
-
[[0, { [_hQ]: _iCA }]], 1
|
|
1349
|
-
];
|
|
1350
|
-
var DeleteInfrastructureConfigurationResponse$ = [3, n0, _DICRe,
|
|
1351
|
-
0,
|
|
1352
|
-
[_rI, _iCA],
|
|
1353
|
-
[0, 0]
|
|
1354
|
-
];
|
|
1355
|
-
var DeleteLifecyclePolicyRequest$ = [3, n0, _DLPR,
|
|
1356
|
-
0,
|
|
1357
|
-
[_lPA],
|
|
1358
|
-
[[0, { [_hQ]: _lPA }]], 1
|
|
1359
|
-
];
|
|
1360
|
-
var DeleteLifecyclePolicyResponse$ = [3, n0, _DLPRe,
|
|
1361
|
-
0,
|
|
1362
|
-
[_lPA],
|
|
1363
|
-
[0]
|
|
1364
|
-
];
|
|
1365
|
-
var DeleteWorkflowRequest$ = [3, n0, _DWR,
|
|
1366
|
-
0,
|
|
1367
|
-
[_wBVA],
|
|
1368
|
-
[[0, { [_hQ]: _wBVA }]], 1
|
|
1369
|
-
];
|
|
1370
|
-
var DeleteWorkflowResponse$ = [3, n0, _DWRe,
|
|
1371
|
-
0,
|
|
1372
|
-
[_wBVA],
|
|
1373
|
-
[0]
|
|
1374
|
-
];
|
|
1375
|
-
var DistributeImageRequest$ = [3, n0, _DIRi,
|
|
1376
|
-
0,
|
|
1377
|
-
[_sIo, _dCA, _eR, _ta, _cT, _lC],
|
|
1378
|
-
[0, 0, 0, 128 | 0, [0, 4], () => ImageLoggingConfiguration$], 3
|
|
1379
|
-
];
|
|
1380
|
-
var DistributeImageResponse$ = [3, n0, _DIRis,
|
|
1381
|
-
0,
|
|
1382
|
-
[_cT, _iBVA],
|
|
1383
|
-
[0, 0]
|
|
1384
|
-
];
|
|
1385
|
-
var Distribution$ = [3, n0, _D,
|
|
1386
|
-
0,
|
|
1387
|
-
[_r, _aDC, _cDC, _lCA, _lTC, _sEC, _fLC, _sPC],
|
|
1388
|
-
[0, () => AmiDistributionConfiguration$, () => ContainerDistributionConfiguration$, 64 | 0, () => LaunchTemplateConfigurationList, () => S3ExportConfiguration$, () => FastLaunchConfigurationList, () => SsmParameterConfigurationList], 1
|
|
1389
|
-
];
|
|
1390
|
-
var DistributionConfiguration$ = [3, n0, _DC,
|
|
1391
|
-
0,
|
|
1392
|
-
[_tM, _a, _n, _d, _di, _dC, _dU, _ta],
|
|
1393
|
-
[1, 0, 0, 0, () => DistributionList, 0, 0, 128 | 0], 1
|
|
1394
|
-
];
|
|
1395
|
-
var DistributionConfigurationSummary$ = [3, n0, _DCS,
|
|
1396
|
-
0,
|
|
1397
|
-
[_a, _n, _d, _dC, _dU, _ta, _reg],
|
|
1398
|
-
[0, 0, 0, 0, 0, 128 | 0, 64 | 0]
|
|
1399
|
-
];
|
|
1400
|
-
var DryRunOperationException$ = [-3, n0, _DROE,
|
|
1401
|
-
{ [_e]: _c, [_hE]: 412 },
|
|
1402
|
-
[_m],
|
|
1403
|
-
[0]
|
|
1404
|
-
];
|
|
1405
|
-
schema.TypeRegistry.for(n0).registerError(DryRunOperationException$, DryRunOperationException);
|
|
1406
|
-
var EbsInstanceBlockDeviceSpecification$ = [3, n0, _EIBDS,
|
|
1407
|
-
0,
|
|
1408
|
-
[_en, _dOT, _io, _kKI, _sIn, _vS, _vT, _th],
|
|
1409
|
-
[2, 2, 1, 0, 0, 1, 0, 1]
|
|
1410
|
-
];
|
|
1411
|
-
var EcrConfiguration$ = [3, n0, _EC,
|
|
1412
|
-
0,
|
|
1413
|
-
[_rN, _cTo],
|
|
1414
|
-
[0, 64 | 0]
|
|
1415
|
-
];
|
|
1416
|
-
var FastLaunchConfiguration$ = [3, n0, _FLC,
|
|
1417
|
-
0,
|
|
1418
|
-
[_ena, _sCn, _mPL, _lT, _aI],
|
|
1419
|
-
[2, () => FastLaunchSnapshotConfiguration$, 1, () => FastLaunchLaunchTemplateSpecification$, 0], 1
|
|
1420
|
-
];
|
|
1421
|
-
var FastLaunchLaunchTemplateSpecification$ = [3, n0, _FLLTS,
|
|
1422
|
-
0,
|
|
1423
|
-
[_lTI, _lTN, _lTV],
|
|
1424
|
-
[0, 0, 0]
|
|
1425
|
-
];
|
|
1426
|
-
var FastLaunchSnapshotConfiguration$ = [3, n0, _FLSC,
|
|
1427
|
-
0,
|
|
1428
|
-
[_tRC],
|
|
1429
|
-
[1]
|
|
1430
|
-
];
|
|
1431
|
-
var Filter$ = [3, n0, _F,
|
|
1432
|
-
0,
|
|
1433
|
-
[_n, _val],
|
|
1434
|
-
[0, 64 | 0]
|
|
1435
|
-
];
|
|
1436
|
-
var ForbiddenException$ = [-3, n0, _FE,
|
|
1437
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1438
|
-
[_m],
|
|
1439
|
-
[0]
|
|
1440
|
-
];
|
|
1441
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
1442
|
-
var GetComponentPolicyRequest$ = [3, n0, _GCPR,
|
|
1443
|
-
0,
|
|
1444
|
-
[_cA],
|
|
1445
|
-
[[0, { [_hQ]: _cA }]], 1
|
|
1446
|
-
];
|
|
1447
|
-
var GetComponentPolicyResponse$ = [3, n0, _GCPRe,
|
|
1448
|
-
0,
|
|
1449
|
-
[_rI, _po],
|
|
1450
|
-
[0, 0]
|
|
1451
|
-
];
|
|
1452
|
-
var GetComponentRequest$ = [3, n0, _GCR,
|
|
1453
|
-
0,
|
|
1454
|
-
[_cBVA],
|
|
1455
|
-
[[0, { [_hQ]: _cBVA }]], 1
|
|
1456
|
-
];
|
|
1457
|
-
var GetComponentResponse$ = [3, n0, _GCRe,
|
|
1458
|
-
0,
|
|
1459
|
-
[_rI, _com, _lVR],
|
|
1460
|
-
[0, () => Component$, () => LatestVersionReferences$]
|
|
1461
|
-
];
|
|
1462
|
-
var GetContainerRecipePolicyRequest$ = [3, n0, _GCRPR,
|
|
1463
|
-
0,
|
|
1464
|
-
[_cRA],
|
|
1465
|
-
[[0, { [_hQ]: _cRA }]], 1
|
|
1466
|
-
];
|
|
1467
|
-
var GetContainerRecipePolicyResponse$ = [3, n0, _GCRPRe,
|
|
1468
|
-
0,
|
|
1469
|
-
[_rI, _po],
|
|
1470
|
-
[0, 0]
|
|
1471
|
-
];
|
|
1472
|
-
var GetContainerRecipeRequest$ = [3, n0, _GCRR,
|
|
1473
|
-
0,
|
|
1474
|
-
[_cRA],
|
|
1475
|
-
[[0, { [_hQ]: _cRA }]], 1
|
|
1476
|
-
];
|
|
1477
|
-
var GetContainerRecipeResponse$ = [3, n0, _GCRRe,
|
|
1478
|
-
0,
|
|
1479
|
-
[_rI, _cR, _lVR],
|
|
1480
|
-
[0, () => ContainerRecipe$, () => LatestVersionReferences$]
|
|
1481
|
-
];
|
|
1482
|
-
var GetDistributionConfigurationRequest$ = [3, n0, _GDCR,
|
|
1483
|
-
0,
|
|
1484
|
-
[_dCA],
|
|
1485
|
-
[[0, { [_hQ]: _dCA }]], 1
|
|
1486
|
-
];
|
|
1487
|
-
var GetDistributionConfigurationResponse$ = [3, n0, _GDCRe,
|
|
1488
|
-
0,
|
|
1489
|
-
[_rI, _dCi],
|
|
1490
|
-
[0, () => DistributionConfiguration$]
|
|
1491
|
-
];
|
|
1492
|
-
var GetImagePipelineRequest$ = [3, n0, _GIPR,
|
|
1493
|
-
0,
|
|
1494
|
-
[_iPA],
|
|
1495
|
-
[[0, { [_hQ]: _iPA }]], 1
|
|
1496
|
-
];
|
|
1497
|
-
var GetImagePipelineResponse$ = [3, n0, _GIPRe,
|
|
1498
|
-
0,
|
|
1499
|
-
[_rI, _iP],
|
|
1500
|
-
[0, () => ImagePipeline$]
|
|
1501
|
-
];
|
|
1502
|
-
var GetImagePolicyRequest$ = [3, n0, _GIPRet,
|
|
1503
|
-
0,
|
|
1504
|
-
[_iA],
|
|
1505
|
-
[[0, { [_hQ]: _iA }]], 1
|
|
1506
|
-
];
|
|
1507
|
-
var GetImagePolicyResponse$ = [3, n0, _GIPRetm,
|
|
1508
|
-
0,
|
|
1509
|
-
[_rI, _po],
|
|
1510
|
-
[0, 0]
|
|
1511
|
-
];
|
|
1512
|
-
var GetImageRecipePolicyRequest$ = [3, n0, _GIRPR,
|
|
1513
|
-
0,
|
|
1514
|
-
[_iRA],
|
|
1515
|
-
[[0, { [_hQ]: _iRA }]], 1
|
|
1516
|
-
];
|
|
1517
|
-
var GetImageRecipePolicyResponse$ = [3, n0, _GIRPRe,
|
|
1518
|
-
0,
|
|
1519
|
-
[_rI, _po],
|
|
1520
|
-
[0, 0]
|
|
1521
|
-
];
|
|
1522
|
-
var GetImageRecipeRequest$ = [3, n0, _GIRR,
|
|
1523
|
-
0,
|
|
1524
|
-
[_iRA],
|
|
1525
|
-
[[0, { [_hQ]: _iRA }]], 1
|
|
1526
|
-
];
|
|
1527
|
-
var GetImageRecipeResponse$ = [3, n0, _GIRRe,
|
|
1528
|
-
0,
|
|
1529
|
-
[_rI, _iR, _lVR],
|
|
1530
|
-
[0, () => ImageRecipe$, () => LatestVersionReferences$]
|
|
1531
|
-
];
|
|
1532
|
-
var GetImageRequest$ = [3, n0, _GIR,
|
|
1533
|
-
0,
|
|
1534
|
-
[_iBVA],
|
|
1535
|
-
[[0, { [_hQ]: _iBVA }]], 1
|
|
1536
|
-
];
|
|
1537
|
-
var GetImageResponse$ = [3, n0, _GIRe,
|
|
1538
|
-
0,
|
|
1539
|
-
[_rI, _i, _lVR],
|
|
1540
|
-
[0, () => Image$, () => LatestVersionReferences$]
|
|
1541
|
-
];
|
|
1542
|
-
var GetInfrastructureConfigurationRequest$ = [3, n0, _GICR,
|
|
1543
|
-
0,
|
|
1544
|
-
[_iCA],
|
|
1545
|
-
[[0, { [_hQ]: _iCA }]], 1
|
|
1546
|
-
];
|
|
1547
|
-
var GetInfrastructureConfigurationResponse$ = [3, n0, _GICRe,
|
|
1548
|
-
0,
|
|
1549
|
-
[_rI, _iCn],
|
|
1550
|
-
[0, () => InfrastructureConfiguration$]
|
|
1551
|
-
];
|
|
1552
|
-
var GetLifecycleExecutionRequest$ = [3, n0, _GLER,
|
|
1553
|
-
0,
|
|
1554
|
-
[_lEI],
|
|
1555
|
-
[[0, { [_hQ]: _lEI }]], 1
|
|
1556
|
-
];
|
|
1557
|
-
var GetLifecycleExecutionResponse$ = [3, n0, _GLERe,
|
|
1558
|
-
0,
|
|
1559
|
-
[_lE],
|
|
1560
|
-
[() => LifecycleExecution$]
|
|
1561
|
-
];
|
|
1562
|
-
var GetLifecyclePolicyRequest$ = [3, n0, _GLPR,
|
|
1563
|
-
0,
|
|
1564
|
-
[_lPA],
|
|
1565
|
-
[[0, { [_hQ]: _lPA }]], 1
|
|
1566
|
-
];
|
|
1567
|
-
var GetLifecyclePolicyResponse$ = [3, n0, _GLPRe,
|
|
1568
|
-
0,
|
|
1569
|
-
[_lPi],
|
|
1570
|
-
[() => LifecyclePolicy$]
|
|
1571
|
-
];
|
|
1572
|
-
var GetMarketplaceResourceRequest$ = [3, n0, _GMRR,
|
|
1573
|
-
0,
|
|
1574
|
-
[_rTe, _rA, _rL],
|
|
1575
|
-
[0, 0, 0], 2
|
|
1576
|
-
];
|
|
1577
|
-
var GetMarketplaceResourceResponse$ = [3, n0, _GMRRe,
|
|
1578
|
-
0,
|
|
1579
|
-
[_rA, _ur, _da],
|
|
1580
|
-
[0, 0, 0]
|
|
1581
|
-
];
|
|
1582
|
-
var GetWorkflowExecutionRequest$ = [3, n0, _GWER,
|
|
1583
|
-
0,
|
|
1584
|
-
[_wEI],
|
|
1585
|
-
[[0, { [_hQ]: _wEI }]], 1
|
|
1586
|
-
];
|
|
1587
|
-
var GetWorkflowExecutionResponse$ = [3, n0, _GWERe,
|
|
1588
|
-
0,
|
|
1589
|
-
[_rI, _wBVA, _wEI, _iBVA, _t, _st, _m, _tSC, _tSS, _tSF, _tSSo, _sT, _eT, _pG],
|
|
1590
|
-
[0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0]
|
|
1591
|
-
];
|
|
1592
|
-
var GetWorkflowRequest$ = [3, n0, _GWR,
|
|
1593
|
-
0,
|
|
1594
|
-
[_wBVA],
|
|
1595
|
-
[[0, { [_hQ]: _wBVA }]], 1
|
|
1596
|
-
];
|
|
1597
|
-
var GetWorkflowResponse$ = [3, n0, _GWRe,
|
|
1598
|
-
0,
|
|
1599
|
-
[_wo, _lVR],
|
|
1600
|
-
[() => Workflow$, () => LatestVersionReferences$]
|
|
1601
|
-
];
|
|
1602
|
-
var GetWorkflowStepExecutionRequest$ = [3, n0, _GWSER,
|
|
1603
|
-
0,
|
|
1604
|
-
[_sEI],
|
|
1605
|
-
[[0, { [_hQ]: _sEI }]], 1
|
|
1606
|
-
];
|
|
1607
|
-
var GetWorkflowStepExecutionResponse$ = [3, n0, _GWSERe,
|
|
1608
|
-
0,
|
|
1609
|
-
[_rI, _sEI, _wBVA, _wEI, _iBVA, _n, _d, _ac, _st, _rSo, _m, _in, _ou, _sT, _eT, _oF, _tS],
|
|
1610
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]
|
|
1611
|
-
];
|
|
1612
|
-
var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
1613
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1614
|
-
[_m],
|
|
1615
|
-
[0]
|
|
1616
|
-
];
|
|
1617
|
-
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
1618
|
-
var Image$ = [3, n0, _I,
|
|
1619
|
-
0,
|
|
1620
|
-
[_a, _t, _n, _v, _p, _eIME, _oV, _s, _iR, _cR, _sPN, _sPA, _iCn, _dCi, _iTC, _dC, _oR, _ta, _bT, _iS, _sSc, _iSC, _dT, _lEI, _eR, _w, _lC],
|
|
1621
|
-
[0, 0, 0, 0, 0, 2, 0, () => ImageState$, () => ImageRecipe$, () => ContainerRecipe$, 0, 0, () => InfrastructureConfiguration$, () => DistributionConfiguration$, () => ImageTestsConfiguration$, 0, () => OutputResources$, 128 | 0, 0, 0, () => ImageScanState$, () => ImageScanningConfiguration$, 4, 0, 0, () => WorkflowConfigurationList, () => ImageLoggingConfiguration$]
|
|
1622
|
-
];
|
|
1623
|
-
var ImageAggregation$ = [3, n0, _IA,
|
|
1624
|
-
0,
|
|
1625
|
-
[_iBVA, _sC],
|
|
1626
|
-
[0, () => SeverityCounts$]
|
|
1627
|
-
];
|
|
1628
|
-
var ImageLoggingConfiguration$ = [3, n0, _ILC,
|
|
1629
|
-
0,
|
|
1630
|
-
[_lGN],
|
|
1631
|
-
[0]
|
|
1632
|
-
];
|
|
1633
|
-
var ImagePackage$ = [3, n0, _IP,
|
|
1634
|
-
0,
|
|
1635
|
-
[_pN, _pV],
|
|
1636
|
-
[0, 0]
|
|
1637
|
-
];
|
|
1638
|
-
var ImagePipeline$ = [3, n0, _IPm,
|
|
1639
|
-
0,
|
|
1640
|
-
[_a, _n, _d, _p, _eIME, _iRA, _cRA, _iCA, _dCA, _iTC, _sc, _st, _dC, _dU, _dLR, _lRS, _dNR, _ta, _iSC, _eR, _w, _lC, _cF],
|
|
1641
|
-
[0, 0, 0, 0, 2, 0, 0, 0, 0, () => ImageTestsConfiguration$, () => Schedule$, 0, 0, 0, 0, 0, 0, 128 | 0, () => ImageScanningConfiguration$, 0, () => WorkflowConfigurationList, () => PipelineLoggingConfiguration$, 1]
|
|
1642
|
-
];
|
|
1643
|
-
var ImagePipelineAggregation$ = [3, n0, _IPA,
|
|
1644
|
-
0,
|
|
1645
|
-
[_iPA, _sC],
|
|
1646
|
-
[0, () => SeverityCounts$]
|
|
1647
|
-
];
|
|
1648
|
-
var ImageRecipe$ = [3, n0, _IR,
|
|
1649
|
-
0,
|
|
1650
|
-
[_a, _t, _n, _d, _p, _o, _v, _co, _pI, _bDM, _dC, _ta, _wD, _aIC, _aT],
|
|
1651
|
-
[0, 0, 0, 0, 0, 0, 0, () => ComponentConfigurationList, 0, () => InstanceBlockDeviceMappings, 0, 128 | 0, 0, () => AdditionalInstanceConfiguration$, 128 | 0]
|
|
1652
|
-
];
|
|
1653
|
-
var ImageRecipeSummary$ = [3, n0, _IRS,
|
|
1654
|
-
0,
|
|
1655
|
-
[_a, _n, _p, _o, _pI, _dC, _ta],
|
|
1656
|
-
[0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1657
|
-
];
|
|
1658
|
-
var ImageScanFinding$ = [3, n0, _ISF,
|
|
1659
|
-
0,
|
|
1660
|
-
[_aAI, _iBVA, _iPA, _t, _d, _ti, _rem, _se, _fOA, _uA, _iSn, _iSD, _pVD, _fA],
|
|
1661
|
-
[0, 0, 0, 0, 0, 0, () => Remediation$, 0, 4, 4, 1, () => InspectorScoreDetails$, () => PackageVulnerabilityDetails$, 0]
|
|
1662
|
-
];
|
|
1663
|
-
var ImageScanFindingAggregation$ = [3, n0, _ISFA,
|
|
1664
|
-
0,
|
|
1665
|
-
[_aA, _iAm, _iPAm, _vIA],
|
|
1666
|
-
[() => AccountAggregation$, () => ImageAggregation$, () => ImagePipelineAggregation$, () => VulnerabilityIdAggregation$]
|
|
1667
|
-
];
|
|
1668
|
-
var ImageScanFindingsFilter$ = [3, n0, _ISFF,
|
|
1669
|
-
0,
|
|
1670
|
-
[_n, _val],
|
|
1671
|
-
[0, 64 | 0]
|
|
1672
|
-
];
|
|
1673
|
-
var ImageScanningConfiguration$ = [3, n0, _ISC,
|
|
1674
|
-
0,
|
|
1675
|
-
[_iSE, _eC],
|
|
1676
|
-
[2, () => EcrConfiguration$]
|
|
1677
|
-
];
|
|
1678
|
-
var ImageScanState$ = [3, n0, _ISS,
|
|
1679
|
-
0,
|
|
1680
|
-
[_st, _re],
|
|
1681
|
-
[0, 0]
|
|
1682
|
-
];
|
|
1683
|
-
var ImageState$ = [3, n0, _IS,
|
|
1684
|
-
0,
|
|
1685
|
-
[_st, _re],
|
|
1686
|
-
[0, 0]
|
|
1687
|
-
];
|
|
1688
|
-
var ImageSummary$ = [3, n0, _ISm,
|
|
1689
|
-
0,
|
|
1690
|
-
[_a, _n, _t, _v, _p, _oV, _s, _o, _dC, _oR, _ta, _bT, _iS, _dT, _lEI, _lC],
|
|
1691
|
-
[0, 0, 0, 0, 0, 0, () => ImageState$, 0, 0, () => OutputResources$, 128 | 0, 0, 0, 4, 0, () => ImageLoggingConfiguration$]
|
|
1692
|
-
];
|
|
1693
|
-
var ImageTestsConfiguration$ = [3, n0, _ITC,
|
|
1694
|
-
0,
|
|
1695
|
-
[_iTE, _tM],
|
|
1696
|
-
[2, 1]
|
|
1697
|
-
];
|
|
1698
|
-
var ImageVersion$ = [3, n0, _IV,
|
|
1699
|
-
0,
|
|
1700
|
-
[_a, _n, _t, _v, _p, _oV, _o, _dC, _bT, _iS],
|
|
1701
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1702
|
-
];
|
|
1703
|
-
var ImportComponentRequest$ = [3, n0, _ICR,
|
|
1704
|
-
0,
|
|
1705
|
-
[_n, _sV, _t, _f, _p, _d, _cD, _da, _u, _kKI, _ta, _cT],
|
|
1706
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 | 0, [0, 4]], 5
|
|
1707
|
-
];
|
|
1708
|
-
var ImportComponentResponse$ = [3, n0, _ICRm,
|
|
1709
|
-
0,
|
|
1710
|
-
[_rI, _cT, _cBVA],
|
|
1711
|
-
[0, 0, 0]
|
|
1712
|
-
];
|
|
1713
|
-
var ImportDiskImageRequest$ = [3, n0, _IDIR,
|
|
1714
|
-
0,
|
|
1715
|
-
[_n, _sV, _p, _oV, _iCA, _u, _d, _eR, _lC, _ta, _cT],
|
|
1716
|
-
[0, 0, 0, 0, 0, 0, 0, 0, () => ImageLoggingConfiguration$, 128 | 0, [0, 4]], 6
|
|
1717
|
-
];
|
|
1718
|
-
var ImportDiskImageResponse$ = [3, n0, _IDIRm,
|
|
1719
|
-
0,
|
|
1720
|
-
[_cT, _iBVA],
|
|
1721
|
-
[0, 0]
|
|
1722
|
-
];
|
|
1723
|
-
var ImportVmImageRequest$ = [3, n0, _IVIR,
|
|
1724
|
-
0,
|
|
1725
|
-
[_n, _sV, _p, _vITI, _d, _oV, _lC, _ta, _cT],
|
|
1726
|
-
[0, 0, 0, 0, 0, 0, () => ImageLoggingConfiguration$, 128 | 0, [0, 4]], 4
|
|
1727
|
-
];
|
|
1728
|
-
var ImportVmImageResponse$ = [3, n0, _IVIRm,
|
|
1729
|
-
0,
|
|
1730
|
-
[_rI, _iA, _cT],
|
|
1731
|
-
[0, 0, 0]
|
|
1732
|
-
];
|
|
1733
|
-
var InfrastructureConfiguration$ = [3, n0, _IC,
|
|
1734
|
-
0,
|
|
1735
|
-
[_a, _n, _d, _iT, _iPN, _sGI, _sI, _l, _kP, _tIOF, _sTA, _dC, _dU, _rT, _iMO, _ta, _pl],
|
|
1736
|
-
[0, 0, 0, 64 | 0, 0, 64 | 0, 0, () => Logging$, 0, 2, 0, 0, 0, 128 | 0, () => InstanceMetadataOptions$, 128 | 0, () => Placement$]
|
|
1737
|
-
];
|
|
1738
|
-
var InfrastructureConfigurationSummary$ = [3, n0, _ICS,
|
|
1739
|
-
0,
|
|
1740
|
-
[_a, _n, _d, _dC, _dU, _rT, _ta, _iT, _iPN, _pl],
|
|
1741
|
-
[0, 0, 0, 0, 0, 128 | 0, 128 | 0, 64 | 0, 0, () => Placement$]
|
|
1742
|
-
];
|
|
1743
|
-
var InspectorScoreDetails$ = [3, n0, _ISD,
|
|
1744
|
-
0,
|
|
1745
|
-
[_aC],
|
|
1746
|
-
[() => CvssScoreDetails$]
|
|
1747
|
-
];
|
|
1748
|
-
var InstanceBlockDeviceMapping$ = [3, n0, _IBDM,
|
|
1749
|
-
0,
|
|
1750
|
-
[_dN, _eb, _vN, _nD],
|
|
1751
|
-
[0, () => EbsInstanceBlockDeviceSpecification$, 0, 0]
|
|
1752
|
-
];
|
|
1753
|
-
var InstanceConfiguration$ = [3, n0, _ICn,
|
|
1754
|
-
0,
|
|
1755
|
-
[_i, _bDM],
|
|
1756
|
-
[0, () => InstanceBlockDeviceMappings]
|
|
1757
|
-
];
|
|
1758
|
-
var InstanceMetadataOptions$ = [3, n0, _IMO,
|
|
1759
|
-
0,
|
|
1760
|
-
[_hT, _hPRHL],
|
|
1761
|
-
[0, 1]
|
|
1762
|
-
];
|
|
1763
|
-
var InvalidPaginationTokenException$ = [-3, n0, _IPTE,
|
|
1764
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1765
|
-
[_m],
|
|
1766
|
-
[0]
|
|
1767
|
-
];
|
|
1768
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPaginationTokenException$, InvalidPaginationTokenException);
|
|
1769
|
-
var InvalidParameterCombinationException$ = [-3, n0, _IPCE,
|
|
1770
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1771
|
-
[_m],
|
|
1772
|
-
[0]
|
|
1773
|
-
];
|
|
1774
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterCombinationException$, InvalidParameterCombinationException);
|
|
1775
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1776
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1777
|
-
[_m],
|
|
1778
|
-
[0]
|
|
1779
|
-
];
|
|
1780
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1781
|
-
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
1782
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1783
|
-
[_m],
|
|
1784
|
-
[0]
|
|
1785
|
-
];
|
|
1786
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
1787
|
-
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
1788
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1789
|
-
[_m],
|
|
1790
|
-
[0]
|
|
1791
|
-
];
|
|
1792
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
1793
|
-
var InvalidVersionNumberException$ = [-3, n0, _IVNE,
|
|
1794
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1795
|
-
[_m],
|
|
1796
|
-
[0]
|
|
1797
|
-
];
|
|
1798
|
-
schema.TypeRegistry.for(n0).registerError(InvalidVersionNumberException$, InvalidVersionNumberException);
|
|
1799
|
-
var LatestVersionReferences$ = [3, n0, _LVR,
|
|
1800
|
-
0,
|
|
1801
|
-
[_lVA, _lMVA, _lMVAa, _lPVA],
|
|
1802
|
-
[0, 0, 0, 0]
|
|
1803
|
-
];
|
|
1804
|
-
var LaunchPermissionConfiguration$ = [3, n0, _LPC,
|
|
1805
|
-
0,
|
|
1806
|
-
[_uI, _uG, _oA, _oUA],
|
|
1807
|
-
[64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
1808
|
-
];
|
|
1809
|
-
var LaunchTemplateConfiguration$ = [3, n0, _LTC,
|
|
1810
|
-
0,
|
|
1811
|
-
[_lTI, _aI, _sDV],
|
|
1812
|
-
[0, 0, 2], 1
|
|
1813
|
-
];
|
|
1814
|
-
var LifecycleExecution$ = [3, n0, _LE,
|
|
1815
|
-
0,
|
|
1816
|
-
[_lEI, _lPA, _rIS, _s, _sT, _eT],
|
|
1817
|
-
[0, 0, () => LifecycleExecutionResourcesImpactedSummary$, () => LifecycleExecutionState$, 4, 4]
|
|
1818
|
-
];
|
|
1819
|
-
var LifecycleExecutionResource$ = [3, n0, _LER,
|
|
1820
|
-
0,
|
|
1821
|
-
[_aI, _rIe, _s, _ac, _r, _sn, _iU, _sT, _eT],
|
|
1822
|
-
[0, 0, () => LifecycleExecutionResourceState$, () => LifecycleExecutionResourceAction$, 0, () => LifecycleExecutionSnapshotResourceList, 64 | 0, 4, 4]
|
|
1823
|
-
];
|
|
1824
|
-
var LifecycleExecutionResourceAction$ = [3, n0, _LERA,
|
|
1825
|
-
0,
|
|
1826
|
-
[_n, _re],
|
|
1827
|
-
[0, 0]
|
|
1828
|
-
];
|
|
1829
|
-
var LifecycleExecutionResourcesImpactedSummary$ = [3, n0, _LERIS,
|
|
1830
|
-
0,
|
|
1831
|
-
[_hIR],
|
|
1832
|
-
[2]
|
|
1833
|
-
];
|
|
1834
|
-
var LifecycleExecutionResourceState$ = [3, n0, _LERS,
|
|
1835
|
-
0,
|
|
1836
|
-
[_st, _re],
|
|
1837
|
-
[0, 0]
|
|
1838
|
-
];
|
|
1839
|
-
var LifecycleExecutionSnapshotResource$ = [3, n0, _LESR,
|
|
1840
|
-
0,
|
|
1841
|
-
[_sIn, _s],
|
|
1842
|
-
[0, () => LifecycleExecutionResourceState$]
|
|
1843
|
-
];
|
|
1844
|
-
var LifecycleExecutionState$ = [3, n0, _LES,
|
|
1845
|
-
0,
|
|
1846
|
-
[_st, _re],
|
|
1847
|
-
[0, 0]
|
|
1848
|
-
];
|
|
1849
|
-
var LifecyclePolicy$ = [3, n0, _LP,
|
|
1850
|
-
0,
|
|
1851
|
-
[_a, _n, _d, _st, _eR, _rTe, _pD, _rS, _dC, _dU, _dLR, _ta],
|
|
1852
|
-
[0, 0, 0, 0, 0, 0, () => LifecyclePolicyDetails, () => LifecyclePolicyResourceSelection$, 4, 4, 4, 128 | 0]
|
|
1853
|
-
];
|
|
1854
|
-
var LifecyclePolicyDetail$ = [3, n0, _LPD,
|
|
1855
|
-
0,
|
|
1856
|
-
[_ac, _fi, _eRx],
|
|
1857
|
-
[() => LifecyclePolicyDetailAction$, () => LifecyclePolicyDetailFilter$, () => LifecyclePolicyDetailExclusionRules$], 2
|
|
1858
|
-
];
|
|
1859
|
-
var LifecyclePolicyDetailAction$ = [3, n0, _LPDA,
|
|
1860
|
-
0,
|
|
1861
|
-
[_t, _iRn],
|
|
1862
|
-
[0, () => LifecyclePolicyDetailActionIncludeResources$], 1
|
|
1863
|
-
];
|
|
1864
|
-
var LifecyclePolicyDetailActionIncludeResources$ = [3, n0, _LPDAIR,
|
|
1865
|
-
0,
|
|
1866
|
-
[_am, _sn, _con],
|
|
1867
|
-
[2, 2, 2]
|
|
1868
|
-
];
|
|
1869
|
-
var LifecyclePolicyDetailExclusionRules$ = [3, n0, _LPDER,
|
|
1870
|
-
0,
|
|
1871
|
-
[_tMa, _am],
|
|
1872
|
-
[128 | 0, () => LifecyclePolicyDetailExclusionRulesAmis$]
|
|
1873
|
-
];
|
|
1874
|
-
var LifecyclePolicyDetailExclusionRulesAmis$ = [3, n0, _LPDERA,
|
|
1875
|
-
0,
|
|
1876
|
-
[_iPs, _reg, _sA, _lL, _tMa],
|
|
1877
|
-
[2, 64 | 0, 64 | 0, () => LifecyclePolicyDetailExclusionRulesAmisLastLaunched$, 128 | 0]
|
|
1878
|
-
];
|
|
1879
|
-
var LifecyclePolicyDetailExclusionRulesAmisLastLaunched$ = [3, n0, _LPDERALL,
|
|
1880
|
-
0,
|
|
1881
|
-
[_va, _un],
|
|
1882
|
-
[1, 0], 2
|
|
1883
|
-
];
|
|
1884
|
-
var LifecyclePolicyDetailFilter$ = [3, n0, _LPDF,
|
|
1885
|
-
0,
|
|
1886
|
-
[_t, _va, _un, _rAL],
|
|
1887
|
-
[0, 1, 0, 1], 2
|
|
1888
|
-
];
|
|
1889
|
-
var LifecyclePolicyResourceSelection$ = [3, n0, _LPRS,
|
|
1890
|
-
0,
|
|
1891
|
-
[_rec, _tMa],
|
|
1892
|
-
[() => LifecyclePolicyResourceSelectionRecipes, 128 | 0]
|
|
1893
|
-
];
|
|
1894
|
-
var LifecyclePolicyResourceSelectionRecipe$ = [3, n0, _LPRSR,
|
|
1895
|
-
0,
|
|
1896
|
-
[_n, _sV],
|
|
1897
|
-
[0, 0], 2
|
|
1898
|
-
];
|
|
1899
|
-
var LifecyclePolicySummary$ = [3, n0, _LPS,
|
|
1900
|
-
0,
|
|
1901
|
-
[_a, _n, _d, _st, _eR, _rTe, _dC, _dU, _dLR, _ta],
|
|
1902
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 4, 128 | 0]
|
|
1903
|
-
];
|
|
1904
|
-
var ListComponentBuildVersionsRequest$ = [3, n0, _LCBVR,
|
|
1905
|
-
0,
|
|
1906
|
-
[_cVA, _mR, _nT],
|
|
1907
|
-
[0, 1, 0]
|
|
1908
|
-
];
|
|
1909
|
-
var ListComponentBuildVersionsResponse$ = [3, n0, _LCBVRi,
|
|
1910
|
-
0,
|
|
1911
|
-
[_rI, _cSL, _nT],
|
|
1912
|
-
[0, () => ComponentSummaryList, 0]
|
|
1913
|
-
];
|
|
1914
|
-
var ListComponentsRequest$ = [3, n0, _LCR,
|
|
1915
|
-
0,
|
|
1916
|
-
[_o, _fil, _bN, _mR, _nT],
|
|
1917
|
-
[0, () => FilterList, 2, 1, 0]
|
|
1918
|
-
];
|
|
1919
|
-
var ListComponentsResponse$ = [3, n0, _LCRi,
|
|
1920
|
-
0,
|
|
1921
|
-
[_rI, _cVL, _nT],
|
|
1922
|
-
[0, () => ComponentVersionList, 0]
|
|
1923
|
-
];
|
|
1924
|
-
var ListContainerRecipesRequest$ = [3, n0, _LCRR,
|
|
1925
|
-
0,
|
|
1926
|
-
[_o, _fil, _mR, _nT],
|
|
1927
|
-
[0, () => FilterList, 1, 0]
|
|
1928
|
-
];
|
|
1929
|
-
var ListContainerRecipesResponse$ = [3, n0, _LCRRi,
|
|
1930
|
-
0,
|
|
1931
|
-
[_rI, _cRSL, _nT],
|
|
1932
|
-
[0, () => ContainerRecipeSummaryList, 0]
|
|
1933
|
-
];
|
|
1934
|
-
var ListDistributionConfigurationsRequest$ = [3, n0, _LDCR,
|
|
1935
|
-
0,
|
|
1936
|
-
[_fil, _mR, _nT],
|
|
1937
|
-
[() => FilterList, 1, 0]
|
|
1938
|
-
];
|
|
1939
|
-
var ListDistributionConfigurationsResponse$ = [3, n0, _LDCRi,
|
|
1940
|
-
0,
|
|
1941
|
-
[_rI, _dCSL, _nT],
|
|
1942
|
-
[0, () => DistributionConfigurationSummaryList, 0]
|
|
1943
|
-
];
|
|
1944
|
-
var ListImageBuildVersionsRequest$ = [3, n0, _LIBVR,
|
|
1945
|
-
0,
|
|
1946
|
-
[_iVA, _fil, _mR, _nT],
|
|
1947
|
-
[0, () => FilterList, 1, 0]
|
|
1948
|
-
];
|
|
1949
|
-
var ListImageBuildVersionsResponse$ = [3, n0, _LIBVRi,
|
|
1950
|
-
0,
|
|
1951
|
-
[_rI, _iSL, _nT],
|
|
1952
|
-
[0, () => ImageSummaryList, 0]
|
|
1953
|
-
];
|
|
1954
|
-
var ListImagePackagesRequest$ = [3, n0, _LIPR,
|
|
1955
|
-
0,
|
|
1956
|
-
[_iBVA, _mR, _nT],
|
|
1957
|
-
[0, 1, 0], 1
|
|
1958
|
-
];
|
|
1959
|
-
var ListImagePackagesResponse$ = [3, n0, _LIPRi,
|
|
1960
|
-
0,
|
|
1961
|
-
[_rI, _iPL, _nT],
|
|
1962
|
-
[0, () => ImagePackageList, 0]
|
|
1963
|
-
];
|
|
1964
|
-
var ListImagePipelineImagesRequest$ = [3, n0, _LIPIR,
|
|
1965
|
-
0,
|
|
1966
|
-
[_iPA, _fil, _mR, _nT],
|
|
1967
|
-
[0, () => FilterList, 1, 0], 1
|
|
1968
|
-
];
|
|
1969
|
-
var ListImagePipelineImagesResponse$ = [3, n0, _LIPIRi,
|
|
1970
|
-
0,
|
|
1971
|
-
[_rI, _iSL, _nT],
|
|
1972
|
-
[0, () => ImageSummaryList, 0]
|
|
1973
|
-
];
|
|
1974
|
-
var ListImagePipelinesRequest$ = [3, n0, _LIPRis,
|
|
1975
|
-
0,
|
|
1976
|
-
[_fil, _mR, _nT],
|
|
1977
|
-
[() => FilterList, 1, 0]
|
|
1978
|
-
];
|
|
1979
|
-
var ListImagePipelinesResponse$ = [3, n0, _LIPRist,
|
|
1980
|
-
0,
|
|
1981
|
-
[_rI, _iPLm, _nT],
|
|
1982
|
-
[0, () => ImagePipelineList, 0]
|
|
1983
|
-
];
|
|
1984
|
-
var ListImageRecipesRequest$ = [3, n0, _LIRR,
|
|
1985
|
-
0,
|
|
1986
|
-
[_o, _fil, _mR, _nT],
|
|
1987
|
-
[0, () => FilterList, 1, 0]
|
|
1988
|
-
];
|
|
1989
|
-
var ListImageRecipesResponse$ = [3, n0, _LIRRi,
|
|
1990
|
-
0,
|
|
1991
|
-
[_rI, _iRSL, _nT],
|
|
1992
|
-
[0, () => ImageRecipeSummaryList, 0]
|
|
1993
|
-
];
|
|
1994
|
-
var ListImageScanFindingAggregationsRequest$ = [3, n0, _LISFAR,
|
|
1995
|
-
0,
|
|
1996
|
-
[_fi, _nT],
|
|
1997
|
-
[() => Filter$, 0]
|
|
1998
|
-
];
|
|
1999
|
-
var ListImageScanFindingAggregationsResponse$ = [3, n0, _LISFARi,
|
|
2000
|
-
0,
|
|
2001
|
-
[_rI, _aTg, _res, _nT],
|
|
2002
|
-
[0, 0, () => ImageScanFindingAggregationsList, 0]
|
|
2003
|
-
];
|
|
2004
|
-
var ListImageScanFindingsRequest$ = [3, n0, _LISFR,
|
|
2005
|
-
0,
|
|
2006
|
-
[_fil, _mR, _nT],
|
|
2007
|
-
[() => ImageScanFindingsFilterList, 1, 0]
|
|
2008
|
-
];
|
|
2009
|
-
var ListImageScanFindingsResponse$ = [3, n0, _LISFRi,
|
|
2010
|
-
0,
|
|
2011
|
-
[_rI, _fin, _nT],
|
|
2012
|
-
[0, () => ImageScanFindingsList, 0]
|
|
2013
|
-
];
|
|
2014
|
-
var ListImagesRequest$ = [3, n0, _LIR,
|
|
2015
|
-
0,
|
|
2016
|
-
[_o, _fil, _bN, _mR, _nT, _iD],
|
|
2017
|
-
[0, () => FilterList, 2, 1, 0, 2]
|
|
2018
|
-
];
|
|
2019
|
-
var ListImagesResponse$ = [3, n0, _LIRi,
|
|
2020
|
-
0,
|
|
2021
|
-
[_rI, _iVL, _nT],
|
|
2022
|
-
[0, () => ImageVersionList, 0]
|
|
2023
|
-
];
|
|
2024
|
-
var ListInfrastructureConfigurationsRequest$ = [3, n0, _LICR,
|
|
2025
|
-
0,
|
|
2026
|
-
[_fil, _mR, _nT],
|
|
2027
|
-
[() => FilterList, 1, 0]
|
|
2028
|
-
];
|
|
2029
|
-
var ListInfrastructureConfigurationsResponse$ = [3, n0, _LICRi,
|
|
2030
|
-
0,
|
|
2031
|
-
[_rI, _iCSL, _nT],
|
|
2032
|
-
[0, () => InfrastructureConfigurationSummaryList, 0]
|
|
2033
|
-
];
|
|
2034
|
-
var ListLifecycleExecutionResourcesRequest$ = [3, n0, _LLERR,
|
|
2035
|
-
0,
|
|
2036
|
-
[_lEI, _pRI, _mR, _nT],
|
|
2037
|
-
[0, 0, 1, 0], 1
|
|
2038
|
-
];
|
|
2039
|
-
var ListLifecycleExecutionResourcesResponse$ = [3, n0, _LLERRi,
|
|
2040
|
-
0,
|
|
2041
|
-
[_lEI, _lES, _reso, _nT],
|
|
2042
|
-
[0, () => LifecycleExecutionState$, () => LifecycleExecutionResourceList, 0]
|
|
2043
|
-
];
|
|
2044
|
-
var ListLifecycleExecutionsRequest$ = [3, n0, _LLER,
|
|
2045
|
-
0,
|
|
2046
|
-
[_rA, _mR, _nT],
|
|
2047
|
-
[0, 1, 0], 1
|
|
2048
|
-
];
|
|
2049
|
-
var ListLifecycleExecutionsResponse$ = [3, n0, _LLERi,
|
|
2050
|
-
0,
|
|
2051
|
-
[_lEi, _nT],
|
|
2052
|
-
[() => LifecycleExecutionsList, 0]
|
|
2053
|
-
];
|
|
2054
|
-
var ListLifecyclePoliciesRequest$ = [3, n0, _LLPR,
|
|
2055
|
-
0,
|
|
2056
|
-
[_fil, _mR, _nT],
|
|
2057
|
-
[() => FilterList, 1, 0]
|
|
2058
|
-
];
|
|
2059
|
-
var ListLifecyclePoliciesResponse$ = [3, n0, _LLPRi,
|
|
2060
|
-
0,
|
|
2061
|
-
[_lPSL, _nT],
|
|
2062
|
-
[() => LifecyclePolicySummaryList, 0]
|
|
2063
|
-
];
|
|
2064
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2065
|
-
0,
|
|
2066
|
-
[_rA],
|
|
2067
|
-
[[0, 1]], 1
|
|
2068
|
-
];
|
|
2069
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2070
|
-
0,
|
|
2071
|
-
[_ta],
|
|
2072
|
-
[128 | 0]
|
|
2073
|
-
];
|
|
2074
|
-
var ListWaitingWorkflowStepsRequest$ = [3, n0, _LWWSR,
|
|
2075
|
-
0,
|
|
2076
|
-
[_mR, _nT],
|
|
2077
|
-
[1, 0]
|
|
2078
|
-
];
|
|
2079
|
-
var ListWaitingWorkflowStepsResponse$ = [3, n0, _LWWSRi,
|
|
2080
|
-
0,
|
|
2081
|
-
[_ste, _nT],
|
|
2082
|
-
[() => WorkflowStepExecutionList, 0]
|
|
2083
|
-
];
|
|
2084
|
-
var ListWorkflowBuildVersionsRequest$ = [3, n0, _LWBVR,
|
|
2085
|
-
0,
|
|
2086
|
-
[_wVA, _mR, _nT],
|
|
2087
|
-
[0, 1, 0]
|
|
2088
|
-
];
|
|
2089
|
-
var ListWorkflowBuildVersionsResponse$ = [3, n0, _LWBVRi,
|
|
2090
|
-
0,
|
|
2091
|
-
[_wSL, _nT],
|
|
2092
|
-
[() => WorkflowSummaryList, 0]
|
|
2093
|
-
];
|
|
2094
|
-
var ListWorkflowExecutionsRequest$ = [3, n0, _LWER,
|
|
2095
|
-
0,
|
|
2096
|
-
[_iBVA, _mR, _nT],
|
|
2097
|
-
[0, 1, 0], 1
|
|
2098
|
-
];
|
|
2099
|
-
var ListWorkflowExecutionsResponse$ = [3, n0, _LWERi,
|
|
2100
|
-
0,
|
|
2101
|
-
[_rI, _wE, _iBVA, _m, _nT],
|
|
2102
|
-
[0, () => WorkflowExecutionsList, 0, 0, 0]
|
|
2103
|
-
];
|
|
2104
|
-
var ListWorkflowsRequest$ = [3, n0, _LWR,
|
|
2105
|
-
0,
|
|
2106
|
-
[_o, _fil, _bN, _mR, _nT],
|
|
2107
|
-
[0, () => FilterList, 2, 1, 0]
|
|
2108
|
-
];
|
|
2109
|
-
var ListWorkflowsResponse$ = [3, n0, _LWRi,
|
|
2110
|
-
0,
|
|
2111
|
-
[_wVL, _nT],
|
|
2112
|
-
[() => WorkflowVersionList, 0]
|
|
2113
|
-
];
|
|
2114
|
-
var ListWorkflowStepExecutionsRequest$ = [3, n0, _LWSER,
|
|
2115
|
-
0,
|
|
2116
|
-
[_wEI, _mR, _nT],
|
|
2117
|
-
[0, 1, 0], 1
|
|
2118
|
-
];
|
|
2119
|
-
var ListWorkflowStepExecutionsResponse$ = [3, n0, _LWSERi,
|
|
2120
|
-
0,
|
|
2121
|
-
[_rI, _ste, _wBVA, _wEI, _iBVA, _m, _nT],
|
|
2122
|
-
[0, () => WorkflowStepExecutionsList, 0, 0, 0, 0, 0]
|
|
2123
|
-
];
|
|
2124
|
-
var Logging$ = [3, n0, _L,
|
|
2125
|
-
0,
|
|
2126
|
-
[_sL],
|
|
2127
|
-
[() => S3Logs$]
|
|
2128
|
-
];
|
|
2129
|
-
var OutputResources$ = [3, n0, _OR,
|
|
2130
|
-
0,
|
|
2131
|
-
[_am, _con],
|
|
2132
|
-
[() => AmiList, () => ContainerList]
|
|
2133
|
-
];
|
|
2134
|
-
var PackageVulnerabilityDetails$ = [3, n0, _PVD,
|
|
2135
|
-
0,
|
|
2136
|
-
[_vI, _vP, _so, _cv, _rV, _sU, _vSe, _vCA, _vUA, _rU],
|
|
2137
|
-
[0, () => VulnerablePackageList, 0, () => CvssScoreList, 64 | 0, 0, 0, 4, 4, 64 | 0], 1
|
|
2138
|
-
];
|
|
2139
|
-
var PipelineLoggingConfiguration$ = [3, n0, _PLC,
|
|
2140
|
-
0,
|
|
2141
|
-
[_iLGN, _pLGN],
|
|
2142
|
-
[0, 0]
|
|
2143
|
-
];
|
|
2144
|
-
var Placement$ = [3, n0, _P,
|
|
2145
|
-
0,
|
|
2146
|
-
[_aZ, _te, _hI, _hRGA],
|
|
2147
|
-
[0, 0, 0, 0]
|
|
2148
|
-
];
|
|
2149
|
-
var ProductCodeListItem$ = [3, n0, _PCLI,
|
|
2150
|
-
0,
|
|
2151
|
-
[_pCI, _pCT],
|
|
2152
|
-
[0, 0], 2
|
|
2153
|
-
];
|
|
2154
|
-
var PutComponentPolicyRequest$ = [3, n0, _PCPR,
|
|
2155
|
-
0,
|
|
2156
|
-
[_cA, _po],
|
|
2157
|
-
[0, 0], 2
|
|
2158
|
-
];
|
|
2159
|
-
var PutComponentPolicyResponse$ = [3, n0, _PCPRu,
|
|
2160
|
-
0,
|
|
2161
|
-
[_rI, _cA],
|
|
2162
|
-
[0, 0]
|
|
2163
|
-
];
|
|
2164
|
-
var PutContainerRecipePolicyRequest$ = [3, n0, _PCRPR,
|
|
2165
|
-
0,
|
|
2166
|
-
[_cRA, _po],
|
|
2167
|
-
[0, 0], 2
|
|
2168
|
-
];
|
|
2169
|
-
var PutContainerRecipePolicyResponse$ = [3, n0, _PCRPRu,
|
|
2170
|
-
0,
|
|
2171
|
-
[_rI, _cRA],
|
|
2172
|
-
[0, 0]
|
|
2173
|
-
];
|
|
2174
|
-
var PutImagePolicyRequest$ = [3, n0, _PIPR,
|
|
2175
|
-
0,
|
|
2176
|
-
[_iA, _po],
|
|
2177
|
-
[0, 0], 2
|
|
2178
|
-
];
|
|
2179
|
-
var PutImagePolicyResponse$ = [3, n0, _PIPRu,
|
|
2180
|
-
0,
|
|
2181
|
-
[_rI, _iA],
|
|
2182
|
-
[0, 0]
|
|
2183
|
-
];
|
|
2184
|
-
var PutImageRecipePolicyRequest$ = [3, n0, _PIRPR,
|
|
2185
|
-
0,
|
|
2186
|
-
[_iRA, _po],
|
|
2187
|
-
[0, 0], 2
|
|
2188
|
-
];
|
|
2189
|
-
var PutImageRecipePolicyResponse$ = [3, n0, _PIRPRu,
|
|
2190
|
-
0,
|
|
2191
|
-
[_rI, _iRA],
|
|
2192
|
-
[0, 0]
|
|
2193
|
-
];
|
|
2194
|
-
var Remediation$ = [3, n0, _R,
|
|
2195
|
-
0,
|
|
2196
|
-
[_reco],
|
|
2197
|
-
[() => RemediationRecommendation$]
|
|
2198
|
-
];
|
|
2199
|
-
var RemediationRecommendation$ = [3, n0, _RR,
|
|
2200
|
-
0,
|
|
2201
|
-
[_tex, _ur],
|
|
2202
|
-
[0, 0]
|
|
2203
|
-
];
|
|
2204
|
-
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
2205
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2206
|
-
[_m],
|
|
2207
|
-
[0]
|
|
2208
|
-
];
|
|
2209
|
-
schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
2210
|
-
var ResourceDependencyException$ = [-3, n0, _RDE,
|
|
2211
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2212
|
-
[_m],
|
|
2213
|
-
[0]
|
|
2214
|
-
];
|
|
2215
|
-
schema.TypeRegistry.for(n0).registerError(ResourceDependencyException$, ResourceDependencyException);
|
|
2216
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
2217
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2218
|
-
[_m],
|
|
2219
|
-
[0]
|
|
2220
|
-
];
|
|
2221
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
2222
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
2223
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
2224
|
-
[_m],
|
|
2225
|
-
[0]
|
|
2226
|
-
];
|
|
2227
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
2228
|
-
var ResourceState$ = [3, n0, _RS,
|
|
2229
|
-
0,
|
|
2230
|
-
[_st],
|
|
2231
|
-
[0]
|
|
2232
|
-
];
|
|
2233
|
-
var ResourceStateUpdateExclusionRules$ = [3, n0, _RSUER,
|
|
2234
|
-
0,
|
|
2235
|
-
[_am],
|
|
2236
|
-
[() => LifecyclePolicyDetailExclusionRulesAmis$]
|
|
2237
|
-
];
|
|
2238
|
-
var ResourceStateUpdateIncludeResources$ = [3, n0, _RSUIR,
|
|
2239
|
-
0,
|
|
2240
|
-
[_am, _sn, _con],
|
|
2241
|
-
[2, 2, 2]
|
|
2242
|
-
];
|
|
2243
|
-
var RetryImageRequest$ = [3, n0, _RIR,
|
|
2244
|
-
0,
|
|
2245
|
-
[_iBVA, _cT],
|
|
2246
|
-
[0, [0, 4]], 1
|
|
2247
|
-
];
|
|
2248
|
-
var RetryImageResponse$ = [3, n0, _RIRe,
|
|
2249
|
-
0,
|
|
2250
|
-
[_cT, _iBVA],
|
|
2251
|
-
[0, 0]
|
|
2252
|
-
];
|
|
2253
|
-
var S3ExportConfiguration$ = [3, n0, _SEC,
|
|
2254
|
-
0,
|
|
2255
|
-
[_rNo, _dIF, _sB, _sP],
|
|
2256
|
-
[0, 0, 0, 0], 3
|
|
2257
|
-
];
|
|
2258
|
-
var S3Logs$ = [3, n0, _SL,
|
|
2259
|
-
0,
|
|
2260
|
-
[_sBN, _sKP],
|
|
2261
|
-
[0, 0]
|
|
2262
|
-
];
|
|
2263
|
-
var Schedule$ = [3, n0, _S,
|
|
2264
|
-
0,
|
|
2265
|
-
[_sE, _tim, _pESC, _aDP],
|
|
2266
|
-
[0, 0, 0, () => AutoDisablePolicy$]
|
|
2267
|
-
];
|
|
2268
|
-
var SendWorkflowStepActionRequest$ = [3, n0, _SWSAR,
|
|
2269
|
-
0,
|
|
2270
|
-
[_sEI, _iBVA, _ac, _re, _cT],
|
|
2271
|
-
[0, 0, 0, 0, [0, 4]], 3
|
|
2272
|
-
];
|
|
2273
|
-
var SendWorkflowStepActionResponse$ = [3, n0, _SWSARe,
|
|
2274
|
-
0,
|
|
2275
|
-
[_sEI, _iBVA, _cT],
|
|
2276
|
-
[0, 0, 0]
|
|
2277
|
-
];
|
|
2278
|
-
var ServiceException$ = [-3, n0, _SE,
|
|
2279
|
-
{ [_e]: _ser, [_hE]: 500 },
|
|
2280
|
-
[_m],
|
|
2281
|
-
[0]
|
|
2282
|
-
];
|
|
2283
|
-
schema.TypeRegistry.for(n0).registerError(ServiceException$, ServiceException);
|
|
2284
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
2285
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
2286
|
-
[_m],
|
|
2287
|
-
[0]
|
|
2288
|
-
];
|
|
2289
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
2290
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
2291
|
-
{ [_e]: _ser, [_hE]: 503 },
|
|
2292
|
-
[_m],
|
|
2293
|
-
[0]
|
|
2294
|
-
];
|
|
2295
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
2296
|
-
var SeverityCounts$ = [3, n0, _SC,
|
|
2297
|
-
0,
|
|
2298
|
-
[_al, _cr, _h, _med],
|
|
2299
|
-
[1, 1, 1, 1]
|
|
2300
|
-
];
|
|
2301
|
-
var SsmParameterConfiguration$ = [3, n0, _SPC,
|
|
2302
|
-
0,
|
|
2303
|
-
[_pNa, _aAIm, _dTa],
|
|
2304
|
-
[0, 0, 0], 1
|
|
2305
|
-
];
|
|
2306
|
-
var StartImagePipelineExecutionRequest$ = [3, n0, _SIPER,
|
|
2307
|
-
0,
|
|
2308
|
-
[_iPA, _cT, _ta],
|
|
2309
|
-
[0, [0, 4], 128 | 0], 1
|
|
2310
|
-
];
|
|
2311
|
-
var StartImagePipelineExecutionResponse$ = [3, n0, _SIPERt,
|
|
2312
|
-
0,
|
|
2313
|
-
[_rI, _cT, _iBVA],
|
|
2314
|
-
[0, 0, 0]
|
|
2315
|
-
];
|
|
2316
|
-
var StartResourceStateUpdateRequest$ = [3, n0, _SRSUR,
|
|
2317
|
-
0,
|
|
2318
|
-
[_rA, _s, _eR, _iRn, _eRx, _uAp, _cT],
|
|
2319
|
-
[0, () => ResourceState$, 0, () => ResourceStateUpdateIncludeResources$, () => ResourceStateUpdateExclusionRules$, 4, [0, 4]], 2
|
|
2320
|
-
];
|
|
2321
|
-
var StartResourceStateUpdateResponse$ = [3, n0, _SRSURt,
|
|
2322
|
-
0,
|
|
2323
|
-
[_lEI, _rA],
|
|
2324
|
-
[0, 0]
|
|
2325
|
-
];
|
|
2326
|
-
var SystemsManagerAgent$ = [3, n0, _SMA,
|
|
2327
|
-
0,
|
|
2328
|
-
[_uAB],
|
|
2329
|
-
[2]
|
|
2330
|
-
];
|
|
2331
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2332
|
-
0,
|
|
2333
|
-
[_rA, _ta],
|
|
2334
|
-
[[0, 1], 128 | 0], 2
|
|
2335
|
-
];
|
|
2336
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
2337
|
-
0,
|
|
2338
|
-
[],
|
|
2339
|
-
[]
|
|
2340
|
-
];
|
|
2341
|
-
var TargetContainerRepository$ = [3, n0, _TCR,
|
|
2342
|
-
0,
|
|
2343
|
-
[_serv, _rN],
|
|
2344
|
-
[0, 0], 2
|
|
2345
|
-
];
|
|
2346
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
2347
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
2348
|
-
[_m],
|
|
2349
|
-
[0]
|
|
2350
|
-
];
|
|
2351
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
2352
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2353
|
-
0,
|
|
2354
|
-
[_rA, _tK],
|
|
2355
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
2356
|
-
];
|
|
2357
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2358
|
-
0,
|
|
2359
|
-
[],
|
|
2360
|
-
[]
|
|
2361
|
-
];
|
|
2362
|
-
var UpdateDistributionConfigurationRequest$ = [3, n0, _UDCR,
|
|
2363
|
-
0,
|
|
2364
|
-
[_dCA, _di, _d, _cT],
|
|
2365
|
-
[0, () => DistributionList, 0, [0, 4]], 2
|
|
2366
|
-
];
|
|
2367
|
-
var UpdateDistributionConfigurationResponse$ = [3, n0, _UDCRp,
|
|
2368
|
-
0,
|
|
2369
|
-
[_rI, _cT, _dCA],
|
|
2370
|
-
[0, 0, 0]
|
|
2371
|
-
];
|
|
2372
|
-
var UpdateImagePipelineRequest$ = [3, n0, _UIPR,
|
|
2373
|
-
0,
|
|
2374
|
-
[_iPA, _iCA, _d, _iRA, _cRA, _dCA, _iTC, _eIME, _sc, _st, _cT, _iSC, _w, _lC, _eR],
|
|
2375
|
-
[0, 0, 0, 0, 0, 0, () => ImageTestsConfiguration$, 2, () => Schedule$, 0, [0, 4], () => ImageScanningConfiguration$, () => WorkflowConfigurationList, () => PipelineLoggingConfiguration$, 0], 2
|
|
2376
|
-
];
|
|
2377
|
-
var UpdateImagePipelineResponse$ = [3, n0, _UIPRp,
|
|
2378
|
-
0,
|
|
2379
|
-
[_rI, _cT, _iPA],
|
|
2380
|
-
[0, 0, 0]
|
|
2381
|
-
];
|
|
2382
|
-
var UpdateInfrastructureConfigurationRequest$ = [3, n0, _UICR,
|
|
2383
|
-
0,
|
|
2384
|
-
[_iCA, _iPN, _d, _iT, _sGI, _sI, _l, _kP, _tIOF, _sTA, _rT, _iMO, _pl, _cT],
|
|
2385
|
-
[0, 0, 0, 64 | 0, 64 | 0, 0, () => Logging$, 0, 2, 0, 128 | 0, () => InstanceMetadataOptions$, () => Placement$, [0, 4]], 2
|
|
2386
|
-
];
|
|
2387
|
-
var UpdateInfrastructureConfigurationResponse$ = [3, n0, _UICRp,
|
|
2388
|
-
0,
|
|
2389
|
-
[_rI, _cT, _iCA],
|
|
2390
|
-
[0, 0, 0]
|
|
2391
|
-
];
|
|
2392
|
-
var UpdateLifecyclePolicyRequest$ = [3, n0, _ULPR,
|
|
2393
|
-
0,
|
|
2394
|
-
[_lPA, _eR, _rTe, _pD, _rS, _d, _st, _cT],
|
|
2395
|
-
[0, 0, 0, () => LifecyclePolicyDetails, () => LifecyclePolicyResourceSelection$, 0, 0, [0, 4]], 5
|
|
2396
|
-
];
|
|
2397
|
-
var UpdateLifecyclePolicyResponse$ = [3, n0, _ULPRp,
|
|
2398
|
-
0,
|
|
2399
|
-
[_lPA],
|
|
2400
|
-
[0]
|
|
2401
|
-
];
|
|
2402
|
-
var VulnerabilityIdAggregation$ = [3, n0, _VIA,
|
|
2403
|
-
0,
|
|
2404
|
-
[_vI, _sC],
|
|
2405
|
-
[0, () => SeverityCounts$]
|
|
2406
|
-
];
|
|
2407
|
-
var VulnerablePackage$ = [3, n0, _VP,
|
|
2408
|
-
0,
|
|
2409
|
-
[_n, _v, _sLH, _ep, _rel, _ar, _pM, _fP, _fIV, _rem],
|
|
2410
|
-
[0, 0, 0, 1, 0, 0, 0, 0, 0, 0]
|
|
2411
|
-
];
|
|
2412
|
-
var Workflow$ = [3, n0, _W,
|
|
2413
|
-
0,
|
|
2414
|
-
[_a, _n, _v, _d, _cD, _t, _s, _o, _da, _kKI, _dC, _ta, _pa],
|
|
2415
|
-
[0, 0, 0, 0, 0, 0, () => WorkflowState$, 0, 0, 0, 0, 128 | 0, () => WorkflowParameterDetailList]
|
|
2416
|
-
];
|
|
2417
|
-
var WorkflowConfiguration$ = [3, n0, _WC,
|
|
2418
|
-
0,
|
|
2419
|
-
[_wA, _pa, _pG, _oF],
|
|
2420
|
-
[0, () => WorkflowParameterList, 0, 0], 1
|
|
2421
|
-
];
|
|
2422
|
-
var WorkflowExecutionMetadata$ = [3, n0, _WEM,
|
|
2423
|
-
0,
|
|
2424
|
-
[_wBVA, _wEI, _t, _st, _m, _tSC, _tSS, _tSF, _tSSo, _sT, _eT, _pG, _ret],
|
|
2425
|
-
[0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 2]
|
|
2426
|
-
];
|
|
2427
|
-
var WorkflowParameter$ = [3, n0, _WP,
|
|
2428
|
-
0,
|
|
2429
|
-
[_n, _va],
|
|
2430
|
-
[0, 64 | 0], 2
|
|
2431
|
-
];
|
|
2432
|
-
var WorkflowParameterDetail$ = [3, n0, _WPD,
|
|
2433
|
-
0,
|
|
2434
|
-
[_n, _t, _dV, _d],
|
|
2435
|
-
[0, 0, 64 | 0, 0], 2
|
|
2436
|
-
];
|
|
2437
|
-
var WorkflowState$ = [3, n0, _WS,
|
|
2438
|
-
0,
|
|
2439
|
-
[_st, _re],
|
|
2440
|
-
[0, 0]
|
|
2441
|
-
];
|
|
2442
|
-
var WorkflowStepExecution$ = [3, n0, _WSE,
|
|
2443
|
-
0,
|
|
2444
|
-
[_sEI, _iBVA, _wEI, _wBVA, _n, _ac, _sT],
|
|
2445
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
2446
|
-
];
|
|
2447
|
-
var WorkflowStepMetadata$ = [3, n0, _WSM,
|
|
2448
|
-
0,
|
|
2449
|
-
[_sEI, _n, _d, _ac, _st, _rSo, _m, _in, _ou, _sT, _eT],
|
|
2450
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
2451
|
-
];
|
|
2452
|
-
var WorkflowSummary$ = [3, n0, _WSo,
|
|
2453
|
-
0,
|
|
2454
|
-
[_a, _n, _v, _d, _cD, _t, _o, _s, _dC, _ta],
|
|
2455
|
-
[0, 0, 0, 0, 0, 0, 0, () => WorkflowState$, 0, 128 | 0]
|
|
2456
|
-
];
|
|
2457
|
-
var WorkflowVersion$ = [3, n0, _WV,
|
|
2458
|
-
0,
|
|
2459
|
-
[_a, _n, _v, _d, _t, _o, _dC],
|
|
2460
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
2461
|
-
];
|
|
2462
|
-
var ImagebuilderServiceException$ = [-3, _sm, "ImagebuilderServiceException", 0, [], []];
|
|
2463
|
-
schema.TypeRegistry.for(_sm).registerError(ImagebuilderServiceException$, ImagebuilderServiceException);
|
|
2464
|
-
var AmiList = [1, n0, _AL,
|
|
2465
|
-
0, () => Ami$
|
|
2466
|
-
];
|
|
2467
|
-
var ComponentConfigurationList = [1, n0, _CCL,
|
|
2468
|
-
0, () => ComponentConfiguration$
|
|
2469
|
-
];
|
|
2470
|
-
var ComponentParameterDetailList = [1, n0, _CPDL,
|
|
2471
|
-
0, () => ComponentParameterDetail$
|
|
2472
|
-
];
|
|
2473
|
-
var ComponentParameterList = [1, n0, _CPL,
|
|
2474
|
-
0, () => ComponentParameter$
|
|
2475
|
-
];
|
|
2476
|
-
var ComponentSummaryList = [1, n0, _CSL,
|
|
2477
|
-
0, () => ComponentSummary$
|
|
2478
|
-
];
|
|
2479
|
-
var ComponentVersionList = [1, n0, _CVL,
|
|
2480
|
-
0, () => ComponentVersion$
|
|
2481
|
-
];
|
|
2482
|
-
var ContainerList = [1, n0, _CL,
|
|
2483
|
-
0, () => Container$
|
|
2484
|
-
];
|
|
2485
|
-
var ContainerRecipeSummaryList = [1, n0, _CRSL,
|
|
2486
|
-
0, () => ContainerRecipeSummary$
|
|
2487
|
-
];
|
|
2488
|
-
var CvssScoreAdjustmentList = [1, n0, _CSAL,
|
|
2489
|
-
0, () => CvssScoreAdjustment$
|
|
2490
|
-
];
|
|
2491
|
-
var CvssScoreList = [1, n0, _CSLv,
|
|
2492
|
-
0, () => CvssScore$
|
|
2493
|
-
];
|
|
2494
|
-
var DistributionConfigurationSummaryList = [1, n0, _DCSL,
|
|
2495
|
-
0, () => DistributionConfigurationSummary$
|
|
2496
|
-
];
|
|
2497
|
-
var DistributionList = [1, n0, _DL,
|
|
2498
|
-
0, () => Distribution$
|
|
2499
|
-
];
|
|
2500
|
-
var FastLaunchConfigurationList = [1, n0, _FLCL,
|
|
2501
|
-
0, () => FastLaunchConfiguration$
|
|
2502
|
-
];
|
|
2503
|
-
var FilterList = [1, n0, _FL,
|
|
2504
|
-
0, () => Filter$
|
|
2505
|
-
];
|
|
2506
|
-
var ImagePackageList = [1, n0, _IPL,
|
|
2507
|
-
0, () => ImagePackage$
|
|
2508
|
-
];
|
|
2509
|
-
var ImagePipelineList = [1, n0, _IPLm,
|
|
2510
|
-
0, () => ImagePipeline$
|
|
2511
|
-
];
|
|
2512
|
-
var ImageRecipeSummaryList = [1, n0, _IRSL,
|
|
2513
|
-
0, () => ImageRecipeSummary$
|
|
2514
|
-
];
|
|
2515
|
-
var ImageScanFindingAggregationsList = [1, n0, _ISFAL,
|
|
2516
|
-
0, () => ImageScanFindingAggregation$
|
|
2517
|
-
];
|
|
2518
|
-
var ImageScanFindingsFilterList = [1, n0, _ISFFL,
|
|
2519
|
-
0, () => ImageScanFindingsFilter$
|
|
2520
|
-
];
|
|
2521
|
-
var ImageScanFindingsList = [1, n0, _ISFL,
|
|
2522
|
-
0, () => ImageScanFinding$
|
|
2523
|
-
];
|
|
2524
|
-
var ImageSummaryList = [1, n0, _ISL,
|
|
2525
|
-
0, () => ImageSummary$
|
|
2526
|
-
];
|
|
2527
|
-
var ImageVersionList = [1, n0, _IVL,
|
|
2528
|
-
0, () => ImageVersion$
|
|
2529
|
-
];
|
|
2530
|
-
var InfrastructureConfigurationSummaryList = [1, n0, _ICSL,
|
|
2531
|
-
0, () => InfrastructureConfigurationSummary$
|
|
2532
|
-
];
|
|
2533
|
-
var InstanceBlockDeviceMappings = [1, n0, _IBDMn,
|
|
2534
|
-
0, () => InstanceBlockDeviceMapping$
|
|
2535
|
-
];
|
|
2536
|
-
var LaunchTemplateConfigurationList = [1, n0, _LTCL,
|
|
2537
|
-
0, () => LaunchTemplateConfiguration$
|
|
2538
|
-
];
|
|
2539
|
-
var LifecycleExecutionResourceList = [1, n0, _LERL,
|
|
2540
|
-
0, () => LifecycleExecutionResource$
|
|
2541
|
-
];
|
|
2542
|
-
var LifecycleExecutionsList = [1, n0, _LEL,
|
|
2543
|
-
0, () => LifecycleExecution$
|
|
2544
|
-
];
|
|
2545
|
-
var LifecycleExecutionSnapshotResourceList = [1, n0, _LESRL,
|
|
2546
|
-
0, () => LifecycleExecutionSnapshotResource$
|
|
2547
|
-
];
|
|
2548
|
-
var LifecyclePolicyDetails = [1, n0, _LPDi,
|
|
2549
|
-
0, () => LifecyclePolicyDetail$
|
|
2550
|
-
];
|
|
2551
|
-
var LifecyclePolicyResourceSelectionRecipes = [1, n0, _LPRSRi,
|
|
2552
|
-
0, () => LifecyclePolicyResourceSelectionRecipe$
|
|
2553
|
-
];
|
|
2554
|
-
var LifecyclePolicySummaryList = [1, n0, _LPSL,
|
|
2555
|
-
0, () => LifecyclePolicySummary$
|
|
2556
|
-
];
|
|
2557
|
-
var ProductCodeList = [1, n0, _PCL,
|
|
2558
|
-
0, () => ProductCodeListItem$
|
|
2559
|
-
];
|
|
2560
|
-
var SsmParameterConfigurationList = [1, n0, _SPCL,
|
|
2561
|
-
0, () => SsmParameterConfiguration$
|
|
2562
|
-
];
|
|
2563
|
-
var VulnerablePackageList = [1, n0, _VPL,
|
|
2564
|
-
0, () => VulnerablePackage$
|
|
2565
|
-
];
|
|
2566
|
-
var WorkflowConfigurationList = [1, n0, _WCL,
|
|
2567
|
-
0, () => WorkflowConfiguration$
|
|
2568
|
-
];
|
|
2569
|
-
var WorkflowExecutionsList = [1, n0, _WEL,
|
|
2570
|
-
0, () => WorkflowExecutionMetadata$
|
|
2571
|
-
];
|
|
2572
|
-
var WorkflowParameterDetailList = [1, n0, _WPDL,
|
|
2573
|
-
0, () => WorkflowParameterDetail$
|
|
2574
|
-
];
|
|
2575
|
-
var WorkflowParameterList = [1, n0, _WPL,
|
|
2576
|
-
0, () => WorkflowParameter$
|
|
2577
|
-
];
|
|
2578
|
-
var WorkflowStepExecutionList = [1, n0, _WSEL,
|
|
2579
|
-
0, () => WorkflowStepExecution$
|
|
2580
|
-
];
|
|
2581
|
-
var WorkflowStepExecutionsList = [1, n0, _WSELo,
|
|
2582
|
-
0, () => WorkflowStepMetadata$
|
|
2583
|
-
];
|
|
2584
|
-
var WorkflowSummaryList = [1, n0, _WSL,
|
|
2585
|
-
0, () => WorkflowSummary$
|
|
2586
|
-
];
|
|
2587
|
-
var WorkflowVersionList = [1, n0, _WVL,
|
|
2588
|
-
0, () => WorkflowVersion$
|
|
2589
|
-
];
|
|
2590
|
-
var CancelImageCreation$ = [9, n0, _CIC,
|
|
2591
|
-
{ [_ht]: ["PUT", "/CancelImageCreation", 200] }, () => CancelImageCreationRequest$, () => CancelImageCreationResponse$
|
|
2592
|
-
];
|
|
2593
|
-
var CancelLifecycleExecution$ = [9, n0, _CLE,
|
|
2594
|
-
{ [_ht]: ["PUT", "/CancelLifecycleExecution", 200] }, () => CancelLifecycleExecutionRequest$, () => CancelLifecycleExecutionResponse$
|
|
2595
|
-
];
|
|
2596
|
-
var CreateComponent$ = [9, n0, _CCr,
|
|
2597
|
-
{ [_ht]: ["PUT", "/CreateComponent", 200] }, () => CreateComponentRequest$, () => CreateComponentResponse$
|
|
2598
|
-
];
|
|
2599
|
-
var CreateContainerRecipe$ = [9, n0, _CCRre,
|
|
2600
|
-
{ [_ht]: ["PUT", "/CreateContainerRecipe", 200] }, () => CreateContainerRecipeRequest$, () => CreateContainerRecipeResponse$
|
|
2601
|
-
];
|
|
2602
|
-
var CreateDistributionConfiguration$ = [9, n0, _CDCr,
|
|
2603
|
-
{ [_ht]: ["PUT", "/CreateDistributionConfiguration", 200] }, () => CreateDistributionConfigurationRequest$, () => CreateDistributionConfigurationResponse$
|
|
2604
|
-
];
|
|
2605
|
-
var CreateImage$ = [9, n0, _CI,
|
|
2606
|
-
{ [_ht]: ["PUT", "/CreateImage", 200] }, () => CreateImageRequest$, () => CreateImageResponse$
|
|
2607
|
-
];
|
|
2608
|
-
var CreateImagePipeline$ = [9, n0, _CIP,
|
|
2609
|
-
{ [_ht]: ["PUT", "/CreateImagePipeline", 200] }, () => CreateImagePipelineRequest$, () => CreateImagePipelineResponse$
|
|
2610
|
-
];
|
|
2611
|
-
var CreateImageRecipe$ = [9, n0, _CIRre,
|
|
2612
|
-
{ [_ht]: ["PUT", "/CreateImageRecipe", 200] }, () => CreateImageRecipeRequest$, () => CreateImageRecipeResponse$
|
|
2613
|
-
];
|
|
2614
|
-
var CreateInfrastructureConfiguration$ = [9, n0, _CICr,
|
|
2615
|
-
{ [_ht]: ["PUT", "/CreateInfrastructureConfiguration", 200] }, () => CreateInfrastructureConfigurationRequest$, () => CreateInfrastructureConfigurationResponse$
|
|
2616
|
-
];
|
|
2617
|
-
var CreateLifecyclePolicy$ = [9, n0, _CLP,
|
|
2618
|
-
{ [_ht]: ["PUT", "/CreateLifecyclePolicy", 200] }, () => CreateLifecyclePolicyRequest$, () => CreateLifecyclePolicyResponse$
|
|
2619
|
-
];
|
|
2620
|
-
var CreateWorkflow$ = [9, n0, _CW,
|
|
2621
|
-
{ [_ht]: ["PUT", "/CreateWorkflow", 200] }, () => CreateWorkflowRequest$, () => CreateWorkflowResponse$
|
|
2622
|
-
];
|
|
2623
|
-
var DeleteComponent$ = [9, n0, _DCe,
|
|
2624
|
-
{ [_ht]: ["DELETE", "/DeleteComponent", 200] }, () => DeleteComponentRequest$, () => DeleteComponentResponse$
|
|
2625
|
-
];
|
|
2626
|
-
var DeleteContainerRecipe$ = [9, n0, _DCRel,
|
|
2627
|
-
{ [_ht]: ["DELETE", "/DeleteContainerRecipe", 200] }, () => DeleteContainerRecipeRequest$, () => DeleteContainerRecipeResponse$
|
|
2628
|
-
];
|
|
2629
|
-
var DeleteDistributionConfiguration$ = [9, n0, _DDC,
|
|
2630
|
-
{ [_ht]: ["DELETE", "/DeleteDistributionConfiguration", 200] }, () => DeleteDistributionConfigurationRequest$, () => DeleteDistributionConfigurationResponse$
|
|
2631
|
-
];
|
|
2632
|
-
var DeleteImage$ = [9, n0, _DI,
|
|
2633
|
-
{ [_ht]: ["DELETE", "/DeleteImage", 200] }, () => DeleteImageRequest$, () => DeleteImageResponse$
|
|
2634
|
-
];
|
|
2635
|
-
var DeleteImagePipeline$ = [9, n0, _DIP,
|
|
2636
|
-
{ [_ht]: ["DELETE", "/DeleteImagePipeline", 200] }, () => DeleteImagePipelineRequest$, () => DeleteImagePipelineResponse$
|
|
2637
|
-
];
|
|
2638
|
-
var DeleteImageRecipe$ = [9, n0, _DIRel,
|
|
2639
|
-
{ [_ht]: ["DELETE", "/DeleteImageRecipe", 200] }, () => DeleteImageRecipeRequest$, () => DeleteImageRecipeResponse$
|
|
2640
|
-
];
|
|
2641
|
-
var DeleteInfrastructureConfiguration$ = [9, n0, _DIC,
|
|
2642
|
-
{ [_ht]: ["DELETE", "/DeleteInfrastructureConfiguration", 200] }, () => DeleteInfrastructureConfigurationRequest$, () => DeleteInfrastructureConfigurationResponse$
|
|
2643
|
-
];
|
|
2644
|
-
var DeleteLifecyclePolicy$ = [9, n0, _DLP,
|
|
2645
|
-
{ [_ht]: ["DELETE", "/DeleteLifecyclePolicy", 200] }, () => DeleteLifecyclePolicyRequest$, () => DeleteLifecyclePolicyResponse$
|
|
2646
|
-
];
|
|
2647
|
-
var DeleteWorkflow$ = [9, n0, _DW,
|
|
2648
|
-
{ [_ht]: ["DELETE", "/DeleteWorkflow", 200] }, () => DeleteWorkflowRequest$, () => DeleteWorkflowResponse$
|
|
2649
|
-
];
|
|
2650
|
-
var DistributeImage$ = [9, n0, _DIi,
|
|
2651
|
-
{ [_ht]: ["PUT", "/DistributeImage", 200] }, () => DistributeImageRequest$, () => DistributeImageResponse$
|
|
2652
|
-
];
|
|
2653
|
-
var GetComponent$ = [9, n0, _GC,
|
|
2654
|
-
{ [_ht]: ["GET", "/GetComponent", 200] }, () => GetComponentRequest$, () => GetComponentResponse$
|
|
2655
|
-
];
|
|
2656
|
-
var GetComponentPolicy$ = [9, n0, _GCP,
|
|
2657
|
-
{ [_ht]: ["GET", "/GetComponentPolicy", 200] }, () => GetComponentPolicyRequest$, () => GetComponentPolicyResponse$
|
|
2658
|
-
];
|
|
2659
|
-
var GetContainerRecipe$ = [9, n0, _GCRet,
|
|
2660
|
-
{ [_ht]: ["GET", "/GetContainerRecipe", 200] }, () => GetContainerRecipeRequest$, () => GetContainerRecipeResponse$
|
|
2661
|
-
];
|
|
2662
|
-
var GetContainerRecipePolicy$ = [9, n0, _GCRP,
|
|
2663
|
-
{ [_ht]: ["GET", "/GetContainerRecipePolicy", 200] }, () => GetContainerRecipePolicyRequest$, () => GetContainerRecipePolicyResponse$
|
|
2664
|
-
];
|
|
2665
|
-
var GetDistributionConfiguration$ = [9, n0, _GDC,
|
|
2666
|
-
{ [_ht]: ["GET", "/GetDistributionConfiguration", 200] }, () => GetDistributionConfigurationRequest$, () => GetDistributionConfigurationResponse$
|
|
2667
|
-
];
|
|
2668
|
-
var GetImage$ = [9, n0, _GI,
|
|
2669
|
-
{ [_ht]: ["GET", "/GetImage", 200] }, () => GetImageRequest$, () => GetImageResponse$
|
|
2670
|
-
];
|
|
2671
|
-
var GetImagePipeline$ = [9, n0, _GIP,
|
|
2672
|
-
{ [_ht]: ["GET", "/GetImagePipeline", 200] }, () => GetImagePipelineRequest$, () => GetImagePipelineResponse$
|
|
2673
|
-
];
|
|
2674
|
-
var GetImagePolicy$ = [9, n0, _GIPe,
|
|
2675
|
-
{ [_ht]: ["GET", "/GetImagePolicy", 200] }, () => GetImagePolicyRequest$, () => GetImagePolicyResponse$
|
|
2676
|
-
];
|
|
2677
|
-
var GetImageRecipe$ = [9, n0, _GIRet,
|
|
2678
|
-
{ [_ht]: ["GET", "/GetImageRecipe", 200] }, () => GetImageRecipeRequest$, () => GetImageRecipeResponse$
|
|
2679
|
-
];
|
|
2680
|
-
var GetImageRecipePolicy$ = [9, n0, _GIRP,
|
|
2681
|
-
{ [_ht]: ["GET", "/GetImageRecipePolicy", 200] }, () => GetImageRecipePolicyRequest$, () => GetImageRecipePolicyResponse$
|
|
2682
|
-
];
|
|
2683
|
-
var GetInfrastructureConfiguration$ = [9, n0, _GIC,
|
|
2684
|
-
{ [_ht]: ["GET", "/GetInfrastructureConfiguration", 200] }, () => GetInfrastructureConfigurationRequest$, () => GetInfrastructureConfigurationResponse$
|
|
2685
|
-
];
|
|
2686
|
-
var GetLifecycleExecution$ = [9, n0, _GLE,
|
|
2687
|
-
{ [_ht]: ["GET", "/GetLifecycleExecution", 200] }, () => GetLifecycleExecutionRequest$, () => GetLifecycleExecutionResponse$
|
|
2688
|
-
];
|
|
2689
|
-
var GetLifecyclePolicy$ = [9, n0, _GLP,
|
|
2690
|
-
{ [_ht]: ["GET", "/GetLifecyclePolicy", 200] }, () => GetLifecyclePolicyRequest$, () => GetLifecyclePolicyResponse$
|
|
2691
|
-
];
|
|
2692
|
-
var GetMarketplaceResource$ = [9, n0, _GMR,
|
|
2693
|
-
{ [_ht]: ["POST", "/GetMarketplaceResource", 200] }, () => GetMarketplaceResourceRequest$, () => GetMarketplaceResourceResponse$
|
|
2694
|
-
];
|
|
2695
|
-
var GetWorkflow$ = [9, n0, _GW,
|
|
2696
|
-
{ [_ht]: ["GET", "/GetWorkflow", 200] }, () => GetWorkflowRequest$, () => GetWorkflowResponse$
|
|
2697
|
-
];
|
|
2698
|
-
var GetWorkflowExecution$ = [9, n0, _GWE,
|
|
2699
|
-
{ [_ht]: ["GET", "/GetWorkflowExecution", 200] }, () => GetWorkflowExecutionRequest$, () => GetWorkflowExecutionResponse$
|
|
2700
|
-
];
|
|
2701
|
-
var GetWorkflowStepExecution$ = [9, n0, _GWSE,
|
|
2702
|
-
{ [_ht]: ["GET", "/GetWorkflowStepExecution", 200] }, () => GetWorkflowStepExecutionRequest$, () => GetWorkflowStepExecutionResponse$
|
|
2703
|
-
];
|
|
2704
|
-
var ImportComponent$ = [9, n0, _ICm,
|
|
2705
|
-
{ [_ht]: ["PUT", "/ImportComponent", 200] }, () => ImportComponentRequest$, () => ImportComponentResponse$
|
|
2706
|
-
];
|
|
2707
|
-
var ImportDiskImage$ = [9, n0, _IDI,
|
|
2708
|
-
{ [_ht]: ["PUT", "/ImportDiskImage", 200] }, () => ImportDiskImageRequest$, () => ImportDiskImageResponse$
|
|
2709
|
-
];
|
|
2710
|
-
var ImportVmImage$ = [9, n0, _IVI,
|
|
2711
|
-
{ [_ht]: ["PUT", "/ImportVmImage", 200] }, () => ImportVmImageRequest$, () => ImportVmImageResponse$
|
|
2712
|
-
];
|
|
2713
|
-
var ListComponentBuildVersions$ = [9, n0, _LCBV,
|
|
2714
|
-
{ [_ht]: ["POST", "/ListComponentBuildVersions", 200] }, () => ListComponentBuildVersionsRequest$, () => ListComponentBuildVersionsResponse$
|
|
2715
|
-
];
|
|
2716
|
-
var ListComponents$ = [9, n0, _LC,
|
|
2717
|
-
{ [_ht]: ["POST", "/ListComponents", 200] }, () => ListComponentsRequest$, () => ListComponentsResponse$
|
|
2718
|
-
];
|
|
2719
|
-
var ListContainerRecipes$ = [9, n0, _LCRis,
|
|
2720
|
-
{ [_ht]: ["POST", "/ListContainerRecipes", 200] }, () => ListContainerRecipesRequest$, () => ListContainerRecipesResponse$
|
|
2721
|
-
];
|
|
2722
|
-
var ListDistributionConfigurations$ = [9, n0, _LDC,
|
|
2723
|
-
{ [_ht]: ["POST", "/ListDistributionConfigurations", 200] }, () => ListDistributionConfigurationsRequest$, () => ListDistributionConfigurationsResponse$
|
|
2724
|
-
];
|
|
2725
|
-
var ListImageBuildVersions$ = [9, n0, _LIBV,
|
|
2726
|
-
{ [_ht]: ["POST", "/ListImageBuildVersions", 200] }, () => ListImageBuildVersionsRequest$, () => ListImageBuildVersionsResponse$
|
|
2727
|
-
];
|
|
2728
|
-
var ListImagePackages$ = [9, n0, _LIP,
|
|
2729
|
-
{ [_ht]: ["POST", "/ListImagePackages", 200] }, () => ListImagePackagesRequest$, () => ListImagePackagesResponse$
|
|
2730
|
-
];
|
|
2731
|
-
var ListImagePipelineImages$ = [9, n0, _LIPI,
|
|
2732
|
-
{ [_ht]: ["POST", "/ListImagePipelineImages", 200] }, () => ListImagePipelineImagesRequest$, () => ListImagePipelineImagesResponse$
|
|
2733
|
-
];
|
|
2734
|
-
var ListImagePipelines$ = [9, n0, _LIPi,
|
|
2735
|
-
{ [_ht]: ["POST", "/ListImagePipelines", 200] }, () => ListImagePipelinesRequest$, () => ListImagePipelinesResponse$
|
|
2736
|
-
];
|
|
2737
|
-
var ListImageRecipes$ = [9, n0, _LIRis,
|
|
2738
|
-
{ [_ht]: ["POST", "/ListImageRecipes", 200] }, () => ListImageRecipesRequest$, () => ListImageRecipesResponse$
|
|
2739
|
-
];
|
|
2740
|
-
var ListImages$ = [9, n0, _LI,
|
|
2741
|
-
{ [_ht]: ["POST", "/ListImages", 200] }, () => ListImagesRequest$, () => ListImagesResponse$
|
|
2742
|
-
];
|
|
2743
|
-
var ListImageScanFindingAggregations$ = [9, n0, _LISFA,
|
|
2744
|
-
{ [_ht]: ["POST", "/ListImageScanFindingAggregations", 200] }, () => ListImageScanFindingAggregationsRequest$, () => ListImageScanFindingAggregationsResponse$
|
|
2745
|
-
];
|
|
2746
|
-
var ListImageScanFindings$ = [9, n0, _LISF,
|
|
2747
|
-
{ [_ht]: ["POST", "/ListImageScanFindings", 200] }, () => ListImageScanFindingsRequest$, () => ListImageScanFindingsResponse$
|
|
2748
|
-
];
|
|
2749
|
-
var ListInfrastructureConfigurations$ = [9, n0, _LIC,
|
|
2750
|
-
{ [_ht]: ["POST", "/ListInfrastructureConfigurations", 200] }, () => ListInfrastructureConfigurationsRequest$, () => ListInfrastructureConfigurationsResponse$
|
|
2751
|
-
];
|
|
2752
|
-
var ListLifecycleExecutionResources$ = [9, n0, _LLERis,
|
|
2753
|
-
{ [_ht]: ["POST", "/ListLifecycleExecutionResources", 200] }, () => ListLifecycleExecutionResourcesRequest$, () => ListLifecycleExecutionResourcesResponse$
|
|
2754
|
-
];
|
|
2755
|
-
var ListLifecycleExecutions$ = [9, n0, _LLE,
|
|
2756
|
-
{ [_ht]: ["POST", "/ListLifecycleExecutions", 200] }, () => ListLifecycleExecutionsRequest$, () => ListLifecycleExecutionsResponse$
|
|
2757
|
-
];
|
|
2758
|
-
var ListLifecyclePolicies$ = [9, n0, _LLP,
|
|
2759
|
-
{ [_ht]: ["POST", "/ListLifecyclePolicies", 200] }, () => ListLifecyclePoliciesRequest$, () => ListLifecyclePoliciesResponse$
|
|
2760
|
-
];
|
|
2761
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2762
|
-
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2763
|
-
];
|
|
2764
|
-
var ListWaitingWorkflowSteps$ = [9, n0, _LWWS,
|
|
2765
|
-
{ [_ht]: ["POST", "/ListWaitingWorkflowSteps", 200] }, () => ListWaitingWorkflowStepsRequest$, () => ListWaitingWorkflowStepsResponse$
|
|
2766
|
-
];
|
|
2767
|
-
var ListWorkflowBuildVersions$ = [9, n0, _LWBV,
|
|
2768
|
-
{ [_ht]: ["POST", "/ListWorkflowBuildVersions", 200] }, () => ListWorkflowBuildVersionsRequest$, () => ListWorkflowBuildVersionsResponse$
|
|
2769
|
-
];
|
|
2770
|
-
var ListWorkflowExecutions$ = [9, n0, _LWE,
|
|
2771
|
-
{ [_ht]: ["POST", "/ListWorkflowExecutions", 200] }, () => ListWorkflowExecutionsRequest$, () => ListWorkflowExecutionsResponse$
|
|
2772
|
-
];
|
|
2773
|
-
var ListWorkflows$ = [9, n0, _LW,
|
|
2774
|
-
{ [_ht]: ["POST", "/ListWorkflows", 200] }, () => ListWorkflowsRequest$, () => ListWorkflowsResponse$
|
|
2775
|
-
];
|
|
2776
|
-
var ListWorkflowStepExecutions$ = [9, n0, _LWSE,
|
|
2777
|
-
{ [_ht]: ["POST", "/ListWorkflowStepExecutions", 200] }, () => ListWorkflowStepExecutionsRequest$, () => ListWorkflowStepExecutionsResponse$
|
|
2778
|
-
];
|
|
2779
|
-
var PutComponentPolicy$ = [9, n0, _PCP,
|
|
2780
|
-
{ [_ht]: ["PUT", "/PutComponentPolicy", 200] }, () => PutComponentPolicyRequest$, () => PutComponentPolicyResponse$
|
|
2781
|
-
];
|
|
2782
|
-
var PutContainerRecipePolicy$ = [9, n0, _PCRP,
|
|
2783
|
-
{ [_ht]: ["PUT", "/PutContainerRecipePolicy", 200] }, () => PutContainerRecipePolicyRequest$, () => PutContainerRecipePolicyResponse$
|
|
2784
|
-
];
|
|
2785
|
-
var PutImagePolicy$ = [9, n0, _PIP,
|
|
2786
|
-
{ [_ht]: ["PUT", "/PutImagePolicy", 200] }, () => PutImagePolicyRequest$, () => PutImagePolicyResponse$
|
|
2787
|
-
];
|
|
2788
|
-
var PutImageRecipePolicy$ = [9, n0, _PIRP,
|
|
2789
|
-
{ [_ht]: ["PUT", "/PutImageRecipePolicy", 200] }, () => PutImageRecipePolicyRequest$, () => PutImageRecipePolicyResponse$
|
|
2790
|
-
];
|
|
2791
|
-
var RetryImage$ = [9, n0, _RI,
|
|
2792
|
-
{ [_ht]: ["PUT", "/RetryImage", 200] }, () => RetryImageRequest$, () => RetryImageResponse$
|
|
2793
|
-
];
|
|
2794
|
-
var SendWorkflowStepAction$ = [9, n0, _SWSA,
|
|
2795
|
-
{ [_ht]: ["PUT", "/SendWorkflowStepAction", 200] }, () => SendWorkflowStepActionRequest$, () => SendWorkflowStepActionResponse$
|
|
2796
|
-
];
|
|
2797
|
-
var StartImagePipelineExecution$ = [9, n0, _SIPE,
|
|
2798
|
-
{ [_ht]: ["PUT", "/StartImagePipelineExecution", 200] }, () => StartImagePipelineExecutionRequest$, () => StartImagePipelineExecutionResponse$
|
|
2799
|
-
];
|
|
2800
|
-
var StartResourceStateUpdate$ = [9, n0, _SRSU,
|
|
2801
|
-
{ [_ht]: ["PUT", "/StartResourceStateUpdate", 200] }, () => StartResourceStateUpdateRequest$, () => StartResourceStateUpdateResponse$
|
|
2802
|
-
];
|
|
2803
|
-
var TagResource$ = [9, n0, _TR,
|
|
2804
|
-
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2805
|
-
];
|
|
2806
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2807
|
-
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2808
|
-
];
|
|
2809
|
-
var UpdateDistributionConfiguration$ = [9, n0, _UDC,
|
|
2810
|
-
{ [_ht]: ["PUT", "/UpdateDistributionConfiguration", 200] }, () => UpdateDistributionConfigurationRequest$, () => UpdateDistributionConfigurationResponse$
|
|
2811
|
-
];
|
|
2812
|
-
var UpdateImagePipeline$ = [9, n0, _UIP,
|
|
2813
|
-
{ [_ht]: ["PUT", "/UpdateImagePipeline", 200] }, () => UpdateImagePipelineRequest$, () => UpdateImagePipelineResponse$
|
|
2814
|
-
];
|
|
2815
|
-
var UpdateInfrastructureConfiguration$ = [9, n0, _UIC,
|
|
2816
|
-
{ [_ht]: ["PUT", "/UpdateInfrastructureConfiguration", 200] }, () => UpdateInfrastructureConfigurationRequest$, () => UpdateInfrastructureConfigurationResponse$
|
|
2817
|
-
];
|
|
2818
|
-
var UpdateLifecyclePolicy$ = [9, n0, _ULP,
|
|
2819
|
-
{ [_ht]: ["PUT", "/UpdateLifecyclePolicy", 200] }, () => UpdateLifecyclePolicyRequest$, () => UpdateLifecyclePolicyResponse$
|
|
2820
|
-
];
|
|
2821
|
-
|
|
2822
116
|
class CancelImageCreationCommand extends smithyClient.Command
|
|
2823
117
|
.classBuilder()
|
|
2824
118
|
.ep(commonParams)
|
|
@@ -2827,7 +121,7 @@ class CancelImageCreationCommand extends smithyClient.Command
|
|
|
2827
121
|
})
|
|
2828
122
|
.s("imagebuilder", "CancelImageCreation", {})
|
|
2829
123
|
.n("ImagebuilderClient", "CancelImageCreationCommand")
|
|
2830
|
-
.sc(CancelImageCreation$)
|
|
124
|
+
.sc(schemas_0.CancelImageCreation$)
|
|
2831
125
|
.build() {
|
|
2832
126
|
}
|
|
2833
127
|
|
|
@@ -2839,7 +133,7 @@ class CancelLifecycleExecutionCommand extends smithyClient.Command
|
|
|
2839
133
|
})
|
|
2840
134
|
.s("imagebuilder", "CancelLifecycleExecution", {})
|
|
2841
135
|
.n("ImagebuilderClient", "CancelLifecycleExecutionCommand")
|
|
2842
|
-
.sc(CancelLifecycleExecution$)
|
|
136
|
+
.sc(schemas_0.CancelLifecycleExecution$)
|
|
2843
137
|
.build() {
|
|
2844
138
|
}
|
|
2845
139
|
|
|
@@ -2851,7 +145,7 @@ class CreateComponentCommand extends smithyClient.Command
|
|
|
2851
145
|
})
|
|
2852
146
|
.s("imagebuilder", "CreateComponent", {})
|
|
2853
147
|
.n("ImagebuilderClient", "CreateComponentCommand")
|
|
2854
|
-
.sc(CreateComponent$)
|
|
148
|
+
.sc(schemas_0.CreateComponent$)
|
|
2855
149
|
.build() {
|
|
2856
150
|
}
|
|
2857
151
|
|
|
@@ -2863,7 +157,7 @@ class CreateContainerRecipeCommand extends smithyClient.Command
|
|
|
2863
157
|
})
|
|
2864
158
|
.s("imagebuilder", "CreateContainerRecipe", {})
|
|
2865
159
|
.n("ImagebuilderClient", "CreateContainerRecipeCommand")
|
|
2866
|
-
.sc(CreateContainerRecipe$)
|
|
160
|
+
.sc(schemas_0.CreateContainerRecipe$)
|
|
2867
161
|
.build() {
|
|
2868
162
|
}
|
|
2869
163
|
|
|
@@ -2875,7 +169,7 @@ class CreateDistributionConfigurationCommand extends smithyClient.Command
|
|
|
2875
169
|
})
|
|
2876
170
|
.s("imagebuilder", "CreateDistributionConfiguration", {})
|
|
2877
171
|
.n("ImagebuilderClient", "CreateDistributionConfigurationCommand")
|
|
2878
|
-
.sc(CreateDistributionConfiguration$)
|
|
172
|
+
.sc(schemas_0.CreateDistributionConfiguration$)
|
|
2879
173
|
.build() {
|
|
2880
174
|
}
|
|
2881
175
|
|
|
@@ -2887,7 +181,7 @@ class CreateImageCommand extends smithyClient.Command
|
|
|
2887
181
|
})
|
|
2888
182
|
.s("imagebuilder", "CreateImage", {})
|
|
2889
183
|
.n("ImagebuilderClient", "CreateImageCommand")
|
|
2890
|
-
.sc(CreateImage$)
|
|
184
|
+
.sc(schemas_0.CreateImage$)
|
|
2891
185
|
.build() {
|
|
2892
186
|
}
|
|
2893
187
|
|
|
@@ -2899,7 +193,7 @@ class CreateImagePipelineCommand extends smithyClient.Command
|
|
|
2899
193
|
})
|
|
2900
194
|
.s("imagebuilder", "CreateImagePipeline", {})
|
|
2901
195
|
.n("ImagebuilderClient", "CreateImagePipelineCommand")
|
|
2902
|
-
.sc(CreateImagePipeline$)
|
|
196
|
+
.sc(schemas_0.CreateImagePipeline$)
|
|
2903
197
|
.build() {
|
|
2904
198
|
}
|
|
2905
199
|
|
|
@@ -2911,7 +205,7 @@ class CreateImageRecipeCommand extends smithyClient.Command
|
|
|
2911
205
|
})
|
|
2912
206
|
.s("imagebuilder", "CreateImageRecipe", {})
|
|
2913
207
|
.n("ImagebuilderClient", "CreateImageRecipeCommand")
|
|
2914
|
-
.sc(CreateImageRecipe$)
|
|
208
|
+
.sc(schemas_0.CreateImageRecipe$)
|
|
2915
209
|
.build() {
|
|
2916
210
|
}
|
|
2917
211
|
|
|
@@ -2923,7 +217,7 @@ class CreateInfrastructureConfigurationCommand extends smithyClient.Command
|
|
|
2923
217
|
})
|
|
2924
218
|
.s("imagebuilder", "CreateInfrastructureConfiguration", {})
|
|
2925
219
|
.n("ImagebuilderClient", "CreateInfrastructureConfigurationCommand")
|
|
2926
|
-
.sc(CreateInfrastructureConfiguration$)
|
|
220
|
+
.sc(schemas_0.CreateInfrastructureConfiguration$)
|
|
2927
221
|
.build() {
|
|
2928
222
|
}
|
|
2929
223
|
|
|
@@ -2935,7 +229,7 @@ class CreateLifecyclePolicyCommand extends smithyClient.Command
|
|
|
2935
229
|
})
|
|
2936
230
|
.s("imagebuilder", "CreateLifecyclePolicy", {})
|
|
2937
231
|
.n("ImagebuilderClient", "CreateLifecyclePolicyCommand")
|
|
2938
|
-
.sc(CreateLifecyclePolicy$)
|
|
232
|
+
.sc(schemas_0.CreateLifecyclePolicy$)
|
|
2939
233
|
.build() {
|
|
2940
234
|
}
|
|
2941
235
|
|
|
@@ -2947,7 +241,7 @@ class CreateWorkflowCommand extends smithyClient.Command
|
|
|
2947
241
|
})
|
|
2948
242
|
.s("imagebuilder", "CreateWorkflow", {})
|
|
2949
243
|
.n("ImagebuilderClient", "CreateWorkflowCommand")
|
|
2950
|
-
.sc(CreateWorkflow$)
|
|
244
|
+
.sc(schemas_0.CreateWorkflow$)
|
|
2951
245
|
.build() {
|
|
2952
246
|
}
|
|
2953
247
|
|
|
@@ -2959,7 +253,7 @@ class DeleteComponentCommand extends smithyClient.Command
|
|
|
2959
253
|
})
|
|
2960
254
|
.s("imagebuilder", "DeleteComponent", {})
|
|
2961
255
|
.n("ImagebuilderClient", "DeleteComponentCommand")
|
|
2962
|
-
.sc(DeleteComponent$)
|
|
256
|
+
.sc(schemas_0.DeleteComponent$)
|
|
2963
257
|
.build() {
|
|
2964
258
|
}
|
|
2965
259
|
|
|
@@ -2971,7 +265,7 @@ class DeleteContainerRecipeCommand extends smithyClient.Command
|
|
|
2971
265
|
})
|
|
2972
266
|
.s("imagebuilder", "DeleteContainerRecipe", {})
|
|
2973
267
|
.n("ImagebuilderClient", "DeleteContainerRecipeCommand")
|
|
2974
|
-
.sc(DeleteContainerRecipe$)
|
|
268
|
+
.sc(schemas_0.DeleteContainerRecipe$)
|
|
2975
269
|
.build() {
|
|
2976
270
|
}
|
|
2977
271
|
|
|
@@ -2983,7 +277,7 @@ class DeleteDistributionConfigurationCommand extends smithyClient.Command
|
|
|
2983
277
|
})
|
|
2984
278
|
.s("imagebuilder", "DeleteDistributionConfiguration", {})
|
|
2985
279
|
.n("ImagebuilderClient", "DeleteDistributionConfigurationCommand")
|
|
2986
|
-
.sc(DeleteDistributionConfiguration$)
|
|
280
|
+
.sc(schemas_0.DeleteDistributionConfiguration$)
|
|
2987
281
|
.build() {
|
|
2988
282
|
}
|
|
2989
283
|
|
|
@@ -2995,7 +289,7 @@ class DeleteImageCommand extends smithyClient.Command
|
|
|
2995
289
|
})
|
|
2996
290
|
.s("imagebuilder", "DeleteImage", {})
|
|
2997
291
|
.n("ImagebuilderClient", "DeleteImageCommand")
|
|
2998
|
-
.sc(DeleteImage$)
|
|
292
|
+
.sc(schemas_0.DeleteImage$)
|
|
2999
293
|
.build() {
|
|
3000
294
|
}
|
|
3001
295
|
|
|
@@ -3007,7 +301,7 @@ class DeleteImagePipelineCommand extends smithyClient.Command
|
|
|
3007
301
|
})
|
|
3008
302
|
.s("imagebuilder", "DeleteImagePipeline", {})
|
|
3009
303
|
.n("ImagebuilderClient", "DeleteImagePipelineCommand")
|
|
3010
|
-
.sc(DeleteImagePipeline$)
|
|
304
|
+
.sc(schemas_0.DeleteImagePipeline$)
|
|
3011
305
|
.build() {
|
|
3012
306
|
}
|
|
3013
307
|
|
|
@@ -3019,7 +313,7 @@ class DeleteImageRecipeCommand extends smithyClient.Command
|
|
|
3019
313
|
})
|
|
3020
314
|
.s("imagebuilder", "DeleteImageRecipe", {})
|
|
3021
315
|
.n("ImagebuilderClient", "DeleteImageRecipeCommand")
|
|
3022
|
-
.sc(DeleteImageRecipe$)
|
|
316
|
+
.sc(schemas_0.DeleteImageRecipe$)
|
|
3023
317
|
.build() {
|
|
3024
318
|
}
|
|
3025
319
|
|
|
@@ -3031,7 +325,7 @@ class DeleteInfrastructureConfigurationCommand extends smithyClient.Command
|
|
|
3031
325
|
})
|
|
3032
326
|
.s("imagebuilder", "DeleteInfrastructureConfiguration", {})
|
|
3033
327
|
.n("ImagebuilderClient", "DeleteInfrastructureConfigurationCommand")
|
|
3034
|
-
.sc(DeleteInfrastructureConfiguration$)
|
|
328
|
+
.sc(schemas_0.DeleteInfrastructureConfiguration$)
|
|
3035
329
|
.build() {
|
|
3036
330
|
}
|
|
3037
331
|
|
|
@@ -3043,7 +337,7 @@ class DeleteLifecyclePolicyCommand extends smithyClient.Command
|
|
|
3043
337
|
})
|
|
3044
338
|
.s("imagebuilder", "DeleteLifecyclePolicy", {})
|
|
3045
339
|
.n("ImagebuilderClient", "DeleteLifecyclePolicyCommand")
|
|
3046
|
-
.sc(DeleteLifecyclePolicy$)
|
|
340
|
+
.sc(schemas_0.DeleteLifecyclePolicy$)
|
|
3047
341
|
.build() {
|
|
3048
342
|
}
|
|
3049
343
|
|
|
@@ -3055,7 +349,7 @@ class DeleteWorkflowCommand extends smithyClient.Command
|
|
|
3055
349
|
})
|
|
3056
350
|
.s("imagebuilder", "DeleteWorkflow", {})
|
|
3057
351
|
.n("ImagebuilderClient", "DeleteWorkflowCommand")
|
|
3058
|
-
.sc(DeleteWorkflow$)
|
|
352
|
+
.sc(schemas_0.DeleteWorkflow$)
|
|
3059
353
|
.build() {
|
|
3060
354
|
}
|
|
3061
355
|
|
|
@@ -3067,7 +361,7 @@ class DistributeImageCommand extends smithyClient.Command
|
|
|
3067
361
|
})
|
|
3068
362
|
.s("imagebuilder", "DistributeImage", {})
|
|
3069
363
|
.n("ImagebuilderClient", "DistributeImageCommand")
|
|
3070
|
-
.sc(DistributeImage$)
|
|
364
|
+
.sc(schemas_0.DistributeImage$)
|
|
3071
365
|
.build() {
|
|
3072
366
|
}
|
|
3073
367
|
|
|
@@ -3079,7 +373,7 @@ class GetComponentCommand extends smithyClient.Command
|
|
|
3079
373
|
})
|
|
3080
374
|
.s("imagebuilder", "GetComponent", {})
|
|
3081
375
|
.n("ImagebuilderClient", "GetComponentCommand")
|
|
3082
|
-
.sc(GetComponent$)
|
|
376
|
+
.sc(schemas_0.GetComponent$)
|
|
3083
377
|
.build() {
|
|
3084
378
|
}
|
|
3085
379
|
|
|
@@ -3091,7 +385,7 @@ class GetComponentPolicyCommand extends smithyClient.Command
|
|
|
3091
385
|
})
|
|
3092
386
|
.s("imagebuilder", "GetComponentPolicy", {})
|
|
3093
387
|
.n("ImagebuilderClient", "GetComponentPolicyCommand")
|
|
3094
|
-
.sc(GetComponentPolicy$)
|
|
388
|
+
.sc(schemas_0.GetComponentPolicy$)
|
|
3095
389
|
.build() {
|
|
3096
390
|
}
|
|
3097
391
|
|
|
@@ -3103,7 +397,7 @@ class GetContainerRecipeCommand extends smithyClient.Command
|
|
|
3103
397
|
})
|
|
3104
398
|
.s("imagebuilder", "GetContainerRecipe", {})
|
|
3105
399
|
.n("ImagebuilderClient", "GetContainerRecipeCommand")
|
|
3106
|
-
.sc(GetContainerRecipe$)
|
|
400
|
+
.sc(schemas_0.GetContainerRecipe$)
|
|
3107
401
|
.build() {
|
|
3108
402
|
}
|
|
3109
403
|
|
|
@@ -3115,7 +409,7 @@ class GetContainerRecipePolicyCommand extends smithyClient.Command
|
|
|
3115
409
|
})
|
|
3116
410
|
.s("imagebuilder", "GetContainerRecipePolicy", {})
|
|
3117
411
|
.n("ImagebuilderClient", "GetContainerRecipePolicyCommand")
|
|
3118
|
-
.sc(GetContainerRecipePolicy$)
|
|
412
|
+
.sc(schemas_0.GetContainerRecipePolicy$)
|
|
3119
413
|
.build() {
|
|
3120
414
|
}
|
|
3121
415
|
|
|
@@ -3127,7 +421,7 @@ class GetDistributionConfigurationCommand extends smithyClient.Command
|
|
|
3127
421
|
})
|
|
3128
422
|
.s("imagebuilder", "GetDistributionConfiguration", {})
|
|
3129
423
|
.n("ImagebuilderClient", "GetDistributionConfigurationCommand")
|
|
3130
|
-
.sc(GetDistributionConfiguration$)
|
|
424
|
+
.sc(schemas_0.GetDistributionConfiguration$)
|
|
3131
425
|
.build() {
|
|
3132
426
|
}
|
|
3133
427
|
|
|
@@ -3139,7 +433,7 @@ class GetImageCommand extends smithyClient.Command
|
|
|
3139
433
|
})
|
|
3140
434
|
.s("imagebuilder", "GetImage", {})
|
|
3141
435
|
.n("ImagebuilderClient", "GetImageCommand")
|
|
3142
|
-
.sc(GetImage$)
|
|
436
|
+
.sc(schemas_0.GetImage$)
|
|
3143
437
|
.build() {
|
|
3144
438
|
}
|
|
3145
439
|
|
|
@@ -3151,7 +445,7 @@ class GetImagePipelineCommand extends smithyClient.Command
|
|
|
3151
445
|
})
|
|
3152
446
|
.s("imagebuilder", "GetImagePipeline", {})
|
|
3153
447
|
.n("ImagebuilderClient", "GetImagePipelineCommand")
|
|
3154
|
-
.sc(GetImagePipeline$)
|
|
448
|
+
.sc(schemas_0.GetImagePipeline$)
|
|
3155
449
|
.build() {
|
|
3156
450
|
}
|
|
3157
451
|
|
|
@@ -3163,7 +457,7 @@ class GetImagePolicyCommand extends smithyClient.Command
|
|
|
3163
457
|
})
|
|
3164
458
|
.s("imagebuilder", "GetImagePolicy", {})
|
|
3165
459
|
.n("ImagebuilderClient", "GetImagePolicyCommand")
|
|
3166
|
-
.sc(GetImagePolicy$)
|
|
460
|
+
.sc(schemas_0.GetImagePolicy$)
|
|
3167
461
|
.build() {
|
|
3168
462
|
}
|
|
3169
463
|
|
|
@@ -3175,7 +469,7 @@ class GetImageRecipeCommand extends smithyClient.Command
|
|
|
3175
469
|
})
|
|
3176
470
|
.s("imagebuilder", "GetImageRecipe", {})
|
|
3177
471
|
.n("ImagebuilderClient", "GetImageRecipeCommand")
|
|
3178
|
-
.sc(GetImageRecipe$)
|
|
472
|
+
.sc(schemas_0.GetImageRecipe$)
|
|
3179
473
|
.build() {
|
|
3180
474
|
}
|
|
3181
475
|
|
|
@@ -3187,7 +481,7 @@ class GetImageRecipePolicyCommand extends smithyClient.Command
|
|
|
3187
481
|
})
|
|
3188
482
|
.s("imagebuilder", "GetImageRecipePolicy", {})
|
|
3189
483
|
.n("ImagebuilderClient", "GetImageRecipePolicyCommand")
|
|
3190
|
-
.sc(GetImageRecipePolicy$)
|
|
484
|
+
.sc(schemas_0.GetImageRecipePolicy$)
|
|
3191
485
|
.build() {
|
|
3192
486
|
}
|
|
3193
487
|
|
|
@@ -3199,7 +493,7 @@ class GetInfrastructureConfigurationCommand extends smithyClient.Command
|
|
|
3199
493
|
})
|
|
3200
494
|
.s("imagebuilder", "GetInfrastructureConfiguration", {})
|
|
3201
495
|
.n("ImagebuilderClient", "GetInfrastructureConfigurationCommand")
|
|
3202
|
-
.sc(GetInfrastructureConfiguration$)
|
|
496
|
+
.sc(schemas_0.GetInfrastructureConfiguration$)
|
|
3203
497
|
.build() {
|
|
3204
498
|
}
|
|
3205
499
|
|
|
@@ -3211,7 +505,7 @@ class GetLifecycleExecutionCommand extends smithyClient.Command
|
|
|
3211
505
|
})
|
|
3212
506
|
.s("imagebuilder", "GetLifecycleExecution", {})
|
|
3213
507
|
.n("ImagebuilderClient", "GetLifecycleExecutionCommand")
|
|
3214
|
-
.sc(GetLifecycleExecution$)
|
|
508
|
+
.sc(schemas_0.GetLifecycleExecution$)
|
|
3215
509
|
.build() {
|
|
3216
510
|
}
|
|
3217
511
|
|
|
@@ -3223,7 +517,7 @@ class GetLifecyclePolicyCommand extends smithyClient.Command
|
|
|
3223
517
|
})
|
|
3224
518
|
.s("imagebuilder", "GetLifecyclePolicy", {})
|
|
3225
519
|
.n("ImagebuilderClient", "GetLifecyclePolicyCommand")
|
|
3226
|
-
.sc(GetLifecyclePolicy$)
|
|
520
|
+
.sc(schemas_0.GetLifecyclePolicy$)
|
|
3227
521
|
.build() {
|
|
3228
522
|
}
|
|
3229
523
|
|
|
@@ -3235,7 +529,7 @@ class GetMarketplaceResourceCommand extends smithyClient.Command
|
|
|
3235
529
|
})
|
|
3236
530
|
.s("imagebuilder", "GetMarketplaceResource", {})
|
|
3237
531
|
.n("ImagebuilderClient", "GetMarketplaceResourceCommand")
|
|
3238
|
-
.sc(GetMarketplaceResource$)
|
|
532
|
+
.sc(schemas_0.GetMarketplaceResource$)
|
|
3239
533
|
.build() {
|
|
3240
534
|
}
|
|
3241
535
|
|
|
@@ -3247,7 +541,7 @@ class GetWorkflowCommand extends smithyClient.Command
|
|
|
3247
541
|
})
|
|
3248
542
|
.s("imagebuilder", "GetWorkflow", {})
|
|
3249
543
|
.n("ImagebuilderClient", "GetWorkflowCommand")
|
|
3250
|
-
.sc(GetWorkflow$)
|
|
544
|
+
.sc(schemas_0.GetWorkflow$)
|
|
3251
545
|
.build() {
|
|
3252
546
|
}
|
|
3253
547
|
|
|
@@ -3259,7 +553,7 @@ class GetWorkflowExecutionCommand extends smithyClient.Command
|
|
|
3259
553
|
})
|
|
3260
554
|
.s("imagebuilder", "GetWorkflowExecution", {})
|
|
3261
555
|
.n("ImagebuilderClient", "GetWorkflowExecutionCommand")
|
|
3262
|
-
.sc(GetWorkflowExecution$)
|
|
556
|
+
.sc(schemas_0.GetWorkflowExecution$)
|
|
3263
557
|
.build() {
|
|
3264
558
|
}
|
|
3265
559
|
|
|
@@ -3271,7 +565,7 @@ class GetWorkflowStepExecutionCommand extends smithyClient.Command
|
|
|
3271
565
|
})
|
|
3272
566
|
.s("imagebuilder", "GetWorkflowStepExecution", {})
|
|
3273
567
|
.n("ImagebuilderClient", "GetWorkflowStepExecutionCommand")
|
|
3274
|
-
.sc(GetWorkflowStepExecution$)
|
|
568
|
+
.sc(schemas_0.GetWorkflowStepExecution$)
|
|
3275
569
|
.build() {
|
|
3276
570
|
}
|
|
3277
571
|
|
|
@@ -3283,7 +577,7 @@ class ImportComponentCommand extends smithyClient.Command
|
|
|
3283
577
|
})
|
|
3284
578
|
.s("imagebuilder", "ImportComponent", {})
|
|
3285
579
|
.n("ImagebuilderClient", "ImportComponentCommand")
|
|
3286
|
-
.sc(ImportComponent$)
|
|
580
|
+
.sc(schemas_0.ImportComponent$)
|
|
3287
581
|
.build() {
|
|
3288
582
|
}
|
|
3289
583
|
|
|
@@ -3295,7 +589,7 @@ class ImportDiskImageCommand extends smithyClient.Command
|
|
|
3295
589
|
})
|
|
3296
590
|
.s("imagebuilder", "ImportDiskImage", {})
|
|
3297
591
|
.n("ImagebuilderClient", "ImportDiskImageCommand")
|
|
3298
|
-
.sc(ImportDiskImage$)
|
|
592
|
+
.sc(schemas_0.ImportDiskImage$)
|
|
3299
593
|
.build() {
|
|
3300
594
|
}
|
|
3301
595
|
|
|
@@ -3307,7 +601,7 @@ class ImportVmImageCommand extends smithyClient.Command
|
|
|
3307
601
|
})
|
|
3308
602
|
.s("imagebuilder", "ImportVmImage", {})
|
|
3309
603
|
.n("ImagebuilderClient", "ImportVmImageCommand")
|
|
3310
|
-
.sc(ImportVmImage$)
|
|
604
|
+
.sc(schemas_0.ImportVmImage$)
|
|
3311
605
|
.build() {
|
|
3312
606
|
}
|
|
3313
607
|
|
|
@@ -3319,7 +613,7 @@ class ListComponentBuildVersionsCommand extends smithyClient.Command
|
|
|
3319
613
|
})
|
|
3320
614
|
.s("imagebuilder", "ListComponentBuildVersions", {})
|
|
3321
615
|
.n("ImagebuilderClient", "ListComponentBuildVersionsCommand")
|
|
3322
|
-
.sc(ListComponentBuildVersions$)
|
|
616
|
+
.sc(schemas_0.ListComponentBuildVersions$)
|
|
3323
617
|
.build() {
|
|
3324
618
|
}
|
|
3325
619
|
|
|
@@ -3331,7 +625,7 @@ class ListComponentsCommand extends smithyClient.Command
|
|
|
3331
625
|
})
|
|
3332
626
|
.s("imagebuilder", "ListComponents", {})
|
|
3333
627
|
.n("ImagebuilderClient", "ListComponentsCommand")
|
|
3334
|
-
.sc(ListComponents$)
|
|
628
|
+
.sc(schemas_0.ListComponents$)
|
|
3335
629
|
.build() {
|
|
3336
630
|
}
|
|
3337
631
|
|
|
@@ -3343,7 +637,7 @@ class ListContainerRecipesCommand extends smithyClient.Command
|
|
|
3343
637
|
})
|
|
3344
638
|
.s("imagebuilder", "ListContainerRecipes", {})
|
|
3345
639
|
.n("ImagebuilderClient", "ListContainerRecipesCommand")
|
|
3346
|
-
.sc(ListContainerRecipes$)
|
|
640
|
+
.sc(schemas_0.ListContainerRecipes$)
|
|
3347
641
|
.build() {
|
|
3348
642
|
}
|
|
3349
643
|
|
|
@@ -3355,7 +649,7 @@ class ListDistributionConfigurationsCommand extends smithyClient.Command
|
|
|
3355
649
|
})
|
|
3356
650
|
.s("imagebuilder", "ListDistributionConfigurations", {})
|
|
3357
651
|
.n("ImagebuilderClient", "ListDistributionConfigurationsCommand")
|
|
3358
|
-
.sc(ListDistributionConfigurations$)
|
|
652
|
+
.sc(schemas_0.ListDistributionConfigurations$)
|
|
3359
653
|
.build() {
|
|
3360
654
|
}
|
|
3361
655
|
|
|
@@ -3367,7 +661,7 @@ class ListImageBuildVersionsCommand extends smithyClient.Command
|
|
|
3367
661
|
})
|
|
3368
662
|
.s("imagebuilder", "ListImageBuildVersions", {})
|
|
3369
663
|
.n("ImagebuilderClient", "ListImageBuildVersionsCommand")
|
|
3370
|
-
.sc(ListImageBuildVersions$)
|
|
664
|
+
.sc(schemas_0.ListImageBuildVersions$)
|
|
3371
665
|
.build() {
|
|
3372
666
|
}
|
|
3373
667
|
|
|
@@ -3379,7 +673,7 @@ class ListImagePackagesCommand extends smithyClient.Command
|
|
|
3379
673
|
})
|
|
3380
674
|
.s("imagebuilder", "ListImagePackages", {})
|
|
3381
675
|
.n("ImagebuilderClient", "ListImagePackagesCommand")
|
|
3382
|
-
.sc(ListImagePackages$)
|
|
676
|
+
.sc(schemas_0.ListImagePackages$)
|
|
3383
677
|
.build() {
|
|
3384
678
|
}
|
|
3385
679
|
|
|
@@ -3391,7 +685,7 @@ class ListImagePipelineImagesCommand extends smithyClient.Command
|
|
|
3391
685
|
})
|
|
3392
686
|
.s("imagebuilder", "ListImagePipelineImages", {})
|
|
3393
687
|
.n("ImagebuilderClient", "ListImagePipelineImagesCommand")
|
|
3394
|
-
.sc(ListImagePipelineImages$)
|
|
688
|
+
.sc(schemas_0.ListImagePipelineImages$)
|
|
3395
689
|
.build() {
|
|
3396
690
|
}
|
|
3397
691
|
|
|
@@ -3403,7 +697,7 @@ class ListImagePipelinesCommand extends smithyClient.Command
|
|
|
3403
697
|
})
|
|
3404
698
|
.s("imagebuilder", "ListImagePipelines", {})
|
|
3405
699
|
.n("ImagebuilderClient", "ListImagePipelinesCommand")
|
|
3406
|
-
.sc(ListImagePipelines$)
|
|
700
|
+
.sc(schemas_0.ListImagePipelines$)
|
|
3407
701
|
.build() {
|
|
3408
702
|
}
|
|
3409
703
|
|
|
@@ -3415,7 +709,7 @@ class ListImageRecipesCommand extends smithyClient.Command
|
|
|
3415
709
|
})
|
|
3416
710
|
.s("imagebuilder", "ListImageRecipes", {})
|
|
3417
711
|
.n("ImagebuilderClient", "ListImageRecipesCommand")
|
|
3418
|
-
.sc(ListImageRecipes$)
|
|
712
|
+
.sc(schemas_0.ListImageRecipes$)
|
|
3419
713
|
.build() {
|
|
3420
714
|
}
|
|
3421
715
|
|
|
@@ -3427,7 +721,7 @@ class ListImageScanFindingAggregationsCommand extends smithyClient.Command
|
|
|
3427
721
|
})
|
|
3428
722
|
.s("imagebuilder", "ListImageScanFindingAggregations", {})
|
|
3429
723
|
.n("ImagebuilderClient", "ListImageScanFindingAggregationsCommand")
|
|
3430
|
-
.sc(ListImageScanFindingAggregations$)
|
|
724
|
+
.sc(schemas_0.ListImageScanFindingAggregations$)
|
|
3431
725
|
.build() {
|
|
3432
726
|
}
|
|
3433
727
|
|
|
@@ -3439,7 +733,7 @@ class ListImageScanFindingsCommand extends smithyClient.Command
|
|
|
3439
733
|
})
|
|
3440
734
|
.s("imagebuilder", "ListImageScanFindings", {})
|
|
3441
735
|
.n("ImagebuilderClient", "ListImageScanFindingsCommand")
|
|
3442
|
-
.sc(ListImageScanFindings$)
|
|
736
|
+
.sc(schemas_0.ListImageScanFindings$)
|
|
3443
737
|
.build() {
|
|
3444
738
|
}
|
|
3445
739
|
|
|
@@ -3451,7 +745,7 @@ class ListImagesCommand extends smithyClient.Command
|
|
|
3451
745
|
})
|
|
3452
746
|
.s("imagebuilder", "ListImages", {})
|
|
3453
747
|
.n("ImagebuilderClient", "ListImagesCommand")
|
|
3454
|
-
.sc(ListImages$)
|
|
748
|
+
.sc(schemas_0.ListImages$)
|
|
3455
749
|
.build() {
|
|
3456
750
|
}
|
|
3457
751
|
|
|
@@ -3463,7 +757,7 @@ class ListInfrastructureConfigurationsCommand extends smithyClient.Command
|
|
|
3463
757
|
})
|
|
3464
758
|
.s("imagebuilder", "ListInfrastructureConfigurations", {})
|
|
3465
759
|
.n("ImagebuilderClient", "ListInfrastructureConfigurationsCommand")
|
|
3466
|
-
.sc(ListInfrastructureConfigurations$)
|
|
760
|
+
.sc(schemas_0.ListInfrastructureConfigurations$)
|
|
3467
761
|
.build() {
|
|
3468
762
|
}
|
|
3469
763
|
|
|
@@ -3475,7 +769,7 @@ class ListLifecycleExecutionResourcesCommand extends smithyClient.Command
|
|
|
3475
769
|
})
|
|
3476
770
|
.s("imagebuilder", "ListLifecycleExecutionResources", {})
|
|
3477
771
|
.n("ImagebuilderClient", "ListLifecycleExecutionResourcesCommand")
|
|
3478
|
-
.sc(ListLifecycleExecutionResources$)
|
|
772
|
+
.sc(schemas_0.ListLifecycleExecutionResources$)
|
|
3479
773
|
.build() {
|
|
3480
774
|
}
|
|
3481
775
|
|
|
@@ -3487,7 +781,7 @@ class ListLifecycleExecutionsCommand extends smithyClient.Command
|
|
|
3487
781
|
})
|
|
3488
782
|
.s("imagebuilder", "ListLifecycleExecutions", {})
|
|
3489
783
|
.n("ImagebuilderClient", "ListLifecycleExecutionsCommand")
|
|
3490
|
-
.sc(ListLifecycleExecutions$)
|
|
784
|
+
.sc(schemas_0.ListLifecycleExecutions$)
|
|
3491
785
|
.build() {
|
|
3492
786
|
}
|
|
3493
787
|
|
|
@@ -3499,7 +793,7 @@ class ListLifecyclePoliciesCommand extends smithyClient.Command
|
|
|
3499
793
|
})
|
|
3500
794
|
.s("imagebuilder", "ListLifecyclePolicies", {})
|
|
3501
795
|
.n("ImagebuilderClient", "ListLifecyclePoliciesCommand")
|
|
3502
|
-
.sc(ListLifecyclePolicies$)
|
|
796
|
+
.sc(schemas_0.ListLifecyclePolicies$)
|
|
3503
797
|
.build() {
|
|
3504
798
|
}
|
|
3505
799
|
|
|
@@ -3511,7 +805,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3511
805
|
})
|
|
3512
806
|
.s("imagebuilder", "ListTagsForResource", {})
|
|
3513
807
|
.n("ImagebuilderClient", "ListTagsForResourceCommand")
|
|
3514
|
-
.sc(ListTagsForResource$)
|
|
808
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3515
809
|
.build() {
|
|
3516
810
|
}
|
|
3517
811
|
|
|
@@ -3523,7 +817,7 @@ class ListWaitingWorkflowStepsCommand extends smithyClient.Command
|
|
|
3523
817
|
})
|
|
3524
818
|
.s("imagebuilder", "ListWaitingWorkflowSteps", {})
|
|
3525
819
|
.n("ImagebuilderClient", "ListWaitingWorkflowStepsCommand")
|
|
3526
|
-
.sc(ListWaitingWorkflowSteps$)
|
|
820
|
+
.sc(schemas_0.ListWaitingWorkflowSteps$)
|
|
3527
821
|
.build() {
|
|
3528
822
|
}
|
|
3529
823
|
|
|
@@ -3535,7 +829,7 @@ class ListWorkflowBuildVersionsCommand extends smithyClient.Command
|
|
|
3535
829
|
})
|
|
3536
830
|
.s("imagebuilder", "ListWorkflowBuildVersions", {})
|
|
3537
831
|
.n("ImagebuilderClient", "ListWorkflowBuildVersionsCommand")
|
|
3538
|
-
.sc(ListWorkflowBuildVersions$)
|
|
832
|
+
.sc(schemas_0.ListWorkflowBuildVersions$)
|
|
3539
833
|
.build() {
|
|
3540
834
|
}
|
|
3541
835
|
|
|
@@ -3547,7 +841,7 @@ class ListWorkflowExecutionsCommand extends smithyClient.Command
|
|
|
3547
841
|
})
|
|
3548
842
|
.s("imagebuilder", "ListWorkflowExecutions", {})
|
|
3549
843
|
.n("ImagebuilderClient", "ListWorkflowExecutionsCommand")
|
|
3550
|
-
.sc(ListWorkflowExecutions$)
|
|
844
|
+
.sc(schemas_0.ListWorkflowExecutions$)
|
|
3551
845
|
.build() {
|
|
3552
846
|
}
|
|
3553
847
|
|
|
@@ -3559,7 +853,7 @@ class ListWorkflowsCommand extends smithyClient.Command
|
|
|
3559
853
|
})
|
|
3560
854
|
.s("imagebuilder", "ListWorkflows", {})
|
|
3561
855
|
.n("ImagebuilderClient", "ListWorkflowsCommand")
|
|
3562
|
-
.sc(ListWorkflows$)
|
|
856
|
+
.sc(schemas_0.ListWorkflows$)
|
|
3563
857
|
.build() {
|
|
3564
858
|
}
|
|
3565
859
|
|
|
@@ -3571,7 +865,7 @@ class ListWorkflowStepExecutionsCommand extends smithyClient.Command
|
|
|
3571
865
|
})
|
|
3572
866
|
.s("imagebuilder", "ListWorkflowStepExecutions", {})
|
|
3573
867
|
.n("ImagebuilderClient", "ListWorkflowStepExecutionsCommand")
|
|
3574
|
-
.sc(ListWorkflowStepExecutions$)
|
|
868
|
+
.sc(schemas_0.ListWorkflowStepExecutions$)
|
|
3575
869
|
.build() {
|
|
3576
870
|
}
|
|
3577
871
|
|
|
@@ -3583,7 +877,7 @@ class PutComponentPolicyCommand extends smithyClient.Command
|
|
|
3583
877
|
})
|
|
3584
878
|
.s("imagebuilder", "PutComponentPolicy", {})
|
|
3585
879
|
.n("ImagebuilderClient", "PutComponentPolicyCommand")
|
|
3586
|
-
.sc(PutComponentPolicy$)
|
|
880
|
+
.sc(schemas_0.PutComponentPolicy$)
|
|
3587
881
|
.build() {
|
|
3588
882
|
}
|
|
3589
883
|
|
|
@@ -3595,7 +889,7 @@ class PutContainerRecipePolicyCommand extends smithyClient.Command
|
|
|
3595
889
|
})
|
|
3596
890
|
.s("imagebuilder", "PutContainerRecipePolicy", {})
|
|
3597
891
|
.n("ImagebuilderClient", "PutContainerRecipePolicyCommand")
|
|
3598
|
-
.sc(PutContainerRecipePolicy$)
|
|
892
|
+
.sc(schemas_0.PutContainerRecipePolicy$)
|
|
3599
893
|
.build() {
|
|
3600
894
|
}
|
|
3601
895
|
|
|
@@ -3607,7 +901,7 @@ class PutImagePolicyCommand extends smithyClient.Command
|
|
|
3607
901
|
})
|
|
3608
902
|
.s("imagebuilder", "PutImagePolicy", {})
|
|
3609
903
|
.n("ImagebuilderClient", "PutImagePolicyCommand")
|
|
3610
|
-
.sc(PutImagePolicy$)
|
|
904
|
+
.sc(schemas_0.PutImagePolicy$)
|
|
3611
905
|
.build() {
|
|
3612
906
|
}
|
|
3613
907
|
|
|
@@ -3619,7 +913,7 @@ class PutImageRecipePolicyCommand extends smithyClient.Command
|
|
|
3619
913
|
})
|
|
3620
914
|
.s("imagebuilder", "PutImageRecipePolicy", {})
|
|
3621
915
|
.n("ImagebuilderClient", "PutImageRecipePolicyCommand")
|
|
3622
|
-
.sc(PutImageRecipePolicy$)
|
|
916
|
+
.sc(schemas_0.PutImageRecipePolicy$)
|
|
3623
917
|
.build() {
|
|
3624
918
|
}
|
|
3625
919
|
|
|
@@ -3631,7 +925,7 @@ class RetryImageCommand extends smithyClient.Command
|
|
|
3631
925
|
})
|
|
3632
926
|
.s("imagebuilder", "RetryImage", {})
|
|
3633
927
|
.n("ImagebuilderClient", "RetryImageCommand")
|
|
3634
|
-
.sc(RetryImage$)
|
|
928
|
+
.sc(schemas_0.RetryImage$)
|
|
3635
929
|
.build() {
|
|
3636
930
|
}
|
|
3637
931
|
|
|
@@ -3643,7 +937,7 @@ class SendWorkflowStepActionCommand extends smithyClient.Command
|
|
|
3643
937
|
})
|
|
3644
938
|
.s("imagebuilder", "SendWorkflowStepAction", {})
|
|
3645
939
|
.n("ImagebuilderClient", "SendWorkflowStepActionCommand")
|
|
3646
|
-
.sc(SendWorkflowStepAction$)
|
|
940
|
+
.sc(schemas_0.SendWorkflowStepAction$)
|
|
3647
941
|
.build() {
|
|
3648
942
|
}
|
|
3649
943
|
|
|
@@ -3655,7 +949,7 @@ class StartImagePipelineExecutionCommand extends smithyClient.Command
|
|
|
3655
949
|
})
|
|
3656
950
|
.s("imagebuilder", "StartImagePipelineExecution", {})
|
|
3657
951
|
.n("ImagebuilderClient", "StartImagePipelineExecutionCommand")
|
|
3658
|
-
.sc(StartImagePipelineExecution$)
|
|
952
|
+
.sc(schemas_0.StartImagePipelineExecution$)
|
|
3659
953
|
.build() {
|
|
3660
954
|
}
|
|
3661
955
|
|
|
@@ -3667,7 +961,7 @@ class StartResourceStateUpdateCommand extends smithyClient.Command
|
|
|
3667
961
|
})
|
|
3668
962
|
.s("imagebuilder", "StartResourceStateUpdate", {})
|
|
3669
963
|
.n("ImagebuilderClient", "StartResourceStateUpdateCommand")
|
|
3670
|
-
.sc(StartResourceStateUpdate$)
|
|
964
|
+
.sc(schemas_0.StartResourceStateUpdate$)
|
|
3671
965
|
.build() {
|
|
3672
966
|
}
|
|
3673
967
|
|
|
@@ -3679,7 +973,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3679
973
|
})
|
|
3680
974
|
.s("imagebuilder", "TagResource", {})
|
|
3681
975
|
.n("ImagebuilderClient", "TagResourceCommand")
|
|
3682
|
-
.sc(TagResource$)
|
|
976
|
+
.sc(schemas_0.TagResource$)
|
|
3683
977
|
.build() {
|
|
3684
978
|
}
|
|
3685
979
|
|
|
@@ -3691,7 +985,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3691
985
|
})
|
|
3692
986
|
.s("imagebuilder", "UntagResource", {})
|
|
3693
987
|
.n("ImagebuilderClient", "UntagResourceCommand")
|
|
3694
|
-
.sc(UntagResource$)
|
|
988
|
+
.sc(schemas_0.UntagResource$)
|
|
3695
989
|
.build() {
|
|
3696
990
|
}
|
|
3697
991
|
|
|
@@ -3703,7 +997,7 @@ class UpdateDistributionConfigurationCommand extends smithyClient.Command
|
|
|
3703
997
|
})
|
|
3704
998
|
.s("imagebuilder", "UpdateDistributionConfiguration", {})
|
|
3705
999
|
.n("ImagebuilderClient", "UpdateDistributionConfigurationCommand")
|
|
3706
|
-
.sc(UpdateDistributionConfiguration$)
|
|
1000
|
+
.sc(schemas_0.UpdateDistributionConfiguration$)
|
|
3707
1001
|
.build() {
|
|
3708
1002
|
}
|
|
3709
1003
|
|
|
@@ -3715,7 +1009,7 @@ class UpdateImagePipelineCommand extends smithyClient.Command
|
|
|
3715
1009
|
})
|
|
3716
1010
|
.s("imagebuilder", "UpdateImagePipeline", {})
|
|
3717
1011
|
.n("ImagebuilderClient", "UpdateImagePipelineCommand")
|
|
3718
|
-
.sc(UpdateImagePipeline$)
|
|
1012
|
+
.sc(schemas_0.UpdateImagePipeline$)
|
|
3719
1013
|
.build() {
|
|
3720
1014
|
}
|
|
3721
1015
|
|
|
@@ -3727,7 +1021,7 @@ class UpdateInfrastructureConfigurationCommand extends smithyClient.Command
|
|
|
3727
1021
|
})
|
|
3728
1022
|
.s("imagebuilder", "UpdateInfrastructureConfiguration", {})
|
|
3729
1023
|
.n("ImagebuilderClient", "UpdateInfrastructureConfigurationCommand")
|
|
3730
|
-
.sc(UpdateInfrastructureConfiguration$)
|
|
1024
|
+
.sc(schemas_0.UpdateInfrastructureConfiguration$)
|
|
3731
1025
|
.build() {
|
|
3732
1026
|
}
|
|
3733
1027
|
|
|
@@ -3739,7 +1033,7 @@ class UpdateLifecyclePolicyCommand extends smithyClient.Command
|
|
|
3739
1033
|
})
|
|
3740
1034
|
.s("imagebuilder", "UpdateLifecyclePolicy", {})
|
|
3741
1035
|
.n("ImagebuilderClient", "UpdateLifecyclePolicyCommand")
|
|
3742
|
-
.sc(UpdateLifecyclePolicy$)
|
|
1036
|
+
.sc(schemas_0.UpdateLifecyclePolicy$)
|
|
3743
1037
|
.build() {
|
|
3744
1038
|
}
|
|
3745
1039
|
|
|
@@ -4096,496 +1390,125 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4096
1390
|
enumerable: true,
|
|
4097
1391
|
get: function () { return smithyClient.Client; }
|
|
4098
1392
|
});
|
|
4099
|
-
exports
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
exports.Ami$ = Ami$;
|
|
4104
|
-
exports.AmiDistributionConfiguration$ = AmiDistributionConfiguration$;
|
|
4105
|
-
exports.AutoDisablePolicy$ = AutoDisablePolicy$;
|
|
1393
|
+
Object.defineProperty(exports, "ImagebuilderServiceException", {
|
|
1394
|
+
enumerable: true,
|
|
1395
|
+
get: function () { return ImagebuilderServiceException.ImagebuilderServiceException; }
|
|
1396
|
+
});
|
|
4106
1397
|
exports.BuildType = BuildType;
|
|
4107
|
-
exports.CallRateLimitExceededException = CallRateLimitExceededException;
|
|
4108
|
-
exports.CallRateLimitExceededException$ = CallRateLimitExceededException$;
|
|
4109
|
-
exports.CancelImageCreation$ = CancelImageCreation$;
|
|
4110
1398
|
exports.CancelImageCreationCommand = CancelImageCreationCommand;
|
|
4111
|
-
exports.CancelImageCreationRequest$ = CancelImageCreationRequest$;
|
|
4112
|
-
exports.CancelImageCreationResponse$ = CancelImageCreationResponse$;
|
|
4113
|
-
exports.CancelLifecycleExecution$ = CancelLifecycleExecution$;
|
|
4114
1399
|
exports.CancelLifecycleExecutionCommand = CancelLifecycleExecutionCommand;
|
|
4115
|
-
exports.CancelLifecycleExecutionRequest$ = CancelLifecycleExecutionRequest$;
|
|
4116
|
-
exports.CancelLifecycleExecutionResponse$ = CancelLifecycleExecutionResponse$;
|
|
4117
|
-
exports.ClientException = ClientException;
|
|
4118
|
-
exports.ClientException$ = ClientException$;
|
|
4119
|
-
exports.Component$ = Component$;
|
|
4120
|
-
exports.ComponentConfiguration$ = ComponentConfiguration$;
|
|
4121
1400
|
exports.ComponentFormat = ComponentFormat;
|
|
4122
|
-
exports.ComponentParameter$ = ComponentParameter$;
|
|
4123
|
-
exports.ComponentParameterDetail$ = ComponentParameterDetail$;
|
|
4124
|
-
exports.ComponentState$ = ComponentState$;
|
|
4125
1401
|
exports.ComponentStatus = ComponentStatus;
|
|
4126
|
-
exports.ComponentSummary$ = ComponentSummary$;
|
|
4127
1402
|
exports.ComponentType = ComponentType;
|
|
4128
|
-
exports.ComponentVersion$ = ComponentVersion$;
|
|
4129
|
-
exports.Container$ = Container$;
|
|
4130
|
-
exports.ContainerDistributionConfiguration$ = ContainerDistributionConfiguration$;
|
|
4131
|
-
exports.ContainerRecipe$ = ContainerRecipe$;
|
|
4132
|
-
exports.ContainerRecipeSummary$ = ContainerRecipeSummary$;
|
|
4133
1403
|
exports.ContainerRepositoryService = ContainerRepositoryService;
|
|
4134
1404
|
exports.ContainerType = ContainerType;
|
|
4135
|
-
exports.CreateComponent$ = CreateComponent$;
|
|
4136
1405
|
exports.CreateComponentCommand = CreateComponentCommand;
|
|
4137
|
-
exports.CreateComponentRequest$ = CreateComponentRequest$;
|
|
4138
|
-
exports.CreateComponentResponse$ = CreateComponentResponse$;
|
|
4139
|
-
exports.CreateContainerRecipe$ = CreateContainerRecipe$;
|
|
4140
1406
|
exports.CreateContainerRecipeCommand = CreateContainerRecipeCommand;
|
|
4141
|
-
exports.CreateContainerRecipeRequest$ = CreateContainerRecipeRequest$;
|
|
4142
|
-
exports.CreateContainerRecipeResponse$ = CreateContainerRecipeResponse$;
|
|
4143
|
-
exports.CreateDistributionConfiguration$ = CreateDistributionConfiguration$;
|
|
4144
1407
|
exports.CreateDistributionConfigurationCommand = CreateDistributionConfigurationCommand;
|
|
4145
|
-
exports.CreateDistributionConfigurationRequest$ = CreateDistributionConfigurationRequest$;
|
|
4146
|
-
exports.CreateDistributionConfigurationResponse$ = CreateDistributionConfigurationResponse$;
|
|
4147
|
-
exports.CreateImage$ = CreateImage$;
|
|
4148
1408
|
exports.CreateImageCommand = CreateImageCommand;
|
|
4149
|
-
exports.CreateImagePipeline$ = CreateImagePipeline$;
|
|
4150
1409
|
exports.CreateImagePipelineCommand = CreateImagePipelineCommand;
|
|
4151
|
-
exports.CreateImagePipelineRequest$ = CreateImagePipelineRequest$;
|
|
4152
|
-
exports.CreateImagePipelineResponse$ = CreateImagePipelineResponse$;
|
|
4153
|
-
exports.CreateImageRecipe$ = CreateImageRecipe$;
|
|
4154
1410
|
exports.CreateImageRecipeCommand = CreateImageRecipeCommand;
|
|
4155
|
-
exports.CreateImageRecipeRequest$ = CreateImageRecipeRequest$;
|
|
4156
|
-
exports.CreateImageRecipeResponse$ = CreateImageRecipeResponse$;
|
|
4157
|
-
exports.CreateImageRequest$ = CreateImageRequest$;
|
|
4158
|
-
exports.CreateImageResponse$ = CreateImageResponse$;
|
|
4159
|
-
exports.CreateInfrastructureConfiguration$ = CreateInfrastructureConfiguration$;
|
|
4160
1411
|
exports.CreateInfrastructureConfigurationCommand = CreateInfrastructureConfigurationCommand;
|
|
4161
|
-
exports.CreateInfrastructureConfigurationRequest$ = CreateInfrastructureConfigurationRequest$;
|
|
4162
|
-
exports.CreateInfrastructureConfigurationResponse$ = CreateInfrastructureConfigurationResponse$;
|
|
4163
|
-
exports.CreateLifecyclePolicy$ = CreateLifecyclePolicy$;
|
|
4164
1412
|
exports.CreateLifecyclePolicyCommand = CreateLifecyclePolicyCommand;
|
|
4165
|
-
exports.CreateLifecyclePolicyRequest$ = CreateLifecyclePolicyRequest$;
|
|
4166
|
-
exports.CreateLifecyclePolicyResponse$ = CreateLifecyclePolicyResponse$;
|
|
4167
|
-
exports.CreateWorkflow$ = CreateWorkflow$;
|
|
4168
1413
|
exports.CreateWorkflowCommand = CreateWorkflowCommand;
|
|
4169
|
-
exports.CreateWorkflowRequest$ = CreateWorkflowRequest$;
|
|
4170
|
-
exports.CreateWorkflowResponse$ = CreateWorkflowResponse$;
|
|
4171
|
-
exports.CvssScore$ = CvssScore$;
|
|
4172
|
-
exports.CvssScoreAdjustment$ = CvssScoreAdjustment$;
|
|
4173
|
-
exports.CvssScoreDetails$ = CvssScoreDetails$;
|
|
4174
|
-
exports.DeleteComponent$ = DeleteComponent$;
|
|
4175
1414
|
exports.DeleteComponentCommand = DeleteComponentCommand;
|
|
4176
|
-
exports.DeleteComponentRequest$ = DeleteComponentRequest$;
|
|
4177
|
-
exports.DeleteComponentResponse$ = DeleteComponentResponse$;
|
|
4178
|
-
exports.DeleteContainerRecipe$ = DeleteContainerRecipe$;
|
|
4179
1415
|
exports.DeleteContainerRecipeCommand = DeleteContainerRecipeCommand;
|
|
4180
|
-
exports.DeleteContainerRecipeRequest$ = DeleteContainerRecipeRequest$;
|
|
4181
|
-
exports.DeleteContainerRecipeResponse$ = DeleteContainerRecipeResponse$;
|
|
4182
|
-
exports.DeleteDistributionConfiguration$ = DeleteDistributionConfiguration$;
|
|
4183
1416
|
exports.DeleteDistributionConfigurationCommand = DeleteDistributionConfigurationCommand;
|
|
4184
|
-
exports.DeleteDistributionConfigurationRequest$ = DeleteDistributionConfigurationRequest$;
|
|
4185
|
-
exports.DeleteDistributionConfigurationResponse$ = DeleteDistributionConfigurationResponse$;
|
|
4186
|
-
exports.DeleteImage$ = DeleteImage$;
|
|
4187
1417
|
exports.DeleteImageCommand = DeleteImageCommand;
|
|
4188
|
-
exports.DeleteImagePipeline$ = DeleteImagePipeline$;
|
|
4189
1418
|
exports.DeleteImagePipelineCommand = DeleteImagePipelineCommand;
|
|
4190
|
-
exports.DeleteImagePipelineRequest$ = DeleteImagePipelineRequest$;
|
|
4191
|
-
exports.DeleteImagePipelineResponse$ = DeleteImagePipelineResponse$;
|
|
4192
|
-
exports.DeleteImageRecipe$ = DeleteImageRecipe$;
|
|
4193
1419
|
exports.DeleteImageRecipeCommand = DeleteImageRecipeCommand;
|
|
4194
|
-
exports.DeleteImageRecipeRequest$ = DeleteImageRecipeRequest$;
|
|
4195
|
-
exports.DeleteImageRecipeResponse$ = DeleteImageRecipeResponse$;
|
|
4196
|
-
exports.DeleteImageRequest$ = DeleteImageRequest$;
|
|
4197
|
-
exports.DeleteImageResponse$ = DeleteImageResponse$;
|
|
4198
|
-
exports.DeleteInfrastructureConfiguration$ = DeleteInfrastructureConfiguration$;
|
|
4199
1420
|
exports.DeleteInfrastructureConfigurationCommand = DeleteInfrastructureConfigurationCommand;
|
|
4200
|
-
exports.DeleteInfrastructureConfigurationRequest$ = DeleteInfrastructureConfigurationRequest$;
|
|
4201
|
-
exports.DeleteInfrastructureConfigurationResponse$ = DeleteInfrastructureConfigurationResponse$;
|
|
4202
|
-
exports.DeleteLifecyclePolicy$ = DeleteLifecyclePolicy$;
|
|
4203
1421
|
exports.DeleteLifecyclePolicyCommand = DeleteLifecyclePolicyCommand;
|
|
4204
|
-
exports.DeleteLifecyclePolicyRequest$ = DeleteLifecyclePolicyRequest$;
|
|
4205
|
-
exports.DeleteLifecyclePolicyResponse$ = DeleteLifecyclePolicyResponse$;
|
|
4206
|
-
exports.DeleteWorkflow$ = DeleteWorkflow$;
|
|
4207
1422
|
exports.DeleteWorkflowCommand = DeleteWorkflowCommand;
|
|
4208
|
-
exports.DeleteWorkflowRequest$ = DeleteWorkflowRequest$;
|
|
4209
|
-
exports.DeleteWorkflowResponse$ = DeleteWorkflowResponse$;
|
|
4210
1423
|
exports.DiskImageFormat = DiskImageFormat;
|
|
4211
|
-
exports.DistributeImage$ = DistributeImage$;
|
|
4212
1424
|
exports.DistributeImageCommand = DistributeImageCommand;
|
|
4213
|
-
exports.DistributeImageRequest$ = DistributeImageRequest$;
|
|
4214
|
-
exports.DistributeImageResponse$ = DistributeImageResponse$;
|
|
4215
|
-
exports.Distribution$ = Distribution$;
|
|
4216
|
-
exports.DistributionConfiguration$ = DistributionConfiguration$;
|
|
4217
|
-
exports.DistributionConfigurationSummary$ = DistributionConfigurationSummary$;
|
|
4218
|
-
exports.DryRunOperationException = DryRunOperationException;
|
|
4219
|
-
exports.DryRunOperationException$ = DryRunOperationException$;
|
|
4220
|
-
exports.EbsInstanceBlockDeviceSpecification$ = EbsInstanceBlockDeviceSpecification$;
|
|
4221
1425
|
exports.EbsVolumeType = EbsVolumeType;
|
|
4222
|
-
exports.EcrConfiguration$ = EcrConfiguration$;
|
|
4223
|
-
exports.FastLaunchConfiguration$ = FastLaunchConfiguration$;
|
|
4224
|
-
exports.FastLaunchLaunchTemplateSpecification$ = FastLaunchLaunchTemplateSpecification$;
|
|
4225
|
-
exports.FastLaunchSnapshotConfiguration$ = FastLaunchSnapshotConfiguration$;
|
|
4226
|
-
exports.Filter$ = Filter$;
|
|
4227
|
-
exports.ForbiddenException = ForbiddenException;
|
|
4228
|
-
exports.ForbiddenException$ = ForbiddenException$;
|
|
4229
|
-
exports.GetComponent$ = GetComponent$;
|
|
4230
1426
|
exports.GetComponentCommand = GetComponentCommand;
|
|
4231
|
-
exports.GetComponentPolicy$ = GetComponentPolicy$;
|
|
4232
1427
|
exports.GetComponentPolicyCommand = GetComponentPolicyCommand;
|
|
4233
|
-
exports.GetComponentPolicyRequest$ = GetComponentPolicyRequest$;
|
|
4234
|
-
exports.GetComponentPolicyResponse$ = GetComponentPolicyResponse$;
|
|
4235
|
-
exports.GetComponentRequest$ = GetComponentRequest$;
|
|
4236
|
-
exports.GetComponentResponse$ = GetComponentResponse$;
|
|
4237
|
-
exports.GetContainerRecipe$ = GetContainerRecipe$;
|
|
4238
1428
|
exports.GetContainerRecipeCommand = GetContainerRecipeCommand;
|
|
4239
|
-
exports.GetContainerRecipePolicy$ = GetContainerRecipePolicy$;
|
|
4240
1429
|
exports.GetContainerRecipePolicyCommand = GetContainerRecipePolicyCommand;
|
|
4241
|
-
exports.GetContainerRecipePolicyRequest$ = GetContainerRecipePolicyRequest$;
|
|
4242
|
-
exports.GetContainerRecipePolicyResponse$ = GetContainerRecipePolicyResponse$;
|
|
4243
|
-
exports.GetContainerRecipeRequest$ = GetContainerRecipeRequest$;
|
|
4244
|
-
exports.GetContainerRecipeResponse$ = GetContainerRecipeResponse$;
|
|
4245
|
-
exports.GetDistributionConfiguration$ = GetDistributionConfiguration$;
|
|
4246
1430
|
exports.GetDistributionConfigurationCommand = GetDistributionConfigurationCommand;
|
|
4247
|
-
exports.GetDistributionConfigurationRequest$ = GetDistributionConfigurationRequest$;
|
|
4248
|
-
exports.GetDistributionConfigurationResponse$ = GetDistributionConfigurationResponse$;
|
|
4249
|
-
exports.GetImage$ = GetImage$;
|
|
4250
1431
|
exports.GetImageCommand = GetImageCommand;
|
|
4251
|
-
exports.GetImagePipeline$ = GetImagePipeline$;
|
|
4252
1432
|
exports.GetImagePipelineCommand = GetImagePipelineCommand;
|
|
4253
|
-
exports.GetImagePipelineRequest$ = GetImagePipelineRequest$;
|
|
4254
|
-
exports.GetImagePipelineResponse$ = GetImagePipelineResponse$;
|
|
4255
|
-
exports.GetImagePolicy$ = GetImagePolicy$;
|
|
4256
1433
|
exports.GetImagePolicyCommand = GetImagePolicyCommand;
|
|
4257
|
-
exports.GetImagePolicyRequest$ = GetImagePolicyRequest$;
|
|
4258
|
-
exports.GetImagePolicyResponse$ = GetImagePolicyResponse$;
|
|
4259
|
-
exports.GetImageRecipe$ = GetImageRecipe$;
|
|
4260
1434
|
exports.GetImageRecipeCommand = GetImageRecipeCommand;
|
|
4261
|
-
exports.GetImageRecipePolicy$ = GetImageRecipePolicy$;
|
|
4262
1435
|
exports.GetImageRecipePolicyCommand = GetImageRecipePolicyCommand;
|
|
4263
|
-
exports.GetImageRecipePolicyRequest$ = GetImageRecipePolicyRequest$;
|
|
4264
|
-
exports.GetImageRecipePolicyResponse$ = GetImageRecipePolicyResponse$;
|
|
4265
|
-
exports.GetImageRecipeRequest$ = GetImageRecipeRequest$;
|
|
4266
|
-
exports.GetImageRecipeResponse$ = GetImageRecipeResponse$;
|
|
4267
|
-
exports.GetImageRequest$ = GetImageRequest$;
|
|
4268
|
-
exports.GetImageResponse$ = GetImageResponse$;
|
|
4269
|
-
exports.GetInfrastructureConfiguration$ = GetInfrastructureConfiguration$;
|
|
4270
1436
|
exports.GetInfrastructureConfigurationCommand = GetInfrastructureConfigurationCommand;
|
|
4271
|
-
exports.GetInfrastructureConfigurationRequest$ = GetInfrastructureConfigurationRequest$;
|
|
4272
|
-
exports.GetInfrastructureConfigurationResponse$ = GetInfrastructureConfigurationResponse$;
|
|
4273
|
-
exports.GetLifecycleExecution$ = GetLifecycleExecution$;
|
|
4274
1437
|
exports.GetLifecycleExecutionCommand = GetLifecycleExecutionCommand;
|
|
4275
|
-
exports.GetLifecycleExecutionRequest$ = GetLifecycleExecutionRequest$;
|
|
4276
|
-
exports.GetLifecycleExecutionResponse$ = GetLifecycleExecutionResponse$;
|
|
4277
|
-
exports.GetLifecyclePolicy$ = GetLifecyclePolicy$;
|
|
4278
1438
|
exports.GetLifecyclePolicyCommand = GetLifecyclePolicyCommand;
|
|
4279
|
-
exports.GetLifecyclePolicyRequest$ = GetLifecyclePolicyRequest$;
|
|
4280
|
-
exports.GetLifecyclePolicyResponse$ = GetLifecyclePolicyResponse$;
|
|
4281
|
-
exports.GetMarketplaceResource$ = GetMarketplaceResource$;
|
|
4282
1439
|
exports.GetMarketplaceResourceCommand = GetMarketplaceResourceCommand;
|
|
4283
|
-
exports.GetMarketplaceResourceRequest$ = GetMarketplaceResourceRequest$;
|
|
4284
|
-
exports.GetMarketplaceResourceResponse$ = GetMarketplaceResourceResponse$;
|
|
4285
|
-
exports.GetWorkflow$ = GetWorkflow$;
|
|
4286
1440
|
exports.GetWorkflowCommand = GetWorkflowCommand;
|
|
4287
|
-
exports.GetWorkflowExecution$ = GetWorkflowExecution$;
|
|
4288
1441
|
exports.GetWorkflowExecutionCommand = GetWorkflowExecutionCommand;
|
|
4289
|
-
exports.GetWorkflowExecutionRequest$ = GetWorkflowExecutionRequest$;
|
|
4290
|
-
exports.GetWorkflowExecutionResponse$ = GetWorkflowExecutionResponse$;
|
|
4291
|
-
exports.GetWorkflowRequest$ = GetWorkflowRequest$;
|
|
4292
|
-
exports.GetWorkflowResponse$ = GetWorkflowResponse$;
|
|
4293
|
-
exports.GetWorkflowStepExecution$ = GetWorkflowStepExecution$;
|
|
4294
1442
|
exports.GetWorkflowStepExecutionCommand = GetWorkflowStepExecutionCommand;
|
|
4295
|
-
exports.GetWorkflowStepExecutionRequest$ = GetWorkflowStepExecutionRequest$;
|
|
4296
|
-
exports.GetWorkflowStepExecutionResponse$ = GetWorkflowStepExecutionResponse$;
|
|
4297
|
-
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
4298
|
-
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
4299
|
-
exports.Image$ = Image$;
|
|
4300
|
-
exports.ImageAggregation$ = ImageAggregation$;
|
|
4301
|
-
exports.ImageLoggingConfiguration$ = ImageLoggingConfiguration$;
|
|
4302
|
-
exports.ImagePackage$ = ImagePackage$;
|
|
4303
|
-
exports.ImagePipeline$ = ImagePipeline$;
|
|
4304
|
-
exports.ImagePipelineAggregation$ = ImagePipelineAggregation$;
|
|
4305
|
-
exports.ImageRecipe$ = ImageRecipe$;
|
|
4306
|
-
exports.ImageRecipeSummary$ = ImageRecipeSummary$;
|
|
4307
|
-
exports.ImageScanFinding$ = ImageScanFinding$;
|
|
4308
|
-
exports.ImageScanFindingAggregation$ = ImageScanFindingAggregation$;
|
|
4309
|
-
exports.ImageScanFindingsFilter$ = ImageScanFindingsFilter$;
|
|
4310
|
-
exports.ImageScanState$ = ImageScanState$;
|
|
4311
1443
|
exports.ImageScanStatus = ImageScanStatus;
|
|
4312
|
-
exports.ImageScanningConfiguration$ = ImageScanningConfiguration$;
|
|
4313
1444
|
exports.ImageSource = ImageSource;
|
|
4314
|
-
exports.ImageState$ = ImageState$;
|
|
4315
1445
|
exports.ImageStatus = ImageStatus;
|
|
4316
|
-
exports.ImageSummary$ = ImageSummary$;
|
|
4317
|
-
exports.ImageTestsConfiguration$ = ImageTestsConfiguration$;
|
|
4318
1446
|
exports.ImageType = ImageType;
|
|
4319
|
-
exports.ImageVersion$ = ImageVersion$;
|
|
4320
1447
|
exports.Imagebuilder = Imagebuilder;
|
|
4321
1448
|
exports.ImagebuilderClient = ImagebuilderClient;
|
|
4322
|
-
exports.ImagebuilderServiceException = ImagebuilderServiceException;
|
|
4323
|
-
exports.ImagebuilderServiceException$ = ImagebuilderServiceException$;
|
|
4324
|
-
exports.ImportComponent$ = ImportComponent$;
|
|
4325
1449
|
exports.ImportComponentCommand = ImportComponentCommand;
|
|
4326
|
-
exports.ImportComponentRequest$ = ImportComponentRequest$;
|
|
4327
|
-
exports.ImportComponentResponse$ = ImportComponentResponse$;
|
|
4328
|
-
exports.ImportDiskImage$ = ImportDiskImage$;
|
|
4329
1450
|
exports.ImportDiskImageCommand = ImportDiskImageCommand;
|
|
4330
|
-
exports.ImportDiskImageRequest$ = ImportDiskImageRequest$;
|
|
4331
|
-
exports.ImportDiskImageResponse$ = ImportDiskImageResponse$;
|
|
4332
|
-
exports.ImportVmImage$ = ImportVmImage$;
|
|
4333
1451
|
exports.ImportVmImageCommand = ImportVmImageCommand;
|
|
4334
|
-
exports.ImportVmImageRequest$ = ImportVmImageRequest$;
|
|
4335
|
-
exports.ImportVmImageResponse$ = ImportVmImageResponse$;
|
|
4336
|
-
exports.InfrastructureConfiguration$ = InfrastructureConfiguration$;
|
|
4337
|
-
exports.InfrastructureConfigurationSummary$ = InfrastructureConfigurationSummary$;
|
|
4338
|
-
exports.InspectorScoreDetails$ = InspectorScoreDetails$;
|
|
4339
|
-
exports.InstanceBlockDeviceMapping$ = InstanceBlockDeviceMapping$;
|
|
4340
|
-
exports.InstanceConfiguration$ = InstanceConfiguration$;
|
|
4341
|
-
exports.InstanceMetadataOptions$ = InstanceMetadataOptions$;
|
|
4342
|
-
exports.InvalidPaginationTokenException = InvalidPaginationTokenException;
|
|
4343
|
-
exports.InvalidPaginationTokenException$ = InvalidPaginationTokenException$;
|
|
4344
|
-
exports.InvalidParameterCombinationException = InvalidParameterCombinationException;
|
|
4345
|
-
exports.InvalidParameterCombinationException$ = InvalidParameterCombinationException$;
|
|
4346
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
4347
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
4348
|
-
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
4349
|
-
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
4350
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
4351
|
-
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
4352
|
-
exports.InvalidVersionNumberException = InvalidVersionNumberException;
|
|
4353
|
-
exports.InvalidVersionNumberException$ = InvalidVersionNumberException$;
|
|
4354
|
-
exports.LatestVersionReferences$ = LatestVersionReferences$;
|
|
4355
|
-
exports.LaunchPermissionConfiguration$ = LaunchPermissionConfiguration$;
|
|
4356
|
-
exports.LaunchTemplateConfiguration$ = LaunchTemplateConfiguration$;
|
|
4357
|
-
exports.LifecycleExecution$ = LifecycleExecution$;
|
|
4358
|
-
exports.LifecycleExecutionResource$ = LifecycleExecutionResource$;
|
|
4359
|
-
exports.LifecycleExecutionResourceAction$ = LifecycleExecutionResourceAction$;
|
|
4360
1452
|
exports.LifecycleExecutionResourceActionName = LifecycleExecutionResourceActionName;
|
|
4361
|
-
exports.LifecycleExecutionResourceState$ = LifecycleExecutionResourceState$;
|
|
4362
1453
|
exports.LifecycleExecutionResourceStatus = LifecycleExecutionResourceStatus;
|
|
4363
|
-
exports.LifecycleExecutionResourcesImpactedSummary$ = LifecycleExecutionResourcesImpactedSummary$;
|
|
4364
|
-
exports.LifecycleExecutionSnapshotResource$ = LifecycleExecutionSnapshotResource$;
|
|
4365
|
-
exports.LifecycleExecutionState$ = LifecycleExecutionState$;
|
|
4366
1454
|
exports.LifecycleExecutionStatus = LifecycleExecutionStatus;
|
|
4367
|
-
exports.LifecyclePolicy$ = LifecyclePolicy$;
|
|
4368
|
-
exports.LifecyclePolicyDetail$ = LifecyclePolicyDetail$;
|
|
4369
|
-
exports.LifecyclePolicyDetailAction$ = LifecyclePolicyDetailAction$;
|
|
4370
|
-
exports.LifecyclePolicyDetailActionIncludeResources$ = LifecyclePolicyDetailActionIncludeResources$;
|
|
4371
1455
|
exports.LifecyclePolicyDetailActionType = LifecyclePolicyDetailActionType;
|
|
4372
|
-
exports.LifecyclePolicyDetailExclusionRules$ = LifecyclePolicyDetailExclusionRules$;
|
|
4373
|
-
exports.LifecyclePolicyDetailExclusionRulesAmis$ = LifecyclePolicyDetailExclusionRulesAmis$;
|
|
4374
|
-
exports.LifecyclePolicyDetailExclusionRulesAmisLastLaunched$ = LifecyclePolicyDetailExclusionRulesAmisLastLaunched$;
|
|
4375
|
-
exports.LifecyclePolicyDetailFilter$ = LifecyclePolicyDetailFilter$;
|
|
4376
1456
|
exports.LifecyclePolicyDetailFilterType = LifecyclePolicyDetailFilterType;
|
|
4377
|
-
exports.LifecyclePolicyResourceSelection$ = LifecyclePolicyResourceSelection$;
|
|
4378
|
-
exports.LifecyclePolicyResourceSelectionRecipe$ = LifecyclePolicyResourceSelectionRecipe$;
|
|
4379
1457
|
exports.LifecyclePolicyResourceType = LifecyclePolicyResourceType;
|
|
4380
1458
|
exports.LifecyclePolicyStatus = LifecyclePolicyStatus;
|
|
4381
|
-
exports.LifecyclePolicySummary$ = LifecyclePolicySummary$;
|
|
4382
1459
|
exports.LifecyclePolicyTimeUnit = LifecyclePolicyTimeUnit;
|
|
4383
|
-
exports.ListComponentBuildVersions$ = ListComponentBuildVersions$;
|
|
4384
1460
|
exports.ListComponentBuildVersionsCommand = ListComponentBuildVersionsCommand;
|
|
4385
|
-
exports.ListComponentBuildVersionsRequest$ = ListComponentBuildVersionsRequest$;
|
|
4386
|
-
exports.ListComponentBuildVersionsResponse$ = ListComponentBuildVersionsResponse$;
|
|
4387
|
-
exports.ListComponents$ = ListComponents$;
|
|
4388
1461
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
4389
|
-
exports.ListComponentsRequest$ = ListComponentsRequest$;
|
|
4390
|
-
exports.ListComponentsResponse$ = ListComponentsResponse$;
|
|
4391
|
-
exports.ListContainerRecipes$ = ListContainerRecipes$;
|
|
4392
1462
|
exports.ListContainerRecipesCommand = ListContainerRecipesCommand;
|
|
4393
|
-
exports.ListContainerRecipesRequest$ = ListContainerRecipesRequest$;
|
|
4394
|
-
exports.ListContainerRecipesResponse$ = ListContainerRecipesResponse$;
|
|
4395
|
-
exports.ListDistributionConfigurations$ = ListDistributionConfigurations$;
|
|
4396
1463
|
exports.ListDistributionConfigurationsCommand = ListDistributionConfigurationsCommand;
|
|
4397
|
-
exports.ListDistributionConfigurationsRequest$ = ListDistributionConfigurationsRequest$;
|
|
4398
|
-
exports.ListDistributionConfigurationsResponse$ = ListDistributionConfigurationsResponse$;
|
|
4399
|
-
exports.ListImageBuildVersions$ = ListImageBuildVersions$;
|
|
4400
1464
|
exports.ListImageBuildVersionsCommand = ListImageBuildVersionsCommand;
|
|
4401
|
-
exports.ListImageBuildVersionsRequest$ = ListImageBuildVersionsRequest$;
|
|
4402
|
-
exports.ListImageBuildVersionsResponse$ = ListImageBuildVersionsResponse$;
|
|
4403
|
-
exports.ListImagePackages$ = ListImagePackages$;
|
|
4404
1465
|
exports.ListImagePackagesCommand = ListImagePackagesCommand;
|
|
4405
|
-
exports.ListImagePackagesRequest$ = ListImagePackagesRequest$;
|
|
4406
|
-
exports.ListImagePackagesResponse$ = ListImagePackagesResponse$;
|
|
4407
|
-
exports.ListImagePipelineImages$ = ListImagePipelineImages$;
|
|
4408
1466
|
exports.ListImagePipelineImagesCommand = ListImagePipelineImagesCommand;
|
|
4409
|
-
exports.ListImagePipelineImagesRequest$ = ListImagePipelineImagesRequest$;
|
|
4410
|
-
exports.ListImagePipelineImagesResponse$ = ListImagePipelineImagesResponse$;
|
|
4411
|
-
exports.ListImagePipelines$ = ListImagePipelines$;
|
|
4412
1467
|
exports.ListImagePipelinesCommand = ListImagePipelinesCommand;
|
|
4413
|
-
exports.ListImagePipelinesRequest$ = ListImagePipelinesRequest$;
|
|
4414
|
-
exports.ListImagePipelinesResponse$ = ListImagePipelinesResponse$;
|
|
4415
|
-
exports.ListImageRecipes$ = ListImageRecipes$;
|
|
4416
1468
|
exports.ListImageRecipesCommand = ListImageRecipesCommand;
|
|
4417
|
-
exports.ListImageRecipesRequest$ = ListImageRecipesRequest$;
|
|
4418
|
-
exports.ListImageRecipesResponse$ = ListImageRecipesResponse$;
|
|
4419
|
-
exports.ListImageScanFindingAggregations$ = ListImageScanFindingAggregations$;
|
|
4420
1469
|
exports.ListImageScanFindingAggregationsCommand = ListImageScanFindingAggregationsCommand;
|
|
4421
|
-
exports.ListImageScanFindingAggregationsRequest$ = ListImageScanFindingAggregationsRequest$;
|
|
4422
|
-
exports.ListImageScanFindingAggregationsResponse$ = ListImageScanFindingAggregationsResponse$;
|
|
4423
|
-
exports.ListImageScanFindings$ = ListImageScanFindings$;
|
|
4424
1470
|
exports.ListImageScanFindingsCommand = ListImageScanFindingsCommand;
|
|
4425
|
-
exports.ListImageScanFindingsRequest$ = ListImageScanFindingsRequest$;
|
|
4426
|
-
exports.ListImageScanFindingsResponse$ = ListImageScanFindingsResponse$;
|
|
4427
|
-
exports.ListImages$ = ListImages$;
|
|
4428
1471
|
exports.ListImagesCommand = ListImagesCommand;
|
|
4429
|
-
exports.ListImagesRequest$ = ListImagesRequest$;
|
|
4430
|
-
exports.ListImagesResponse$ = ListImagesResponse$;
|
|
4431
|
-
exports.ListInfrastructureConfigurations$ = ListInfrastructureConfigurations$;
|
|
4432
1472
|
exports.ListInfrastructureConfigurationsCommand = ListInfrastructureConfigurationsCommand;
|
|
4433
|
-
exports.ListInfrastructureConfigurationsRequest$ = ListInfrastructureConfigurationsRequest$;
|
|
4434
|
-
exports.ListInfrastructureConfigurationsResponse$ = ListInfrastructureConfigurationsResponse$;
|
|
4435
|
-
exports.ListLifecycleExecutionResources$ = ListLifecycleExecutionResources$;
|
|
4436
1473
|
exports.ListLifecycleExecutionResourcesCommand = ListLifecycleExecutionResourcesCommand;
|
|
4437
|
-
exports.ListLifecycleExecutionResourcesRequest$ = ListLifecycleExecutionResourcesRequest$;
|
|
4438
|
-
exports.ListLifecycleExecutionResourcesResponse$ = ListLifecycleExecutionResourcesResponse$;
|
|
4439
|
-
exports.ListLifecycleExecutions$ = ListLifecycleExecutions$;
|
|
4440
1474
|
exports.ListLifecycleExecutionsCommand = ListLifecycleExecutionsCommand;
|
|
4441
|
-
exports.ListLifecycleExecutionsRequest$ = ListLifecycleExecutionsRequest$;
|
|
4442
|
-
exports.ListLifecycleExecutionsResponse$ = ListLifecycleExecutionsResponse$;
|
|
4443
|
-
exports.ListLifecyclePolicies$ = ListLifecyclePolicies$;
|
|
4444
1475
|
exports.ListLifecyclePoliciesCommand = ListLifecyclePoliciesCommand;
|
|
4445
|
-
exports.ListLifecyclePoliciesRequest$ = ListLifecyclePoliciesRequest$;
|
|
4446
|
-
exports.ListLifecyclePoliciesResponse$ = ListLifecyclePoliciesResponse$;
|
|
4447
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
4448
1476
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4449
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4450
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
4451
|
-
exports.ListWaitingWorkflowSteps$ = ListWaitingWorkflowSteps$;
|
|
4452
1477
|
exports.ListWaitingWorkflowStepsCommand = ListWaitingWorkflowStepsCommand;
|
|
4453
|
-
exports.ListWaitingWorkflowStepsRequest$ = ListWaitingWorkflowStepsRequest$;
|
|
4454
|
-
exports.ListWaitingWorkflowStepsResponse$ = ListWaitingWorkflowStepsResponse$;
|
|
4455
|
-
exports.ListWorkflowBuildVersions$ = ListWorkflowBuildVersions$;
|
|
4456
1478
|
exports.ListWorkflowBuildVersionsCommand = ListWorkflowBuildVersionsCommand;
|
|
4457
|
-
exports.ListWorkflowBuildVersionsRequest$ = ListWorkflowBuildVersionsRequest$;
|
|
4458
|
-
exports.ListWorkflowBuildVersionsResponse$ = ListWorkflowBuildVersionsResponse$;
|
|
4459
|
-
exports.ListWorkflowExecutions$ = ListWorkflowExecutions$;
|
|
4460
1479
|
exports.ListWorkflowExecutionsCommand = ListWorkflowExecutionsCommand;
|
|
4461
|
-
exports.ListWorkflowExecutionsRequest$ = ListWorkflowExecutionsRequest$;
|
|
4462
|
-
exports.ListWorkflowExecutionsResponse$ = ListWorkflowExecutionsResponse$;
|
|
4463
|
-
exports.ListWorkflowStepExecutions$ = ListWorkflowStepExecutions$;
|
|
4464
1480
|
exports.ListWorkflowStepExecutionsCommand = ListWorkflowStepExecutionsCommand;
|
|
4465
|
-
exports.ListWorkflowStepExecutionsRequest$ = ListWorkflowStepExecutionsRequest$;
|
|
4466
|
-
exports.ListWorkflowStepExecutionsResponse$ = ListWorkflowStepExecutionsResponse$;
|
|
4467
|
-
exports.ListWorkflows$ = ListWorkflows$;
|
|
4468
1481
|
exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
4469
|
-
exports.ListWorkflowsRequest$ = ListWorkflowsRequest$;
|
|
4470
|
-
exports.ListWorkflowsResponse$ = ListWorkflowsResponse$;
|
|
4471
|
-
exports.Logging$ = Logging$;
|
|
4472
1482
|
exports.MarketplaceResourceType = MarketplaceResourceType;
|
|
4473
1483
|
exports.OnWorkflowFailure = OnWorkflowFailure;
|
|
4474
|
-
exports.OutputResources$ = OutputResources$;
|
|
4475
1484
|
exports.Ownership = Ownership;
|
|
4476
|
-
exports.PackageVulnerabilityDetails$ = PackageVulnerabilityDetails$;
|
|
4477
1485
|
exports.PipelineExecutionStartCondition = PipelineExecutionStartCondition;
|
|
4478
|
-
exports.PipelineLoggingConfiguration$ = PipelineLoggingConfiguration$;
|
|
4479
1486
|
exports.PipelineStatus = PipelineStatus;
|
|
4480
|
-
exports.Placement$ = Placement$;
|
|
4481
1487
|
exports.Platform = Platform;
|
|
4482
|
-
exports.ProductCodeListItem$ = ProductCodeListItem$;
|
|
4483
1488
|
exports.ProductCodeType = ProductCodeType;
|
|
4484
|
-
exports.PutComponentPolicy$ = PutComponentPolicy$;
|
|
4485
1489
|
exports.PutComponentPolicyCommand = PutComponentPolicyCommand;
|
|
4486
|
-
exports.PutComponentPolicyRequest$ = PutComponentPolicyRequest$;
|
|
4487
|
-
exports.PutComponentPolicyResponse$ = PutComponentPolicyResponse$;
|
|
4488
|
-
exports.PutContainerRecipePolicy$ = PutContainerRecipePolicy$;
|
|
4489
1490
|
exports.PutContainerRecipePolicyCommand = PutContainerRecipePolicyCommand;
|
|
4490
|
-
exports.PutContainerRecipePolicyRequest$ = PutContainerRecipePolicyRequest$;
|
|
4491
|
-
exports.PutContainerRecipePolicyResponse$ = PutContainerRecipePolicyResponse$;
|
|
4492
|
-
exports.PutImagePolicy$ = PutImagePolicy$;
|
|
4493
1491
|
exports.PutImagePolicyCommand = PutImagePolicyCommand;
|
|
4494
|
-
exports.PutImagePolicyRequest$ = PutImagePolicyRequest$;
|
|
4495
|
-
exports.PutImagePolicyResponse$ = PutImagePolicyResponse$;
|
|
4496
|
-
exports.PutImageRecipePolicy$ = PutImageRecipePolicy$;
|
|
4497
1492
|
exports.PutImageRecipePolicyCommand = PutImageRecipePolicyCommand;
|
|
4498
|
-
exports.PutImageRecipePolicyRequest$ = PutImageRecipePolicyRequest$;
|
|
4499
|
-
exports.PutImageRecipePolicyResponse$ = PutImageRecipePolicyResponse$;
|
|
4500
|
-
exports.Remediation$ = Remediation$;
|
|
4501
|
-
exports.RemediationRecommendation$ = RemediationRecommendation$;
|
|
4502
|
-
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
4503
|
-
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
4504
|
-
exports.ResourceDependencyException = ResourceDependencyException;
|
|
4505
|
-
exports.ResourceDependencyException$ = ResourceDependencyException$;
|
|
4506
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
4507
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
4508
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
4509
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
4510
|
-
exports.ResourceState$ = ResourceState$;
|
|
4511
|
-
exports.ResourceStateUpdateExclusionRules$ = ResourceStateUpdateExclusionRules$;
|
|
4512
|
-
exports.ResourceStateUpdateIncludeResources$ = ResourceStateUpdateIncludeResources$;
|
|
4513
1493
|
exports.ResourceStatus = ResourceStatus;
|
|
4514
|
-
exports.RetryImage$ = RetryImage$;
|
|
4515
1494
|
exports.RetryImageCommand = RetryImageCommand;
|
|
4516
|
-
exports.RetryImageRequest$ = RetryImageRequest$;
|
|
4517
|
-
exports.RetryImageResponse$ = RetryImageResponse$;
|
|
4518
|
-
exports.S3ExportConfiguration$ = S3ExportConfiguration$;
|
|
4519
|
-
exports.S3Logs$ = S3Logs$;
|
|
4520
|
-
exports.Schedule$ = Schedule$;
|
|
4521
|
-
exports.SendWorkflowStepAction$ = SendWorkflowStepAction$;
|
|
4522
1495
|
exports.SendWorkflowStepActionCommand = SendWorkflowStepActionCommand;
|
|
4523
|
-
exports.SendWorkflowStepActionRequest$ = SendWorkflowStepActionRequest$;
|
|
4524
|
-
exports.SendWorkflowStepActionResponse$ = SendWorkflowStepActionResponse$;
|
|
4525
|
-
exports.ServiceException = ServiceException;
|
|
4526
|
-
exports.ServiceException$ = ServiceException$;
|
|
4527
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
4528
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
4529
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
4530
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
4531
|
-
exports.SeverityCounts$ = SeverityCounts$;
|
|
4532
|
-
exports.SsmParameterConfiguration$ = SsmParameterConfiguration$;
|
|
4533
1496
|
exports.SsmParameterDataType = SsmParameterDataType;
|
|
4534
|
-
exports.StartImagePipelineExecution$ = StartImagePipelineExecution$;
|
|
4535
1497
|
exports.StartImagePipelineExecutionCommand = StartImagePipelineExecutionCommand;
|
|
4536
|
-
exports.StartImagePipelineExecutionRequest$ = StartImagePipelineExecutionRequest$;
|
|
4537
|
-
exports.StartImagePipelineExecutionResponse$ = StartImagePipelineExecutionResponse$;
|
|
4538
|
-
exports.StartResourceStateUpdate$ = StartResourceStateUpdate$;
|
|
4539
1498
|
exports.StartResourceStateUpdateCommand = StartResourceStateUpdateCommand;
|
|
4540
|
-
exports.StartResourceStateUpdateRequest$ = StartResourceStateUpdateRequest$;
|
|
4541
|
-
exports.StartResourceStateUpdateResponse$ = StartResourceStateUpdateResponse$;
|
|
4542
|
-
exports.SystemsManagerAgent$ = SystemsManagerAgent$;
|
|
4543
|
-
exports.TagResource$ = TagResource$;
|
|
4544
1499
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4545
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4546
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
4547
|
-
exports.TargetContainerRepository$ = TargetContainerRepository$;
|
|
4548
1500
|
exports.TenancyType = TenancyType;
|
|
4549
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
4550
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
4551
|
-
exports.UntagResource$ = UntagResource$;
|
|
4552
1501
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4553
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4554
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4555
|
-
exports.UpdateDistributionConfiguration$ = UpdateDistributionConfiguration$;
|
|
4556
1502
|
exports.UpdateDistributionConfigurationCommand = UpdateDistributionConfigurationCommand;
|
|
4557
|
-
exports.UpdateDistributionConfigurationRequest$ = UpdateDistributionConfigurationRequest$;
|
|
4558
|
-
exports.UpdateDistributionConfigurationResponse$ = UpdateDistributionConfigurationResponse$;
|
|
4559
|
-
exports.UpdateImagePipeline$ = UpdateImagePipeline$;
|
|
4560
1503
|
exports.UpdateImagePipelineCommand = UpdateImagePipelineCommand;
|
|
4561
|
-
exports.UpdateImagePipelineRequest$ = UpdateImagePipelineRequest$;
|
|
4562
|
-
exports.UpdateImagePipelineResponse$ = UpdateImagePipelineResponse$;
|
|
4563
|
-
exports.UpdateInfrastructureConfiguration$ = UpdateInfrastructureConfiguration$;
|
|
4564
1504
|
exports.UpdateInfrastructureConfigurationCommand = UpdateInfrastructureConfigurationCommand;
|
|
4565
|
-
exports.UpdateInfrastructureConfigurationRequest$ = UpdateInfrastructureConfigurationRequest$;
|
|
4566
|
-
exports.UpdateInfrastructureConfigurationResponse$ = UpdateInfrastructureConfigurationResponse$;
|
|
4567
|
-
exports.UpdateLifecyclePolicy$ = UpdateLifecyclePolicy$;
|
|
4568
1505
|
exports.UpdateLifecyclePolicyCommand = UpdateLifecyclePolicyCommand;
|
|
4569
|
-
exports.UpdateLifecyclePolicyRequest$ = UpdateLifecyclePolicyRequest$;
|
|
4570
|
-
exports.UpdateLifecyclePolicyResponse$ = UpdateLifecyclePolicyResponse$;
|
|
4571
|
-
exports.VulnerabilityIdAggregation$ = VulnerabilityIdAggregation$;
|
|
4572
|
-
exports.VulnerablePackage$ = VulnerablePackage$;
|
|
4573
|
-
exports.Workflow$ = Workflow$;
|
|
4574
|
-
exports.WorkflowConfiguration$ = WorkflowConfiguration$;
|
|
4575
|
-
exports.WorkflowExecutionMetadata$ = WorkflowExecutionMetadata$;
|
|
4576
1506
|
exports.WorkflowExecutionStatus = WorkflowExecutionStatus;
|
|
4577
|
-
exports.WorkflowParameter$ = WorkflowParameter$;
|
|
4578
|
-
exports.WorkflowParameterDetail$ = WorkflowParameterDetail$;
|
|
4579
|
-
exports.WorkflowState$ = WorkflowState$;
|
|
4580
1507
|
exports.WorkflowStatus = WorkflowStatus;
|
|
4581
1508
|
exports.WorkflowStepActionType = WorkflowStepActionType;
|
|
4582
|
-
exports.WorkflowStepExecution$ = WorkflowStepExecution$;
|
|
4583
1509
|
exports.WorkflowStepExecutionRollbackStatus = WorkflowStepExecutionRollbackStatus;
|
|
4584
1510
|
exports.WorkflowStepExecutionStatus = WorkflowStepExecutionStatus;
|
|
4585
|
-
exports.WorkflowStepMetadata$ = WorkflowStepMetadata$;
|
|
4586
|
-
exports.WorkflowSummary$ = WorkflowSummary$;
|
|
4587
1511
|
exports.WorkflowType = WorkflowType;
|
|
4588
|
-
exports.WorkflowVersion$ = WorkflowVersion$;
|
|
4589
1512
|
exports.paginateListComponentBuildVersions = paginateListComponentBuildVersions;
|
|
4590
1513
|
exports.paginateListComponents = paginateListComponents;
|
|
4591
1514
|
exports.paginateListContainerRecipes = paginateListContainerRecipes;
|
|
@@ -4607,3 +1530,15 @@ exports.paginateListWorkflowBuildVersions = paginateListWorkflowBuildVersions;
|
|
|
4607
1530
|
exports.paginateListWorkflowExecutions = paginateListWorkflowExecutions;
|
|
4608
1531
|
exports.paginateListWorkflowStepExecutions = paginateListWorkflowStepExecutions;
|
|
4609
1532
|
exports.paginateListWorkflows = paginateListWorkflows;
|
|
1533
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1534
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1535
|
+
enumerable: true,
|
|
1536
|
+
get: function () { return schemas_0[k]; }
|
|
1537
|
+
});
|
|
1538
|
+
});
|
|
1539
|
+
Object.keys(errors).forEach(function (k) {
|
|
1540
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1541
|
+
enumerable: true,
|
|
1542
|
+
get: function () { return errors[k]; }
|
|
1543
|
+
});
|
|
1544
|
+
});
|