File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-panorama/dist-cjs

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.js31.3 KB · 851 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');var core = require('@smithy/core');var client = require('@smithy/core/client');var config = require('@smithy/core/config');var endpoints = require('@smithy/core/endpoints');var protocols = require('@smithy/core/protocols');var retry = require('@smithy/core/retry');var schema = require('@smithy/core/schema');var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');var runtimeConfig = require('./runtimeConfig');var schemas_0 = require('./schemas/schemas_0');var errors = require('./models/errors');var PanoramaServiceException = require('./models/PanoramaServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "panorama",    });};const commonParams = {    UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },    Endpoint: { type: "builtInParams", name: "endpoint" },    Region: { type: "builtInParams", name: "region" },    UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },}; const getHttpAuthExtensionConfiguration = (runtimeConfig) => {    const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;    let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;    let _credentials = runtimeConfig.credentials;    return {        setHttpAuthScheme(httpAuthScheme) {            const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);            if (index === -1) {                _httpAuthSchemes.push(httpAuthScheme);            }            else {                _httpAuthSchemes.splice(index, 1, httpAuthScheme);            }        },        httpAuthSchemes() {            return _httpAuthSchemes;        },        setHttpAuthSchemeProvider(httpAuthSchemeProvider) {            _httpAuthSchemeProvider = httpAuthSchemeProvider;        },        httpAuthSchemeProvider() {            return _httpAuthSchemeProvider;        },        setCredentials(credentials) {            _credentials = credentials;        },        credentials() {            return _credentials;        },    };};const resolveHttpAuthRuntimeConfig = (config) => {    return {        httpAuthSchemes: config.httpAuthSchemes(),        httpAuthSchemeProvider: config.httpAuthSchemeProvider(),        credentials: config.credentials(),    };}; const resolveRuntimeExtensions = (runtimeConfig, extensions) => {    const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));    extensions.forEach((extension) => extension.configure(extensionConfiguration));    return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));}; class PanoramaClient extends client.Client {    config;    constructor(...[configuration]) {        const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});        super(_config_0);        this.initConfig = _config_0;        const _config_1 = resolveClientEndpointParameters(_config_0);        const _config_2 = client$1.resolveUserAgentConfig(_config_1);        const _config_3 = retry.resolveRetryConfig(_config_2);        const _config_4 = config.resolveRegionConfig(_config_3);        const _config_5 = client$1.resolveHostHeaderConfig(_config_4);        const _config_6 = endpoints.resolveEndpointConfig(_config_5);        const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);        const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);        this.config = _config_8;        this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));        this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));        this.middlewareStack.use(retry.getRetryPlugin(this.config));        this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));        this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));        this.middlewareStack.use(client$1.getLoggerPlugin(this.config));        this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));        this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultPanoramaHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateApplicationInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "CreateApplicationInstance", {})    .n("PanoramaClient", "CreateApplicationInstanceCommand")    .sc(schemas_0.CreateApplicationInstance$)    .build() {} class CreateJobForDevicesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "CreateJobForDevices", {})    .n("PanoramaClient", "CreateJobForDevicesCommand")    .sc(schemas_0.CreateJobForDevices$)    .build() {} class CreateNodeFromTemplateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "CreateNodeFromTemplateJob", {})    .n("PanoramaClient", "CreateNodeFromTemplateJobCommand")    .sc(schemas_0.CreateNodeFromTemplateJob$)    .build() {} class CreatePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "CreatePackage", {})    .n("PanoramaClient", "CreatePackageCommand")    .sc(schemas_0.CreatePackage$)    .build() {} class CreatePackageImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "CreatePackageImportJob", {})    .n("PanoramaClient", "CreatePackageImportJobCommand")    .sc(schemas_0.CreatePackageImportJob$)    .build() {} class DeleteDeviceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DeleteDevice", {})    .n("PanoramaClient", "DeleteDeviceCommand")    .sc(schemas_0.DeleteDevice$)    .build() {} class DeletePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DeletePackage", {})    .n("PanoramaClient", "DeletePackageCommand")    .sc(schemas_0.DeletePackage$)    .build() {} class DeregisterPackageVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DeregisterPackageVersion", {})    .n("PanoramaClient", "DeregisterPackageVersionCommand")    .sc(schemas_0.DeregisterPackageVersion$)    .build() {} class DescribeApplicationInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribeApplicationInstance", {})    .n("PanoramaClient", "DescribeApplicationInstanceCommand")    .sc(schemas_0.DescribeApplicationInstance$)    .build() {} class DescribeApplicationInstanceDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribeApplicationInstanceDetails", {})    .n("PanoramaClient", "DescribeApplicationInstanceDetailsCommand")    .sc(schemas_0.DescribeApplicationInstanceDetails$)    .build() {} class DescribeDeviceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribeDevice", {})    .n("PanoramaClient", "DescribeDeviceCommand")    .sc(schemas_0.DescribeDevice$)    .build() {} class DescribeDeviceJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribeDeviceJob", {})    .n("PanoramaClient", "DescribeDeviceJobCommand")    .sc(schemas_0.DescribeDeviceJob$)    .build() {} class DescribeNodeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribeNode", {})    .n("PanoramaClient", "DescribeNodeCommand")    .sc(schemas_0.DescribeNode$)    .build() {} class DescribeNodeFromTemplateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribeNodeFromTemplateJob", {})    .n("PanoramaClient", "DescribeNodeFromTemplateJobCommand")    .sc(schemas_0.DescribeNodeFromTemplateJob$)    .build() {} class DescribePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribePackage", {})    .n("PanoramaClient", "DescribePackageCommand")    .sc(schemas_0.DescribePackage$)    .build() {} class DescribePackageImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribePackageImportJob", {})    .n("PanoramaClient", "DescribePackageImportJobCommand")    .sc(schemas_0.DescribePackageImportJob$)    .build() {} class DescribePackageVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "DescribePackageVersion", {})    .n("PanoramaClient", "DescribePackageVersionCommand")    .sc(schemas_0.DescribePackageVersion$)    .build() {} class ListApplicationInstanceDependenciesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListApplicationInstanceDependencies", {})    .n("PanoramaClient", "ListApplicationInstanceDependenciesCommand")    .sc(schemas_0.ListApplicationInstanceDependencies$)    .build() {} class ListApplicationInstanceNodeInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListApplicationInstanceNodeInstances", {})    .n("PanoramaClient", "ListApplicationInstanceNodeInstancesCommand")    .sc(schemas_0.ListApplicationInstanceNodeInstances$)    .build() {} class ListApplicationInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListApplicationInstances", {})    .n("PanoramaClient", "ListApplicationInstancesCommand")    .sc(schemas_0.ListApplicationInstances$)    .build() {} class ListDevicesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListDevices", {})    .n("PanoramaClient", "ListDevicesCommand")    .sc(schemas_0.ListDevices$)    .build() {} class ListDevicesJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListDevicesJobs", {})    .n("PanoramaClient", "ListDevicesJobsCommand")    .sc(schemas_0.ListDevicesJobs$)    .build() {} class ListNodeFromTemplateJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListNodeFromTemplateJobs", {})    .n("PanoramaClient", "ListNodeFromTemplateJobsCommand")    .sc(schemas_0.ListNodeFromTemplateJobs$)    .build() {} class ListNodesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListNodes", {})    .n("PanoramaClient", "ListNodesCommand")    .sc(schemas_0.ListNodes$)    .build() {} class ListPackageImportJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListPackageImportJobs", {})    .n("PanoramaClient", "ListPackageImportJobsCommand")    .sc(schemas_0.ListPackageImportJobs$)    .build() {} class ListPackagesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListPackages", {})    .n("PanoramaClient", "ListPackagesCommand")    .sc(schemas_0.ListPackages$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ListTagsForResource", {})    .n("PanoramaClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ProvisionDeviceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "ProvisionDevice", {})    .n("PanoramaClient", "ProvisionDeviceCommand")    .sc(schemas_0.ProvisionDevice$)    .build() {} class RegisterPackageVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "RegisterPackageVersion", {})    .n("PanoramaClient", "RegisterPackageVersionCommand")    .sc(schemas_0.RegisterPackageVersion$)    .build() {} class RemoveApplicationInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "RemoveApplicationInstance", {})    .n("PanoramaClient", "RemoveApplicationInstanceCommand")    .sc(schemas_0.RemoveApplicationInstance$)    .build() {} class SignalApplicationInstanceNodeInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "SignalApplicationInstanceNodeInstances", {})    .n("PanoramaClient", "SignalApplicationInstanceNodeInstancesCommand")    .sc(schemas_0.SignalApplicationInstanceNodeInstances$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "TagResource", {})    .n("PanoramaClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "UntagResource", {})    .n("PanoramaClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateDeviceMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("OmniCloudServiceLambda", "UpdateDeviceMetadata", {})    .n("PanoramaClient", "UpdateDeviceMetadataCommand")    .sc(schemas_0.UpdateDeviceMetadata$)    .build() {} const paginateListApplicationInstanceDependencies = core.createPaginator(PanoramaClient, ListApplicationInstanceDependenciesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListApplicationInstanceNodeInstances = core.createPaginator(PanoramaClient, ListApplicationInstanceNodeInstancesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListApplicationInstances = core.createPaginator(PanoramaClient, ListApplicationInstancesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDevicesJobs = core.createPaginator(PanoramaClient, ListDevicesJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDevices = core.createPaginator(PanoramaClient, ListDevicesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListNodeFromTemplateJobs = core.createPaginator(PanoramaClient, ListNodeFromTemplateJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListNodes = core.createPaginator(PanoramaClient, ListNodesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListPackageImportJobs = core.createPaginator(PanoramaClient, ListPackageImportJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListPackages = core.createPaginator(PanoramaClient, ListPackagesCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    CreateApplicationInstanceCommand,    CreateJobForDevicesCommand,    CreateNodeFromTemplateJobCommand,    CreatePackageCommand,    CreatePackageImportJobCommand,    DeleteDeviceCommand,    DeletePackageCommand,    DeregisterPackageVersionCommand,    DescribeApplicationInstanceCommand,    DescribeApplicationInstanceDetailsCommand,    DescribeDeviceCommand,    DescribeDeviceJobCommand,    DescribeNodeCommand,    DescribeNodeFromTemplateJobCommand,    DescribePackageCommand,    DescribePackageImportJobCommand,    DescribePackageVersionCommand,    ListApplicationInstanceDependenciesCommand,    ListApplicationInstanceNodeInstancesCommand,    ListApplicationInstancesCommand,    ListDevicesCommand,    ListDevicesJobsCommand,    ListNodeFromTemplateJobsCommand,    ListNodesCommand,    ListPackageImportJobsCommand,    ListPackagesCommand,    ListTagsForResourceCommand,    ProvisionDeviceCommand,    RegisterPackageVersionCommand,    RemoveApplicationInstanceCommand,    SignalApplicationInstanceNodeInstancesCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateDeviceMetadataCommand,};const paginators = {    paginateListApplicationInstanceDependencies,    paginateListApplicationInstanceNodeInstances,    paginateListApplicationInstances,    paginateListDevices,    paginateListDevicesJobs,    paginateListNodeFromTemplateJobs,    paginateListNodes,    paginateListPackageImportJobs,    paginateListPackages,};class Panorama extends PanoramaClient {}client.createAggregatedClient(commands, Panorama, { paginators }); const ApplicationInstanceHealthStatus = {    ERROR: "ERROR",    NOT_AVAILABLE: "NOT_AVAILABLE",    RUNNING: "RUNNING",};const DesiredState = {    REMOVED: "REMOVED",    RUNNING: "RUNNING",    STOPPED: "STOPPED",};const DeviceReportedStatus = {    INSTALL_ERROR: "INSTALL_ERROR",    INSTALL_IN_PROGRESS: "INSTALL_IN_PROGRESS",    LAUNCHED: "LAUNCHED",    LAUNCH_ERROR: "LAUNCH_ERROR",    REMOVAL_FAILED: "REMOVAL_FAILED",    REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS",    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",    STOP_ERROR: "STOP_ERROR",};const ApplicationInstanceStatus = {    DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR",    DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED",    DEPLOYMENT_IN_PROGRESS: "DEPLOYMENT_IN_PROGRESS",    DEPLOYMENT_PENDING: "DEPLOYMENT_PENDING",    DEPLOYMENT_REQUESTED: "DEPLOYMENT_REQUESTED",    DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED",    REMOVAL_FAILED: "REMOVAL_FAILED",    REMOVAL_IN_PROGRESS: "REMOVAL_IN_PROGRESS",    REMOVAL_PENDING: "REMOVAL_PENDING",    REMOVAL_REQUESTED: "REMOVAL_REQUESTED",    REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED",};const ConnectionType = {    DHCP: "DHCP",    STATIC_IP: "STATIC_IP",};const ValidationExceptionReason = {    CANNOT_PARSE: "CANNOT_PARSE",    FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",    OTHER: "OTHER",    UNKNOWN_OPERATION: "UNKNOWN_OPERATION",};const JobType = {    OTA: "OTA",    REBOOT: "REBOOT",};const JobResourceType = {    PACKAGE: "PACKAGE",};const TemplateType = {    RTSP_CAMERA_STREAM: "RTSP_CAMERA_STREAM",};const PackageImportJobType = {    MARKETPLACE_NODE_PACKAGE_VERSION: "MARKETPLACE_NODE_PACKAGE_VERSION",    NODE_PACKAGE_VERSION: "NODE_PACKAGE_VERSION",};const DeviceBrand = {    AWS_PANORAMA: "AWS_PANORAMA",    LENOVO: "LENOVO",};const NetworkConnectionStatus = {    CONNECTED: "CONNECTED",    CONNECTING: "CONNECTING",    NOT_CONNECTED: "NOT_CONNECTED",};const DeviceAggregatedStatus = {    AWAITING_PROVISIONING: "AWAITING_PROVISIONING",    DELETING: "DELETING",    ERROR: "ERROR",    FAILED: "FAILED",    LEASE_EXPIRED: "LEASE_EXPIRED",    OFFLINE: "OFFLINE",    ONLINE: "ONLINE",    PENDING: "PENDING",    REBOOTING: "REBOOTING",    UPDATE_NEEDED: "UPDATE_NEEDED",};const DeviceConnectionStatus = {    AWAITING_CREDENTIALS: "AWAITING_CREDENTIALS",    ERROR: "ERROR",    NOT_AVAILABLE: "NOT_AVAILABLE",    OFFLINE: "OFFLINE",    ONLINE: "ONLINE",};const UpdateProgress = {    COMPLETED: "COMPLETED",    DOWNLOADING: "DOWNLOADING",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    PENDING: "PENDING",    REBOOTING: "REBOOTING",    VERIFYING: "VERIFYING",};const DeviceStatus = {    AWAITING_PROVISIONING: "AWAITING_PROVISIONING",    DELETING: "DELETING",    ERROR: "ERROR",    FAILED: "FAILED",    PENDING: "PENDING",    SUCCEEDED: "SUCCEEDED",};const DeviceType = {    PANORAMA_APPLIANCE: "PANORAMA_APPLIANCE",    PANORAMA_APPLIANCE_DEVELOPER_KIT: "PANORAMA_APPLIANCE_DEVELOPER_KIT",};const NodeCategory = {    BUSINESS_LOGIC: "BUSINESS_LOGIC",    MEDIA_SINK: "MEDIA_SINK",    MEDIA_SOURCE: "MEDIA_SOURCE",    ML_MODEL: "ML_MODEL",};const PortType = {    BOOLEAN: "BOOLEAN",    FLOAT32: "FLOAT32",    INT32: "INT32",    MEDIA: "MEDIA",    STRING: "STRING",};const NodeFromTemplateJobStatus = {    FAILED: "FAILED",    PENDING: "PENDING",    SUCCEEDED: "SUCCEEDED",};const PackageImportJobStatus = {    FAILED: "FAILED",    PENDING: "PENDING",    SUCCEEDED: "SUCCEEDED",};const PackageVersionStatus = {    DELETING: "DELETING",    FAILED: "FAILED",    REGISTER_COMPLETED: "REGISTER_COMPLETED",    REGISTER_PENDING: "REGISTER_PENDING",};const NodeInstanceStatus = {    ERROR: "ERROR",    NOT_AVAILABLE: "NOT_AVAILABLE",    PAUSED: "PAUSED",    RUNNING: "RUNNING",};const StatusFilter = {    DEPLOYMENT_ERROR: "DEPLOYMENT_ERROR",    DEPLOYMENT_FAILED: "DEPLOYMENT_FAILED",    DEPLOYMENT_SUCCEEDED: "DEPLOYMENT_SUCCEEDED",    PROCESSING_DEPLOYMENT: "PROCESSING_DEPLOYMENT",    PROCESSING_REMOVAL: "PROCESSING_REMOVAL",    REMOVAL_FAILED: "REMOVAL_FAILED",    REMOVAL_SUCCEEDED: "REMOVAL_SUCCEEDED",};const ListDevicesSortBy = {    CREATED_TIME: "CREATED_TIME",    DEVICE_AGGREGATED_STATUS: "DEVICE_AGGREGATED_STATUS",    DEVICE_ID: "DEVICE_ID",    NAME: "NAME",};const SortOrder = {    ASCENDING: "ASCENDING",    DESCENDING: "DESCENDING",};const NodeSignalValue = {    PAUSE: "PAUSE",    RESUME: "RESUME",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.PanoramaServiceException = PanoramaServiceException.PanoramaServiceException;exports.ApplicationInstanceHealthStatus = ApplicationInstanceHealthStatus;exports.ApplicationInstanceStatus = ApplicationInstanceStatus;exports.ConnectionType = ConnectionType;exports.CreateApplicationInstanceCommand = CreateApplicationInstanceCommand;exports.CreateJobForDevicesCommand = CreateJobForDevicesCommand;exports.CreateNodeFromTemplateJobCommand = CreateNodeFromTemplateJobCommand;exports.CreatePackageCommand = CreatePackageCommand;exports.CreatePackageImportJobCommand = CreatePackageImportJobCommand;exports.DeleteDeviceCommand = DeleteDeviceCommand;exports.DeletePackageCommand = DeletePackageCommand;exports.DeregisterPackageVersionCommand = DeregisterPackageVersionCommand;exports.DescribeApplicationInstanceCommand = DescribeApplicationInstanceCommand;exports.DescribeApplicationInstanceDetailsCommand = DescribeApplicationInstanceDetailsCommand;exports.DescribeDeviceCommand = DescribeDeviceCommand;exports.DescribeDeviceJobCommand = DescribeDeviceJobCommand;exports.DescribeNodeCommand = DescribeNodeCommand;exports.DescribeNodeFromTemplateJobCommand = DescribeNodeFromTemplateJobCommand;exports.DescribePackageCommand = DescribePackageCommand;exports.DescribePackageImportJobCommand = DescribePackageImportJobCommand;exports.DescribePackageVersionCommand = DescribePackageVersionCommand;exports.DesiredState = DesiredState;exports.DeviceAggregatedStatus = DeviceAggregatedStatus;exports.DeviceBrand = DeviceBrand;exports.DeviceConnectionStatus = DeviceConnectionStatus;exports.DeviceReportedStatus = DeviceReportedStatus;exports.DeviceStatus = DeviceStatus;exports.DeviceType = DeviceType;exports.JobResourceType = JobResourceType;exports.JobType = JobType;exports.ListApplicationInstanceDependenciesCommand = ListApplicationInstanceDependenciesCommand;exports.ListApplicationInstanceNodeInstancesCommand = ListApplicationInstanceNodeInstancesCommand;exports.ListApplicationInstancesCommand = ListApplicationInstancesCommand;exports.ListDevicesCommand = ListDevicesCommand;exports.ListDevicesJobsCommand = ListDevicesJobsCommand;exports.ListDevicesSortBy = ListDevicesSortBy;exports.ListNodeFromTemplateJobsCommand = ListNodeFromTemplateJobsCommand;exports.ListNodesCommand = ListNodesCommand;exports.ListPackageImportJobsCommand = ListPackageImportJobsCommand;exports.ListPackagesCommand = ListPackagesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.NetworkConnectionStatus = NetworkConnectionStatus;exports.NodeCategory = NodeCategory;exports.NodeFromTemplateJobStatus = NodeFromTemplateJobStatus;exports.NodeInstanceStatus = NodeInstanceStatus;exports.NodeSignalValue = NodeSignalValue;exports.PackageImportJobStatus = PackageImportJobStatus;exports.PackageImportJobType = PackageImportJobType;exports.PackageVersionStatus = PackageVersionStatus;exports.Panorama = Panorama;exports.PanoramaClient = PanoramaClient;exports.PortType = PortType;exports.ProvisionDeviceCommand = ProvisionDeviceCommand;exports.RegisterPackageVersionCommand = RegisterPackageVersionCommand;exports.RemoveApplicationInstanceCommand = RemoveApplicationInstanceCommand;exports.SignalApplicationInstanceNodeInstancesCommand = SignalApplicationInstanceNodeInstancesCommand;exports.SortOrder = SortOrder;exports.StatusFilter = StatusFilter;exports.TagResourceCommand = TagResourceCommand;exports.TemplateType = TemplateType;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateDeviceMetadataCommand = UpdateDeviceMetadataCommand;exports.UpdateProgress = UpdateProgress;exports.ValidationExceptionReason = ValidationExceptionReason;exports.paginateListApplicationInstanceDependencies = paginateListApplicationInstanceDependencies;exports.paginateListApplicationInstanceNodeInstances = paginateListApplicationInstanceNodeInstances;exports.paginateListApplicationInstances = paginateListApplicationInstances;exports.paginateListDevices = paginateListDevices;exports.paginateListDevicesJobs = paginateListDevicesJobs;exports.paginateListNodeFromTemplateJobs = paginateListNodeFromTemplateJobs;exports.paginateListNodes = paginateListNodes;exports.paginateListPackageImportJobs = paginateListPackageImportJobs;exports.paginateListPackages = paginateListPackages;Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: schemas_0['__proto__']    }); Object.keys(schemas_0).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];});Object.prototype.hasOwnProperty.call(errors, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: errors['__proto__']    }); Object.keys(errors).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];});