File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-appstream/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.js69.2 KB · 1890 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 AppStreamServiceException = require('./models/AppStreamServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "appstream",    });};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 AppStreamClient 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.defaultAppStreamHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateAppBlockBuilderAppBlockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "AssociateAppBlockBuilderAppBlock", {})    .n("AppStreamClient", "AssociateAppBlockBuilderAppBlockCommand")    .sc(schemas_0.AssociateAppBlockBuilderAppBlock$)    .build() {} class AssociateApplicationFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "AssociateApplicationFleet", {})    .n("AppStreamClient", "AssociateApplicationFleetCommand")    .sc(schemas_0.AssociateApplicationFleet$)    .build() {} class AssociateApplicationToEntitlementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "AssociateApplicationToEntitlement", {})    .n("AppStreamClient", "AssociateApplicationToEntitlementCommand")    .sc(schemas_0.AssociateApplicationToEntitlement$)    .build() {} class AssociateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "AssociateFleet", {})    .n("AppStreamClient", "AssociateFleetCommand")    .sc(schemas_0.AssociateFleet$)    .build() {} class AssociateSoftwareToImageBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "AssociateSoftwareToImageBuilder", {})    .n("AppStreamClient", "AssociateSoftwareToImageBuilderCommand")    .sc(schemas_0.AssociateSoftwareToImageBuilder$)    .build() {} class BatchAssociateUserStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "BatchAssociateUserStack", {})    .n("AppStreamClient", "BatchAssociateUserStackCommand")    .sc(schemas_0.BatchAssociateUserStack$)    .build() {} class BatchDisassociateUserStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "BatchDisassociateUserStack", {})    .n("AppStreamClient", "BatchDisassociateUserStackCommand")    .sc(schemas_0.BatchDisassociateUserStack$)    .build() {} class CopyImageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CopyImage", {})    .n("AppStreamClient", "CopyImageCommand")    .sc(schemas_0.CopyImage$)    .build() {} class CreateAppBlockBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateAppBlockBuilder", {})    .n("AppStreamClient", "CreateAppBlockBuilderCommand")    .sc(schemas_0.CreateAppBlockBuilder$)    .build() {} class CreateAppBlockBuilderStreamingURLCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateAppBlockBuilderStreamingURL", {})    .n("AppStreamClient", "CreateAppBlockBuilderStreamingURLCommand")    .sc(schemas_0.CreateAppBlockBuilderStreamingURL$)    .build() {} class CreateAppBlockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateAppBlock", {})    .n("AppStreamClient", "CreateAppBlockCommand")    .sc(schemas_0.CreateAppBlock$)    .build() {} class CreateApplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateApplication", {})    .n("AppStreamClient", "CreateApplicationCommand")    .sc(schemas_0.CreateApplication$)    .build() {} class CreateDirectoryConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateDirectoryConfig", {})    .n("AppStreamClient", "CreateDirectoryConfigCommand")    .sc(schemas_0.CreateDirectoryConfig$)    .build() {} class CreateEntitlementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateEntitlement", {})    .n("AppStreamClient", "CreateEntitlementCommand")    .sc(schemas_0.CreateEntitlement$)    .build() {} class CreateExportImageTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateExportImageTask", {})    .n("AppStreamClient", "CreateExportImageTaskCommand")    .sc(schemas_0.CreateExportImageTask$)    .build() {} class CreateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateFleet", {})    .n("AppStreamClient", "CreateFleetCommand")    .sc(schemas_0.CreateFleet$)    .build() {} class CreateImageBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateImageBuilder", {})    .n("AppStreamClient", "CreateImageBuilderCommand")    .sc(schemas_0.CreateImageBuilder$)    .build() {} class CreateImageBuilderStreamingURLCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateImageBuilderStreamingURL", {})    .n("AppStreamClient", "CreateImageBuilderStreamingURLCommand")    .sc(schemas_0.CreateImageBuilderStreamingURL$)    .build() {} class CreateImportedImageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateImportedImage", {})    .n("AppStreamClient", "CreateImportedImageCommand")    .sc(schemas_0.CreateImportedImage$)    .build() {} class CreateStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateStack", {})    .n("AppStreamClient", "CreateStackCommand")    .sc(schemas_0.CreateStack$)    .build() {} class CreateStreamingURLCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateStreamingURL", {})    .n("AppStreamClient", "CreateStreamingURLCommand")    .sc(schemas_0.CreateStreamingURL$)    .build() {} class CreateThemeForStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateThemeForStack", {})    .n("AppStreamClient", "CreateThemeForStackCommand")    .sc(schemas_0.CreateThemeForStack$)    .build() {} class CreateUpdatedImageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateUpdatedImage", {})    .n("AppStreamClient", "CreateUpdatedImageCommand")    .sc(schemas_0.CreateUpdatedImage$)    .build() {} class CreateUsageReportSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateUsageReportSubscription", {})    .n("AppStreamClient", "CreateUsageReportSubscriptionCommand")    .sc(schemas_0.CreateUsageReportSubscription$)    .build() {} class CreateUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "CreateUser", {})    .n("AppStreamClient", "CreateUserCommand")    .sc(schemas_0.CreateUser$)    .build() {} class DeleteAppBlockBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteAppBlockBuilder", {})    .n("AppStreamClient", "DeleteAppBlockBuilderCommand")    .sc(schemas_0.DeleteAppBlockBuilder$)    .build() {} class DeleteAppBlockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteAppBlock", {})    .n("AppStreamClient", "DeleteAppBlockCommand")    .sc(schemas_0.DeleteAppBlock$)    .build() {} class DeleteApplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteApplication", {})    .n("AppStreamClient", "DeleteApplicationCommand")    .sc(schemas_0.DeleteApplication$)    .build() {} class DeleteDirectoryConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteDirectoryConfig", {})    .n("AppStreamClient", "DeleteDirectoryConfigCommand")    .sc(schemas_0.DeleteDirectoryConfig$)    .build() {} class DeleteEntitlementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteEntitlement", {})    .n("AppStreamClient", "DeleteEntitlementCommand")    .sc(schemas_0.DeleteEntitlement$)    .build() {} class DeleteFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteFleet", {})    .n("AppStreamClient", "DeleteFleetCommand")    .sc(schemas_0.DeleteFleet$)    .build() {} class DeleteImageBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteImageBuilder", {})    .n("AppStreamClient", "DeleteImageBuilderCommand")    .sc(schemas_0.DeleteImageBuilder$)    .build() {} class DeleteImageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteImage", {})    .n("AppStreamClient", "DeleteImageCommand")    .sc(schemas_0.DeleteImage$)    .build() {} class DeleteImagePermissionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteImagePermissions", {})    .n("AppStreamClient", "DeleteImagePermissionsCommand")    .sc(schemas_0.DeleteImagePermissions$)    .build() {} class DeleteStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteStack", {})    .n("AppStreamClient", "DeleteStackCommand")    .sc(schemas_0.DeleteStack$)    .build() {} class DeleteThemeForStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteThemeForStack", {})    .n("AppStreamClient", "DeleteThemeForStackCommand")    .sc(schemas_0.DeleteThemeForStack$)    .build() {} class DeleteUsageReportSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteUsageReportSubscription", {})    .n("AppStreamClient", "DeleteUsageReportSubscriptionCommand")    .sc(schemas_0.DeleteUsageReportSubscription$)    .build() {} class DeleteUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DeleteUser", {})    .n("AppStreamClient", "DeleteUserCommand")    .sc(schemas_0.DeleteUser$)    .build() {} class DescribeAppBlockBuilderAppBlockAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeAppBlockBuilderAppBlockAssociations", {})    .n("AppStreamClient", "DescribeAppBlockBuilderAppBlockAssociationsCommand")    .sc(schemas_0.DescribeAppBlockBuilderAppBlockAssociations$)    .build() {} class DescribeAppBlockBuildersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeAppBlockBuilders", {})    .n("AppStreamClient", "DescribeAppBlockBuildersCommand")    .sc(schemas_0.DescribeAppBlockBuilders$)    .build() {} class DescribeAppBlocksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeAppBlocks", {})    .n("AppStreamClient", "DescribeAppBlocksCommand")    .sc(schemas_0.DescribeAppBlocks$)    .build() {} class DescribeApplicationFleetAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeApplicationFleetAssociations", {})    .n("AppStreamClient", "DescribeApplicationFleetAssociationsCommand")    .sc(schemas_0.DescribeApplicationFleetAssociations$)    .build() {} class DescribeApplicationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeApplications", {})    .n("AppStreamClient", "DescribeApplicationsCommand")    .sc(schemas_0.DescribeApplications$)    .build() {} class DescribeAppLicenseUsageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeAppLicenseUsage", {})    .n("AppStreamClient", "DescribeAppLicenseUsageCommand")    .sc(schemas_0.DescribeAppLicenseUsage$)    .build() {} class DescribeDirectoryConfigsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeDirectoryConfigs", {})    .n("AppStreamClient", "DescribeDirectoryConfigsCommand")    .sc(schemas_0.DescribeDirectoryConfigs$)    .build() {} class DescribeEntitlementsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeEntitlements", {})    .n("AppStreamClient", "DescribeEntitlementsCommand")    .sc(schemas_0.DescribeEntitlements$)    .build() {} class DescribeFleetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeFleets", {})    .n("AppStreamClient", "DescribeFleetsCommand")    .sc(schemas_0.DescribeFleets$)    .build() {} class DescribeImageBuildersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeImageBuilders", {})    .n("AppStreamClient", "DescribeImageBuildersCommand")    .sc(schemas_0.DescribeImageBuilders$)    .build() {} class DescribeImagePermissionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeImagePermissions", {})    .n("AppStreamClient", "DescribeImagePermissionsCommand")    .sc(schemas_0.DescribeImagePermissions$)    .build() {} class DescribeImagesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeImages", {})    .n("AppStreamClient", "DescribeImagesCommand")    .sc(schemas_0.DescribeImages$)    .build() {} class DescribeSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeSessions", {})    .n("AppStreamClient", "DescribeSessionsCommand")    .sc(schemas_0.DescribeSessions$)    .build() {} class DescribeSoftwareAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeSoftwareAssociations", {})    .n("AppStreamClient", "DescribeSoftwareAssociationsCommand")    .sc(schemas_0.DescribeSoftwareAssociations$)    .build() {} class DescribeStacksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeStacks", {})    .n("AppStreamClient", "DescribeStacksCommand")    .sc(schemas_0.DescribeStacks$)    .build() {} class DescribeThemeForStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeThemeForStack", {})    .n("AppStreamClient", "DescribeThemeForStackCommand")    .sc(schemas_0.DescribeThemeForStack$)    .build() {} class DescribeUsageReportSubscriptionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeUsageReportSubscriptions", {})    .n("AppStreamClient", "DescribeUsageReportSubscriptionsCommand")    .sc(schemas_0.DescribeUsageReportSubscriptions$)    .build() {} class DescribeUsersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeUsers", {})    .n("AppStreamClient", "DescribeUsersCommand")    .sc(schemas_0.DescribeUsers$)    .build() {} class DescribeUserStackAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DescribeUserStackAssociations", {})    .n("AppStreamClient", "DescribeUserStackAssociationsCommand")    .sc(schemas_0.DescribeUserStackAssociations$)    .build() {} class DisableUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DisableUser", {})    .n("AppStreamClient", "DisableUserCommand")    .sc(schemas_0.DisableUser$)    .build() {} class DisassociateAppBlockBuilderAppBlockCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DisassociateAppBlockBuilderAppBlock", {})    .n("AppStreamClient", "DisassociateAppBlockBuilderAppBlockCommand")    .sc(schemas_0.DisassociateAppBlockBuilderAppBlock$)    .build() {} class DisassociateApplicationFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DisassociateApplicationFleet", {})    .n("AppStreamClient", "DisassociateApplicationFleetCommand")    .sc(schemas_0.DisassociateApplicationFleet$)    .build() {} class DisassociateApplicationFromEntitlementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DisassociateApplicationFromEntitlement", {})    .n("AppStreamClient", "DisassociateApplicationFromEntitlementCommand")    .sc(schemas_0.DisassociateApplicationFromEntitlement$)    .build() {} class DisassociateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DisassociateFleet", {})    .n("AppStreamClient", "DisassociateFleetCommand")    .sc(schemas_0.DisassociateFleet$)    .build() {} class DisassociateSoftwareFromImageBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DisassociateSoftwareFromImageBuilder", {})    .n("AppStreamClient", "DisassociateSoftwareFromImageBuilderCommand")    .sc(schemas_0.DisassociateSoftwareFromImageBuilder$)    .build() {} class DrainSessionInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "DrainSessionInstance", {})    .n("AppStreamClient", "DrainSessionInstanceCommand")    .sc(schemas_0.DrainSessionInstance$)    .build() {} class EnableUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "EnableUser", {})    .n("AppStreamClient", "EnableUserCommand")    .sc(schemas_0.EnableUser$)    .build() {} class ExpireSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "ExpireSession", {})    .n("AppStreamClient", "ExpireSessionCommand")    .sc(schemas_0.ExpireSession$)    .build() {} class GetExportImageTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "GetExportImageTask", {})    .n("AppStreamClient", "GetExportImageTaskCommand")    .sc(schemas_0.GetExportImageTask$)    .build() {} class ListAssociatedFleetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "ListAssociatedFleets", {})    .n("AppStreamClient", "ListAssociatedFleetsCommand")    .sc(schemas_0.ListAssociatedFleets$)    .build() {} class ListAssociatedStacksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "ListAssociatedStacks", {})    .n("AppStreamClient", "ListAssociatedStacksCommand")    .sc(schemas_0.ListAssociatedStacks$)    .build() {} class ListEntitledApplicationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "ListEntitledApplications", {})    .n("AppStreamClient", "ListEntitledApplicationsCommand")    .sc(schemas_0.ListEntitledApplications$)    .build() {} class ListExportImageTasksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "ListExportImageTasks", {})    .n("AppStreamClient", "ListExportImageTasksCommand")    .sc(schemas_0.ListExportImageTasks$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "ListTagsForResource", {})    .n("AppStreamClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class StartAppBlockBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "StartAppBlockBuilder", {})    .n("AppStreamClient", "StartAppBlockBuilderCommand")    .sc(schemas_0.StartAppBlockBuilder$)    .build() {} class StartFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "StartFleet", {})    .n("AppStreamClient", "StartFleetCommand")    .sc(schemas_0.StartFleet$)    .build() {} class StartImageBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "StartImageBuilder", {})    .n("AppStreamClient", "StartImageBuilderCommand")    .sc(schemas_0.StartImageBuilder$)    .build() {} class StartSoftwareDeploymentToImageBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "StartSoftwareDeploymentToImageBuilder", {})    .n("AppStreamClient", "StartSoftwareDeploymentToImageBuilderCommand")    .sc(schemas_0.StartSoftwareDeploymentToImageBuilder$)    .build() {} class StopAppBlockBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "StopAppBlockBuilder", {})    .n("AppStreamClient", "StopAppBlockBuilderCommand")    .sc(schemas_0.StopAppBlockBuilder$)    .build() {} class StopFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "StopFleet", {})    .n("AppStreamClient", "StopFleetCommand")    .sc(schemas_0.StopFleet$)    .build() {} class StopImageBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "StopImageBuilder", {})    .n("AppStreamClient", "StopImageBuilderCommand")    .sc(schemas_0.StopImageBuilder$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "TagResource", {})    .n("AppStreamClient", "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("PhotonAdminProxyService", "UntagResource", {})    .n("AppStreamClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateAppBlockBuilderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateAppBlockBuilder", {})    .n("AppStreamClient", "UpdateAppBlockBuilderCommand")    .sc(schemas_0.UpdateAppBlockBuilder$)    .build() {} class UpdateApplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateApplication", {})    .n("AppStreamClient", "UpdateApplicationCommand")    .sc(schemas_0.UpdateApplication$)    .build() {} class UpdateDirectoryConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateDirectoryConfig", {})    .n("AppStreamClient", "UpdateDirectoryConfigCommand")    .sc(schemas_0.UpdateDirectoryConfig$)    .build() {} class UpdateEntitlementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateEntitlement", {})    .n("AppStreamClient", "UpdateEntitlementCommand")    .sc(schemas_0.UpdateEntitlement$)    .build() {} class UpdateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateFleet", {})    .n("AppStreamClient", "UpdateFleetCommand")    .sc(schemas_0.UpdateFleet$)    .build() {} class UpdateImagePermissionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateImagePermissions", {})    .n("AppStreamClient", "UpdateImagePermissionsCommand")    .sc(schemas_0.UpdateImagePermissions$)    .build() {} class UpdateStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateStack", {})    .n("AppStreamClient", "UpdateStackCommand")    .sc(schemas_0.UpdateStack$)    .build() {} class UpdateThemeForStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("PhotonAdminProxyService", "UpdateThemeForStack", {})    .n("AppStreamClient", "UpdateThemeForStackCommand")    .sc(schemas_0.UpdateThemeForStack$)    .build() {} const paginateDescribeAppBlockBuilderAppBlockAssociations = core.createPaginator(AppStreamClient, DescribeAppBlockBuilderAppBlockAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeAppBlockBuilders = core.createPaginator(AppStreamClient, DescribeAppBlockBuildersCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeImagePermissions = core.createPaginator(AppStreamClient, DescribeImagePermissionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeImages = core.createPaginator(AppStreamClient, DescribeImagesCommand, "NextToken", "NextToken", "MaxResults"); const checkState$1 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeFleetsCommand(input));        reason = result;        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.Fleets);                let projection_3 = flat_1.map((element_2) => {                    return element_2.State;                });                return projection_3;            };            let allStringEq_5 = (returnComparator().length > 0);            for (let element_4 of returnComparator()) {                allStringEq_5 = allStringEq_5 && (element_4 == "RUNNING");            }            if (allStringEq_5) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.Fleets);                let projection_3 = flat_1.map((element_2) => {                    return element_2.State;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "STOPPING") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.Fleets);                let projection_3 = flat_1.map((element_2) => {                    return element_2.State;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "STOPPED") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForFleetStarted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 120 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);};const waitUntilFleetStarted = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 120 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);    return client.checkExceptions(result);}; const checkState = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new DescribeFleetsCommand(input));        reason = result;        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.Fleets);                let projection_3 = flat_1.map((element_2) => {                    return element_2.State;                });                return projection_3;            };            let allStringEq_5 = (returnComparator().length > 0);            for (let element_4 of returnComparator()) {                allStringEq_5 = allStringEq_5 && (element_4 == "STOPPED");            }            if (allStringEq_5) {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.Fleets);                let projection_3 = flat_1.map((element_2) => {                    return element_2.State;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "STARTING") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }        try {            const returnComparator = () => {                let flat_1 = [].concat(...result.Fleets);                let projection_3 = flat_1.map((element_2) => {                    return element_2.State;                });                return projection_3;            };            for (let anyStringEq_4 of returnComparator()) {                if (anyStringEq_4 == "RUNNING") {                    return { state: client.WaiterState.FAILURE, reason };                }            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForFleetStopped = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 120 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);};const waitUntilFleetStopped = async (params, input) => {    const serviceDefaults = { minDelay: 30, maxDelay: 120 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);    return client.checkExceptions(result);}; const commands = {    AssociateAppBlockBuilderAppBlockCommand,    AssociateApplicationFleetCommand,    AssociateApplicationToEntitlementCommand,    AssociateFleetCommand,    AssociateSoftwareToImageBuilderCommand,    BatchAssociateUserStackCommand,    BatchDisassociateUserStackCommand,    CopyImageCommand,    CreateAppBlockCommand,    CreateAppBlockBuilderCommand,    CreateAppBlockBuilderStreamingURLCommand,    CreateApplicationCommand,    CreateDirectoryConfigCommand,    CreateEntitlementCommand,    CreateExportImageTaskCommand,    CreateFleetCommand,    CreateImageBuilderCommand,    CreateImageBuilderStreamingURLCommand,    CreateImportedImageCommand,    CreateStackCommand,    CreateStreamingURLCommand,    CreateThemeForStackCommand,    CreateUpdatedImageCommand,    CreateUsageReportSubscriptionCommand,    CreateUserCommand,    DeleteAppBlockCommand,    DeleteAppBlockBuilderCommand,    DeleteApplicationCommand,    DeleteDirectoryConfigCommand,    DeleteEntitlementCommand,    DeleteFleetCommand,    DeleteImageCommand,    DeleteImageBuilderCommand,    DeleteImagePermissionsCommand,    DeleteStackCommand,    DeleteThemeForStackCommand,    DeleteUsageReportSubscriptionCommand,    DeleteUserCommand,    DescribeAppBlockBuilderAppBlockAssociationsCommand,    DescribeAppBlockBuildersCommand,    DescribeAppBlocksCommand,    DescribeApplicationFleetAssociationsCommand,    DescribeApplicationsCommand,    DescribeAppLicenseUsageCommand,    DescribeDirectoryConfigsCommand,    DescribeEntitlementsCommand,    DescribeFleetsCommand,    DescribeImageBuildersCommand,    DescribeImagePermissionsCommand,    DescribeImagesCommand,    DescribeSessionsCommand,    DescribeSoftwareAssociationsCommand,    DescribeStacksCommand,    DescribeThemeForStackCommand,    DescribeUsageReportSubscriptionsCommand,    DescribeUsersCommand,    DescribeUserStackAssociationsCommand,    DisableUserCommand,    DisassociateAppBlockBuilderAppBlockCommand,    DisassociateApplicationFleetCommand,    DisassociateApplicationFromEntitlementCommand,    DisassociateFleetCommand,    DisassociateSoftwareFromImageBuilderCommand,    DrainSessionInstanceCommand,    EnableUserCommand,    ExpireSessionCommand,    GetExportImageTaskCommand,    ListAssociatedFleetsCommand,    ListAssociatedStacksCommand,    ListEntitledApplicationsCommand,    ListExportImageTasksCommand,    ListTagsForResourceCommand,    StartAppBlockBuilderCommand,    StartFleetCommand,    StartImageBuilderCommand,    StartSoftwareDeploymentToImageBuilderCommand,    StopAppBlockBuilderCommand,    StopFleetCommand,    StopImageBuilderCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateAppBlockBuilderCommand,    UpdateApplicationCommand,    UpdateDirectoryConfigCommand,    UpdateEntitlementCommand,    UpdateFleetCommand,    UpdateImagePermissionsCommand,    UpdateStackCommand,    UpdateThemeForStackCommand,};const paginators = {    paginateDescribeAppBlockBuilderAppBlockAssociations,    paginateDescribeAppBlockBuilders,    paginateDescribeImagePermissions,    paginateDescribeImages,};const waiters = {    waitUntilFleetStarted,    waitUntilFleetStopped,};class AppStream extends AppStreamClient {}client.createAggregatedClient(commands, AppStream, { paginators, waiters }); const AccessEndpointType = {    STREAMING: "STREAMING",};const Action = {    AUTO_TIME_ZONE_REDIRECTION: "AUTO_TIME_ZONE_REDIRECTION",    CLIPBOARD_COPY_FROM_LOCAL_DEVICE: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE",    CLIPBOARD_COPY_TO_LOCAL_DEVICE: "CLIPBOARD_COPY_TO_LOCAL_DEVICE",    DOMAIN_PASSWORD_SIGNIN: "DOMAIN_PASSWORD_SIGNIN",    DOMAIN_SMART_CARD_SIGNIN: "DOMAIN_SMART_CARD_SIGNIN",    FILE_DOWNLOAD: "FILE_DOWNLOAD",    FILE_UPLOAD: "FILE_UPLOAD",    PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE",};const ScreenImageFormat = {    JPEG: "JPEG",    PNG: "PNG",};const ScreenResolution = {    W_1280xH_720: "W_1280xH_720",};const AgentAction = {    COMPUTER_INPUT: "COMPUTER_INPUT",    COMPUTER_VISION: "COMPUTER_VISION",};const Permission = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const AgentSoftwareVersion = {    ALWAYS_LATEST: "ALWAYS_LATEST",    CURRENT_LATEST: "CURRENT_LATEST",};const PackagingType = {    APPSTREAM2: "APPSTREAM2",    CUSTOM: "CUSTOM",};const AppBlockState = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",};const FleetErrorCode = {    DOMAIN_JOIN_ERROR_ACCESS_DENIED: "DOMAIN_JOIN_ERROR_ACCESS_DENIED",    DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED",    DOMAIN_JOIN_ERROR_FILE_NOT_FOUND: "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND",    DOMAIN_JOIN_ERROR_INVALID_PARAMETER: "DOMAIN_JOIN_ERROR_INVALID_PARAMETER",    DOMAIN_JOIN_ERROR_LOGON_FAILURE: "DOMAIN_JOIN_ERROR_LOGON_FAILURE",    DOMAIN_JOIN_ERROR_MORE_DATA: "DOMAIN_JOIN_ERROR_MORE_DATA",    DOMAIN_JOIN_ERROR_NOT_SUPPORTED: "DOMAIN_JOIN_ERROR_NOT_SUPPORTED",    DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN: "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN",    DOMAIN_JOIN_INTERNAL_SERVICE_ERROR: "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR",    DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME: "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME",    DOMAIN_JOIN_NERR_PASSWORD_EXPIRED: "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED",    DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED: "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED",    FLEET_INSTANCE_PROVISIONING_FAILURE: "FLEET_INSTANCE_PROVISIONING_FAILURE",    FLEET_STOPPED: "FLEET_STOPPED",    IAM_SERVICE_ROLE_IS_MISSING: "IAM_SERVICE_ROLE_IS_MISSING",    IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION",    IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION: "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION",    IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION",    IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION",    IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION: "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION",    IGW_NOT_ATTACHED: "IGW_NOT_ATTACHED",    IMAGE_NOT_FOUND: "IMAGE_NOT_FOUND",    INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR",    INVALID_SUBNET_CONFIGURATION: "INVALID_SUBNET_CONFIGURATION",    MACHINE_ROLE_IS_MISSING: "MACHINE_ROLE_IS_MISSING",    NETWORK_INTERFACE_LIMIT_EXCEEDED: "NETWORK_INTERFACE_LIMIT_EXCEEDED",    SECURITY_GROUPS_NOT_FOUND: "SECURITY_GROUPS_NOT_FOUND",    STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION",    SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES",    SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",    VALIDATION_ERROR: "VALIDATION_ERROR",};const AppBlockBuilderPlatformType = {    WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019",};const AppBlockBuilderState = {    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",};const AppBlockBuilderStateChangeReasonCode = {    INTERNAL_ERROR: "INTERNAL_ERROR",};const AppBlockBuilderAttribute = {    ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS",    IAM_ROLE_ARN: "IAM_ROLE_ARN",    VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS",};const PlatformType = {    AMAZON_LINUX2: "AMAZON_LINUX2",    RHEL8: "RHEL8",    ROCKY_LINUX8: "ROCKY_LINUX8",    UBUNTU_PRO_2404: "UBUNTU_PRO_2404",    WINDOWS: "WINDOWS",    WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016",    WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019",    WINDOWS_SERVER_2022: "WINDOWS_SERVER_2022",    WINDOWS_SERVER_2025: "WINDOWS_SERVER_2025",};const ApplicationAttribute = {    LAUNCH_PARAMETERS: "LAUNCH_PARAMETERS",    WORKING_DIRECTORY: "WORKING_DIRECTORY",};const AppVisibility = {    ALL: "ALL",    ASSOCIATED: "ASSOCIATED",};const AuthenticationType = {    API: "API",    AWS_AD: "AWS_AD",    SAML: "SAML",    USERPOOL: "USERPOOL",};const UserStackAssociationErrorCode = {    DIRECTORY_NOT_FOUND: "DIRECTORY_NOT_FOUND",    INTERNAL_ERROR: "INTERNAL_ERROR",    STACK_NOT_FOUND: "STACK_NOT_FOUND",    USER_NAME_NOT_FOUND: "USER_NAME_NOT_FOUND",};const CertificateBasedAuthStatus = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",    ENABLED_NO_DIRECTORY_LOGIN_FALLBACK: "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK",};const ExportImageTaskState = {    COMPLETED: "COMPLETED",    EXPORTING: "EXPORTING",    FAILED: "FAILED",};const FleetType = {    ALWAYS_ON: "ALWAYS_ON",    ELASTIC: "ELASTIC",    ON_DEMAND: "ON_DEMAND",};const StreamView = {    APP: "APP",    DESKTOP: "DESKTOP",};const FleetState = {    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",};const LatestAppstreamAgentVersion = {    FALSE: "FALSE",    TRUE: "TRUE",};const ImageBuilderState = {    DELETING: "DELETING",    FAILED: "FAILED",    PENDING: "PENDING",    PENDING_IMAGE_IMPORT: "PENDING_IMAGE_IMPORT",    PENDING_QUALIFICATION: "PENDING_QUALIFICATION",    PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS",    REBOOTING: "REBOOTING",    RUNNING: "RUNNING",    SNAPSHOTTING: "SNAPSHOTTING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",    SYNCING_APPS: "SYNCING_APPS",    UPDATING: "UPDATING",    UPDATING_AGENT: "UPDATING_AGENT",};const ImageBuilderStateChangeReasonCode = {    IMAGE_UNAVAILABLE: "IMAGE_UNAVAILABLE",    INTERNAL_ERROR: "INTERNAL_ERROR",};const DynamicAppProvidersEnabled = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const ImageSharedWithOthers = {    FALSE: "FALSE",    TRUE: "TRUE",};const ImageType = {    CUSTOM: "CUSTOM",    NATIVE: "NATIVE",};const ImageState = {    AVAILABLE: "AVAILABLE",    COPYING: "COPYING",    CREATING: "CREATING",    DELETING: "DELETING",    FAILED: "FAILED",    IMPORTING: "IMPORTING",    PENDING: "PENDING",    VALIDATING: "VALIDATING",};const ImageStateChangeReasonCode = {    IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE",    IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE",    IMAGE_IMPORT_FAILURE: "IMAGE_IMPORT_FAILURE",    IMAGE_UPDATE_FAILURE: "IMAGE_UPDATE_FAILURE",    INTERNAL_ERROR: "INTERNAL_ERROR",};const VisibilityType = {    PRIVATE: "PRIVATE",    PUBLIC: "PUBLIC",    SHARED: "SHARED",};const StorageConnectorType = {    GOOGLE_DRIVE: "GOOGLE_DRIVE",    HOMEFOLDERS: "HOMEFOLDERS",    ONE_DRIVE: "ONE_DRIVE",};const PreferredProtocol = {    TCP: "TCP",    UDP: "UDP",};const StackErrorCode = {    INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR",    STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR",};const ThemeStyling = {    BLUE: "BLUE",    LIGHT_BLUE: "LIGHT_BLUE",    PINK: "PINK",    RED: "RED",};const ThemeState = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const UsageReportSchedule = {    DAILY: "DAILY",};const MessageAction = {    RESEND: "RESEND",    SUPPRESS: "SUPPRESS",};const SessionConnectionState = {    CONNECTED: "CONNECTED",    NOT_CONNECTED: "NOT_CONNECTED",};const InstanceDrainStatus = {    ACTIVE: "ACTIVE",    DRAINING: "DRAINING",    NOT_APPLICABLE: "NOT_APPLICABLE",};const SessionState = {    ACTIVE: "ACTIVE",    EXPIRED: "EXPIRED",    PENDING: "PENDING",};const SoftwareDeploymentStatus = {    FAILED_TO_INSTALL: "FAILED_TO_INSTALL",    FAILED_TO_UNINSTALL: "FAILED_TO_UNINSTALL",    INSTALLED: "INSTALLED",    PENDING_INSTALLATION: "PENDING_INSTALLATION",    PENDING_UNINSTALLATION: "PENDING_UNINSTALLATION",    STAGED_FOR_INSTALLATION: "STAGED_FOR_INSTALLATION",    STAGED_FOR_UNINSTALLATION: "STAGED_FOR_UNINSTALLATION",};const UsageReportExecutionErrorCode = {    ACCESS_DENIED: "ACCESS_DENIED",    INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR",    RESOURCE_NOT_FOUND: "RESOURCE_NOT_FOUND",};const FleetAttribute = {    DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO",    IAM_ROLE_ARN: "IAM_ROLE_ARN",    MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE",    SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION",    USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS",    VOLUME_CONFIGURATION: "VOLUME_CONFIGURATION",    VPC_CONFIGURATION: "VPC_CONFIGURATION",    VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS",};const StackAttribute = {    ACCESS_ENDPOINTS: "ACCESS_ENDPOINTS",    AGENT_ACCESS_CONFIG: "AGENT_ACCESS_CONFIG",    CONTENT_REDIRECTION: "CONTENT_REDIRECTION",    EMBED_HOST_DOMAINS: "EMBED_HOST_DOMAINS",    FEEDBACK_URL: "FEEDBACK_URL",    IAM_ROLE_ARN: "IAM_ROLE_ARN",    REDIRECT_URL: "REDIRECT_URL",    STORAGE_CONNECTORS: "STORAGE_CONNECTORS",    STORAGE_CONNECTOR_GOOGLE_DRIVE: "STORAGE_CONNECTOR_GOOGLE_DRIVE",    STORAGE_CONNECTOR_HOMEFOLDERS: "STORAGE_CONNECTOR_HOMEFOLDERS",    STORAGE_CONNECTOR_ONE_DRIVE: "STORAGE_CONNECTOR_ONE_DRIVE",    STREAMING_EXPERIENCE_SETTINGS: "STREAMING_EXPERIENCE_SETTINGS",    THEME_NAME: "THEME_NAME",    USER_SETTINGS: "USER_SETTINGS",};const ThemeAttribute = {    FOOTER_LINKS: "FOOTER_LINKS",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.AppStreamServiceException = AppStreamServiceException.AppStreamServiceException;exports.AccessEndpointType = AccessEndpointType;exports.Action = Action;exports.AgentAction = AgentAction;exports.AgentSoftwareVersion = AgentSoftwareVersion;exports.AppBlockBuilderAttribute = AppBlockBuilderAttribute;exports.AppBlockBuilderPlatformType = AppBlockBuilderPlatformType;exports.AppBlockBuilderState = AppBlockBuilderState;exports.AppBlockBuilderStateChangeReasonCode = AppBlockBuilderStateChangeReasonCode;exports.AppBlockState = AppBlockState;exports.AppStream = AppStream;exports.AppStreamClient = AppStreamClient;exports.AppVisibility = AppVisibility;exports.ApplicationAttribute = ApplicationAttribute;exports.AssociateAppBlockBuilderAppBlockCommand = AssociateAppBlockBuilderAppBlockCommand;exports.AssociateApplicationFleetCommand = AssociateApplicationFleetCommand;exports.AssociateApplicationToEntitlementCommand = AssociateApplicationToEntitlementCommand;exports.AssociateFleetCommand = AssociateFleetCommand;exports.AssociateSoftwareToImageBuilderCommand = AssociateSoftwareToImageBuilderCommand;exports.AuthenticationType = AuthenticationType;exports.BatchAssociateUserStackCommand = BatchAssociateUserStackCommand;exports.BatchDisassociateUserStackCommand = BatchDisassociateUserStackCommand;exports.CertificateBasedAuthStatus = CertificateBasedAuthStatus;exports.CopyImageCommand = CopyImageCommand;exports.CreateAppBlockBuilderCommand = CreateAppBlockBuilderCommand;exports.CreateAppBlockBuilderStreamingURLCommand = CreateAppBlockBuilderStreamingURLCommand;exports.CreateAppBlockCommand = CreateAppBlockCommand;exports.CreateApplicationCommand = CreateApplicationCommand;exports.CreateDirectoryConfigCommand = CreateDirectoryConfigCommand;exports.CreateEntitlementCommand = CreateEntitlementCommand;exports.CreateExportImageTaskCommand = CreateExportImageTaskCommand;exports.CreateFleetCommand = CreateFleetCommand;exports.CreateImageBuilderCommand = CreateImageBuilderCommand;exports.CreateImageBuilderStreamingURLCommand = CreateImageBuilderStreamingURLCommand;exports.CreateImportedImageCommand = CreateImportedImageCommand;exports.CreateStackCommand = CreateStackCommand;exports.CreateStreamingURLCommand = CreateStreamingURLCommand;exports.CreateThemeForStackCommand = CreateThemeForStackCommand;exports.CreateUpdatedImageCommand = CreateUpdatedImageCommand;exports.CreateUsageReportSubscriptionCommand = CreateUsageReportSubscriptionCommand;exports.CreateUserCommand = CreateUserCommand;exports.DeleteAppBlockBuilderCommand = DeleteAppBlockBuilderCommand;exports.DeleteAppBlockCommand = DeleteAppBlockCommand;exports.DeleteApplicationCommand = DeleteApplicationCommand;exports.DeleteDirectoryConfigCommand = DeleteDirectoryConfigCommand;exports.DeleteEntitlementCommand = DeleteEntitlementCommand;exports.DeleteFleetCommand = DeleteFleetCommand;exports.DeleteImageBuilderCommand = DeleteImageBuilderCommand;exports.DeleteImageCommand = DeleteImageCommand;exports.DeleteImagePermissionsCommand = DeleteImagePermissionsCommand;exports.DeleteStackCommand = DeleteStackCommand;exports.DeleteThemeForStackCommand = DeleteThemeForStackCommand;exports.DeleteUsageReportSubscriptionCommand = DeleteUsageReportSubscriptionCommand;exports.DeleteUserCommand = DeleteUserCommand;exports.DescribeAppBlockBuilderAppBlockAssociationsCommand = DescribeAppBlockBuilderAppBlockAssociationsCommand;exports.DescribeAppBlockBuildersCommand = DescribeAppBlockBuildersCommand;exports.DescribeAppBlocksCommand = DescribeAppBlocksCommand;exports.DescribeAppLicenseUsageCommand = DescribeAppLicenseUsageCommand;exports.DescribeApplicationFleetAssociationsCommand = DescribeApplicationFleetAssociationsCommand;exports.DescribeApplicationsCommand = DescribeApplicationsCommand;exports.DescribeDirectoryConfigsCommand = DescribeDirectoryConfigsCommand;exports.DescribeEntitlementsCommand = DescribeEntitlementsCommand;exports.DescribeFleetsCommand = DescribeFleetsCommand;exports.DescribeImageBuildersCommand = DescribeImageBuildersCommand;exports.DescribeImagePermissionsCommand = DescribeImagePermissionsCommand;exports.DescribeImagesCommand = DescribeImagesCommand;exports.DescribeSessionsCommand = DescribeSessionsCommand;exports.DescribeSoftwareAssociationsCommand = DescribeSoftwareAssociationsCommand;exports.DescribeStacksCommand = DescribeStacksCommand;exports.DescribeThemeForStackCommand = DescribeThemeForStackCommand;exports.DescribeUsageReportSubscriptionsCommand = DescribeUsageReportSubscriptionsCommand;exports.DescribeUserStackAssociationsCommand = DescribeUserStackAssociationsCommand;exports.DescribeUsersCommand = DescribeUsersCommand;exports.DisableUserCommand = DisableUserCommand;exports.DisassociateAppBlockBuilderAppBlockCommand = DisassociateAppBlockBuilderAppBlockCommand;exports.DisassociateApplicationFleetCommand = DisassociateApplicationFleetCommand;exports.DisassociateApplicationFromEntitlementCommand = DisassociateApplicationFromEntitlementCommand;exports.DisassociateFleetCommand = DisassociateFleetCommand;exports.DisassociateSoftwareFromImageBuilderCommand = DisassociateSoftwareFromImageBuilderCommand;exports.DrainSessionInstanceCommand = DrainSessionInstanceCommand;exports.DynamicAppProvidersEnabled = DynamicAppProvidersEnabled;exports.EnableUserCommand = EnableUserCommand;exports.ExpireSessionCommand = ExpireSessionCommand;exports.ExportImageTaskState = ExportImageTaskState;exports.FleetAttribute = FleetAttribute;exports.FleetErrorCode = FleetErrorCode;exports.FleetState = FleetState;exports.FleetType = FleetType;exports.GetExportImageTaskCommand = GetExportImageTaskCommand;exports.ImageBuilderState = ImageBuilderState;exports.ImageBuilderStateChangeReasonCode = ImageBuilderStateChangeReasonCode;exports.ImageSharedWithOthers = ImageSharedWithOthers;exports.ImageState = ImageState;exports.ImageStateChangeReasonCode = ImageStateChangeReasonCode;exports.ImageType = ImageType;exports.InstanceDrainStatus = InstanceDrainStatus;exports.LatestAppstreamAgentVersion = LatestAppstreamAgentVersion;exports.ListAssociatedFleetsCommand = ListAssociatedFleetsCommand;exports.ListAssociatedStacksCommand = ListAssociatedStacksCommand;exports.ListEntitledApplicationsCommand = ListEntitledApplicationsCommand;exports.ListExportImageTasksCommand = ListExportImageTasksCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.MessageAction = MessageAction;exports.PackagingType = PackagingType;exports.Permission = Permission;exports.PlatformType = PlatformType;exports.PreferredProtocol = PreferredProtocol;exports.ScreenImageFormat = ScreenImageFormat;exports.ScreenResolution = ScreenResolution;exports.SessionConnectionState = SessionConnectionState;exports.SessionState = SessionState;exports.SoftwareDeploymentStatus = SoftwareDeploymentStatus;exports.StackAttribute = StackAttribute;exports.StackErrorCode = StackErrorCode;exports.StartAppBlockBuilderCommand = StartAppBlockBuilderCommand;exports.StartFleetCommand = StartFleetCommand;exports.StartImageBuilderCommand = StartImageBuilderCommand;exports.StartSoftwareDeploymentToImageBuilderCommand = StartSoftwareDeploymentToImageBuilderCommand;exports.StopAppBlockBuilderCommand = StopAppBlockBuilderCommand;exports.StopFleetCommand = StopFleetCommand;exports.StopImageBuilderCommand = StopImageBuilderCommand;exports.StorageConnectorType = StorageConnectorType;exports.StreamView = StreamView;exports.TagResourceCommand = TagResourceCommand;exports.ThemeAttribute = ThemeAttribute;exports.ThemeState = ThemeState;exports.ThemeStyling = ThemeStyling;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateAppBlockBuilderCommand = UpdateAppBlockBuilderCommand;exports.UpdateApplicationCommand = UpdateApplicationCommand;exports.UpdateDirectoryConfigCommand = UpdateDirectoryConfigCommand;exports.UpdateEntitlementCommand = UpdateEntitlementCommand;exports.UpdateFleetCommand = UpdateFleetCommand;exports.UpdateImagePermissionsCommand = UpdateImagePermissionsCommand;exports.UpdateStackCommand = UpdateStackCommand;exports.UpdateThemeForStackCommand = UpdateThemeForStackCommand;exports.UsageReportExecutionErrorCode = UsageReportExecutionErrorCode;exports.UsageReportSchedule = UsageReportSchedule;exports.UserStackAssociationErrorCode = UserStackAssociationErrorCode;exports.VisibilityType = VisibilityType;exports.paginateDescribeAppBlockBuilderAppBlockAssociations = paginateDescribeAppBlockBuilderAppBlockAssociations;exports.paginateDescribeAppBlockBuilders = paginateDescribeAppBlockBuilders;exports.paginateDescribeImagePermissions = paginateDescribeImagePermissions;exports.paginateDescribeImages = paginateDescribeImages;exports.waitForFleetStarted = waitForFleetStarted;exports.waitForFleetStopped = waitForFleetStopped;exports.waitUntilFleetStarted = waitUntilFleetStarted;exports.waitUntilFleetStopped = waitUntilFleetStopped;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];});