@aws-sdk/client-auditmanager 3.721.0 → 3.723.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 +321 -226
- package/dist-es/AuditManagerClient.js +1 -0
- package/dist-es/models/models_0.js +16 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -304,7 +304,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
304
304
|
}, "resolveRuntimeExtensions");
|
|
305
305
|
|
|
306
306
|
// src/AuditManagerClient.ts
|
|
307
|
-
var
|
|
307
|
+
var AuditManagerClient = class extends import_smithy_client.Client {
|
|
308
|
+
static {
|
|
309
|
+
__name(this, "AuditManagerClient");
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* The resolved configuration of AuditManagerClient class. This is resolved and normalized from the {@link AuditManagerClientConfig | constructor configuration interface}.
|
|
313
|
+
*/
|
|
314
|
+
config;
|
|
308
315
|
constructor(...[configuration]) {
|
|
309
316
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
310
317
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -314,7 +321,7 @@ var _AuditManagerClient = class _AuditManagerClient extends import_smithy_client
|
|
|
314
321
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
315
322
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
316
323
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
317
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
324
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
318
325
|
super(_config_8);
|
|
319
326
|
this.config = _config_8;
|
|
320
327
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -342,8 +349,6 @@ var _AuditManagerClient = class _AuditManagerClient extends import_smithy_client
|
|
|
342
349
|
super.destroy();
|
|
343
350
|
}
|
|
344
351
|
};
|
|
345
|
-
__name(_AuditManagerClient, "AuditManagerClient");
|
|
346
|
-
var AuditManagerClient = _AuditManagerClient;
|
|
347
352
|
|
|
348
353
|
// src/AuditManager.ts
|
|
349
354
|
|
|
@@ -360,7 +365,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
360
365
|
|
|
361
366
|
// src/models/AuditManagerServiceException.ts
|
|
362
367
|
|
|
363
|
-
var
|
|
368
|
+
var AuditManagerServiceException = class _AuditManagerServiceException extends import_smithy_client.ServiceException {
|
|
369
|
+
static {
|
|
370
|
+
__name(this, "AuditManagerServiceException");
|
|
371
|
+
}
|
|
364
372
|
/**
|
|
365
373
|
* @internal
|
|
366
374
|
*/
|
|
@@ -369,12 +377,15 @@ var _AuditManagerServiceException = class _AuditManagerServiceException extends
|
|
|
369
377
|
Object.setPrototypeOf(this, _AuditManagerServiceException.prototype);
|
|
370
378
|
}
|
|
371
379
|
};
|
|
372
|
-
__name(_AuditManagerServiceException, "AuditManagerServiceException");
|
|
373
|
-
var AuditManagerServiceException = _AuditManagerServiceException;
|
|
374
380
|
|
|
375
381
|
// src/models/models_0.ts
|
|
376
382
|
|
|
377
|
-
var
|
|
383
|
+
var AccessDeniedException = class _AccessDeniedException extends AuditManagerServiceException {
|
|
384
|
+
static {
|
|
385
|
+
__name(this, "AccessDeniedException");
|
|
386
|
+
}
|
|
387
|
+
name = "AccessDeniedException";
|
|
388
|
+
$fault = "client";
|
|
378
389
|
/**
|
|
379
390
|
* @internal
|
|
380
391
|
*/
|
|
@@ -384,13 +395,9 @@ var _AccessDeniedException = class _AccessDeniedException extends AuditManagerSe
|
|
|
384
395
|
$fault: "client",
|
|
385
396
|
...opts
|
|
386
397
|
});
|
|
387
|
-
this.name = "AccessDeniedException";
|
|
388
|
-
this.$fault = "client";
|
|
389
398
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
390
399
|
}
|
|
391
400
|
};
|
|
392
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
393
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
394
401
|
var AccountStatus = {
|
|
395
402
|
ACTIVE: "ACTIVE",
|
|
396
403
|
INACTIVE: "INACTIVE",
|
|
@@ -457,7 +464,12 @@ var AssessmentReportStatus = {
|
|
|
457
464
|
FAILED: "FAILED",
|
|
458
465
|
IN_PROGRESS: "IN_PROGRESS"
|
|
459
466
|
};
|
|
460
|
-
var
|
|
467
|
+
var InternalServerException = class _InternalServerException extends AuditManagerServiceException {
|
|
468
|
+
static {
|
|
469
|
+
__name(this, "InternalServerException");
|
|
470
|
+
}
|
|
471
|
+
name = "InternalServerException";
|
|
472
|
+
$fault = "server";
|
|
461
473
|
/**
|
|
462
474
|
* @internal
|
|
463
475
|
*/
|
|
@@ -467,14 +479,25 @@ var _InternalServerException = class _InternalServerException extends AuditManag
|
|
|
467
479
|
$fault: "server",
|
|
468
480
|
...opts
|
|
469
481
|
});
|
|
470
|
-
this.name = "InternalServerException";
|
|
471
|
-
this.$fault = "server";
|
|
472
482
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
473
483
|
}
|
|
474
484
|
};
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
485
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends AuditManagerServiceException {
|
|
486
|
+
static {
|
|
487
|
+
__name(this, "ResourceNotFoundException");
|
|
488
|
+
}
|
|
489
|
+
name = "ResourceNotFoundException";
|
|
490
|
+
$fault = "client";
|
|
491
|
+
/**
|
|
492
|
+
* <p> The unique identifier for the resource. </p>
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
resourceId;
|
|
496
|
+
/**
|
|
497
|
+
* <p> The type of resource that's affected by the error. </p>
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
500
|
+
resourceType;
|
|
478
501
|
/**
|
|
479
502
|
* @internal
|
|
480
503
|
*/
|
|
@@ -484,22 +507,33 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends AuditM
|
|
|
484
507
|
$fault: "client",
|
|
485
508
|
...opts
|
|
486
509
|
});
|
|
487
|
-
this.name = "ResourceNotFoundException";
|
|
488
|
-
this.$fault = "client";
|
|
489
510
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
490
511
|
this.resourceId = opts.resourceId;
|
|
491
512
|
this.resourceType = opts.resourceType;
|
|
492
513
|
}
|
|
493
514
|
};
|
|
494
|
-
__name(_ResourceNotFoundException, "ResourceNotFoundException");
|
|
495
|
-
var ResourceNotFoundException = _ResourceNotFoundException;
|
|
496
515
|
var ValidationExceptionReason = {
|
|
497
516
|
CANNOT_PARSE: "cannotParse",
|
|
498
517
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
499
518
|
OTHER: "other",
|
|
500
519
|
UNKNOWN_OPERATION: "unknownOperation"
|
|
501
520
|
};
|
|
502
|
-
var
|
|
521
|
+
var ValidationException = class _ValidationException extends AuditManagerServiceException {
|
|
522
|
+
static {
|
|
523
|
+
__name(this, "ValidationException");
|
|
524
|
+
}
|
|
525
|
+
name = "ValidationException";
|
|
526
|
+
$fault = "client";
|
|
527
|
+
/**
|
|
528
|
+
* <p> The reason the request failed validation. </p>
|
|
529
|
+
* @public
|
|
530
|
+
*/
|
|
531
|
+
reason;
|
|
532
|
+
/**
|
|
533
|
+
* <p> The fields that caused the error, if applicable. </p>
|
|
534
|
+
* @public
|
|
535
|
+
*/
|
|
536
|
+
fields;
|
|
503
537
|
/**
|
|
504
538
|
* @internal
|
|
505
539
|
*/
|
|
@@ -509,16 +543,17 @@ var _ValidationException = class _ValidationException extends AuditManagerServic
|
|
|
509
543
|
$fault: "client",
|
|
510
544
|
...opts
|
|
511
545
|
});
|
|
512
|
-
this.name = "ValidationException";
|
|
513
|
-
this.$fault = "client";
|
|
514
546
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
515
547
|
this.reason = opts.reason;
|
|
516
548
|
this.fields = opts.fields;
|
|
517
549
|
}
|
|
518
550
|
};
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
551
|
+
var ThrottlingException = class _ThrottlingException extends AuditManagerServiceException {
|
|
552
|
+
static {
|
|
553
|
+
__name(this, "ThrottlingException");
|
|
554
|
+
}
|
|
555
|
+
name = "ThrottlingException";
|
|
556
|
+
$fault = "client";
|
|
522
557
|
/**
|
|
523
558
|
* @internal
|
|
524
559
|
*/
|
|
@@ -528,14 +563,15 @@ var _ThrottlingException = class _ThrottlingException extends AuditManagerServic
|
|
|
528
563
|
$fault: "client",
|
|
529
564
|
...opts
|
|
530
565
|
});
|
|
531
|
-
this.name = "ThrottlingException";
|
|
532
|
-
this.$fault = "client";
|
|
533
566
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
534
567
|
}
|
|
535
568
|
};
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
569
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends AuditManagerServiceException {
|
|
570
|
+
static {
|
|
571
|
+
__name(this, "ServiceQuotaExceededException");
|
|
572
|
+
}
|
|
573
|
+
name = "ServiceQuotaExceededException";
|
|
574
|
+
$fault = "client";
|
|
539
575
|
/**
|
|
540
576
|
* @internal
|
|
541
577
|
*/
|
|
@@ -545,13 +581,9 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
545
581
|
$fault: "client",
|
|
546
582
|
...opts
|
|
547
583
|
});
|
|
548
|
-
this.name = "ServiceQuotaExceededException";
|
|
549
|
-
this.$fault = "client";
|
|
550
584
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
551
585
|
}
|
|
552
586
|
};
|
|
553
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
554
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
555
587
|
var SourceFrequency = {
|
|
556
588
|
DAILY: "DAILY",
|
|
557
589
|
MONTHLY: "MONTHLY",
|
|
@@ -3278,35 +3310,37 @@ var _so = "source";
|
|
|
3278
3310
|
var _tK = "tagKeys";
|
|
3279
3311
|
|
|
3280
3312
|
// src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts
|
|
3281
|
-
var
|
|
3313
|
+
var AssociateAssessmentReportEvidenceFolderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3282
3314
|
return [
|
|
3283
3315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3284
3316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3285
3317
|
];
|
|
3286
3318
|
}).s("BedrockAssessmentManagerLambda", "AssociateAssessmentReportEvidenceFolder", {}).n("AuditManagerClient", "AssociateAssessmentReportEvidenceFolderCommand").f(void 0, void 0).ser(se_AssociateAssessmentReportEvidenceFolderCommand).de(de_AssociateAssessmentReportEvidenceFolderCommand).build() {
|
|
3319
|
+
static {
|
|
3320
|
+
__name(this, "AssociateAssessmentReportEvidenceFolderCommand");
|
|
3321
|
+
}
|
|
3287
3322
|
};
|
|
3288
|
-
__name(_AssociateAssessmentReportEvidenceFolderCommand, "AssociateAssessmentReportEvidenceFolderCommand");
|
|
3289
|
-
var AssociateAssessmentReportEvidenceFolderCommand = _AssociateAssessmentReportEvidenceFolderCommand;
|
|
3290
3323
|
|
|
3291
3324
|
// src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts
|
|
3292
3325
|
|
|
3293
3326
|
|
|
3294
3327
|
|
|
3295
|
-
var
|
|
3328
|
+
var BatchAssociateAssessmentReportEvidenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3296
3329
|
return [
|
|
3297
3330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3298
3331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3299
3332
|
];
|
|
3300
3333
|
}).s("BedrockAssessmentManagerLambda", "BatchAssociateAssessmentReportEvidence", {}).n("AuditManagerClient", "BatchAssociateAssessmentReportEvidenceCommand").f(void 0, void 0).ser(se_BatchAssociateAssessmentReportEvidenceCommand).de(de_BatchAssociateAssessmentReportEvidenceCommand).build() {
|
|
3334
|
+
static {
|
|
3335
|
+
__name(this, "BatchAssociateAssessmentReportEvidenceCommand");
|
|
3336
|
+
}
|
|
3301
3337
|
};
|
|
3302
|
-
__name(_BatchAssociateAssessmentReportEvidenceCommand, "BatchAssociateAssessmentReportEvidenceCommand");
|
|
3303
|
-
var BatchAssociateAssessmentReportEvidenceCommand = _BatchAssociateAssessmentReportEvidenceCommand;
|
|
3304
3338
|
|
|
3305
3339
|
// src/commands/BatchCreateDelegationByAssessmentCommand.ts
|
|
3306
3340
|
|
|
3307
3341
|
|
|
3308
3342
|
|
|
3309
|
-
var
|
|
3343
|
+
var BatchCreateDelegationByAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3310
3344
|
return [
|
|
3311
3345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3312
3346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3315,43 +3349,46 @@ var _BatchCreateDelegationByAssessmentCommand = class _BatchCreateDelegationByAs
|
|
|
3315
3349
|
BatchCreateDelegationByAssessmentRequestFilterSensitiveLog,
|
|
3316
3350
|
BatchCreateDelegationByAssessmentResponseFilterSensitiveLog
|
|
3317
3351
|
).ser(se_BatchCreateDelegationByAssessmentCommand).de(de_BatchCreateDelegationByAssessmentCommand).build() {
|
|
3352
|
+
static {
|
|
3353
|
+
__name(this, "BatchCreateDelegationByAssessmentCommand");
|
|
3354
|
+
}
|
|
3318
3355
|
};
|
|
3319
|
-
__name(_BatchCreateDelegationByAssessmentCommand, "BatchCreateDelegationByAssessmentCommand");
|
|
3320
|
-
var BatchCreateDelegationByAssessmentCommand = _BatchCreateDelegationByAssessmentCommand;
|
|
3321
3356
|
|
|
3322
3357
|
// src/commands/BatchDeleteDelegationByAssessmentCommand.ts
|
|
3323
3358
|
|
|
3324
3359
|
|
|
3325
3360
|
|
|
3326
|
-
var
|
|
3361
|
+
var BatchDeleteDelegationByAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3327
3362
|
return [
|
|
3328
3363
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3329
3364
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3330
3365
|
];
|
|
3331
3366
|
}).s("BedrockAssessmentManagerLambda", "BatchDeleteDelegationByAssessment", {}).n("AuditManagerClient", "BatchDeleteDelegationByAssessmentCommand").f(void 0, BatchDeleteDelegationByAssessmentResponseFilterSensitiveLog).ser(se_BatchDeleteDelegationByAssessmentCommand).de(de_BatchDeleteDelegationByAssessmentCommand).build() {
|
|
3367
|
+
static {
|
|
3368
|
+
__name(this, "BatchDeleteDelegationByAssessmentCommand");
|
|
3369
|
+
}
|
|
3332
3370
|
};
|
|
3333
|
-
__name(_BatchDeleteDelegationByAssessmentCommand, "BatchDeleteDelegationByAssessmentCommand");
|
|
3334
|
-
var BatchDeleteDelegationByAssessmentCommand = _BatchDeleteDelegationByAssessmentCommand;
|
|
3335
3371
|
|
|
3336
3372
|
// src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts
|
|
3337
3373
|
|
|
3338
3374
|
|
|
3339
3375
|
|
|
3340
|
-
var
|
|
3376
|
+
var BatchDisassociateAssessmentReportEvidenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3341
3377
|
return [
|
|
3342
3378
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3343
3379
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3344
3380
|
];
|
|
3345
3381
|
}).s("BedrockAssessmentManagerLambda", "BatchDisassociateAssessmentReportEvidence", {}).n("AuditManagerClient", "BatchDisassociateAssessmentReportEvidenceCommand").f(void 0, void 0).ser(se_BatchDisassociateAssessmentReportEvidenceCommand).de(de_BatchDisassociateAssessmentReportEvidenceCommand).build() {
|
|
3382
|
+
static {
|
|
3383
|
+
__name(this, "BatchDisassociateAssessmentReportEvidenceCommand");
|
|
3384
|
+
}
|
|
3346
3385
|
};
|
|
3347
|
-
__name(_BatchDisassociateAssessmentReportEvidenceCommand, "BatchDisassociateAssessmentReportEvidenceCommand");
|
|
3348
|
-
var BatchDisassociateAssessmentReportEvidenceCommand = _BatchDisassociateAssessmentReportEvidenceCommand;
|
|
3349
3386
|
|
|
3350
3387
|
// src/commands/BatchImportEvidenceToAssessmentControlCommand.ts
|
|
3351
3388
|
|
|
3352
3389
|
|
|
3353
3390
|
|
|
3354
|
-
var
|
|
3391
|
+
var BatchImportEvidenceToAssessmentControlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3355
3392
|
return [
|
|
3356
3393
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3357
3394
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3360,701 +3397,751 @@ var _BatchImportEvidenceToAssessmentControlCommand = class _BatchImportEvidenceT
|
|
|
3360
3397
|
BatchImportEvidenceToAssessmentControlRequestFilterSensitiveLog,
|
|
3361
3398
|
BatchImportEvidenceToAssessmentControlResponseFilterSensitiveLog
|
|
3362
3399
|
).ser(se_BatchImportEvidenceToAssessmentControlCommand).de(de_BatchImportEvidenceToAssessmentControlCommand).build() {
|
|
3400
|
+
static {
|
|
3401
|
+
__name(this, "BatchImportEvidenceToAssessmentControlCommand");
|
|
3402
|
+
}
|
|
3363
3403
|
};
|
|
3364
|
-
__name(_BatchImportEvidenceToAssessmentControlCommand, "BatchImportEvidenceToAssessmentControlCommand");
|
|
3365
|
-
var BatchImportEvidenceToAssessmentControlCommand = _BatchImportEvidenceToAssessmentControlCommand;
|
|
3366
3404
|
|
|
3367
3405
|
// src/commands/CreateAssessmentCommand.ts
|
|
3368
3406
|
|
|
3369
3407
|
|
|
3370
3408
|
|
|
3371
|
-
var
|
|
3409
|
+
var CreateAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3372
3410
|
return [
|
|
3373
3411
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3374
3412
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3375
3413
|
];
|
|
3376
3414
|
}).s("BedrockAssessmentManagerLambda", "CreateAssessment", {}).n("AuditManagerClient", "CreateAssessmentCommand").f(CreateAssessmentRequestFilterSensitiveLog, CreateAssessmentResponseFilterSensitiveLog).ser(se_CreateAssessmentCommand).de(de_CreateAssessmentCommand).build() {
|
|
3415
|
+
static {
|
|
3416
|
+
__name(this, "CreateAssessmentCommand");
|
|
3417
|
+
}
|
|
3377
3418
|
};
|
|
3378
|
-
__name(_CreateAssessmentCommand, "CreateAssessmentCommand");
|
|
3379
|
-
var CreateAssessmentCommand = _CreateAssessmentCommand;
|
|
3380
3419
|
|
|
3381
3420
|
// src/commands/CreateAssessmentFrameworkCommand.ts
|
|
3382
3421
|
|
|
3383
3422
|
|
|
3384
3423
|
|
|
3385
|
-
var
|
|
3424
|
+
var CreateAssessmentFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3386
3425
|
return [
|
|
3387
3426
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3388
3427
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3389
3428
|
];
|
|
3390
3429
|
}).s("BedrockAssessmentManagerLambda", "CreateAssessmentFramework", {}).n("AuditManagerClient", "CreateAssessmentFrameworkCommand").f(CreateAssessmentFrameworkRequestFilterSensitiveLog, CreateAssessmentFrameworkResponseFilterSensitiveLog).ser(se_CreateAssessmentFrameworkCommand).de(de_CreateAssessmentFrameworkCommand).build() {
|
|
3430
|
+
static {
|
|
3431
|
+
__name(this, "CreateAssessmentFrameworkCommand");
|
|
3432
|
+
}
|
|
3391
3433
|
};
|
|
3392
|
-
__name(_CreateAssessmentFrameworkCommand, "CreateAssessmentFrameworkCommand");
|
|
3393
|
-
var CreateAssessmentFrameworkCommand = _CreateAssessmentFrameworkCommand;
|
|
3394
3434
|
|
|
3395
3435
|
// src/commands/CreateAssessmentReportCommand.ts
|
|
3396
3436
|
|
|
3397
3437
|
|
|
3398
3438
|
|
|
3399
|
-
var
|
|
3439
|
+
var CreateAssessmentReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3400
3440
|
return [
|
|
3401
3441
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3402
3442
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3403
3443
|
];
|
|
3404
3444
|
}).s("BedrockAssessmentManagerLambda", "CreateAssessmentReport", {}).n("AuditManagerClient", "CreateAssessmentReportCommand").f(CreateAssessmentReportRequestFilterSensitiveLog, CreateAssessmentReportResponseFilterSensitiveLog).ser(se_CreateAssessmentReportCommand).de(de_CreateAssessmentReportCommand).build() {
|
|
3445
|
+
static {
|
|
3446
|
+
__name(this, "CreateAssessmentReportCommand");
|
|
3447
|
+
}
|
|
3405
3448
|
};
|
|
3406
|
-
__name(_CreateAssessmentReportCommand, "CreateAssessmentReportCommand");
|
|
3407
|
-
var CreateAssessmentReportCommand = _CreateAssessmentReportCommand;
|
|
3408
3449
|
|
|
3409
3450
|
// src/commands/CreateControlCommand.ts
|
|
3410
3451
|
|
|
3411
3452
|
|
|
3412
3453
|
|
|
3413
|
-
var
|
|
3454
|
+
var CreateControlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3414
3455
|
return [
|
|
3415
3456
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3416
3457
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3417
3458
|
];
|
|
3418
3459
|
}).s("BedrockAssessmentManagerLambda", "CreateControl", {}).n("AuditManagerClient", "CreateControlCommand").f(CreateControlRequestFilterSensitiveLog, CreateControlResponseFilterSensitiveLog).ser(se_CreateControlCommand).de(de_CreateControlCommand).build() {
|
|
3460
|
+
static {
|
|
3461
|
+
__name(this, "CreateControlCommand");
|
|
3462
|
+
}
|
|
3419
3463
|
};
|
|
3420
|
-
__name(_CreateControlCommand, "CreateControlCommand");
|
|
3421
|
-
var CreateControlCommand = _CreateControlCommand;
|
|
3422
3464
|
|
|
3423
3465
|
// src/commands/DeleteAssessmentCommand.ts
|
|
3424
3466
|
|
|
3425
3467
|
|
|
3426
3468
|
|
|
3427
|
-
var
|
|
3469
|
+
var DeleteAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3428
3470
|
return [
|
|
3429
3471
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3430
3472
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3431
3473
|
];
|
|
3432
3474
|
}).s("BedrockAssessmentManagerLambda", "DeleteAssessment", {}).n("AuditManagerClient", "DeleteAssessmentCommand").f(void 0, void 0).ser(se_DeleteAssessmentCommand).de(de_DeleteAssessmentCommand).build() {
|
|
3475
|
+
static {
|
|
3476
|
+
__name(this, "DeleteAssessmentCommand");
|
|
3477
|
+
}
|
|
3433
3478
|
};
|
|
3434
|
-
__name(_DeleteAssessmentCommand, "DeleteAssessmentCommand");
|
|
3435
|
-
var DeleteAssessmentCommand = _DeleteAssessmentCommand;
|
|
3436
3479
|
|
|
3437
3480
|
// src/commands/DeleteAssessmentFrameworkCommand.ts
|
|
3438
3481
|
|
|
3439
3482
|
|
|
3440
3483
|
|
|
3441
|
-
var
|
|
3484
|
+
var DeleteAssessmentFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3442
3485
|
return [
|
|
3443
3486
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3444
3487
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3445
3488
|
];
|
|
3446
3489
|
}).s("BedrockAssessmentManagerLambda", "DeleteAssessmentFramework", {}).n("AuditManagerClient", "DeleteAssessmentFrameworkCommand").f(void 0, void 0).ser(se_DeleteAssessmentFrameworkCommand).de(de_DeleteAssessmentFrameworkCommand).build() {
|
|
3490
|
+
static {
|
|
3491
|
+
__name(this, "DeleteAssessmentFrameworkCommand");
|
|
3492
|
+
}
|
|
3447
3493
|
};
|
|
3448
|
-
__name(_DeleteAssessmentFrameworkCommand, "DeleteAssessmentFrameworkCommand");
|
|
3449
|
-
var DeleteAssessmentFrameworkCommand = _DeleteAssessmentFrameworkCommand;
|
|
3450
3494
|
|
|
3451
3495
|
// src/commands/DeleteAssessmentFrameworkShareCommand.ts
|
|
3452
3496
|
|
|
3453
3497
|
|
|
3454
3498
|
|
|
3455
|
-
var
|
|
3499
|
+
var DeleteAssessmentFrameworkShareCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3456
3500
|
return [
|
|
3457
3501
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3458
3502
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3459
3503
|
];
|
|
3460
3504
|
}).s("BedrockAssessmentManagerLambda", "DeleteAssessmentFrameworkShare", {}).n("AuditManagerClient", "DeleteAssessmentFrameworkShareCommand").f(void 0, void 0).ser(se_DeleteAssessmentFrameworkShareCommand).de(de_DeleteAssessmentFrameworkShareCommand).build() {
|
|
3505
|
+
static {
|
|
3506
|
+
__name(this, "DeleteAssessmentFrameworkShareCommand");
|
|
3507
|
+
}
|
|
3461
3508
|
};
|
|
3462
|
-
__name(_DeleteAssessmentFrameworkShareCommand, "DeleteAssessmentFrameworkShareCommand");
|
|
3463
|
-
var DeleteAssessmentFrameworkShareCommand = _DeleteAssessmentFrameworkShareCommand;
|
|
3464
3509
|
|
|
3465
3510
|
// src/commands/DeleteAssessmentReportCommand.ts
|
|
3466
3511
|
|
|
3467
3512
|
|
|
3468
3513
|
|
|
3469
|
-
var
|
|
3514
|
+
var DeleteAssessmentReportCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3470
3515
|
return [
|
|
3471
3516
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3472
3517
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3473
3518
|
];
|
|
3474
3519
|
}).s("BedrockAssessmentManagerLambda", "DeleteAssessmentReport", {}).n("AuditManagerClient", "DeleteAssessmentReportCommand").f(void 0, void 0).ser(se_DeleteAssessmentReportCommand).de(de_DeleteAssessmentReportCommand).build() {
|
|
3520
|
+
static {
|
|
3521
|
+
__name(this, "DeleteAssessmentReportCommand");
|
|
3522
|
+
}
|
|
3475
3523
|
};
|
|
3476
|
-
__name(_DeleteAssessmentReportCommand, "DeleteAssessmentReportCommand");
|
|
3477
|
-
var DeleteAssessmentReportCommand = _DeleteAssessmentReportCommand;
|
|
3478
3524
|
|
|
3479
3525
|
// src/commands/DeleteControlCommand.ts
|
|
3480
3526
|
|
|
3481
3527
|
|
|
3482
3528
|
|
|
3483
|
-
var
|
|
3529
|
+
var DeleteControlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3484
3530
|
return [
|
|
3485
3531
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3486
3532
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3487
3533
|
];
|
|
3488
3534
|
}).s("BedrockAssessmentManagerLambda", "DeleteControl", {}).n("AuditManagerClient", "DeleteControlCommand").f(void 0, void 0).ser(se_DeleteControlCommand).de(de_DeleteControlCommand).build() {
|
|
3535
|
+
static {
|
|
3536
|
+
__name(this, "DeleteControlCommand");
|
|
3537
|
+
}
|
|
3489
3538
|
};
|
|
3490
|
-
__name(_DeleteControlCommand, "DeleteControlCommand");
|
|
3491
|
-
var DeleteControlCommand = _DeleteControlCommand;
|
|
3492
3539
|
|
|
3493
3540
|
// src/commands/DeregisterAccountCommand.ts
|
|
3494
3541
|
|
|
3495
3542
|
|
|
3496
3543
|
|
|
3497
|
-
var
|
|
3544
|
+
var DeregisterAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3498
3545
|
return [
|
|
3499
3546
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3500
3547
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3501
3548
|
];
|
|
3502
3549
|
}).s("BedrockAssessmentManagerLambda", "DeregisterAccount", {}).n("AuditManagerClient", "DeregisterAccountCommand").f(void 0, void 0).ser(se_DeregisterAccountCommand).de(de_DeregisterAccountCommand).build() {
|
|
3550
|
+
static {
|
|
3551
|
+
__name(this, "DeregisterAccountCommand");
|
|
3552
|
+
}
|
|
3503
3553
|
};
|
|
3504
|
-
__name(_DeregisterAccountCommand, "DeregisterAccountCommand");
|
|
3505
|
-
var DeregisterAccountCommand = _DeregisterAccountCommand;
|
|
3506
3554
|
|
|
3507
3555
|
// src/commands/DeregisterOrganizationAdminAccountCommand.ts
|
|
3508
3556
|
|
|
3509
3557
|
|
|
3510
3558
|
|
|
3511
|
-
var
|
|
3559
|
+
var DeregisterOrganizationAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3512
3560
|
return [
|
|
3513
3561
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3514
3562
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3515
3563
|
];
|
|
3516
3564
|
}).s("BedrockAssessmentManagerLambda", "DeregisterOrganizationAdminAccount", {}).n("AuditManagerClient", "DeregisterOrganizationAdminAccountCommand").f(void 0, void 0).ser(se_DeregisterOrganizationAdminAccountCommand).de(de_DeregisterOrganizationAdminAccountCommand).build() {
|
|
3565
|
+
static {
|
|
3566
|
+
__name(this, "DeregisterOrganizationAdminAccountCommand");
|
|
3567
|
+
}
|
|
3517
3568
|
};
|
|
3518
|
-
__name(_DeregisterOrganizationAdminAccountCommand, "DeregisterOrganizationAdminAccountCommand");
|
|
3519
|
-
var DeregisterOrganizationAdminAccountCommand = _DeregisterOrganizationAdminAccountCommand;
|
|
3520
3569
|
|
|
3521
3570
|
// src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts
|
|
3522
3571
|
|
|
3523
3572
|
|
|
3524
3573
|
|
|
3525
|
-
var
|
|
3574
|
+
var DisassociateAssessmentReportEvidenceFolderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3526
3575
|
return [
|
|
3527
3576
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3528
3577
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3529
3578
|
];
|
|
3530
3579
|
}).s("BedrockAssessmentManagerLambda", "DisassociateAssessmentReportEvidenceFolder", {}).n("AuditManagerClient", "DisassociateAssessmentReportEvidenceFolderCommand").f(void 0, void 0).ser(se_DisassociateAssessmentReportEvidenceFolderCommand).de(de_DisassociateAssessmentReportEvidenceFolderCommand).build() {
|
|
3580
|
+
static {
|
|
3581
|
+
__name(this, "DisassociateAssessmentReportEvidenceFolderCommand");
|
|
3582
|
+
}
|
|
3531
3583
|
};
|
|
3532
|
-
__name(_DisassociateAssessmentReportEvidenceFolderCommand, "DisassociateAssessmentReportEvidenceFolderCommand");
|
|
3533
|
-
var DisassociateAssessmentReportEvidenceFolderCommand = _DisassociateAssessmentReportEvidenceFolderCommand;
|
|
3534
3584
|
|
|
3535
3585
|
// src/commands/GetAccountStatusCommand.ts
|
|
3536
3586
|
|
|
3537
3587
|
|
|
3538
3588
|
|
|
3539
|
-
var
|
|
3589
|
+
var GetAccountStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3540
3590
|
return [
|
|
3541
3591
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3542
3592
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3543
3593
|
];
|
|
3544
3594
|
}).s("BedrockAssessmentManagerLambda", "GetAccountStatus", {}).n("AuditManagerClient", "GetAccountStatusCommand").f(void 0, void 0).ser(se_GetAccountStatusCommand).de(de_GetAccountStatusCommand).build() {
|
|
3595
|
+
static {
|
|
3596
|
+
__name(this, "GetAccountStatusCommand");
|
|
3597
|
+
}
|
|
3545
3598
|
};
|
|
3546
|
-
__name(_GetAccountStatusCommand, "GetAccountStatusCommand");
|
|
3547
|
-
var GetAccountStatusCommand = _GetAccountStatusCommand;
|
|
3548
3599
|
|
|
3549
3600
|
// src/commands/GetAssessmentCommand.ts
|
|
3550
3601
|
|
|
3551
3602
|
|
|
3552
3603
|
|
|
3553
|
-
var
|
|
3604
|
+
var GetAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3554
3605
|
return [
|
|
3555
3606
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3556
3607
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3557
3608
|
];
|
|
3558
3609
|
}).s("BedrockAssessmentManagerLambda", "GetAssessment", {}).n("AuditManagerClient", "GetAssessmentCommand").f(void 0, GetAssessmentResponseFilterSensitiveLog).ser(se_GetAssessmentCommand).de(de_GetAssessmentCommand).build() {
|
|
3610
|
+
static {
|
|
3611
|
+
__name(this, "GetAssessmentCommand");
|
|
3612
|
+
}
|
|
3559
3613
|
};
|
|
3560
|
-
__name(_GetAssessmentCommand, "GetAssessmentCommand");
|
|
3561
|
-
var GetAssessmentCommand = _GetAssessmentCommand;
|
|
3562
3614
|
|
|
3563
3615
|
// src/commands/GetAssessmentFrameworkCommand.ts
|
|
3564
3616
|
|
|
3565
3617
|
|
|
3566
3618
|
|
|
3567
|
-
var
|
|
3619
|
+
var GetAssessmentFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3568
3620
|
return [
|
|
3569
3621
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3570
3622
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3571
3623
|
];
|
|
3572
3624
|
}).s("BedrockAssessmentManagerLambda", "GetAssessmentFramework", {}).n("AuditManagerClient", "GetAssessmentFrameworkCommand").f(void 0, GetAssessmentFrameworkResponseFilterSensitiveLog).ser(se_GetAssessmentFrameworkCommand).de(de_GetAssessmentFrameworkCommand).build() {
|
|
3625
|
+
static {
|
|
3626
|
+
__name(this, "GetAssessmentFrameworkCommand");
|
|
3627
|
+
}
|
|
3573
3628
|
};
|
|
3574
|
-
__name(_GetAssessmentFrameworkCommand, "GetAssessmentFrameworkCommand");
|
|
3575
|
-
var GetAssessmentFrameworkCommand = _GetAssessmentFrameworkCommand;
|
|
3576
3629
|
|
|
3577
3630
|
// src/commands/GetAssessmentReportUrlCommand.ts
|
|
3578
3631
|
|
|
3579
3632
|
|
|
3580
3633
|
|
|
3581
|
-
var
|
|
3634
|
+
var GetAssessmentReportUrlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3582
3635
|
return [
|
|
3583
3636
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3584
3637
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3585
3638
|
];
|
|
3586
3639
|
}).s("BedrockAssessmentManagerLambda", "GetAssessmentReportUrl", {}).n("AuditManagerClient", "GetAssessmentReportUrlCommand").f(void 0, void 0).ser(se_GetAssessmentReportUrlCommand).de(de_GetAssessmentReportUrlCommand).build() {
|
|
3640
|
+
static {
|
|
3641
|
+
__name(this, "GetAssessmentReportUrlCommand");
|
|
3642
|
+
}
|
|
3587
3643
|
};
|
|
3588
|
-
__name(_GetAssessmentReportUrlCommand, "GetAssessmentReportUrlCommand");
|
|
3589
|
-
var GetAssessmentReportUrlCommand = _GetAssessmentReportUrlCommand;
|
|
3590
3644
|
|
|
3591
3645
|
// src/commands/GetChangeLogsCommand.ts
|
|
3592
3646
|
|
|
3593
3647
|
|
|
3594
3648
|
|
|
3595
|
-
var
|
|
3649
|
+
var GetChangeLogsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3596
3650
|
return [
|
|
3597
3651
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3598
3652
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3599
3653
|
];
|
|
3600
3654
|
}).s("BedrockAssessmentManagerLambda", "GetChangeLogs", {}).n("AuditManagerClient", "GetChangeLogsCommand").f(void 0, void 0).ser(se_GetChangeLogsCommand).de(de_GetChangeLogsCommand).build() {
|
|
3655
|
+
static {
|
|
3656
|
+
__name(this, "GetChangeLogsCommand");
|
|
3657
|
+
}
|
|
3601
3658
|
};
|
|
3602
|
-
__name(_GetChangeLogsCommand, "GetChangeLogsCommand");
|
|
3603
|
-
var GetChangeLogsCommand = _GetChangeLogsCommand;
|
|
3604
3659
|
|
|
3605
3660
|
// src/commands/GetControlCommand.ts
|
|
3606
3661
|
|
|
3607
3662
|
|
|
3608
3663
|
|
|
3609
|
-
var
|
|
3664
|
+
var GetControlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3610
3665
|
return [
|
|
3611
3666
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3612
3667
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3613
3668
|
];
|
|
3614
3669
|
}).s("BedrockAssessmentManagerLambda", "GetControl", {}).n("AuditManagerClient", "GetControlCommand").f(void 0, GetControlResponseFilterSensitiveLog).ser(se_GetControlCommand).de(de_GetControlCommand).build() {
|
|
3670
|
+
static {
|
|
3671
|
+
__name(this, "GetControlCommand");
|
|
3672
|
+
}
|
|
3615
3673
|
};
|
|
3616
|
-
__name(_GetControlCommand, "GetControlCommand");
|
|
3617
|
-
var GetControlCommand = _GetControlCommand;
|
|
3618
3674
|
|
|
3619
3675
|
// src/commands/GetDelegationsCommand.ts
|
|
3620
3676
|
|
|
3621
3677
|
|
|
3622
3678
|
|
|
3623
|
-
var
|
|
3679
|
+
var GetDelegationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3624
3680
|
return [
|
|
3625
3681
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3626
3682
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3627
3683
|
];
|
|
3628
3684
|
}).s("BedrockAssessmentManagerLambda", "GetDelegations", {}).n("AuditManagerClient", "GetDelegationsCommand").f(void 0, GetDelegationsResponseFilterSensitiveLog).ser(se_GetDelegationsCommand).de(de_GetDelegationsCommand).build() {
|
|
3685
|
+
static {
|
|
3686
|
+
__name(this, "GetDelegationsCommand");
|
|
3687
|
+
}
|
|
3629
3688
|
};
|
|
3630
|
-
__name(_GetDelegationsCommand, "GetDelegationsCommand");
|
|
3631
|
-
var GetDelegationsCommand = _GetDelegationsCommand;
|
|
3632
3689
|
|
|
3633
3690
|
// src/commands/GetEvidenceByEvidenceFolderCommand.ts
|
|
3634
3691
|
|
|
3635
3692
|
|
|
3636
3693
|
|
|
3637
|
-
var
|
|
3694
|
+
var GetEvidenceByEvidenceFolderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3638
3695
|
return [
|
|
3639
3696
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3640
3697
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3641
3698
|
];
|
|
3642
3699
|
}).s("BedrockAssessmentManagerLambda", "GetEvidenceByEvidenceFolder", {}).n("AuditManagerClient", "GetEvidenceByEvidenceFolderCommand").f(void 0, void 0).ser(se_GetEvidenceByEvidenceFolderCommand).de(de_GetEvidenceByEvidenceFolderCommand).build() {
|
|
3700
|
+
static {
|
|
3701
|
+
__name(this, "GetEvidenceByEvidenceFolderCommand");
|
|
3702
|
+
}
|
|
3643
3703
|
};
|
|
3644
|
-
__name(_GetEvidenceByEvidenceFolderCommand, "GetEvidenceByEvidenceFolderCommand");
|
|
3645
|
-
var GetEvidenceByEvidenceFolderCommand = _GetEvidenceByEvidenceFolderCommand;
|
|
3646
3704
|
|
|
3647
3705
|
// src/commands/GetEvidenceCommand.ts
|
|
3648
3706
|
|
|
3649
3707
|
|
|
3650
3708
|
|
|
3651
|
-
var
|
|
3709
|
+
var GetEvidenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3652
3710
|
return [
|
|
3653
3711
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3654
3712
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3655
3713
|
];
|
|
3656
3714
|
}).s("BedrockAssessmentManagerLambda", "GetEvidence", {}).n("AuditManagerClient", "GetEvidenceCommand").f(void 0, void 0).ser(se_GetEvidenceCommand).de(de_GetEvidenceCommand).build() {
|
|
3715
|
+
static {
|
|
3716
|
+
__name(this, "GetEvidenceCommand");
|
|
3717
|
+
}
|
|
3657
3718
|
};
|
|
3658
|
-
__name(_GetEvidenceCommand, "GetEvidenceCommand");
|
|
3659
|
-
var GetEvidenceCommand = _GetEvidenceCommand;
|
|
3660
3719
|
|
|
3661
3720
|
// src/commands/GetEvidenceFileUploadUrlCommand.ts
|
|
3662
3721
|
|
|
3663
3722
|
|
|
3664
3723
|
|
|
3665
|
-
var
|
|
3724
|
+
var GetEvidenceFileUploadUrlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3666
3725
|
return [
|
|
3667
3726
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3668
3727
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3669
3728
|
];
|
|
3670
3729
|
}).s("BedrockAssessmentManagerLambda", "GetEvidenceFileUploadUrl", {}).n("AuditManagerClient", "GetEvidenceFileUploadUrlCommand").f(GetEvidenceFileUploadUrlRequestFilterSensitiveLog, GetEvidenceFileUploadUrlResponseFilterSensitiveLog).ser(se_GetEvidenceFileUploadUrlCommand).de(de_GetEvidenceFileUploadUrlCommand).build() {
|
|
3730
|
+
static {
|
|
3731
|
+
__name(this, "GetEvidenceFileUploadUrlCommand");
|
|
3732
|
+
}
|
|
3671
3733
|
};
|
|
3672
|
-
__name(_GetEvidenceFileUploadUrlCommand, "GetEvidenceFileUploadUrlCommand");
|
|
3673
|
-
var GetEvidenceFileUploadUrlCommand = _GetEvidenceFileUploadUrlCommand;
|
|
3674
3734
|
|
|
3675
3735
|
// src/commands/GetEvidenceFolderCommand.ts
|
|
3676
3736
|
|
|
3677
3737
|
|
|
3678
3738
|
|
|
3679
|
-
var
|
|
3739
|
+
var GetEvidenceFolderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3680
3740
|
return [
|
|
3681
3741
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3682
3742
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3683
3743
|
];
|
|
3684
3744
|
}).s("BedrockAssessmentManagerLambda", "GetEvidenceFolder", {}).n("AuditManagerClient", "GetEvidenceFolderCommand").f(void 0, void 0).ser(se_GetEvidenceFolderCommand).de(de_GetEvidenceFolderCommand).build() {
|
|
3745
|
+
static {
|
|
3746
|
+
__name(this, "GetEvidenceFolderCommand");
|
|
3747
|
+
}
|
|
3685
3748
|
};
|
|
3686
|
-
__name(_GetEvidenceFolderCommand, "GetEvidenceFolderCommand");
|
|
3687
|
-
var GetEvidenceFolderCommand = _GetEvidenceFolderCommand;
|
|
3688
3749
|
|
|
3689
3750
|
// src/commands/GetEvidenceFoldersByAssessmentCommand.ts
|
|
3690
3751
|
|
|
3691
3752
|
|
|
3692
3753
|
|
|
3693
|
-
var
|
|
3754
|
+
var GetEvidenceFoldersByAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3694
3755
|
return [
|
|
3695
3756
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3696
3757
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3697
3758
|
];
|
|
3698
3759
|
}).s("BedrockAssessmentManagerLambda", "GetEvidenceFoldersByAssessment", {}).n("AuditManagerClient", "GetEvidenceFoldersByAssessmentCommand").f(void 0, void 0).ser(se_GetEvidenceFoldersByAssessmentCommand).de(de_GetEvidenceFoldersByAssessmentCommand).build() {
|
|
3760
|
+
static {
|
|
3761
|
+
__name(this, "GetEvidenceFoldersByAssessmentCommand");
|
|
3762
|
+
}
|
|
3699
3763
|
};
|
|
3700
|
-
__name(_GetEvidenceFoldersByAssessmentCommand, "GetEvidenceFoldersByAssessmentCommand");
|
|
3701
|
-
var GetEvidenceFoldersByAssessmentCommand = _GetEvidenceFoldersByAssessmentCommand;
|
|
3702
3764
|
|
|
3703
3765
|
// src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts
|
|
3704
3766
|
|
|
3705
3767
|
|
|
3706
3768
|
|
|
3707
|
-
var
|
|
3769
|
+
var GetEvidenceFoldersByAssessmentControlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3708
3770
|
return [
|
|
3709
3771
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3710
3772
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3711
3773
|
];
|
|
3712
3774
|
}).s("BedrockAssessmentManagerLambda", "GetEvidenceFoldersByAssessmentControl", {}).n("AuditManagerClient", "GetEvidenceFoldersByAssessmentControlCommand").f(void 0, void 0).ser(se_GetEvidenceFoldersByAssessmentControlCommand).de(de_GetEvidenceFoldersByAssessmentControlCommand).build() {
|
|
3775
|
+
static {
|
|
3776
|
+
__name(this, "GetEvidenceFoldersByAssessmentControlCommand");
|
|
3777
|
+
}
|
|
3713
3778
|
};
|
|
3714
|
-
__name(_GetEvidenceFoldersByAssessmentControlCommand, "GetEvidenceFoldersByAssessmentControlCommand");
|
|
3715
|
-
var GetEvidenceFoldersByAssessmentControlCommand = _GetEvidenceFoldersByAssessmentControlCommand;
|
|
3716
3779
|
|
|
3717
3780
|
// src/commands/GetInsightsByAssessmentCommand.ts
|
|
3718
3781
|
|
|
3719
3782
|
|
|
3720
3783
|
|
|
3721
|
-
var
|
|
3784
|
+
var GetInsightsByAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3722
3785
|
return [
|
|
3723
3786
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3724
3787
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3725
3788
|
];
|
|
3726
3789
|
}).s("BedrockAssessmentManagerLambda", "GetInsightsByAssessment", {}).n("AuditManagerClient", "GetInsightsByAssessmentCommand").f(void 0, void 0).ser(se_GetInsightsByAssessmentCommand).de(de_GetInsightsByAssessmentCommand).build() {
|
|
3790
|
+
static {
|
|
3791
|
+
__name(this, "GetInsightsByAssessmentCommand");
|
|
3792
|
+
}
|
|
3727
3793
|
};
|
|
3728
|
-
__name(_GetInsightsByAssessmentCommand, "GetInsightsByAssessmentCommand");
|
|
3729
|
-
var GetInsightsByAssessmentCommand = _GetInsightsByAssessmentCommand;
|
|
3730
3794
|
|
|
3731
3795
|
// src/commands/GetInsightsCommand.ts
|
|
3732
3796
|
|
|
3733
3797
|
|
|
3734
3798
|
|
|
3735
|
-
var
|
|
3799
|
+
var GetInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3736
3800
|
return [
|
|
3737
3801
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3738
3802
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3739
3803
|
];
|
|
3740
3804
|
}).s("BedrockAssessmentManagerLambda", "GetInsights", {}).n("AuditManagerClient", "GetInsightsCommand").f(void 0, void 0).ser(se_GetInsightsCommand).de(de_GetInsightsCommand).build() {
|
|
3805
|
+
static {
|
|
3806
|
+
__name(this, "GetInsightsCommand");
|
|
3807
|
+
}
|
|
3741
3808
|
};
|
|
3742
|
-
__name(_GetInsightsCommand, "GetInsightsCommand");
|
|
3743
|
-
var GetInsightsCommand = _GetInsightsCommand;
|
|
3744
3809
|
|
|
3745
3810
|
// src/commands/GetOrganizationAdminAccountCommand.ts
|
|
3746
3811
|
|
|
3747
3812
|
|
|
3748
3813
|
|
|
3749
|
-
var
|
|
3814
|
+
var GetOrganizationAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3750
3815
|
return [
|
|
3751
3816
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3752
3817
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3753
3818
|
];
|
|
3754
3819
|
}).s("BedrockAssessmentManagerLambda", "GetOrganizationAdminAccount", {}).n("AuditManagerClient", "GetOrganizationAdminAccountCommand").f(void 0, void 0).ser(se_GetOrganizationAdminAccountCommand).de(de_GetOrganizationAdminAccountCommand).build() {
|
|
3820
|
+
static {
|
|
3821
|
+
__name(this, "GetOrganizationAdminAccountCommand");
|
|
3822
|
+
}
|
|
3755
3823
|
};
|
|
3756
|
-
__name(_GetOrganizationAdminAccountCommand, "GetOrganizationAdminAccountCommand");
|
|
3757
|
-
var GetOrganizationAdminAccountCommand = _GetOrganizationAdminAccountCommand;
|
|
3758
3824
|
|
|
3759
3825
|
// src/commands/GetServicesInScopeCommand.ts
|
|
3760
3826
|
|
|
3761
3827
|
|
|
3762
3828
|
|
|
3763
|
-
var
|
|
3829
|
+
var GetServicesInScopeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3764
3830
|
return [
|
|
3765
3831
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3766
3832
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3767
3833
|
];
|
|
3768
3834
|
}).s("BedrockAssessmentManagerLambda", "GetServicesInScope", {}).n("AuditManagerClient", "GetServicesInScopeCommand").f(void 0, void 0).ser(se_GetServicesInScopeCommand).de(de_GetServicesInScopeCommand).build() {
|
|
3835
|
+
static {
|
|
3836
|
+
__name(this, "GetServicesInScopeCommand");
|
|
3837
|
+
}
|
|
3769
3838
|
};
|
|
3770
|
-
__name(_GetServicesInScopeCommand, "GetServicesInScopeCommand");
|
|
3771
|
-
var GetServicesInScopeCommand = _GetServicesInScopeCommand;
|
|
3772
3839
|
|
|
3773
3840
|
// src/commands/GetSettingsCommand.ts
|
|
3774
3841
|
|
|
3775
3842
|
|
|
3776
3843
|
|
|
3777
|
-
var
|
|
3844
|
+
var GetSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3778
3845
|
return [
|
|
3779
3846
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3780
3847
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3781
3848
|
];
|
|
3782
3849
|
}).s("BedrockAssessmentManagerLambda", "GetSettings", {}).n("AuditManagerClient", "GetSettingsCommand").f(void 0, GetSettingsResponseFilterSensitiveLog).ser(se_GetSettingsCommand).de(de_GetSettingsCommand).build() {
|
|
3850
|
+
static {
|
|
3851
|
+
__name(this, "GetSettingsCommand");
|
|
3852
|
+
}
|
|
3783
3853
|
};
|
|
3784
|
-
__name(_GetSettingsCommand, "GetSettingsCommand");
|
|
3785
|
-
var GetSettingsCommand = _GetSettingsCommand;
|
|
3786
3854
|
|
|
3787
3855
|
// src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts
|
|
3788
3856
|
|
|
3789
3857
|
|
|
3790
3858
|
|
|
3791
|
-
var
|
|
3859
|
+
var ListAssessmentControlInsightsByControlDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3792
3860
|
return [
|
|
3793
3861
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3794
3862
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3795
3863
|
];
|
|
3796
3864
|
}).s("BedrockAssessmentManagerLambda", "ListAssessmentControlInsightsByControlDomain", {}).n("AuditManagerClient", "ListAssessmentControlInsightsByControlDomainCommand").f(void 0, void 0).ser(se_ListAssessmentControlInsightsByControlDomainCommand).de(de_ListAssessmentControlInsightsByControlDomainCommand).build() {
|
|
3865
|
+
static {
|
|
3866
|
+
__name(this, "ListAssessmentControlInsightsByControlDomainCommand");
|
|
3867
|
+
}
|
|
3797
3868
|
};
|
|
3798
|
-
__name(_ListAssessmentControlInsightsByControlDomainCommand, "ListAssessmentControlInsightsByControlDomainCommand");
|
|
3799
|
-
var ListAssessmentControlInsightsByControlDomainCommand = _ListAssessmentControlInsightsByControlDomainCommand;
|
|
3800
3869
|
|
|
3801
3870
|
// src/commands/ListAssessmentFrameworksCommand.ts
|
|
3802
3871
|
|
|
3803
3872
|
|
|
3804
3873
|
|
|
3805
|
-
var
|
|
3874
|
+
var ListAssessmentFrameworksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3806
3875
|
return [
|
|
3807
3876
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3808
3877
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3809
3878
|
];
|
|
3810
3879
|
}).s("BedrockAssessmentManagerLambda", "ListAssessmentFrameworks", {}).n("AuditManagerClient", "ListAssessmentFrameworksCommand").f(void 0, ListAssessmentFrameworksResponseFilterSensitiveLog).ser(se_ListAssessmentFrameworksCommand).de(de_ListAssessmentFrameworksCommand).build() {
|
|
3880
|
+
static {
|
|
3881
|
+
__name(this, "ListAssessmentFrameworksCommand");
|
|
3882
|
+
}
|
|
3811
3883
|
};
|
|
3812
|
-
__name(_ListAssessmentFrameworksCommand, "ListAssessmentFrameworksCommand");
|
|
3813
|
-
var ListAssessmentFrameworksCommand = _ListAssessmentFrameworksCommand;
|
|
3814
3884
|
|
|
3815
3885
|
// src/commands/ListAssessmentFrameworkShareRequestsCommand.ts
|
|
3816
3886
|
|
|
3817
3887
|
|
|
3818
3888
|
|
|
3819
|
-
var
|
|
3889
|
+
var ListAssessmentFrameworkShareRequestsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3820
3890
|
return [
|
|
3821
3891
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3822
3892
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3823
3893
|
];
|
|
3824
3894
|
}).s("BedrockAssessmentManagerLambda", "ListAssessmentFrameworkShareRequests", {}).n("AuditManagerClient", "ListAssessmentFrameworkShareRequestsCommand").f(void 0, ListAssessmentFrameworkShareRequestsResponseFilterSensitiveLog).ser(se_ListAssessmentFrameworkShareRequestsCommand).de(de_ListAssessmentFrameworkShareRequestsCommand).build() {
|
|
3895
|
+
static {
|
|
3896
|
+
__name(this, "ListAssessmentFrameworkShareRequestsCommand");
|
|
3897
|
+
}
|
|
3825
3898
|
};
|
|
3826
|
-
__name(_ListAssessmentFrameworkShareRequestsCommand, "ListAssessmentFrameworkShareRequestsCommand");
|
|
3827
|
-
var ListAssessmentFrameworkShareRequestsCommand = _ListAssessmentFrameworkShareRequestsCommand;
|
|
3828
3899
|
|
|
3829
3900
|
// src/commands/ListAssessmentReportsCommand.ts
|
|
3830
3901
|
|
|
3831
3902
|
|
|
3832
3903
|
|
|
3833
|
-
var
|
|
3904
|
+
var ListAssessmentReportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3834
3905
|
return [
|
|
3835
3906
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3836
3907
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3837
3908
|
];
|
|
3838
3909
|
}).s("BedrockAssessmentManagerLambda", "ListAssessmentReports", {}).n("AuditManagerClient", "ListAssessmentReportsCommand").f(void 0, ListAssessmentReportsResponseFilterSensitiveLog).ser(se_ListAssessmentReportsCommand).de(de_ListAssessmentReportsCommand).build() {
|
|
3910
|
+
static {
|
|
3911
|
+
__name(this, "ListAssessmentReportsCommand");
|
|
3912
|
+
}
|
|
3839
3913
|
};
|
|
3840
|
-
__name(_ListAssessmentReportsCommand, "ListAssessmentReportsCommand");
|
|
3841
|
-
var ListAssessmentReportsCommand = _ListAssessmentReportsCommand;
|
|
3842
3914
|
|
|
3843
3915
|
// src/commands/ListAssessmentsCommand.ts
|
|
3844
3916
|
|
|
3845
3917
|
|
|
3846
3918
|
|
|
3847
|
-
var
|
|
3919
|
+
var ListAssessmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3848
3920
|
return [
|
|
3849
3921
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3850
3922
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3851
3923
|
];
|
|
3852
3924
|
}).s("BedrockAssessmentManagerLambda", "ListAssessments", {}).n("AuditManagerClient", "ListAssessmentsCommand").f(void 0, ListAssessmentsResponseFilterSensitiveLog).ser(se_ListAssessmentsCommand).de(de_ListAssessmentsCommand).build() {
|
|
3925
|
+
static {
|
|
3926
|
+
__name(this, "ListAssessmentsCommand");
|
|
3927
|
+
}
|
|
3853
3928
|
};
|
|
3854
|
-
__name(_ListAssessmentsCommand, "ListAssessmentsCommand");
|
|
3855
|
-
var ListAssessmentsCommand = _ListAssessmentsCommand;
|
|
3856
3929
|
|
|
3857
3930
|
// src/commands/ListControlDomainInsightsByAssessmentCommand.ts
|
|
3858
3931
|
|
|
3859
3932
|
|
|
3860
3933
|
|
|
3861
|
-
var
|
|
3934
|
+
var ListControlDomainInsightsByAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3862
3935
|
return [
|
|
3863
3936
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3864
3937
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3865
3938
|
];
|
|
3866
3939
|
}).s("BedrockAssessmentManagerLambda", "ListControlDomainInsightsByAssessment", {}).n("AuditManagerClient", "ListControlDomainInsightsByAssessmentCommand").f(void 0, void 0).ser(se_ListControlDomainInsightsByAssessmentCommand).de(de_ListControlDomainInsightsByAssessmentCommand).build() {
|
|
3940
|
+
static {
|
|
3941
|
+
__name(this, "ListControlDomainInsightsByAssessmentCommand");
|
|
3942
|
+
}
|
|
3867
3943
|
};
|
|
3868
|
-
__name(_ListControlDomainInsightsByAssessmentCommand, "ListControlDomainInsightsByAssessmentCommand");
|
|
3869
|
-
var ListControlDomainInsightsByAssessmentCommand = _ListControlDomainInsightsByAssessmentCommand;
|
|
3870
3944
|
|
|
3871
3945
|
// src/commands/ListControlDomainInsightsCommand.ts
|
|
3872
3946
|
|
|
3873
3947
|
|
|
3874
3948
|
|
|
3875
|
-
var
|
|
3949
|
+
var ListControlDomainInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3876
3950
|
return [
|
|
3877
3951
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3878
3952
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3879
3953
|
];
|
|
3880
3954
|
}).s("BedrockAssessmentManagerLambda", "ListControlDomainInsights", {}).n("AuditManagerClient", "ListControlDomainInsightsCommand").f(void 0, void 0).ser(se_ListControlDomainInsightsCommand).de(de_ListControlDomainInsightsCommand).build() {
|
|
3955
|
+
static {
|
|
3956
|
+
__name(this, "ListControlDomainInsightsCommand");
|
|
3957
|
+
}
|
|
3881
3958
|
};
|
|
3882
|
-
__name(_ListControlDomainInsightsCommand, "ListControlDomainInsightsCommand");
|
|
3883
|
-
var ListControlDomainInsightsCommand = _ListControlDomainInsightsCommand;
|
|
3884
3959
|
|
|
3885
3960
|
// src/commands/ListControlInsightsByControlDomainCommand.ts
|
|
3886
3961
|
|
|
3887
3962
|
|
|
3888
3963
|
|
|
3889
|
-
var
|
|
3964
|
+
var ListControlInsightsByControlDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3890
3965
|
return [
|
|
3891
3966
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3892
3967
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3893
3968
|
];
|
|
3894
3969
|
}).s("BedrockAssessmentManagerLambda", "ListControlInsightsByControlDomain", {}).n("AuditManagerClient", "ListControlInsightsByControlDomainCommand").f(void 0, void 0).ser(se_ListControlInsightsByControlDomainCommand).de(de_ListControlInsightsByControlDomainCommand).build() {
|
|
3970
|
+
static {
|
|
3971
|
+
__name(this, "ListControlInsightsByControlDomainCommand");
|
|
3972
|
+
}
|
|
3895
3973
|
};
|
|
3896
|
-
__name(_ListControlInsightsByControlDomainCommand, "ListControlInsightsByControlDomainCommand");
|
|
3897
|
-
var ListControlInsightsByControlDomainCommand = _ListControlInsightsByControlDomainCommand;
|
|
3898
3974
|
|
|
3899
3975
|
// src/commands/ListControlsCommand.ts
|
|
3900
3976
|
|
|
3901
3977
|
|
|
3902
3978
|
|
|
3903
|
-
var
|
|
3979
|
+
var ListControlsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3904
3980
|
return [
|
|
3905
3981
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3906
3982
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3907
3983
|
];
|
|
3908
3984
|
}).s("BedrockAssessmentManagerLambda", "ListControls", {}).n("AuditManagerClient", "ListControlsCommand").f(void 0, void 0).ser(se_ListControlsCommand).de(de_ListControlsCommand).build() {
|
|
3985
|
+
static {
|
|
3986
|
+
__name(this, "ListControlsCommand");
|
|
3987
|
+
}
|
|
3909
3988
|
};
|
|
3910
|
-
__name(_ListControlsCommand, "ListControlsCommand");
|
|
3911
|
-
var ListControlsCommand = _ListControlsCommand;
|
|
3912
3989
|
|
|
3913
3990
|
// src/commands/ListKeywordsForDataSourceCommand.ts
|
|
3914
3991
|
|
|
3915
3992
|
|
|
3916
3993
|
|
|
3917
|
-
var
|
|
3994
|
+
var ListKeywordsForDataSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3918
3995
|
return [
|
|
3919
3996
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3920
3997
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3921
3998
|
];
|
|
3922
3999
|
}).s("BedrockAssessmentManagerLambda", "ListKeywordsForDataSource", {}).n("AuditManagerClient", "ListKeywordsForDataSourceCommand").f(void 0, void 0).ser(se_ListKeywordsForDataSourceCommand).de(de_ListKeywordsForDataSourceCommand).build() {
|
|
4000
|
+
static {
|
|
4001
|
+
__name(this, "ListKeywordsForDataSourceCommand");
|
|
4002
|
+
}
|
|
3923
4003
|
};
|
|
3924
|
-
__name(_ListKeywordsForDataSourceCommand, "ListKeywordsForDataSourceCommand");
|
|
3925
|
-
var ListKeywordsForDataSourceCommand = _ListKeywordsForDataSourceCommand;
|
|
3926
4004
|
|
|
3927
4005
|
// src/commands/ListNotificationsCommand.ts
|
|
3928
4006
|
|
|
3929
4007
|
|
|
3930
4008
|
|
|
3931
|
-
var
|
|
4009
|
+
var ListNotificationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3932
4010
|
return [
|
|
3933
4011
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3934
4012
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3935
4013
|
];
|
|
3936
4014
|
}).s("BedrockAssessmentManagerLambda", "ListNotifications", {}).n("AuditManagerClient", "ListNotificationsCommand").f(void 0, ListNotificationsResponseFilterSensitiveLog).ser(se_ListNotificationsCommand).de(de_ListNotificationsCommand).build() {
|
|
4015
|
+
static {
|
|
4016
|
+
__name(this, "ListNotificationsCommand");
|
|
4017
|
+
}
|
|
3937
4018
|
};
|
|
3938
|
-
__name(_ListNotificationsCommand, "ListNotificationsCommand");
|
|
3939
|
-
var ListNotificationsCommand = _ListNotificationsCommand;
|
|
3940
4019
|
|
|
3941
4020
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3942
4021
|
|
|
3943
4022
|
|
|
3944
4023
|
|
|
3945
|
-
var
|
|
4024
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3946
4025
|
return [
|
|
3947
4026
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3948
4027
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3949
4028
|
];
|
|
3950
4029
|
}).s("BedrockAssessmentManagerLambda", "ListTagsForResource", {}).n("AuditManagerClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
4030
|
+
static {
|
|
4031
|
+
__name(this, "ListTagsForResourceCommand");
|
|
4032
|
+
}
|
|
3951
4033
|
};
|
|
3952
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3953
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3954
4034
|
|
|
3955
4035
|
// src/commands/RegisterAccountCommand.ts
|
|
3956
4036
|
|
|
3957
4037
|
|
|
3958
4038
|
|
|
3959
|
-
var
|
|
4039
|
+
var RegisterAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3960
4040
|
return [
|
|
3961
4041
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3962
4042
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3963
4043
|
];
|
|
3964
4044
|
}).s("BedrockAssessmentManagerLambda", "RegisterAccount", {}).n("AuditManagerClient", "RegisterAccountCommand").f(void 0, void 0).ser(se_RegisterAccountCommand).de(de_RegisterAccountCommand).build() {
|
|
4045
|
+
static {
|
|
4046
|
+
__name(this, "RegisterAccountCommand");
|
|
4047
|
+
}
|
|
3965
4048
|
};
|
|
3966
|
-
__name(_RegisterAccountCommand, "RegisterAccountCommand");
|
|
3967
|
-
var RegisterAccountCommand = _RegisterAccountCommand;
|
|
3968
4049
|
|
|
3969
4050
|
// src/commands/RegisterOrganizationAdminAccountCommand.ts
|
|
3970
4051
|
|
|
3971
4052
|
|
|
3972
4053
|
|
|
3973
|
-
var
|
|
4054
|
+
var RegisterOrganizationAdminAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3974
4055
|
return [
|
|
3975
4056
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3976
4057
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3977
4058
|
];
|
|
3978
4059
|
}).s("BedrockAssessmentManagerLambda", "RegisterOrganizationAdminAccount", {}).n("AuditManagerClient", "RegisterOrganizationAdminAccountCommand").f(void 0, void 0).ser(se_RegisterOrganizationAdminAccountCommand).de(de_RegisterOrganizationAdminAccountCommand).build() {
|
|
4060
|
+
static {
|
|
4061
|
+
__name(this, "RegisterOrganizationAdminAccountCommand");
|
|
4062
|
+
}
|
|
3979
4063
|
};
|
|
3980
|
-
__name(_RegisterOrganizationAdminAccountCommand, "RegisterOrganizationAdminAccountCommand");
|
|
3981
|
-
var RegisterOrganizationAdminAccountCommand = _RegisterOrganizationAdminAccountCommand;
|
|
3982
4064
|
|
|
3983
4065
|
// src/commands/StartAssessmentFrameworkShareCommand.ts
|
|
3984
4066
|
|
|
3985
4067
|
|
|
3986
4068
|
|
|
3987
|
-
var
|
|
4069
|
+
var StartAssessmentFrameworkShareCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3988
4070
|
return [
|
|
3989
4071
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3990
4072
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3991
4073
|
];
|
|
3992
4074
|
}).s("BedrockAssessmentManagerLambda", "StartAssessmentFrameworkShare", {}).n("AuditManagerClient", "StartAssessmentFrameworkShareCommand").f(void 0, StartAssessmentFrameworkShareResponseFilterSensitiveLog).ser(se_StartAssessmentFrameworkShareCommand).de(de_StartAssessmentFrameworkShareCommand).build() {
|
|
4075
|
+
static {
|
|
4076
|
+
__name(this, "StartAssessmentFrameworkShareCommand");
|
|
4077
|
+
}
|
|
3993
4078
|
};
|
|
3994
|
-
__name(_StartAssessmentFrameworkShareCommand, "StartAssessmentFrameworkShareCommand");
|
|
3995
|
-
var StartAssessmentFrameworkShareCommand = _StartAssessmentFrameworkShareCommand;
|
|
3996
4079
|
|
|
3997
4080
|
// src/commands/TagResourceCommand.ts
|
|
3998
4081
|
|
|
3999
4082
|
|
|
4000
4083
|
|
|
4001
|
-
var
|
|
4084
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4002
4085
|
return [
|
|
4003
4086
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4004
4087
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4005
4088
|
];
|
|
4006
4089
|
}).s("BedrockAssessmentManagerLambda", "TagResource", {}).n("AuditManagerClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4090
|
+
static {
|
|
4091
|
+
__name(this, "TagResourceCommand");
|
|
4092
|
+
}
|
|
4007
4093
|
};
|
|
4008
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4009
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4010
4094
|
|
|
4011
4095
|
// src/commands/UntagResourceCommand.ts
|
|
4012
4096
|
|
|
4013
4097
|
|
|
4014
4098
|
|
|
4015
|
-
var
|
|
4099
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4016
4100
|
return [
|
|
4017
4101
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4018
4102
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4019
4103
|
];
|
|
4020
4104
|
}).s("BedrockAssessmentManagerLambda", "UntagResource", {}).n("AuditManagerClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4105
|
+
static {
|
|
4106
|
+
__name(this, "UntagResourceCommand");
|
|
4107
|
+
}
|
|
4021
4108
|
};
|
|
4022
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4023
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4024
4109
|
|
|
4025
4110
|
// src/commands/UpdateAssessmentCommand.ts
|
|
4026
4111
|
|
|
4027
4112
|
|
|
4028
4113
|
|
|
4029
|
-
var
|
|
4114
|
+
var UpdateAssessmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4030
4115
|
return [
|
|
4031
4116
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4032
4117
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4033
4118
|
];
|
|
4034
4119
|
}).s("BedrockAssessmentManagerLambda", "UpdateAssessment", {}).n("AuditManagerClient", "UpdateAssessmentCommand").f(UpdateAssessmentRequestFilterSensitiveLog, UpdateAssessmentResponseFilterSensitiveLog).ser(se_UpdateAssessmentCommand).de(de_UpdateAssessmentCommand).build() {
|
|
4120
|
+
static {
|
|
4121
|
+
__name(this, "UpdateAssessmentCommand");
|
|
4122
|
+
}
|
|
4035
4123
|
};
|
|
4036
|
-
__name(_UpdateAssessmentCommand, "UpdateAssessmentCommand");
|
|
4037
|
-
var UpdateAssessmentCommand = _UpdateAssessmentCommand;
|
|
4038
4124
|
|
|
4039
4125
|
// src/commands/UpdateAssessmentControlCommand.ts
|
|
4040
4126
|
|
|
4041
4127
|
|
|
4042
4128
|
|
|
4043
|
-
var
|
|
4129
|
+
var UpdateAssessmentControlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4044
4130
|
return [
|
|
4045
4131
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4046
4132
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4047
4133
|
];
|
|
4048
4134
|
}).s("BedrockAssessmentManagerLambda", "UpdateAssessmentControl", {}).n("AuditManagerClient", "UpdateAssessmentControlCommand").f(UpdateAssessmentControlRequestFilterSensitiveLog, UpdateAssessmentControlResponseFilterSensitiveLog).ser(se_UpdateAssessmentControlCommand).de(de_UpdateAssessmentControlCommand).build() {
|
|
4135
|
+
static {
|
|
4136
|
+
__name(this, "UpdateAssessmentControlCommand");
|
|
4137
|
+
}
|
|
4049
4138
|
};
|
|
4050
|
-
__name(_UpdateAssessmentControlCommand, "UpdateAssessmentControlCommand");
|
|
4051
|
-
var UpdateAssessmentControlCommand = _UpdateAssessmentControlCommand;
|
|
4052
4139
|
|
|
4053
4140
|
// src/commands/UpdateAssessmentControlSetStatusCommand.ts
|
|
4054
4141
|
|
|
4055
4142
|
|
|
4056
4143
|
|
|
4057
|
-
var
|
|
4144
|
+
var UpdateAssessmentControlSetStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4058
4145
|
return [
|
|
4059
4146
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4060
4147
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -4063,93 +4150,100 @@ var _UpdateAssessmentControlSetStatusCommand = class _UpdateAssessmentControlSet
|
|
|
4063
4150
|
UpdateAssessmentControlSetStatusRequestFilterSensitiveLog,
|
|
4064
4151
|
UpdateAssessmentControlSetStatusResponseFilterSensitiveLog
|
|
4065
4152
|
).ser(se_UpdateAssessmentControlSetStatusCommand).de(de_UpdateAssessmentControlSetStatusCommand).build() {
|
|
4153
|
+
static {
|
|
4154
|
+
__name(this, "UpdateAssessmentControlSetStatusCommand");
|
|
4155
|
+
}
|
|
4066
4156
|
};
|
|
4067
|
-
__name(_UpdateAssessmentControlSetStatusCommand, "UpdateAssessmentControlSetStatusCommand");
|
|
4068
|
-
var UpdateAssessmentControlSetStatusCommand = _UpdateAssessmentControlSetStatusCommand;
|
|
4069
4157
|
|
|
4070
4158
|
// src/commands/UpdateAssessmentFrameworkCommand.ts
|
|
4071
4159
|
|
|
4072
4160
|
|
|
4073
4161
|
|
|
4074
|
-
var
|
|
4162
|
+
var UpdateAssessmentFrameworkCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4075
4163
|
return [
|
|
4076
4164
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4077
4165
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4078
4166
|
];
|
|
4079
4167
|
}).s("BedrockAssessmentManagerLambda", "UpdateAssessmentFramework", {}).n("AuditManagerClient", "UpdateAssessmentFrameworkCommand").f(UpdateAssessmentFrameworkRequestFilterSensitiveLog, UpdateAssessmentFrameworkResponseFilterSensitiveLog).ser(se_UpdateAssessmentFrameworkCommand).de(de_UpdateAssessmentFrameworkCommand).build() {
|
|
4168
|
+
static {
|
|
4169
|
+
__name(this, "UpdateAssessmentFrameworkCommand");
|
|
4170
|
+
}
|
|
4080
4171
|
};
|
|
4081
|
-
__name(_UpdateAssessmentFrameworkCommand, "UpdateAssessmentFrameworkCommand");
|
|
4082
|
-
var UpdateAssessmentFrameworkCommand = _UpdateAssessmentFrameworkCommand;
|
|
4083
4172
|
|
|
4084
4173
|
// src/commands/UpdateAssessmentFrameworkShareCommand.ts
|
|
4085
4174
|
|
|
4086
4175
|
|
|
4087
4176
|
|
|
4088
|
-
var
|
|
4177
|
+
var UpdateAssessmentFrameworkShareCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4089
4178
|
return [
|
|
4090
4179
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4091
4180
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4092
4181
|
];
|
|
4093
4182
|
}).s("BedrockAssessmentManagerLambda", "UpdateAssessmentFrameworkShare", {}).n("AuditManagerClient", "UpdateAssessmentFrameworkShareCommand").f(void 0, UpdateAssessmentFrameworkShareResponseFilterSensitiveLog).ser(se_UpdateAssessmentFrameworkShareCommand).de(de_UpdateAssessmentFrameworkShareCommand).build() {
|
|
4183
|
+
static {
|
|
4184
|
+
__name(this, "UpdateAssessmentFrameworkShareCommand");
|
|
4185
|
+
}
|
|
4094
4186
|
};
|
|
4095
|
-
__name(_UpdateAssessmentFrameworkShareCommand, "UpdateAssessmentFrameworkShareCommand");
|
|
4096
|
-
var UpdateAssessmentFrameworkShareCommand = _UpdateAssessmentFrameworkShareCommand;
|
|
4097
4187
|
|
|
4098
4188
|
// src/commands/UpdateAssessmentStatusCommand.ts
|
|
4099
4189
|
|
|
4100
4190
|
|
|
4101
4191
|
|
|
4102
|
-
var
|
|
4192
|
+
var UpdateAssessmentStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4103
4193
|
return [
|
|
4104
4194
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4105
4195
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4106
4196
|
];
|
|
4107
4197
|
}).s("BedrockAssessmentManagerLambda", "UpdateAssessmentStatus", {}).n("AuditManagerClient", "UpdateAssessmentStatusCommand").f(void 0, UpdateAssessmentStatusResponseFilterSensitiveLog).ser(se_UpdateAssessmentStatusCommand).de(de_UpdateAssessmentStatusCommand).build() {
|
|
4198
|
+
static {
|
|
4199
|
+
__name(this, "UpdateAssessmentStatusCommand");
|
|
4200
|
+
}
|
|
4108
4201
|
};
|
|
4109
|
-
__name(_UpdateAssessmentStatusCommand, "UpdateAssessmentStatusCommand");
|
|
4110
|
-
var UpdateAssessmentStatusCommand = _UpdateAssessmentStatusCommand;
|
|
4111
4202
|
|
|
4112
4203
|
// src/commands/UpdateControlCommand.ts
|
|
4113
4204
|
|
|
4114
4205
|
|
|
4115
4206
|
|
|
4116
|
-
var
|
|
4207
|
+
var UpdateControlCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4117
4208
|
return [
|
|
4118
4209
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4119
4210
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4120
4211
|
];
|
|
4121
4212
|
}).s("BedrockAssessmentManagerLambda", "UpdateControl", {}).n("AuditManagerClient", "UpdateControlCommand").f(UpdateControlRequestFilterSensitiveLog, UpdateControlResponseFilterSensitiveLog).ser(se_UpdateControlCommand).de(de_UpdateControlCommand).build() {
|
|
4213
|
+
static {
|
|
4214
|
+
__name(this, "UpdateControlCommand");
|
|
4215
|
+
}
|
|
4122
4216
|
};
|
|
4123
|
-
__name(_UpdateControlCommand, "UpdateControlCommand");
|
|
4124
|
-
var UpdateControlCommand = _UpdateControlCommand;
|
|
4125
4217
|
|
|
4126
4218
|
// src/commands/UpdateSettingsCommand.ts
|
|
4127
4219
|
|
|
4128
4220
|
|
|
4129
4221
|
|
|
4130
|
-
var
|
|
4222
|
+
var UpdateSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4131
4223
|
return [
|
|
4132
4224
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4133
4225
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4134
4226
|
];
|
|
4135
4227
|
}).s("BedrockAssessmentManagerLambda", "UpdateSettings", {}).n("AuditManagerClient", "UpdateSettingsCommand").f(UpdateSettingsRequestFilterSensitiveLog, UpdateSettingsResponseFilterSensitiveLog).ser(se_UpdateSettingsCommand).de(de_UpdateSettingsCommand).build() {
|
|
4228
|
+
static {
|
|
4229
|
+
__name(this, "UpdateSettingsCommand");
|
|
4230
|
+
}
|
|
4136
4231
|
};
|
|
4137
|
-
__name(_UpdateSettingsCommand, "UpdateSettingsCommand");
|
|
4138
|
-
var UpdateSettingsCommand = _UpdateSettingsCommand;
|
|
4139
4232
|
|
|
4140
4233
|
// src/commands/ValidateAssessmentReportIntegrityCommand.ts
|
|
4141
4234
|
|
|
4142
4235
|
|
|
4143
4236
|
|
|
4144
|
-
var
|
|
4237
|
+
var ValidateAssessmentReportIntegrityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4145
4238
|
return [
|
|
4146
4239
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4147
4240
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4148
4241
|
];
|
|
4149
4242
|
}).s("BedrockAssessmentManagerLambda", "ValidateAssessmentReportIntegrity", {}).n("AuditManagerClient", "ValidateAssessmentReportIntegrityCommand").f(void 0, void 0).ser(se_ValidateAssessmentReportIntegrityCommand).de(de_ValidateAssessmentReportIntegrityCommand).build() {
|
|
4243
|
+
static {
|
|
4244
|
+
__name(this, "ValidateAssessmentReportIntegrityCommand");
|
|
4245
|
+
}
|
|
4150
4246
|
};
|
|
4151
|
-
__name(_ValidateAssessmentReportIntegrityCommand, "ValidateAssessmentReportIntegrityCommand");
|
|
4152
|
-
var ValidateAssessmentReportIntegrityCommand = _ValidateAssessmentReportIntegrityCommand;
|
|
4153
4247
|
|
|
4154
4248
|
// src/AuditManager.ts
|
|
4155
4249
|
var commands = {
|
|
@@ -4216,10 +4310,11 @@ var commands = {
|
|
|
4216
4310
|
UpdateSettingsCommand,
|
|
4217
4311
|
ValidateAssessmentReportIntegrityCommand
|
|
4218
4312
|
};
|
|
4219
|
-
var
|
|
4313
|
+
var AuditManager = class extends AuditManagerClient {
|
|
4314
|
+
static {
|
|
4315
|
+
__name(this, "AuditManager");
|
|
4316
|
+
}
|
|
4220
4317
|
};
|
|
4221
|
-
__name(_AuditManager, "AuditManager");
|
|
4222
|
-
var AuditManager = _AuditManager;
|
|
4223
4318
|
(0, import_smithy_client.createAggregatedClient)(commands, AuditManager);
|
|
4224
4319
|
|
|
4225
4320
|
// src/pagination/GetChangeLogsPaginator.ts
|