File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-ivs/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.js30.2 KB · 817 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 IvsServiceException = require('./models/IvsServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "ivs",    });};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 IvsClient 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.defaultIvsHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class BatchGetChannelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "BatchGetChannel", {})    .n("IvsClient", "BatchGetChannelCommand")    .sc(schemas_0.BatchGetChannel$)    .build() {} class BatchGetStreamKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "BatchGetStreamKey", {})    .n("IvsClient", "BatchGetStreamKeyCommand")    .sc(schemas_0.BatchGetStreamKey$)    .build() {} class BatchStartViewerSessionRevocationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "BatchStartViewerSessionRevocation", {})    .n("IvsClient", "BatchStartViewerSessionRevocationCommand")    .sc(schemas_0.BatchStartViewerSessionRevocation$)    .build() {} class CreateAdConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "CreateAdConfiguration", {})    .n("IvsClient", "CreateAdConfigurationCommand")    .sc(schemas_0.CreateAdConfiguration$)    .build() {} class CreateChannelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "CreateChannel", {})    .n("IvsClient", "CreateChannelCommand")    .sc(schemas_0.CreateChannel$)    .build() {} class CreatePlaybackRestrictionPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "CreatePlaybackRestrictionPolicy", {})    .n("IvsClient", "CreatePlaybackRestrictionPolicyCommand")    .sc(schemas_0.CreatePlaybackRestrictionPolicy$)    .build() {} class CreateRecordingConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "CreateRecordingConfiguration", {})    .n("IvsClient", "CreateRecordingConfigurationCommand")    .sc(schemas_0.CreateRecordingConfiguration$)    .build() {} class CreateStreamKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "CreateStreamKey", {})    .n("IvsClient", "CreateStreamKeyCommand")    .sc(schemas_0.CreateStreamKey$)    .build() {} class DeleteAdConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "DeleteAdConfiguration", {})    .n("IvsClient", "DeleteAdConfigurationCommand")    .sc(schemas_0.DeleteAdConfiguration$)    .build() {} class DeleteChannelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "DeleteChannel", {})    .n("IvsClient", "DeleteChannelCommand")    .sc(schemas_0.DeleteChannel$)    .build() {} class DeletePlaybackKeyPairCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "DeletePlaybackKeyPair", {})    .n("IvsClient", "DeletePlaybackKeyPairCommand")    .sc(schemas_0.DeletePlaybackKeyPair$)    .build() {} class DeletePlaybackRestrictionPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "DeletePlaybackRestrictionPolicy", {})    .n("IvsClient", "DeletePlaybackRestrictionPolicyCommand")    .sc(schemas_0.DeletePlaybackRestrictionPolicy$)    .build() {} class DeleteRecordingConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "DeleteRecordingConfiguration", {})    .n("IvsClient", "DeleteRecordingConfigurationCommand")    .sc(schemas_0.DeleteRecordingConfiguration$)    .build() {} class DeleteStreamKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "DeleteStreamKey", {})    .n("IvsClient", "DeleteStreamKeyCommand")    .sc(schemas_0.DeleteStreamKey$)    .build() {} class GetAdConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetAdConfiguration", {})    .n("IvsClient", "GetAdConfigurationCommand")    .sc(schemas_0.GetAdConfiguration$)    .build() {} class GetChannelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetChannel", {})    .n("IvsClient", "GetChannelCommand")    .sc(schemas_0.GetChannel$)    .build() {} class GetPlaybackKeyPairCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetPlaybackKeyPair", {})    .n("IvsClient", "GetPlaybackKeyPairCommand")    .sc(schemas_0.GetPlaybackKeyPair$)    .build() {} class GetPlaybackRestrictionPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetPlaybackRestrictionPolicy", {})    .n("IvsClient", "GetPlaybackRestrictionPolicyCommand")    .sc(schemas_0.GetPlaybackRestrictionPolicy$)    .build() {} class GetRecordingConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetRecordingConfiguration", {})    .n("IvsClient", "GetRecordingConfigurationCommand")    .sc(schemas_0.GetRecordingConfiguration$)    .build() {} class GetStreamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetStream", {})    .n("IvsClient", "GetStreamCommand")    .sc(schemas_0.GetStream$)    .build() {} class GetStreamKeyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetStreamKey", {})    .n("IvsClient", "GetStreamKeyCommand")    .sc(schemas_0.GetStreamKey$)    .build() {} class GetStreamSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "GetStreamSession", {})    .n("IvsClient", "GetStreamSessionCommand")    .sc(schemas_0.GetStreamSession$)    .build() {} class ImportPlaybackKeyPairCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ImportPlaybackKeyPair", {})    .n("IvsClient", "ImportPlaybackKeyPairCommand")    .sc(schemas_0.ImportPlaybackKeyPair$)    .build() {} class InsertAdBreakCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "InsertAdBreak", {})    .n("IvsClient", "InsertAdBreakCommand")    .sc(schemas_0.InsertAdBreak$)    .build() {} class ListAdConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListAdConfigurations", {})    .n("IvsClient", "ListAdConfigurationsCommand")    .sc(schemas_0.ListAdConfigurations$)    .build() {} class ListChannelsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListChannels", {})    .n("IvsClient", "ListChannelsCommand")    .sc(schemas_0.ListChannels$)    .build() {} class ListPlaybackKeyPairsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListPlaybackKeyPairs", {})    .n("IvsClient", "ListPlaybackKeyPairsCommand")    .sc(schemas_0.ListPlaybackKeyPairs$)    .build() {} class ListPlaybackRestrictionPoliciesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListPlaybackRestrictionPolicies", {})    .n("IvsClient", "ListPlaybackRestrictionPoliciesCommand")    .sc(schemas_0.ListPlaybackRestrictionPolicies$)    .build() {} class ListRecordingConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListRecordingConfigurations", {})    .n("IvsClient", "ListRecordingConfigurationsCommand")    .sc(schemas_0.ListRecordingConfigurations$)    .build() {} class ListStreamKeysCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListStreamKeys", {})    .n("IvsClient", "ListStreamKeysCommand")    .sc(schemas_0.ListStreamKeys$)    .build() {} class ListStreamsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListStreams", {})    .n("IvsClient", "ListStreamsCommand")    .sc(schemas_0.ListStreams$)    .build() {} class ListStreamSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListStreamSessions", {})    .n("IvsClient", "ListStreamSessionsCommand")    .sc(schemas_0.ListStreamSessions$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "ListTagsForResource", {})    .n("IvsClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class PutMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "PutMetadata", {})    .n("IvsClient", "PutMetadataCommand")    .sc(schemas_0.PutMetadata$)    .build() {} class StartViewerSessionRevocationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "StartViewerSessionRevocation", {})    .n("IvsClient", "StartViewerSessionRevocationCommand")    .sc(schemas_0.StartViewerSessionRevocation$)    .build() {} class StopStreamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "StopStream", {})    .n("IvsClient", "StopStreamCommand")    .sc(schemas_0.StopStream$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "TagResource", {})    .n("IvsClient", "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("AmazonInteractiveVideoService", "UntagResource", {})    .n("IvsClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateChannelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "UpdateChannel", {})    .n("IvsClient", "UpdateChannelCommand")    .sc(schemas_0.UpdateChannel$)    .build() {} class UpdatePlaybackRestrictionPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonInteractiveVideoService", "UpdatePlaybackRestrictionPolicy", {})    .n("IvsClient", "UpdatePlaybackRestrictionPolicyCommand")    .sc(schemas_0.UpdatePlaybackRestrictionPolicy$)    .build() {} const paginateListAdConfigurations = core.createPaginator(IvsClient, ListAdConfigurationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListChannels = core.createPaginator(IvsClient, ListChannelsCommand, "nextToken", "nextToken", "maxResults"); const paginateListPlaybackKeyPairs = core.createPaginator(IvsClient, ListPlaybackKeyPairsCommand, "nextToken", "nextToken", "maxResults"); const paginateListPlaybackRestrictionPolicies = core.createPaginator(IvsClient, ListPlaybackRestrictionPoliciesCommand, "nextToken", "nextToken", "maxResults"); const paginateListRecordingConfigurations = core.createPaginator(IvsClient, ListRecordingConfigurationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListStreamKeys = core.createPaginator(IvsClient, ListStreamKeysCommand, "nextToken", "nextToken", "maxResults"); const paginateListStreamSessions = core.createPaginator(IvsClient, ListStreamSessionsCommand, "nextToken", "nextToken", "maxResults"); const paginateListStreams = core.createPaginator(IvsClient, ListStreamsCommand, "nextToken", "nextToken", "maxResults"); const commands = {    BatchGetChannelCommand,    BatchGetStreamKeyCommand,    BatchStartViewerSessionRevocationCommand,    CreateAdConfigurationCommand,    CreateChannelCommand,    CreatePlaybackRestrictionPolicyCommand,    CreateRecordingConfigurationCommand,    CreateStreamKeyCommand,    DeleteAdConfigurationCommand,    DeleteChannelCommand,    DeletePlaybackKeyPairCommand,    DeletePlaybackRestrictionPolicyCommand,    DeleteRecordingConfigurationCommand,    DeleteStreamKeyCommand,    GetAdConfigurationCommand,    GetChannelCommand,    GetPlaybackKeyPairCommand,    GetPlaybackRestrictionPolicyCommand,    GetRecordingConfigurationCommand,    GetStreamCommand,    GetStreamKeyCommand,    GetStreamSessionCommand,    ImportPlaybackKeyPairCommand,    InsertAdBreakCommand,    ListAdConfigurationsCommand,    ListChannelsCommand,    ListPlaybackKeyPairsCommand,    ListPlaybackRestrictionPoliciesCommand,    ListRecordingConfigurationsCommand,    ListStreamKeysCommand,    ListStreamsCommand,    ListStreamSessionsCommand,    ListTagsForResourceCommand,    PutMetadataCommand,    StartViewerSessionRevocationCommand,    StopStreamCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateChannelCommand,    UpdatePlaybackRestrictionPolicyCommand,};const paginators = {    paginateListAdConfigurations,    paginateListChannels,    paginateListPlaybackKeyPairs,    paginateListPlaybackRestrictionPolicies,    paginateListRecordingConfigurations,    paginateListStreamKeys,    paginateListStreams,    paginateListStreamSessions,};class Ivs extends IvsClient {}client.createAggregatedClient(commands, Ivs, { paginators }); const ContainerFormat = {    FragmentedMP4: "FRAGMENTED_MP4",    TS: "TS",};const ChannelLatencyMode = {    LowLatency: "LOW",    NormalLatency: "NORMAL",};const MultitrackMaximumResolution = {    FULL_HD: "FULL_HD",    HD: "HD",    SD: "SD",};const MultitrackPolicy = {    ALLOW: "ALLOW",    REQUIRE: "REQUIRE",};const TranscodePreset = {    ConstrainedBandwidthTranscodePreset: "CONSTRAINED_BANDWIDTH_DELIVERY",    HigherBandwidthTranscodePreset: "HIGHER_BANDWIDTH_DELIVERY",};const ChannelType = {    AdvancedHDChannelType: "ADVANCED_HD",    AdvancedSDChannelType: "ADVANCED_SD",    BasicChannelType: "BASIC",    StandardChannelType: "STANDARD",};const RenditionConfigurationRendition = {    FULL_HD: "FULL_HD",    HD: "HD",    LOWEST_RESOLUTION: "LOWEST_RESOLUTION",    SD: "SD",};const RenditionConfigurationRenditionSelection = {    ALL: "ALL",    CUSTOM: "CUSTOM",    NONE: "NONE",};const RecordingMode = {    Disabled: "DISABLED",    Interval: "INTERVAL",};const ThumbnailConfigurationResolution = {    FULL_HD: "FULL_HD",    HD: "HD",    LOWEST_RESOLUTION: "LOWEST_RESOLUTION",    SD: "SD",};const ThumbnailConfigurationStorage = {    LATEST: "LATEST",    SEQUENTIAL: "SEQUENTIAL",};const RecordingConfigurationState = {    Active: "ACTIVE",    CreateFailed: "CREATE_FAILED",    Creating: "CREATING",};const StreamHealth = {    Starving: "STARVING",    StreamHealthy: "HEALTHY",    Unknown: "UNKNOWN",};const StreamState = {    StreamLive: "LIVE",    StreamOffline: "OFFLINE",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.IvsServiceException = IvsServiceException.IvsServiceException;exports.BatchGetChannelCommand = BatchGetChannelCommand;exports.BatchGetStreamKeyCommand = BatchGetStreamKeyCommand;exports.BatchStartViewerSessionRevocationCommand = BatchStartViewerSessionRevocationCommand;exports.ChannelLatencyMode = ChannelLatencyMode;exports.ChannelType = ChannelType;exports.ContainerFormat = ContainerFormat;exports.CreateAdConfigurationCommand = CreateAdConfigurationCommand;exports.CreateChannelCommand = CreateChannelCommand;exports.CreatePlaybackRestrictionPolicyCommand = CreatePlaybackRestrictionPolicyCommand;exports.CreateRecordingConfigurationCommand = CreateRecordingConfigurationCommand;exports.CreateStreamKeyCommand = CreateStreamKeyCommand;exports.DeleteAdConfigurationCommand = DeleteAdConfigurationCommand;exports.DeleteChannelCommand = DeleteChannelCommand;exports.DeletePlaybackKeyPairCommand = DeletePlaybackKeyPairCommand;exports.DeletePlaybackRestrictionPolicyCommand = DeletePlaybackRestrictionPolicyCommand;exports.DeleteRecordingConfigurationCommand = DeleteRecordingConfigurationCommand;exports.DeleteStreamKeyCommand = DeleteStreamKeyCommand;exports.GetAdConfigurationCommand = GetAdConfigurationCommand;exports.GetChannelCommand = GetChannelCommand;exports.GetPlaybackKeyPairCommand = GetPlaybackKeyPairCommand;exports.GetPlaybackRestrictionPolicyCommand = GetPlaybackRestrictionPolicyCommand;exports.GetRecordingConfigurationCommand = GetRecordingConfigurationCommand;exports.GetStreamCommand = GetStreamCommand;exports.GetStreamKeyCommand = GetStreamKeyCommand;exports.GetStreamSessionCommand = GetStreamSessionCommand;exports.ImportPlaybackKeyPairCommand = ImportPlaybackKeyPairCommand;exports.InsertAdBreakCommand = InsertAdBreakCommand;exports.Ivs = Ivs;exports.IvsClient = IvsClient;exports.ListAdConfigurationsCommand = ListAdConfigurationsCommand;exports.ListChannelsCommand = ListChannelsCommand;exports.ListPlaybackKeyPairsCommand = ListPlaybackKeyPairsCommand;exports.ListPlaybackRestrictionPoliciesCommand = ListPlaybackRestrictionPoliciesCommand;exports.ListRecordingConfigurationsCommand = ListRecordingConfigurationsCommand;exports.ListStreamKeysCommand = ListStreamKeysCommand;exports.ListStreamSessionsCommand = ListStreamSessionsCommand;exports.ListStreamsCommand = ListStreamsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.MultitrackMaximumResolution = MultitrackMaximumResolution;exports.MultitrackPolicy = MultitrackPolicy;exports.PutMetadataCommand = PutMetadataCommand;exports.RecordingConfigurationState = RecordingConfigurationState;exports.RecordingMode = RecordingMode;exports.RenditionConfigurationRendition = RenditionConfigurationRendition;exports.RenditionConfigurationRenditionSelection = RenditionConfigurationRenditionSelection;exports.StartViewerSessionRevocationCommand = StartViewerSessionRevocationCommand;exports.StopStreamCommand = StopStreamCommand;exports.StreamHealth = StreamHealth;exports.StreamState = StreamState;exports.TagResourceCommand = TagResourceCommand;exports.ThumbnailConfigurationResolution = ThumbnailConfigurationResolution;exports.ThumbnailConfigurationStorage = ThumbnailConfigurationStorage;exports.TranscodePreset = TranscodePreset;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateChannelCommand = UpdateChannelCommand;exports.UpdatePlaybackRestrictionPolicyCommand = UpdatePlaybackRestrictionPolicyCommand;exports.paginateListAdConfigurations = paginateListAdConfigurations;exports.paginateListChannels = paginateListChannels;exports.paginateListPlaybackKeyPairs = paginateListPlaybackKeyPairs;exports.paginateListPlaybackRestrictionPolicies = paginateListPlaybackRestrictionPolicies;exports.paginateListRecordingConfigurations = paginateListRecordingConfigurations;exports.paginateListStreamKeys = paginateListStreamKeys;exports.paginateListStreamSessions = paginateListStreamSessions;exports.paginateListStreams = paginateListStreams;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];});