@aws-sdk/client-auditmanager 3.398.0 → 3.403.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/commands/BatchCreateDelegationByAssessmentCommand.js +3 -2
- package/dist-cjs/commands/BatchDeleteDelegationByAssessmentCommand.js +2 -1
- package/dist-cjs/commands/BatchImportEvidenceToAssessmentControlCommand.js +3 -2
- package/dist-cjs/commands/CreateAssessmentCommand.js +3 -2
- package/dist-cjs/commands/CreateAssessmentFrameworkCommand.js +3 -2
- package/dist-cjs/commands/CreateAssessmentReportCommand.js +3 -2
- package/dist-cjs/commands/CreateControlCommand.js +3 -2
- package/dist-cjs/commands/GetAssessmentCommand.js +2 -1
- package/dist-cjs/commands/GetAssessmentFrameworkCommand.js +2 -1
- package/dist-cjs/commands/GetControlCommand.js +2 -1
- package/dist-cjs/commands/GetDelegationsCommand.js +2 -1
- package/dist-cjs/commands/GetEvidenceFileUploadUrlCommand.js +3 -2
- package/dist-cjs/commands/GetSettingsCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentFrameworkShareRequestsCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentFrameworksCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentReportsCommand.js +2 -1
- package/dist-cjs/commands/ListAssessmentsCommand.js +2 -1
- package/dist-cjs/commands/ListNotificationsCommand.js +2 -1
- package/dist-cjs/commands/StartAssessmentFrameworkShareCommand.js +2 -1
- package/dist-cjs/commands/UpdateAssessmentCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentControlCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentControlSetStatusCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentFrameworkCommand.js +3 -2
- package/dist-cjs/commands/UpdateAssessmentFrameworkShareCommand.js +2 -1
- package/dist-cjs/commands/UpdateAssessmentStatusCommand.js +2 -1
- package/dist-cjs/commands/UpdateControlCommand.js +3 -2
- package/dist-cjs/commands/UpdateSettingsCommand.js +3 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +413 -1
- package/dist-es/commands/BatchCreateDelegationByAssessmentCommand.js +3 -2
- package/dist-es/commands/BatchDeleteDelegationByAssessmentCommand.js +2 -1
- package/dist-es/commands/BatchImportEvidenceToAssessmentControlCommand.js +3 -2
- package/dist-es/commands/CreateAssessmentCommand.js +3 -2
- package/dist-es/commands/CreateAssessmentFrameworkCommand.js +3 -2
- package/dist-es/commands/CreateAssessmentReportCommand.js +3 -2
- package/dist-es/commands/CreateControlCommand.js +3 -2
- package/dist-es/commands/GetAssessmentCommand.js +2 -1
- package/dist-es/commands/GetAssessmentFrameworkCommand.js +2 -1
- package/dist-es/commands/GetControlCommand.js +2 -1
- package/dist-es/commands/GetDelegationsCommand.js +2 -1
- package/dist-es/commands/GetEvidenceFileUploadUrlCommand.js +3 -2
- package/dist-es/commands/GetSettingsCommand.js +2 -1
- package/dist-es/commands/ListAssessmentFrameworkShareRequestsCommand.js +2 -1
- package/dist-es/commands/ListAssessmentFrameworksCommand.js +2 -1
- package/dist-es/commands/ListAssessmentReportsCommand.js +2 -1
- package/dist-es/commands/ListAssessmentsCommand.js +2 -1
- package/dist-es/commands/ListNotificationsCommand.js +2 -1
- package/dist-es/commands/StartAssessmentFrameworkShareCommand.js +2 -1
- package/dist-es/commands/UpdateAssessmentCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentControlCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentControlSetStatusCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentFrameworkCommand.js +3 -2
- package/dist-es/commands/UpdateAssessmentFrameworkShareCommand.js +2 -1
- package/dist-es/commands/UpdateAssessmentStatusCommand.js +2 -1
- package/dist-es/commands/UpdateControlCommand.js +3 -2
- package/dist-es/commands/UpdateSettingsCommand.js +3 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +343 -0
- package/dist-types/models/models_0.d.ts +272 -0
- package/dist-types/ts3.4/models/models_0.d.ts +186 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { GetEvidenceFileUploadUrlRequestFilterSensitiveLog, GetEvidenceFileUploadUrlResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_GetEvidenceFileUploadUrlCommand, se_GetEvidenceFileUploadUrlCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class GetEvidenceFileUploadUrlCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class GetEvidenceFileUploadUrlCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: GetEvidenceFileUploadUrlRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: GetEvidenceFileUploadUrlResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { GetSettingsResponseFilterSensitiveLog } from "../models/models_0";
|
|
4
5
|
import { de_GetSettingsCommand, se_GetSettingsCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class GetSettingsCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class GetSettingsCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: GetSettingsResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { ListAssessmentFrameworkShareRequestsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ListAssessmentFrameworkShareRequestsCommand, se_ListAssessmentFrameworkShareRequestsCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ListAssessmentFrameworkShareRequestsCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ListAssessmentFrameworkShareRequestsCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ListAssessmentFrameworkShareRequestsResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { ListAssessmentFrameworksResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ListAssessmentFrameworksCommand, se_ListAssessmentFrameworksCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ListAssessmentFrameworksCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ListAssessmentFrameworksCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ListAssessmentFrameworksResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { ListAssessmentReportsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ListAssessmentReportsCommand, se_ListAssessmentReportsCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ListAssessmentReportsCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ListAssessmentReportsCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ListAssessmentReportsResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { ListAssessmentsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ListAssessmentsCommand, se_ListAssessmentsCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ListAssessmentsCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ListAssessmentsCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ListAssessmentsResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { ListNotificationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_ListNotificationsCommand, se_ListNotificationsCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class ListNotificationsCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class ListNotificationsCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: ListNotificationsResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { StartAssessmentFrameworkShareResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_StartAssessmentFrameworkShareCommand, se_StartAssessmentFrameworkShareCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class StartAssessmentFrameworkShareCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class StartAssessmentFrameworkShareCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: StartAssessmentFrameworkShareResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateAssessmentRequestFilterSensitiveLog, UpdateAssessmentResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateAssessmentCommand, se_UpdateAssessmentCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateAssessmentCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class UpdateAssessmentCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateAssessmentRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: UpdateAssessmentResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateAssessmentControlRequestFilterSensitiveLog, UpdateAssessmentControlResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateAssessmentControlCommand, se_UpdateAssessmentControlCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateAssessmentControlCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class UpdateAssessmentControlCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateAssessmentControlRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: UpdateAssessmentControlResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateAssessmentControlSetStatusRequestFilterSensitiveLog, UpdateAssessmentControlSetStatusResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateAssessmentControlSetStatusCommand, se_UpdateAssessmentControlSetStatusCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateAssessmentControlSetStatusCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class UpdateAssessmentControlSetStatusCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateAssessmentControlSetStatusRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: UpdateAssessmentControlSetStatusResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateAssessmentFrameworkRequestFilterSensitiveLog, UpdateAssessmentFrameworkResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateAssessmentFrameworkCommand, se_UpdateAssessmentFrameworkCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateAssessmentFrameworkCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class UpdateAssessmentFrameworkCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateAssessmentFrameworkRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: UpdateAssessmentFrameworkResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateAssessmentFrameworkShareResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateAssessmentFrameworkShareCommand, se_UpdateAssessmentFrameworkShareCommand, } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateAssessmentFrameworkShareCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class UpdateAssessmentFrameworkShareCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: UpdateAssessmentFrameworkShareResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateAssessmentStatusResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateAssessmentStatusCommand, se_UpdateAssessmentStatusCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateAssessmentStatusCommand extends $Command {
|
|
@@ -28,7 +29,7 @@ export class UpdateAssessmentStatusCommand extends $Command {
|
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
31
|
inputFilterSensitiveLog: (_) => _,
|
|
31
|
-
outputFilterSensitiveLog:
|
|
32
|
+
outputFilterSensitiveLog: UpdateAssessmentStatusResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateControlRequestFilterSensitiveLog, UpdateControlResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateControlCommand, se_UpdateControlCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateControlCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class UpdateControlCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateControlRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: UpdateControlResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { UpdateSettingsRequestFilterSensitiveLog, UpdateSettingsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { de_UpdateSettingsCommand, se_UpdateSettingsCommand } from "../protocols/Aws_restJson1";
|
|
5
6
|
export { $Command };
|
|
6
7
|
export class UpdateSettingsCommand extends $Command {
|
|
@@ -27,8 +28,8 @@ export class UpdateSettingsCommand extends $Command {
|
|
|
27
28
|
logger,
|
|
28
29
|
clientName,
|
|
29
30
|
commandName,
|
|
30
|
-
inputFilterSensitiveLog:
|
|
31
|
-
outputFilterSensitiveLog:
|
|
31
|
+
inputFilterSensitiveLog: UpdateSettingsRequestFilterSensitiveLog,
|
|
32
|
+
outputFilterSensitiveLog: UpdateSettingsResponseFilterSensitiveLog,
|
|
32
33
|
};
|
|
33
34
|
const { requestHandler } = configuration;
|
|
34
35
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
2
2
|
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
3
|
-
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, {
|
|
3
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }, { conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ endpoint: { url: "https://auditmanager-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ endpoint: { url: "https://auditmanager-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ endpoint: { url: "https://auditmanager.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { endpoint: { url: "https://auditmanager.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] };
|
|
4
4
|
export const ruleSet = _data;
|