@aws-sdk/client-inspector 3.952.0 → 3.954.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 +487 -333
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AddAttributesToFindingsCommand.js +2 -2
- package/dist-es/commands/CreateAssessmentTargetCommand.js +2 -2
- package/dist-es/commands/CreateAssessmentTemplateCommand.js +2 -2
- package/dist-es/commands/CreateExclusionsPreviewCommand.js +2 -2
- package/dist-es/commands/CreateResourceGroupCommand.js +2 -2
- package/dist-es/commands/DeleteAssessmentRunCommand.js +2 -2
- package/dist-es/commands/DeleteAssessmentTargetCommand.js +2 -2
- package/dist-es/commands/DeleteAssessmentTemplateCommand.js +2 -2
- package/dist-es/commands/DescribeAssessmentRunsCommand.js +2 -2
- package/dist-es/commands/DescribeAssessmentTargetsCommand.js +2 -2
- package/dist-es/commands/DescribeAssessmentTemplatesCommand.js +2 -2
- package/dist-es/commands/DescribeCrossAccountAccessRoleCommand.js +2 -2
- package/dist-es/commands/DescribeExclusionsCommand.js +2 -2
- package/dist-es/commands/DescribeFindingsCommand.js +2 -2
- package/dist-es/commands/DescribeResourceGroupsCommand.js +2 -2
- package/dist-es/commands/DescribeRulesPackagesCommand.js +2 -2
- package/dist-es/commands/GetAssessmentReportCommand.js +2 -2
- package/dist-es/commands/GetExclusionsPreviewCommand.js +2 -2
- package/dist-es/commands/GetTelemetryMetadataCommand.js +2 -2
- package/dist-es/commands/ListAssessmentRunAgentsCommand.js +2 -2
- package/dist-es/commands/ListAssessmentRunsCommand.js +2 -2
- package/dist-es/commands/ListAssessmentTargetsCommand.js +2 -2
- package/dist-es/commands/ListAssessmentTemplatesCommand.js +2 -2
- package/dist-es/commands/ListEventSubscriptionsCommand.js +2 -2
- package/dist-es/commands/ListExclusionsCommand.js +2 -2
- package/dist-es/commands/ListFindingsCommand.js +2 -2
- package/dist-es/commands/ListRulesPackagesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PreviewAgentsCommand.js +2 -2
- package/dist-es/commands/RegisterCrossAccountAccessRoleCommand.js +2 -2
- package/dist-es/commands/RemoveAttributesFromFindingsCommand.js +2 -2
- package/dist-es/commands/SetTagsForResourceCommand.js +2 -2
- package/dist-es/commands/StartAssessmentRunCommand.js +2 -2
- package/dist-es/commands/StopAssessmentRunCommand.js +2 -2
- package/dist-es/commands/SubscribeToEventCommand.js +2 -2
- package/dist-es/commands/UnsubscribeFromEventCommand.js +2 -2
- package/dist-es/commands/UpdateAssessmentTargetCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +291 -283
- package/dist-types/InspectorClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +147 -194
- package/dist-types/ts3.4/InspectorClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +146 -195
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.inspector",
|
|
32
|
+
version: "2016-02-16",
|
|
33
|
+
serviceTarget: "InspectorService",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Inspector",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddAttributesToFindings } from "../schemas/schemas_0";
|
|
4
|
+
import { AddAttributesToFindings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddAttributesToFindingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddAttributesToFindingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "AddAttributesToFindings", {})
|
|
13
13
|
.n("InspectorClient", "AddAttributesToFindingsCommand")
|
|
14
|
-
.sc(AddAttributesToFindings)
|
|
14
|
+
.sc(AddAttributesToFindings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAssessmentTarget } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAssessmentTarget$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAssessmentTargetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAssessmentTargetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "CreateAssessmentTarget", {})
|
|
13
13
|
.n("InspectorClient", "CreateAssessmentTargetCommand")
|
|
14
|
-
.sc(CreateAssessmentTarget)
|
|
14
|
+
.sc(CreateAssessmentTarget$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateAssessmentTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateAssessmentTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAssessmentTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAssessmentTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "CreateAssessmentTemplate", {})
|
|
13
13
|
.n("InspectorClient", "CreateAssessmentTemplateCommand")
|
|
14
|
-
.sc(CreateAssessmentTemplate)
|
|
14
|
+
.sc(CreateAssessmentTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateExclusionsPreview } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateExclusionsPreview$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateExclusionsPreviewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateExclusionsPreviewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "CreateExclusionsPreview", {})
|
|
13
13
|
.n("InspectorClient", "CreateExclusionsPreviewCommand")
|
|
14
|
-
.sc(CreateExclusionsPreview)
|
|
14
|
+
.sc(CreateExclusionsPreview$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateResourceGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateResourceGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateResourceGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateResourceGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "CreateResourceGroup", {})
|
|
13
13
|
.n("InspectorClient", "CreateResourceGroupCommand")
|
|
14
|
-
.sc(CreateResourceGroup)
|
|
14
|
+
.sc(CreateResourceGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAssessmentRun } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAssessmentRun$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAssessmentRunCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAssessmentRunCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DeleteAssessmentRun", {})
|
|
13
13
|
.n("InspectorClient", "DeleteAssessmentRunCommand")
|
|
14
|
-
.sc(DeleteAssessmentRun)
|
|
14
|
+
.sc(DeleteAssessmentRun$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAssessmentTarget } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAssessmentTarget$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAssessmentTargetCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAssessmentTargetCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DeleteAssessmentTarget", {})
|
|
13
13
|
.n("InspectorClient", "DeleteAssessmentTargetCommand")
|
|
14
|
-
.sc(DeleteAssessmentTarget)
|
|
14
|
+
.sc(DeleteAssessmentTarget$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAssessmentTemplate } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAssessmentTemplate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAssessmentTemplateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAssessmentTemplateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DeleteAssessmentTemplate", {})
|
|
13
13
|
.n("InspectorClient", "DeleteAssessmentTemplateCommand")
|
|
14
|
-
.sc(DeleteAssessmentTemplate)
|
|
14
|
+
.sc(DeleteAssessmentTemplate$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAssessmentRuns } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAssessmentRuns$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAssessmentRunsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAssessmentRunsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeAssessmentRuns", {})
|
|
13
13
|
.n("InspectorClient", "DescribeAssessmentRunsCommand")
|
|
14
|
-
.sc(DescribeAssessmentRuns)
|
|
14
|
+
.sc(DescribeAssessmentRuns$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAssessmentTargets } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAssessmentTargets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAssessmentTargetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAssessmentTargetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeAssessmentTargets", {})
|
|
13
13
|
.n("InspectorClient", "DescribeAssessmentTargetsCommand")
|
|
14
|
-
.sc(DescribeAssessmentTargets)
|
|
14
|
+
.sc(DescribeAssessmentTargets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeAssessmentTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeAssessmentTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeAssessmentTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeAssessmentTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeAssessmentTemplates", {})
|
|
13
13
|
.n("InspectorClient", "DescribeAssessmentTemplatesCommand")
|
|
14
|
-
.sc(DescribeAssessmentTemplates)
|
|
14
|
+
.sc(DescribeAssessmentTemplates$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeCrossAccountAccessRole } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeCrossAccountAccessRole$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeCrossAccountAccessRoleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeCrossAccountAccessRoleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeCrossAccountAccessRole", {})
|
|
13
13
|
.n("InspectorClient", "DescribeCrossAccountAccessRoleCommand")
|
|
14
|
-
.sc(DescribeCrossAccountAccessRole)
|
|
14
|
+
.sc(DescribeCrossAccountAccessRole$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeExclusions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeExclusions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeExclusionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeExclusionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeExclusions", {})
|
|
13
13
|
.n("InspectorClient", "DescribeExclusionsCommand")
|
|
14
|
-
.sc(DescribeExclusions)
|
|
14
|
+
.sc(DescribeExclusions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeFindings } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeFindings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeFindingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeFindingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeFindings", {})
|
|
13
13
|
.n("InspectorClient", "DescribeFindingsCommand")
|
|
14
|
-
.sc(DescribeFindings)
|
|
14
|
+
.sc(DescribeFindings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeResourceGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeResourceGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeResourceGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeResourceGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeResourceGroups", {})
|
|
13
13
|
.n("InspectorClient", "DescribeResourceGroupsCommand")
|
|
14
|
-
.sc(DescribeResourceGroups)
|
|
14
|
+
.sc(DescribeResourceGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRulesPackages } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRulesPackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRulesPackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRulesPackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "DescribeRulesPackages", {})
|
|
13
13
|
.n("InspectorClient", "DescribeRulesPackagesCommand")
|
|
14
|
-
.sc(DescribeRulesPackages)
|
|
14
|
+
.sc(DescribeRulesPackages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetAssessmentReport } from "../schemas/schemas_0";
|
|
4
|
+
import { GetAssessmentReport$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAssessmentReportCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAssessmentReportCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "GetAssessmentReport", {})
|
|
13
13
|
.n("InspectorClient", "GetAssessmentReportCommand")
|
|
14
|
-
.sc(GetAssessmentReport)
|
|
14
|
+
.sc(GetAssessmentReport$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetExclusionsPreview } from "../schemas/schemas_0";
|
|
4
|
+
import { GetExclusionsPreview$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetExclusionsPreviewCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetExclusionsPreviewCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "GetExclusionsPreview", {})
|
|
13
13
|
.n("InspectorClient", "GetExclusionsPreviewCommand")
|
|
14
|
-
.sc(GetExclusionsPreview)
|
|
14
|
+
.sc(GetExclusionsPreview$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTelemetryMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTelemetryMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTelemetryMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTelemetryMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "GetTelemetryMetadata", {})
|
|
13
13
|
.n("InspectorClient", "GetTelemetryMetadataCommand")
|
|
14
|
-
.sc(GetTelemetryMetadata)
|
|
14
|
+
.sc(GetTelemetryMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssessmentRunAgents } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssessmentRunAgents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssessmentRunAgentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssessmentRunAgentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListAssessmentRunAgents", {})
|
|
13
13
|
.n("InspectorClient", "ListAssessmentRunAgentsCommand")
|
|
14
|
-
.sc(ListAssessmentRunAgents)
|
|
14
|
+
.sc(ListAssessmentRunAgents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssessmentRuns } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssessmentRuns$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssessmentRunsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssessmentRunsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListAssessmentRuns", {})
|
|
13
13
|
.n("InspectorClient", "ListAssessmentRunsCommand")
|
|
14
|
-
.sc(ListAssessmentRuns)
|
|
14
|
+
.sc(ListAssessmentRuns$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssessmentTargets } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssessmentTargets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssessmentTargetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssessmentTargetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListAssessmentTargets", {})
|
|
13
13
|
.n("InspectorClient", "ListAssessmentTargetsCommand")
|
|
14
|
-
.sc(ListAssessmentTargets)
|
|
14
|
+
.sc(ListAssessmentTargets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListAssessmentTemplates } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAssessmentTemplates$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAssessmentTemplatesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAssessmentTemplatesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListAssessmentTemplates", {})
|
|
13
13
|
.n("InspectorClient", "ListAssessmentTemplatesCommand")
|
|
14
|
-
.sc(ListAssessmentTemplates)
|
|
14
|
+
.sc(ListAssessmentTemplates$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListEventSubscriptions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEventSubscriptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEventSubscriptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEventSubscriptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListEventSubscriptions", {})
|
|
13
13
|
.n("InspectorClient", "ListEventSubscriptionsCommand")
|
|
14
|
-
.sc(ListEventSubscriptions)
|
|
14
|
+
.sc(ListEventSubscriptions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListExclusions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListExclusions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListExclusionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListExclusionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListExclusions", {})
|
|
13
13
|
.n("InspectorClient", "ListExclusionsCommand")
|
|
14
|
-
.sc(ListExclusions)
|
|
14
|
+
.sc(ListExclusions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListFindings } from "../schemas/schemas_0";
|
|
4
|
+
import { ListFindings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListFindingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListFindingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListFindings", {})
|
|
13
13
|
.n("InspectorClient", "ListFindingsCommand")
|
|
14
|
-
.sc(ListFindings)
|
|
14
|
+
.sc(ListFindings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRulesPackages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRulesPackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRulesPackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRulesPackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListRulesPackages", {})
|
|
13
13
|
.n("InspectorClient", "ListRulesPackagesCommand")
|
|
14
|
-
.sc(ListRulesPackages)
|
|
14
|
+
.sc(ListRulesPackages$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "ListTagsForResource", {})
|
|
13
13
|
.n("InspectorClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PreviewAgents } from "../schemas/schemas_0";
|
|
4
|
+
import { PreviewAgents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PreviewAgentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PreviewAgentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "PreviewAgents", {})
|
|
13
13
|
.n("InspectorClient", "PreviewAgentsCommand")
|
|
14
|
-
.sc(PreviewAgents)
|
|
14
|
+
.sc(PreviewAgents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RegisterCrossAccountAccessRole } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterCrossAccountAccessRole$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterCrossAccountAccessRoleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterCrossAccountAccessRoleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "RegisterCrossAccountAccessRole", {})
|
|
13
13
|
.n("InspectorClient", "RegisterCrossAccountAccessRoleCommand")
|
|
14
|
-
.sc(RegisterCrossAccountAccessRole)
|
|
14
|
+
.sc(RegisterCrossAccountAccessRole$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { RemoveAttributesFromFindings } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveAttributesFromFindings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveAttributesFromFindingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveAttributesFromFindingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "RemoveAttributesFromFindings", {})
|
|
13
13
|
.n("InspectorClient", "RemoveAttributesFromFindingsCommand")
|
|
14
|
-
.sc(RemoveAttributesFromFindings)
|
|
14
|
+
.sc(RemoveAttributesFromFindings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SetTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { SetTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SetTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SetTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "SetTagsForResource", {})
|
|
13
13
|
.n("InspectorClient", "SetTagsForResourceCommand")
|
|
14
|
-
.sc(SetTagsForResource)
|
|
14
|
+
.sc(SetTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartAssessmentRun } from "../schemas/schemas_0";
|
|
4
|
+
import { StartAssessmentRun$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartAssessmentRunCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartAssessmentRunCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "StartAssessmentRun", {})
|
|
13
13
|
.n("InspectorClient", "StartAssessmentRunCommand")
|
|
14
|
-
.sc(StartAssessmentRun)
|
|
14
|
+
.sc(StartAssessmentRun$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopAssessmentRun } from "../schemas/schemas_0";
|
|
4
|
+
import { StopAssessmentRun$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopAssessmentRunCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopAssessmentRunCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "StopAssessmentRun", {})
|
|
13
13
|
.n("InspectorClient", "StopAssessmentRunCommand")
|
|
14
|
-
.sc(StopAssessmentRun)
|
|
14
|
+
.sc(StopAssessmentRun$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SubscribeToEvent } from "../schemas/schemas_0";
|
|
4
|
+
import { SubscribeToEvent$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SubscribeToEventCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SubscribeToEventCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("InspectorService", "SubscribeToEvent", {})
|
|
13
13
|
.n("InspectorClient", "SubscribeToEventCommand")
|
|
14
|
-
.sc(SubscribeToEvent)
|
|
14
|
+
.sc(SubscribeToEvent$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|