@aws-sdk/client-panorama 3.928.0 → 3.930.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 +1580 -1595
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/PanoramaClient.js +2 -0
- package/dist-es/commands/CreateApplicationInstanceCommand.js +3 -9
- package/dist-es/commands/CreateJobForDevicesCommand.js +3 -9
- package/dist-es/commands/CreateNodeFromTemplateJobCommand.js +3 -10
- package/dist-es/commands/CreatePackageCommand.js +3 -9
- package/dist-es/commands/CreatePackageImportJobCommand.js +3 -9
- package/dist-es/commands/DeleteDeviceCommand.js +3 -9
- package/dist-es/commands/DeletePackageCommand.js +3 -9
- package/dist-es/commands/DeregisterPackageVersionCommand.js +3 -9
- package/dist-es/commands/DescribeApplicationInstanceCommand.js +3 -9
- package/dist-es/commands/DescribeApplicationInstanceDetailsCommand.js +3 -9
- package/dist-es/commands/DescribeDeviceCommand.js +3 -9
- package/dist-es/commands/DescribeDeviceJobCommand.js +3 -9
- package/dist-es/commands/DescribeNodeCommand.js +3 -9
- package/dist-es/commands/DescribeNodeFromTemplateJobCommand.js +3 -10
- package/dist-es/commands/DescribePackageCommand.js +3 -9
- package/dist-es/commands/DescribePackageImportJobCommand.js +3 -9
- package/dist-es/commands/DescribePackageVersionCommand.js +3 -9
- package/dist-es/commands/ListApplicationInstanceDependenciesCommand.js +3 -9
- package/dist-es/commands/ListApplicationInstanceNodeInstancesCommand.js +3 -9
- package/dist-es/commands/ListApplicationInstancesCommand.js +3 -9
- package/dist-es/commands/ListDevicesCommand.js +3 -9
- package/dist-es/commands/ListDevicesJobsCommand.js +3 -9
- package/dist-es/commands/ListNodeFromTemplateJobsCommand.js +3 -9
- package/dist-es/commands/ListNodesCommand.js +3 -9
- package/dist-es/commands/ListPackageImportJobsCommand.js +3 -9
- package/dist-es/commands/ListPackagesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ProvisionDeviceCommand.js +3 -9
- package/dist-es/commands/RegisterPackageVersionCommand.js +3 -9
- package/dist-es/commands/RemoveApplicationInstanceCommand.js +3 -9
- package/dist-es/commands/SignalApplicationInstanceNodeInstancesCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateDeviceMetadataCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -25
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1521 -0
- package/dist-types/PanoramaClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +8 -10
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +177 -0
- package/dist-types/ts3.4/PanoramaClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +184 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -1337
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -308
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -413
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListNodeFromTemplateJobs } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListNodeFromTemplateJobsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "ListNodeFromTemplateJobs", {})
|
|
17
13
|
.n("PanoramaClient", "ListNodeFromTemplateJobsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListNodeFromTemplateJobsCommand)
|
|
20
|
-
.de(de_ListNodeFromTemplateJobsCommand)
|
|
14
|
+
.sc(ListNodeFromTemplateJobs)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListNodes } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListNodesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "ListNodes", {})
|
|
17
13
|
.n("PanoramaClient", "ListNodesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListNodesCommand)
|
|
20
|
-
.de(de_ListNodesCommand)
|
|
14
|
+
.sc(ListNodes)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListPackageImportJobs } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListPackageImportJobsCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "ListPackageImportJobs", {})
|
|
17
13
|
.n("PanoramaClient", "ListPackageImportJobsCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListPackageImportJobsCommand)
|
|
20
|
-
.de(de_ListPackageImportJobsCommand)
|
|
14
|
+
.sc(ListPackageImportJobs)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListPackages } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListPackagesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "ListPackages", {})
|
|
17
13
|
.n("PanoramaClient", "ListPackagesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListPackagesCommand)
|
|
20
|
-
.de(de_ListPackagesCommand)
|
|
14
|
+
.sc(ListPackages)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ListTagsForResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "ListTagsForResource", {})
|
|
17
13
|
.n("PanoramaClient", "ListTagsForResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ListTagsForResourceCommand)
|
|
20
|
-
.de(de_ListTagsForResourceCommand)
|
|
14
|
+
.sc(ListTagsForResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { ProvisionDevice } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class ProvisionDeviceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "ProvisionDevice", {})
|
|
17
13
|
.n("PanoramaClient", "ProvisionDeviceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_ProvisionDeviceCommand)
|
|
20
|
-
.de(de_ProvisionDeviceCommand)
|
|
14
|
+
.sc(ProvisionDevice)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { RegisterPackageVersion } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class RegisterPackageVersionCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "RegisterPackageVersion", {})
|
|
17
13
|
.n("PanoramaClient", "RegisterPackageVersionCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_RegisterPackageVersionCommand)
|
|
20
|
-
.de(de_RegisterPackageVersionCommand)
|
|
14
|
+
.sc(RegisterPackageVersion)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { RemoveApplicationInstance } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class RemoveApplicationInstanceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "RemoveApplicationInstance", {})
|
|
17
13
|
.n("PanoramaClient", "RemoveApplicationInstanceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_RemoveApplicationInstanceCommand)
|
|
20
|
-
.de(de_RemoveApplicationInstanceCommand)
|
|
14
|
+
.sc(RemoveApplicationInstance)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { SignalApplicationInstanceNodeInstances } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class SignalApplicationInstanceNodeInstancesCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "SignalApplicationInstanceNodeInstances", {})
|
|
17
13
|
.n("PanoramaClient", "SignalApplicationInstanceNodeInstancesCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_SignalApplicationInstanceNodeInstancesCommand)
|
|
20
|
-
.de(de_SignalApplicationInstanceNodeInstancesCommand)
|
|
14
|
+
.sc(SignalApplicationInstanceNodeInstances)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { TagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class TagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "TagResource", {})
|
|
17
13
|
.n("PanoramaClient", "TagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_TagResourceCommand)
|
|
20
|
-
.de(de_TagResourceCommand)
|
|
14
|
+
.sc(TagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UntagResource } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UntagResourceCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "UntagResource", {})
|
|
17
13
|
.n("PanoramaClient", "UntagResourceCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UntagResourceCommand)
|
|
20
|
-
.de(de_UntagResourceCommand)
|
|
14
|
+
.sc(UntagResource)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import {
|
|
4
|
+
import { UpdateDeviceMetadata } from "../schemas/schemas_0";
|
|
6
5
|
export { $Command };
|
|
7
6
|
export class UpdateDeviceMetadataCommand extends $Command
|
|
8
7
|
.classBuilder()
|
|
9
8
|
.ep(commonParams)
|
|
10
9
|
.m(function (Command, cs, config, o) {
|
|
11
|
-
return [
|
|
12
|
-
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
-
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
-
];
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
15
11
|
})
|
|
16
12
|
.s("OmniCloudServiceLambda", "UpdateDeviceMetadata", {})
|
|
17
13
|
.n("PanoramaClient", "UpdateDeviceMetadataCommand")
|
|
18
|
-
.
|
|
19
|
-
.ser(se_UpdateDeviceMetadataCommand)
|
|
20
|
-
.de(de_UpdateDeviceMetadataCommand)
|
|
14
|
+
.sc(UpdateDeviceMetadata)
|
|
21
15
|
.build() {
|
|
22
16
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
1
|
import { PanoramaServiceException as __BaseException } from "./PanoramaServiceException";
|
|
3
2
|
export class AccessDeniedException extends __BaseException {
|
|
4
3
|
name = "AccessDeniedException";
|
|
@@ -76,22 +75,6 @@ export const ConnectionType = {
|
|
|
76
75
|
DHCP: "DHCP",
|
|
77
76
|
STATIC_IP: "STATIC_IP",
|
|
78
77
|
};
|
|
79
|
-
export var ManifestOverridesPayload;
|
|
80
|
-
(function (ManifestOverridesPayload) {
|
|
81
|
-
ManifestOverridesPayload.visit = (value, visitor) => {
|
|
82
|
-
if (value.PayloadData !== undefined)
|
|
83
|
-
return visitor.PayloadData(value.PayloadData);
|
|
84
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
85
|
-
};
|
|
86
|
-
})(ManifestOverridesPayload || (ManifestOverridesPayload = {}));
|
|
87
|
-
export var ManifestPayload;
|
|
88
|
-
(function (ManifestPayload) {
|
|
89
|
-
ManifestPayload.visit = (value, visitor) => {
|
|
90
|
-
if (value.PayloadData !== undefined)
|
|
91
|
-
return visitor.PayloadData(value.PayloadData);
|
|
92
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
93
|
-
};
|
|
94
|
-
})(ManifestPayload || (ManifestPayload = {}));
|
|
95
78
|
export class InternalServerException extends __BaseException {
|
|
96
79
|
name = "InternalServerException";
|
|
97
80
|
$fault = "server";
|
|
@@ -297,11 +280,3 @@ export const NodeSignalValue = {
|
|
|
297
280
|
PAUSE: "PAUSE",
|
|
298
281
|
RESUME: "RESUME",
|
|
299
282
|
};
|
|
300
|
-
export const CreateNodeFromTemplateJobRequestFilterSensitiveLog = (obj) => ({
|
|
301
|
-
...obj,
|
|
302
|
-
...(obj.TemplateParameters && { TemplateParameters: SENSITIVE_STRING }),
|
|
303
|
-
});
|
|
304
|
-
export const DescribeNodeFromTemplateJobResponseFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
...(obj.TemplateParameters && { TemplateParameters: SENSITIVE_STRING }),
|
|
307
|
-
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
3
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
4
5
|
import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
22
23
|
},
|
|
23
24
|
],
|
|
24
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.panorama" }),
|
|
25
27
|
serviceId: config?.serviceId ?? "Panorama",
|
|
26
28
|
urlParser: config?.urlParser ?? parseUrl,
|
|
27
29
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|