@aws-sdk/client-panorama 3.952.0 → 3.953.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 +467 -324
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateApplicationInstanceCommand.js +2 -2
- package/dist-es/commands/CreateJobForDevicesCommand.js +2 -2
- package/dist-es/commands/CreateNodeFromTemplateJobCommand.js +2 -2
- package/dist-es/commands/CreatePackageCommand.js +2 -2
- package/dist-es/commands/CreatePackageImportJobCommand.js +2 -2
- package/dist-es/commands/DeleteDeviceCommand.js +2 -2
- package/dist-es/commands/DeletePackageCommand.js +2 -2
- package/dist-es/commands/DeregisterPackageVersionCommand.js +2 -2
- package/dist-es/commands/DescribeApplicationInstanceCommand.js +2 -2
- package/dist-es/commands/DescribeApplicationInstanceDetailsCommand.js +2 -2
- package/dist-es/commands/DescribeDeviceCommand.js +2 -2
- package/dist-es/commands/DescribeDeviceJobCommand.js +2 -2
- package/dist-es/commands/DescribeNodeCommand.js +2 -2
- package/dist-es/commands/DescribeNodeFromTemplateJobCommand.js +2 -2
- package/dist-es/commands/DescribePackageCommand.js +2 -2
- package/dist-es/commands/DescribePackageImportJobCommand.js +2 -2
- package/dist-es/commands/DescribePackageVersionCommand.js +2 -2
- package/dist-es/commands/ListApplicationInstanceDependenciesCommand.js +2 -2
- package/dist-es/commands/ListApplicationInstanceNodeInstancesCommand.js +2 -2
- package/dist-es/commands/ListApplicationInstancesCommand.js +2 -2
- package/dist-es/commands/ListDevicesCommand.js +2 -2
- package/dist-es/commands/ListDevicesJobsCommand.js +2 -2
- package/dist-es/commands/ListNodeFromTemplateJobsCommand.js +2 -2
- package/dist-es/commands/ListNodesCommand.js +2 -2
- package/dist-es/commands/ListPackageImportJobsCommand.js +2 -2
- package/dist-es/commands/ListPackagesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ProvisionDeviceCommand.js +2 -2
- package/dist-es/commands/RegisterPackageVersionCommand.js +2 -2
- package/dist-es/commands/RemoveApplicationInstanceCommand.js +2 -2
- package/dist-es/commands/SignalApplicationInstanceNodeInstancesCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateDeviceMetadataCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +275 -281
- package/dist-types/PanoramaClient.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 +150 -177
- package/dist-types/ts3.4/PanoramaClient.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 +149 -179
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.panorama",
|
|
32
|
+
version: "2019-07-24",
|
|
33
|
+
serviceTarget: "OmniCloudServiceLambda",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "Panorama",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
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 { CreateApplicationInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateApplicationInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateApplicationInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateApplicationInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "CreateApplicationInstance", {})
|
|
13
13
|
.n("PanoramaClient", "CreateApplicationInstanceCommand")
|
|
14
|
-
.sc(CreateApplicationInstance)
|
|
14
|
+
.sc(CreateApplicationInstance$)
|
|
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 { CreateJobForDevices } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateJobForDevices$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateJobForDevicesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateJobForDevicesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "CreateJobForDevices", {})
|
|
13
13
|
.n("PanoramaClient", "CreateJobForDevicesCommand")
|
|
14
|
-
.sc(CreateJobForDevices)
|
|
14
|
+
.sc(CreateJobForDevices$)
|
|
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 { CreateNodeFromTemplateJob } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateNodeFromTemplateJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateNodeFromTemplateJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateNodeFromTemplateJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "CreateNodeFromTemplateJob", {})
|
|
13
13
|
.n("PanoramaClient", "CreateNodeFromTemplateJobCommand")
|
|
14
|
-
.sc(CreateNodeFromTemplateJob)
|
|
14
|
+
.sc(CreateNodeFromTemplateJob$)
|
|
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 { CreatePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "CreatePackage", {})
|
|
13
13
|
.n("PanoramaClient", "CreatePackageCommand")
|
|
14
|
-
.sc(CreatePackage)
|
|
14
|
+
.sc(CreatePackage$)
|
|
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 { CreatePackageImportJob } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePackageImportJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePackageImportJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePackageImportJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "CreatePackageImportJob", {})
|
|
13
13
|
.n("PanoramaClient", "CreatePackageImportJobCommand")
|
|
14
|
-
.sc(CreatePackageImportJob)
|
|
14
|
+
.sc(CreatePackageImportJob$)
|
|
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 { DeleteDevice } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDevice$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDeviceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDeviceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DeleteDevice", {})
|
|
13
13
|
.n("PanoramaClient", "DeleteDeviceCommand")
|
|
14
|
-
.sc(DeleteDevice)
|
|
14
|
+
.sc(DeleteDevice$)
|
|
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 { DeletePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DeletePackage", {})
|
|
13
13
|
.n("PanoramaClient", "DeletePackageCommand")
|
|
14
|
-
.sc(DeletePackage)
|
|
14
|
+
.sc(DeletePackage$)
|
|
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 { DeregisterPackageVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DeregisterPackageVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeregisterPackageVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeregisterPackageVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DeregisterPackageVersion", {})
|
|
13
13
|
.n("PanoramaClient", "DeregisterPackageVersionCommand")
|
|
14
|
-
.sc(DeregisterPackageVersion)
|
|
14
|
+
.sc(DeregisterPackageVersion$)
|
|
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 { DescribeApplicationInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeApplicationInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeApplicationInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeApplicationInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribeApplicationInstance", {})
|
|
13
13
|
.n("PanoramaClient", "DescribeApplicationInstanceCommand")
|
|
14
|
-
.sc(DescribeApplicationInstance)
|
|
14
|
+
.sc(DescribeApplicationInstance$)
|
|
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 { DescribeApplicationInstanceDetails } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeApplicationInstanceDetails$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeApplicationInstanceDetailsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeApplicationInstanceDetailsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribeApplicationInstanceDetails", {})
|
|
13
13
|
.n("PanoramaClient", "DescribeApplicationInstanceDetailsCommand")
|
|
14
|
-
.sc(DescribeApplicationInstanceDetails)
|
|
14
|
+
.sc(DescribeApplicationInstanceDetails$)
|
|
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 { DescribeDevice } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDevice$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDeviceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDeviceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribeDevice", {})
|
|
13
13
|
.n("PanoramaClient", "DescribeDeviceCommand")
|
|
14
|
-
.sc(DescribeDevice)
|
|
14
|
+
.sc(DescribeDevice$)
|
|
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 { DescribeDeviceJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDeviceJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDeviceJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDeviceJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribeDeviceJob", {})
|
|
13
13
|
.n("PanoramaClient", "DescribeDeviceJobCommand")
|
|
14
|
-
.sc(DescribeDeviceJob)
|
|
14
|
+
.sc(DescribeDeviceJob$)
|
|
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 { DescribeNode } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeNode$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeNodeCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeNodeCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribeNode", {})
|
|
13
13
|
.n("PanoramaClient", "DescribeNodeCommand")
|
|
14
|
-
.sc(DescribeNode)
|
|
14
|
+
.sc(DescribeNode$)
|
|
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 { DescribeNodeFromTemplateJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeNodeFromTemplateJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeNodeFromTemplateJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeNodeFromTemplateJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribeNodeFromTemplateJob", {})
|
|
13
13
|
.n("PanoramaClient", "DescribeNodeFromTemplateJobCommand")
|
|
14
|
-
.sc(DescribeNodeFromTemplateJob)
|
|
14
|
+
.sc(DescribeNodeFromTemplateJob$)
|
|
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 { DescribePackage } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePackage$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePackageCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePackageCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribePackage", {})
|
|
13
13
|
.n("PanoramaClient", "DescribePackageCommand")
|
|
14
|
-
.sc(DescribePackage)
|
|
14
|
+
.sc(DescribePackage$)
|
|
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 { DescribePackageImportJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePackageImportJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePackageImportJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePackageImportJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribePackageImportJob", {})
|
|
13
13
|
.n("PanoramaClient", "DescribePackageImportJobCommand")
|
|
14
|
-
.sc(DescribePackageImportJob)
|
|
14
|
+
.sc(DescribePackageImportJob$)
|
|
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 { DescribePackageVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribePackageVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribePackageVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribePackageVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "DescribePackageVersion", {})
|
|
13
13
|
.n("PanoramaClient", "DescribePackageVersionCommand")
|
|
14
|
-
.sc(DescribePackageVersion)
|
|
14
|
+
.sc(DescribePackageVersion$)
|
|
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 { ListApplicationInstanceDependencies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplicationInstanceDependencies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationInstanceDependenciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationInstanceDependenciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListApplicationInstanceDependencies", {})
|
|
13
13
|
.n("PanoramaClient", "ListApplicationInstanceDependenciesCommand")
|
|
14
|
-
.sc(ListApplicationInstanceDependencies)
|
|
14
|
+
.sc(ListApplicationInstanceDependencies$)
|
|
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 { ListApplicationInstanceNodeInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplicationInstanceNodeInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationInstanceNodeInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationInstanceNodeInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListApplicationInstanceNodeInstances", {})
|
|
13
13
|
.n("PanoramaClient", "ListApplicationInstanceNodeInstancesCommand")
|
|
14
|
-
.sc(ListApplicationInstanceNodeInstances)
|
|
14
|
+
.sc(ListApplicationInstanceNodeInstances$)
|
|
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 { ListApplicationInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApplicationInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListApplicationInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListApplicationInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListApplicationInstances", {})
|
|
13
13
|
.n("PanoramaClient", "ListApplicationInstancesCommand")
|
|
14
|
-
.sc(ListApplicationInstances)
|
|
14
|
+
.sc(ListApplicationInstances$)
|
|
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 { ListDevices } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDevices$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDevicesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDevicesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListDevices", {})
|
|
13
13
|
.n("PanoramaClient", "ListDevicesCommand")
|
|
14
|
-
.sc(ListDevices)
|
|
14
|
+
.sc(ListDevices$)
|
|
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 { ListDevicesJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDevicesJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDevicesJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDevicesJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListDevicesJobs", {})
|
|
13
13
|
.n("PanoramaClient", "ListDevicesJobsCommand")
|
|
14
|
-
.sc(ListDevicesJobs)
|
|
14
|
+
.sc(ListDevicesJobs$)
|
|
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 { ListNodeFromTemplateJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListNodeFromTemplateJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListNodeFromTemplateJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListNodeFromTemplateJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListNodeFromTemplateJobs", {})
|
|
13
13
|
.n("PanoramaClient", "ListNodeFromTemplateJobsCommand")
|
|
14
|
-
.sc(ListNodeFromTemplateJobs)
|
|
14
|
+
.sc(ListNodeFromTemplateJobs$)
|
|
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 { ListNodes } from "../schemas/schemas_0";
|
|
4
|
+
import { ListNodes$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListNodesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListNodesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListNodes", {})
|
|
13
13
|
.n("PanoramaClient", "ListNodesCommand")
|
|
14
|
-
.sc(ListNodes)
|
|
14
|
+
.sc(ListNodes$)
|
|
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 { ListPackageImportJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPackageImportJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPackageImportJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPackageImportJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListPackageImportJobs", {})
|
|
13
13
|
.n("PanoramaClient", "ListPackageImportJobsCommand")
|
|
14
|
-
.sc(ListPackageImportJobs)
|
|
14
|
+
.sc(ListPackageImportJobs$)
|
|
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 { ListPackages } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPackages$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPackagesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPackagesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ListPackages", {})
|
|
13
13
|
.n("PanoramaClient", "ListPackagesCommand")
|
|
14
|
-
.sc(ListPackages)
|
|
14
|
+
.sc(ListPackages$)
|
|
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("OmniCloudServiceLambda", "ListTagsForResource", {})
|
|
13
13
|
.n("PanoramaClient", "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 { ProvisionDevice } from "../schemas/schemas_0";
|
|
4
|
+
import { ProvisionDevice$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ProvisionDeviceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ProvisionDeviceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "ProvisionDevice", {})
|
|
13
13
|
.n("PanoramaClient", "ProvisionDeviceCommand")
|
|
14
|
-
.sc(ProvisionDevice)
|
|
14
|
+
.sc(ProvisionDevice$)
|
|
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 { RegisterPackageVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { RegisterPackageVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RegisterPackageVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RegisterPackageVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "RegisterPackageVersion", {})
|
|
13
13
|
.n("PanoramaClient", "RegisterPackageVersionCommand")
|
|
14
|
-
.sc(RegisterPackageVersion)
|
|
14
|
+
.sc(RegisterPackageVersion$)
|
|
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 { RemoveApplicationInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { RemoveApplicationInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class RemoveApplicationInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class RemoveApplicationInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "RemoveApplicationInstance", {})
|
|
13
13
|
.n("PanoramaClient", "RemoveApplicationInstanceCommand")
|
|
14
|
-
.sc(RemoveApplicationInstance)
|
|
14
|
+
.sc(RemoveApplicationInstance$)
|
|
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 { SignalApplicationInstanceNodeInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { SignalApplicationInstanceNodeInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SignalApplicationInstanceNodeInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SignalApplicationInstanceNodeInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "SignalApplicationInstanceNodeInstances", {})
|
|
13
13
|
.n("PanoramaClient", "SignalApplicationInstanceNodeInstancesCommand")
|
|
14
|
-
.sc(SignalApplicationInstanceNodeInstances)
|
|
14
|
+
.sc(SignalApplicationInstanceNodeInstances$)
|
|
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 { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "TagResource", {})
|
|
13
13
|
.n("PanoramaClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
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 { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "UntagResource", {})
|
|
13
13
|
.n("PanoramaClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
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 { UpdateDeviceMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDeviceMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDeviceMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDeviceMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("OmniCloudServiceLambda", "UpdateDeviceMetadata", {})
|
|
13
13
|
.n("PanoramaClient", "UpdateDeviceMetadataCommand")
|
|
14
|
-
.sc(UpdateDeviceMetadata)
|
|
14
|
+
.sc(UpdateDeviceMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.panorama",
|
|
29
|
+
version: "2019-07-24",
|
|
30
|
+
serviceTarget: "OmniCloudServiceLambda",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "Panorama",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|