File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-deadline/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.js102 KB · 2942 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 DeadlineServiceException = require('./models/DeadlineServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "deadline",    });};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 DeadlineClient 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.defaultDeadlineHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateMemberToFarmCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssociateMemberToFarm", {})    .n("DeadlineClient", "AssociateMemberToFarmCommand")    .sc(schemas_0.AssociateMemberToFarm$)    .build() {} class AssociateMemberToFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssociateMemberToFleet", {})    .n("DeadlineClient", "AssociateMemberToFleetCommand")    .sc(schemas_0.AssociateMemberToFleet$)    .build() {} class AssociateMemberToJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssociateMemberToJob", {})    .n("DeadlineClient", "AssociateMemberToJobCommand")    .sc(schemas_0.AssociateMemberToJob$)    .build() {} class AssociateMemberToQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssociateMemberToQueue", {})    .n("DeadlineClient", "AssociateMemberToQueueCommand")    .sc(schemas_0.AssociateMemberToQueue$)    .build() {} class AssumeFleetRoleForReadCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssumeFleetRoleForRead", {})    .n("DeadlineClient", "AssumeFleetRoleForReadCommand")    .sc(schemas_0.AssumeFleetRoleForRead$)    .build() {} class AssumeFleetRoleForWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssumeFleetRoleForWorker", {})    .n("DeadlineClient", "AssumeFleetRoleForWorkerCommand")    .sc(schemas_0.AssumeFleetRoleForWorker$)    .build() {} class AssumeQueueRoleForReadCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssumeQueueRoleForRead", {})    .n("DeadlineClient", "AssumeQueueRoleForReadCommand")    .sc(schemas_0.AssumeQueueRoleForRead$)    .build() {} class AssumeQueueRoleForUserCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssumeQueueRoleForUser", {})    .n("DeadlineClient", "AssumeQueueRoleForUserCommand")    .sc(schemas_0.AssumeQueueRoleForUser$)    .build() {} class AssumeQueueRoleForWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "AssumeQueueRoleForWorker", {})    .n("DeadlineClient", "AssumeQueueRoleForWorkerCommand")    .sc(schemas_0.AssumeQueueRoleForWorker$)    .build() {} class BatchGetJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchGetJob", {})    .n("DeadlineClient", "BatchGetJobCommand")    .sc(schemas_0.BatchGetJob$)    .build() {} class BatchGetJobEntityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchGetJobEntity", {})    .n("DeadlineClient", "BatchGetJobEntityCommand")    .sc(schemas_0.BatchGetJobEntity$)    .build() {} class BatchGetSessionActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchGetSessionAction", {})    .n("DeadlineClient", "BatchGetSessionActionCommand")    .sc(schemas_0.BatchGetSessionAction$)    .build() {} class BatchGetSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchGetSession", {})    .n("DeadlineClient", "BatchGetSessionCommand")    .sc(schemas_0.BatchGetSession$)    .build() {} class BatchGetStepCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchGetStep", {})    .n("DeadlineClient", "BatchGetStepCommand")    .sc(schemas_0.BatchGetStep$)    .build() {} class BatchGetTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchGetTask", {})    .n("DeadlineClient", "BatchGetTaskCommand")    .sc(schemas_0.BatchGetTask$)    .build() {} class BatchGetWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchGetWorker", {})    .n("DeadlineClient", "BatchGetWorkerCommand")    .sc(schemas_0.BatchGetWorker$)    .build() {} class BatchUpdateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchUpdateJob", {})    .n("DeadlineClient", "BatchUpdateJobCommand")    .sc(schemas_0.BatchUpdateJob$)    .build() {} class BatchUpdateTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "BatchUpdateTask", {})    .n("DeadlineClient", "BatchUpdateTaskCommand")    .sc(schemas_0.BatchUpdateTask$)    .build() {} class CopyJobTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CopyJobTemplate", {})    .n("DeadlineClient", "CopyJobTemplateCommand")    .sc(schemas_0.CopyJobTemplate$)    .build() {} class CreateBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateBudget", {})    .n("DeadlineClient", "CreateBudgetCommand")    .sc(schemas_0.CreateBudget$)    .build() {} class CreateFarmCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateFarm", {})    .n("DeadlineClient", "CreateFarmCommand")    .sc(schemas_0.CreateFarm$)    .build() {} class CreateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateFleet", {})    .n("DeadlineClient", "CreateFleetCommand")    .sc(schemas_0.CreateFleet$)    .build() {} class CreateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateJob", {})    .n("DeadlineClient", "CreateJobCommand")    .sc(schemas_0.CreateJob$)    .build() {} class CreateLicenseEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateLicenseEndpoint", {})    .n("DeadlineClient", "CreateLicenseEndpointCommand")    .sc(schemas_0.CreateLicenseEndpoint$)    .build() {} class CreateLimitCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateLimit", {})    .n("DeadlineClient", "CreateLimitCommand")    .sc(schemas_0.CreateLimit$)    .build() {} class CreateMonitorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateMonitor", {})    .n("DeadlineClient", "CreateMonitorCommand")    .sc(schemas_0.CreateMonitor$)    .build() {} class CreateQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateQueue", {})    .n("DeadlineClient", "CreateQueueCommand")    .sc(schemas_0.CreateQueue$)    .build() {} class CreateQueueEnvironmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateQueueEnvironment", {})    .n("DeadlineClient", "CreateQueueEnvironmentCommand")    .sc(schemas_0.CreateQueueEnvironment$)    .build() {} class CreateQueueFleetAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateQueueFleetAssociation", {})    .n("DeadlineClient", "CreateQueueFleetAssociationCommand")    .sc(schemas_0.CreateQueueFleetAssociation$)    .build() {} class CreateQueueLimitAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateQueueLimitAssociation", {})    .n("DeadlineClient", "CreateQueueLimitAssociationCommand")    .sc(schemas_0.CreateQueueLimitAssociation$)    .build() {} class CreateStorageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateStorageProfile", {})    .n("DeadlineClient", "CreateStorageProfileCommand")    .sc(schemas_0.CreateStorageProfile$)    .build() {} class CreateWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "CreateWorker", {})    .n("DeadlineClient", "CreateWorkerCommand")    .sc(schemas_0.CreateWorker$)    .build() {} class DeleteBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteBudget", {})    .n("DeadlineClient", "DeleteBudgetCommand")    .sc(schemas_0.DeleteBudget$)    .build() {} class DeleteFarmCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteFarm", {})    .n("DeadlineClient", "DeleteFarmCommand")    .sc(schemas_0.DeleteFarm$)    .build() {} class DeleteFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteFleet", {})    .n("DeadlineClient", "DeleteFleetCommand")    .sc(schemas_0.DeleteFleet$)    .build() {} class DeleteLicenseEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteLicenseEndpoint", {})    .n("DeadlineClient", "DeleteLicenseEndpointCommand")    .sc(schemas_0.DeleteLicenseEndpoint$)    .build() {} class DeleteLimitCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteLimit", {})    .n("DeadlineClient", "DeleteLimitCommand")    .sc(schemas_0.DeleteLimit$)    .build() {} class DeleteMeteredProductCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteMeteredProduct", {})    .n("DeadlineClient", "DeleteMeteredProductCommand")    .sc(schemas_0.DeleteMeteredProduct$)    .build() {} class DeleteMonitorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteMonitor", {})    .n("DeadlineClient", "DeleteMonitorCommand")    .sc(schemas_0.DeleteMonitor$)    .build() {} class DeleteQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteQueue", {})    .n("DeadlineClient", "DeleteQueueCommand")    .sc(schemas_0.DeleteQueue$)    .build() {} class DeleteQueueEnvironmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteQueueEnvironment", {})    .n("DeadlineClient", "DeleteQueueEnvironmentCommand")    .sc(schemas_0.DeleteQueueEnvironment$)    .build() {} class DeleteQueueFleetAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteQueueFleetAssociation", {})    .n("DeadlineClient", "DeleteQueueFleetAssociationCommand")    .sc(schemas_0.DeleteQueueFleetAssociation$)    .build() {} class DeleteQueueLimitAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteQueueLimitAssociation", {})    .n("DeadlineClient", "DeleteQueueLimitAssociationCommand")    .sc(schemas_0.DeleteQueueLimitAssociation$)    .build() {} class DeleteStorageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteStorageProfile", {})    .n("DeadlineClient", "DeleteStorageProfileCommand")    .sc(schemas_0.DeleteStorageProfile$)    .build() {} class DeleteWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DeleteWorker", {})    .n("DeadlineClient", "DeleteWorkerCommand")    .sc(schemas_0.DeleteWorker$)    .build() {} class DisassociateMemberFromFarmCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DisassociateMemberFromFarm", {})    .n("DeadlineClient", "DisassociateMemberFromFarmCommand")    .sc(schemas_0.DisassociateMemberFromFarm$)    .build() {} class DisassociateMemberFromFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DisassociateMemberFromFleet", {})    .n("DeadlineClient", "DisassociateMemberFromFleetCommand")    .sc(schemas_0.DisassociateMemberFromFleet$)    .build() {} class DisassociateMemberFromJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DisassociateMemberFromJob", {})    .n("DeadlineClient", "DisassociateMemberFromJobCommand")    .sc(schemas_0.DisassociateMemberFromJob$)    .build() {} class DisassociateMemberFromQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "DisassociateMemberFromQueue", {})    .n("DeadlineClient", "DisassociateMemberFromQueueCommand")    .sc(schemas_0.DisassociateMemberFromQueue$)    .build() {} class GetBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetBudget", {})    .n("DeadlineClient", "GetBudgetCommand")    .sc(schemas_0.GetBudget$)    .build() {} class GetFarmCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetFarm", {})    .n("DeadlineClient", "GetFarmCommand")    .sc(schemas_0.GetFarm$)    .build() {} class GetFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetFleet", {})    .n("DeadlineClient", "GetFleetCommand")    .sc(schemas_0.GetFleet$)    .build() {} class GetJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetJob", {})    .n("DeadlineClient", "GetJobCommand")    .sc(schemas_0.GetJob$)    .build() {} class GetLicenseEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetLicenseEndpoint", {})    .n("DeadlineClient", "GetLicenseEndpointCommand")    .sc(schemas_0.GetLicenseEndpoint$)    .build() {} class GetLimitCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetLimit", {})    .n("DeadlineClient", "GetLimitCommand")    .sc(schemas_0.GetLimit$)    .build() {} class GetMonitorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetMonitor", {})    .n("DeadlineClient", "GetMonitorCommand")    .sc(schemas_0.GetMonitor$)    .build() {} class GetMonitorSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetMonitorSettings", {})    .n("DeadlineClient", "GetMonitorSettingsCommand")    .sc(schemas_0.GetMonitorSettings$)    .build() {} class GetQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetQueue", {})    .n("DeadlineClient", "GetQueueCommand")    .sc(schemas_0.GetQueue$)    .build() {} class GetQueueEnvironmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetQueueEnvironment", {})    .n("DeadlineClient", "GetQueueEnvironmentCommand")    .sc(schemas_0.GetQueueEnvironment$)    .build() {} class GetQueueFleetAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetQueueFleetAssociation", {})    .n("DeadlineClient", "GetQueueFleetAssociationCommand")    .sc(schemas_0.GetQueueFleetAssociation$)    .build() {} class GetQueueLimitAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetQueueLimitAssociation", {})    .n("DeadlineClient", "GetQueueLimitAssociationCommand")    .sc(schemas_0.GetQueueLimitAssociation$)    .build() {} class GetSessionActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetSessionAction", {})    .n("DeadlineClient", "GetSessionActionCommand")    .sc(schemas_0.GetSessionAction$)    .build() {} class GetSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetSession", {})    .n("DeadlineClient", "GetSessionCommand")    .sc(schemas_0.GetSession$)    .build() {} class GetSessionsStatisticsAggregationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetSessionsStatisticsAggregation", {})    .n("DeadlineClient", "GetSessionsStatisticsAggregationCommand")    .sc(schemas_0.GetSessionsStatisticsAggregation$)    .build() {} class GetStepCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetStep", {})    .n("DeadlineClient", "GetStepCommand")    .sc(schemas_0.GetStep$)    .build() {} class GetStorageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetStorageProfile", {})    .n("DeadlineClient", "GetStorageProfileCommand")    .sc(schemas_0.GetStorageProfile$)    .build() {} class GetStorageProfileForQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetStorageProfileForQueue", {})    .n("DeadlineClient", "GetStorageProfileForQueueCommand")    .sc(schemas_0.GetStorageProfileForQueue$)    .build() {} class GetTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetTask", {})    .n("DeadlineClient", "GetTaskCommand")    .sc(schemas_0.GetTask$)    .build() {} class GetWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "GetWorker", {})    .n("DeadlineClient", "GetWorkerCommand")    .sc(schemas_0.GetWorker$)    .build() {} class ListAvailableMeteredProductsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListAvailableMeteredProducts", {})    .n("DeadlineClient", "ListAvailableMeteredProductsCommand")    .sc(schemas_0.ListAvailableMeteredProducts$)    .build() {} class ListBudgetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListBudgets", {})    .n("DeadlineClient", "ListBudgetsCommand")    .sc(schemas_0.ListBudgets$)    .build() {} class ListFarmMembersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListFarmMembers", {})    .n("DeadlineClient", "ListFarmMembersCommand")    .sc(schemas_0.ListFarmMembers$)    .build() {} class ListFarmsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListFarms", {})    .n("DeadlineClient", "ListFarmsCommand")    .sc(schemas_0.ListFarms$)    .build() {} class ListFleetMembersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListFleetMembers", {})    .n("DeadlineClient", "ListFleetMembersCommand")    .sc(schemas_0.ListFleetMembers$)    .build() {} class ListFleetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListFleets", {})    .n("DeadlineClient", "ListFleetsCommand")    .sc(schemas_0.ListFleets$)    .build() {} class ListJobMembersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListJobMembers", {})    .n("DeadlineClient", "ListJobMembersCommand")    .sc(schemas_0.ListJobMembers$)    .build() {} class ListJobParameterDefinitionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListJobParameterDefinitions", {})    .n("DeadlineClient", "ListJobParameterDefinitionsCommand")    .sc(schemas_0.ListJobParameterDefinitions$)    .build() {} class ListJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListJobs", {})    .n("DeadlineClient", "ListJobsCommand")    .sc(schemas_0.ListJobs$)    .build() {} class ListLicenseEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListLicenseEndpoints", {})    .n("DeadlineClient", "ListLicenseEndpointsCommand")    .sc(schemas_0.ListLicenseEndpoints$)    .build() {} class ListLimitsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListLimits", {})    .n("DeadlineClient", "ListLimitsCommand")    .sc(schemas_0.ListLimits$)    .build() {} class ListMeteredProductsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListMeteredProducts", {})    .n("DeadlineClient", "ListMeteredProductsCommand")    .sc(schemas_0.ListMeteredProducts$)    .build() {} class ListMonitorsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListMonitors", {})    .n("DeadlineClient", "ListMonitorsCommand")    .sc(schemas_0.ListMonitors$)    .build() {} class ListQueueEnvironmentsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListQueueEnvironments", {})    .n("DeadlineClient", "ListQueueEnvironmentsCommand")    .sc(schemas_0.ListQueueEnvironments$)    .build() {} class ListQueueFleetAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListQueueFleetAssociations", {})    .n("DeadlineClient", "ListQueueFleetAssociationsCommand")    .sc(schemas_0.ListQueueFleetAssociations$)    .build() {} class ListQueueLimitAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListQueueLimitAssociations", {})    .n("DeadlineClient", "ListQueueLimitAssociationsCommand")    .sc(schemas_0.ListQueueLimitAssociations$)    .build() {} class ListQueueMembersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListQueueMembers", {})    .n("DeadlineClient", "ListQueueMembersCommand")    .sc(schemas_0.ListQueueMembers$)    .build() {} class ListQueuesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListQueues", {})    .n("DeadlineClient", "ListQueuesCommand")    .sc(schemas_0.ListQueues$)    .build() {} class ListSessionActionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListSessionActions", {})    .n("DeadlineClient", "ListSessionActionsCommand")    .sc(schemas_0.ListSessionActions$)    .build() {} class ListSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListSessions", {})    .n("DeadlineClient", "ListSessionsCommand")    .sc(schemas_0.ListSessions$)    .build() {} class ListSessionsForWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListSessionsForWorker", {})    .n("DeadlineClient", "ListSessionsForWorkerCommand")    .sc(schemas_0.ListSessionsForWorker$)    .build() {} class ListStepConsumersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListStepConsumers", {})    .n("DeadlineClient", "ListStepConsumersCommand")    .sc(schemas_0.ListStepConsumers$)    .build() {} class ListStepDependenciesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListStepDependencies", {})    .n("DeadlineClient", "ListStepDependenciesCommand")    .sc(schemas_0.ListStepDependencies$)    .build() {} class ListStepsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListSteps", {})    .n("DeadlineClient", "ListStepsCommand")    .sc(schemas_0.ListSteps$)    .build() {} class ListStorageProfilesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListStorageProfiles", {})    .n("DeadlineClient", "ListStorageProfilesCommand")    .sc(schemas_0.ListStorageProfiles$)    .build() {} class ListStorageProfilesForQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListStorageProfilesForQueue", {})    .n("DeadlineClient", "ListStorageProfilesForQueueCommand")    .sc(schemas_0.ListStorageProfilesForQueue$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListTagsForResource", {})    .n("DeadlineClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ListTasksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListTasks", {})    .n("DeadlineClient", "ListTasksCommand")    .sc(schemas_0.ListTasks$)    .build() {} class ListWorkersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "ListWorkers", {})    .n("DeadlineClient", "ListWorkersCommand")    .sc(schemas_0.ListWorkers$)    .build() {} class PutMeteredProductCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "PutMeteredProduct", {})    .n("DeadlineClient", "PutMeteredProductCommand")    .sc(schemas_0.PutMeteredProduct$)    .build() {} class SearchJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "SearchJobs", {})    .n("DeadlineClient", "SearchJobsCommand")    .sc(schemas_0.SearchJobs$)    .build() {} class SearchStepsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "SearchSteps", {})    .n("DeadlineClient", "SearchStepsCommand")    .sc(schemas_0.SearchSteps$)    .build() {} class SearchTasksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "SearchTasks", {})    .n("DeadlineClient", "SearchTasksCommand")    .sc(schemas_0.SearchTasks$)    .build() {} class SearchWorkersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "SearchWorkers", {})    .n("DeadlineClient", "SearchWorkersCommand")    .sc(schemas_0.SearchWorkers$)    .build() {} class StartSessionsStatisticsAggregationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "StartSessionsStatisticsAggregation", {})    .n("DeadlineClient", "StartSessionsStatisticsAggregationCommand")    .sc(schemas_0.StartSessionsStatisticsAggregation$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "TagResource", {})    .n("DeadlineClient", "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("Deadline", "UntagResource", {})    .n("DeadlineClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateBudgetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateBudget", {})    .n("DeadlineClient", "UpdateBudgetCommand")    .sc(schemas_0.UpdateBudget$)    .build() {} class UpdateFarmCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateFarm", {})    .n("DeadlineClient", "UpdateFarmCommand")    .sc(schemas_0.UpdateFarm$)    .build() {} class UpdateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateFleet", {})    .n("DeadlineClient", "UpdateFleetCommand")    .sc(schemas_0.UpdateFleet$)    .build() {} class UpdateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateJob", {})    .n("DeadlineClient", "UpdateJobCommand")    .sc(schemas_0.UpdateJob$)    .build() {} class UpdateLimitCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateLimit", {})    .n("DeadlineClient", "UpdateLimitCommand")    .sc(schemas_0.UpdateLimit$)    .build() {} class UpdateMonitorCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateMonitor", {})    .n("DeadlineClient", "UpdateMonitorCommand")    .sc(schemas_0.UpdateMonitor$)    .build() {} class UpdateMonitorSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateMonitorSettings", {})    .n("DeadlineClient", "UpdateMonitorSettingsCommand")    .sc(schemas_0.UpdateMonitorSettings$)    .build() {} class UpdateQueueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateQueue", {})    .n("DeadlineClient", "UpdateQueueCommand")    .sc(schemas_0.UpdateQueue$)    .build() {} class UpdateQueueEnvironmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateQueueEnvironment", {})    .n("DeadlineClient", "UpdateQueueEnvironmentCommand")    .sc(schemas_0.UpdateQueueEnvironment$)    .build() {} class UpdateQueueFleetAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateQueueFleetAssociation", {})    .n("DeadlineClient", "UpdateQueueFleetAssociationCommand")    .sc(schemas_0.UpdateQueueFleetAssociation$)    .build() {} class UpdateQueueLimitAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateQueueLimitAssociation", {})    .n("DeadlineClient", "UpdateQueueLimitAssociationCommand")    .sc(schemas_0.UpdateQueueLimitAssociation$)    .build() {} class UpdateSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateSession", {})    .n("DeadlineClient", "UpdateSessionCommand")    .sc(schemas_0.UpdateSession$)    .build() {} class UpdateStepCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateStep", {})    .n("DeadlineClient", "UpdateStepCommand")    .sc(schemas_0.UpdateStep$)    .build() {} class UpdateStorageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateStorageProfile", {})    .n("DeadlineClient", "UpdateStorageProfileCommand")    .sc(schemas_0.UpdateStorageProfile$)    .build() {} class UpdateTaskCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateTask", {})    .n("DeadlineClient", "UpdateTaskCommand")    .sc(schemas_0.UpdateTask$)    .build() {} class UpdateWorkerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateWorker", {})    .n("DeadlineClient", "UpdateWorkerCommand")    .sc(schemas_0.UpdateWorker$)    .build() {} class UpdateWorkerScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Deadline", "UpdateWorkerSchedule", {})    .n("DeadlineClient", "UpdateWorkerScheduleCommand")    .sc(schemas_0.UpdateWorkerSchedule$)    .build() {} const paginateGetSessionsStatisticsAggregation = core.createPaginator(DeadlineClient, GetSessionsStatisticsAggregationCommand, "nextToken", "nextToken", "maxResults"); const paginateListAvailableMeteredProducts = core.createPaginator(DeadlineClient, ListAvailableMeteredProductsCommand, "nextToken", "nextToken", "maxResults"); const paginateListBudgets = core.createPaginator(DeadlineClient, ListBudgetsCommand, "nextToken", "nextToken", "maxResults"); const paginateListFarmMembers = core.createPaginator(DeadlineClient, ListFarmMembersCommand, "nextToken", "nextToken", "maxResults"); const paginateListFarms = core.createPaginator(DeadlineClient, ListFarmsCommand, "nextToken", "nextToken", "maxResults"); const paginateListFleetMembers = core.createPaginator(DeadlineClient, ListFleetMembersCommand, "nextToken", "nextToken", "maxResults"); const paginateListFleets = core.createPaginator(DeadlineClient, ListFleetsCommand, "nextToken", "nextToken", "maxResults"); const paginateListJobMembers = core.createPaginator(DeadlineClient, ListJobMembersCommand, "nextToken", "nextToken", "maxResults"); const paginateListJobParameterDefinitions = core.createPaginator(DeadlineClient, ListJobParameterDefinitionsCommand, "nextToken", "nextToken", "maxResults"); const paginateListJobs = core.createPaginator(DeadlineClient, ListJobsCommand, "nextToken", "nextToken", "maxResults"); const paginateListLicenseEndpoints = core.createPaginator(DeadlineClient, ListLicenseEndpointsCommand, "nextToken", "nextToken", "maxResults"); const paginateListLimits = core.createPaginator(DeadlineClient, ListLimitsCommand, "nextToken", "nextToken", "maxResults"); const paginateListMeteredProducts = core.createPaginator(DeadlineClient, ListMeteredProductsCommand, "nextToken", "nextToken", "maxResults"); const paginateListMonitors = core.createPaginator(DeadlineClient, ListMonitorsCommand, "nextToken", "nextToken", "maxResults"); const paginateListQueueEnvironments = core.createPaginator(DeadlineClient, ListQueueEnvironmentsCommand, "nextToken", "nextToken", "maxResults"); const paginateListQueueFleetAssociations = core.createPaginator(DeadlineClient, ListQueueFleetAssociationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListQueueLimitAssociations = core.createPaginator(DeadlineClient, ListQueueLimitAssociationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListQueueMembers = core.createPaginator(DeadlineClient, ListQueueMembersCommand, "nextToken", "nextToken", "maxResults"); const paginateListQueues = core.createPaginator(DeadlineClient, ListQueuesCommand, "nextToken", "nextToken", "maxResults"); const paginateListSessionActions = core.createPaginator(DeadlineClient, ListSessionActionsCommand, "nextToken", "nextToken", "maxResults"); const paginateListSessionsForWorker = core.createPaginator(DeadlineClient, ListSessionsForWorkerCommand, "nextToken", "nextToken", "maxResults"); const paginateListSessions = core.createPaginator(DeadlineClient, ListSessionsCommand, "nextToken", "nextToken", "maxResults"); const paginateListStepConsumers = core.createPaginator(DeadlineClient, ListStepConsumersCommand, "nextToken", "nextToken", "maxResults"); const paginateListStepDependencies = core.createPaginator(DeadlineClient, ListStepDependenciesCommand, "nextToken", "nextToken", "maxResults"); const paginateListSteps = core.createPaginator(DeadlineClient, ListStepsCommand, "nextToken", "nextToken", "maxResults"); const paginateListStorageProfilesForQueue = core.createPaginator(DeadlineClient, ListStorageProfilesForQueueCommand, "nextToken", "nextToken", "maxResults"); const paginateListStorageProfiles = core.createPaginator(DeadlineClient, ListStorageProfilesCommand, "nextToken", "nextToken", "maxResults"); const paginateListTasks = core.createPaginator(DeadlineClient, ListTasksCommand, "nextToken", "nextToken", "maxResults"); const paginateListWorkers = core.createPaginator(DeadlineClient, ListWorkersCommand, "nextToken", "nextToken", "maxResults"); const checkState$9 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetFleetCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "ACTIVE") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "CREATE_FAILED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "UPDATE_FAILED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForFleetActive = async (params, input) => {    const serviceDefaults = { minDelay: 5, maxDelay: 900 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);};const waitUntilFleetActive = async (params, input) => {    const serviceDefaults = { minDelay: 5, maxDelay: 900 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$9);    return client.checkExceptions(result);}; const checkState$8 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetJobCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "SUCCEEDED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "FAILED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "CANCELED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "SUSPENDED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "NOT_COMPATIBLE") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "ARCHIVED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForJobComplete = async (params, input) => {    const serviceDefaults = { minDelay: 15, maxDelay: 3600 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);};const waitUntilJobComplete = async (params, input) => {    const serviceDefaults = { minDelay: 15, maxDelay: 3600 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);    return client.checkExceptions(result);}; const checkState$7 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetJobCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "CREATE_COMPLETE") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "UPDATE_IN_PROGRESS") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "UPDATE_FAILED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "UPDATE_SUCCEEDED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "UPLOAD_FAILED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "CREATE_FAILED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForJobCreateComplete = async (params, input) => {    const serviceDefaults = { minDelay: 1, maxDelay: 120 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);};const waitUntilJobCreateComplete = async (params, input) => {    const serviceDefaults = { minDelay: 1, maxDelay: 120 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);    return client.checkExceptions(result);}; const checkState$6 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetJobCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "SUCCEEDED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "FAILED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "CANCELED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "SUSPENDED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.taskRunStatus;            };            if (returnComparator() === "NOT_COMPATIBLE") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.lifecycleStatus;            };            if (returnComparator() === "ARCHIVED") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForJobSucceeded = async (params, input) => {    const serviceDefaults = { minDelay: 15, maxDelay: 3600 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);};const waitUntilJobSucceeded = async (params, input) => {    const serviceDefaults = { minDelay: 15, maxDelay: 3600 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);    return client.checkExceptions(result);}; const checkState$5 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetLicenseEndpointCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "NOT_READY") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;        if (exception.name === "ResourceNotFoundException") {            return { state: client.WaiterState.SUCCESS, reason };        }    }    return { state: client.WaiterState.RETRY, reason };};const waitForLicenseEndpointDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 2340 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);};const waitUntilLicenseEndpointDeleted = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 2340 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$5);    return client.checkExceptions(result);}; const checkState$4 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetLicenseEndpointCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "READY") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "NOT_READY") {                return { state: client.WaiterState.FAILURE, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForLicenseEndpointValid = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 1140 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);};const waitUntilLicenseEndpointValid = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 1140 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$4);    return client.checkExceptions(result);}; const checkState$3 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetQueueFleetAssociationCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "STOPPED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForQueueFleetAssociationStopped = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 600 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);};const waitUntilQueueFleetAssociationStopped = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 600 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$3);    return client.checkExceptions(result);}; const checkState$2 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetQueueLimitAssociationCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "STOPPED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForQueueLimitAssociationStopped = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 600 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);};const waitUntilQueueLimitAssociationStopped = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 600 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$2);    return client.checkExceptions(result);}; const checkState$1 = async (client$1, input) => {    let reason;    try {        let result = await client$1.send(new GetQueueCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "SCHEDULING") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForQueueScheduling = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 700 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);};const waitUntilQueueScheduling = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 700 };    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 GetQueueCommand(input));        reason = result;        try {            const returnComparator = () => {                return result.status;            };            if (returnComparator() === "SCHEDULING_BLOCKED") {                return { state: client.WaiterState.SUCCESS, reason };            }        }        catch (e) { }    }    catch (exception) {        reason = exception;    }    return { state: client.WaiterState.RETRY, reason };};const waitForQueueSchedulingBlocked = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 300 };    return client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);};const waitUntilQueueSchedulingBlocked = async (params, input) => {    const serviceDefaults = { minDelay: 10, maxDelay: 300 };    const result = await client.createWaiter({ ...serviceDefaults, ...params }, input, checkState);    return client.checkExceptions(result);}; const commands = {    AssociateMemberToFarmCommand,    AssociateMemberToFleetCommand,    AssociateMemberToJobCommand,    AssociateMemberToQueueCommand,    AssumeFleetRoleForReadCommand,    AssumeFleetRoleForWorkerCommand,    AssumeQueueRoleForReadCommand,    AssumeQueueRoleForUserCommand,    AssumeQueueRoleForWorkerCommand,    BatchGetJobCommand,    BatchGetJobEntityCommand,    BatchGetSessionCommand,    BatchGetSessionActionCommand,    BatchGetStepCommand,    BatchGetTaskCommand,    BatchGetWorkerCommand,    BatchUpdateJobCommand,    BatchUpdateTaskCommand,    CopyJobTemplateCommand,    CreateBudgetCommand,    CreateFarmCommand,    CreateFleetCommand,    CreateJobCommand,    CreateLicenseEndpointCommand,    CreateLimitCommand,    CreateMonitorCommand,    CreateQueueCommand,    CreateQueueEnvironmentCommand,    CreateQueueFleetAssociationCommand,    CreateQueueLimitAssociationCommand,    CreateStorageProfileCommand,    CreateWorkerCommand,    DeleteBudgetCommand,    DeleteFarmCommand,    DeleteFleetCommand,    DeleteLicenseEndpointCommand,    DeleteLimitCommand,    DeleteMeteredProductCommand,    DeleteMonitorCommand,    DeleteQueueCommand,    DeleteQueueEnvironmentCommand,    DeleteQueueFleetAssociationCommand,    DeleteQueueLimitAssociationCommand,    DeleteStorageProfileCommand,    DeleteWorkerCommand,    DisassociateMemberFromFarmCommand,    DisassociateMemberFromFleetCommand,    DisassociateMemberFromJobCommand,    DisassociateMemberFromQueueCommand,    GetBudgetCommand,    GetFarmCommand,    GetFleetCommand,    GetJobCommand,    GetLicenseEndpointCommand,    GetLimitCommand,    GetMonitorCommand,    GetMonitorSettingsCommand,    GetQueueCommand,    GetQueueEnvironmentCommand,    GetQueueFleetAssociationCommand,    GetQueueLimitAssociationCommand,    GetSessionCommand,    GetSessionActionCommand,    GetSessionsStatisticsAggregationCommand,    GetStepCommand,    GetStorageProfileCommand,    GetStorageProfileForQueueCommand,    GetTaskCommand,    GetWorkerCommand,    ListAvailableMeteredProductsCommand,    ListBudgetsCommand,    ListFarmMembersCommand,    ListFarmsCommand,    ListFleetMembersCommand,    ListFleetsCommand,    ListJobMembersCommand,    ListJobParameterDefinitionsCommand,    ListJobsCommand,    ListLicenseEndpointsCommand,    ListLimitsCommand,    ListMeteredProductsCommand,    ListMonitorsCommand,    ListQueueEnvironmentsCommand,    ListQueueFleetAssociationsCommand,    ListQueueLimitAssociationsCommand,    ListQueueMembersCommand,    ListQueuesCommand,    ListSessionActionsCommand,    ListSessionsCommand,    ListSessionsForWorkerCommand,    ListStepConsumersCommand,    ListStepDependenciesCommand,    ListStepsCommand,    ListStorageProfilesCommand,    ListStorageProfilesForQueueCommand,    ListTagsForResourceCommand,    ListTasksCommand,    ListWorkersCommand,    PutMeteredProductCommand,    SearchJobsCommand,    SearchStepsCommand,    SearchTasksCommand,    SearchWorkersCommand,    StartSessionsStatisticsAggregationCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateBudgetCommand,    UpdateFarmCommand,    UpdateFleetCommand,    UpdateJobCommand,    UpdateLimitCommand,    UpdateMonitorCommand,    UpdateMonitorSettingsCommand,    UpdateQueueCommand,    UpdateQueueEnvironmentCommand,    UpdateQueueFleetAssociationCommand,    UpdateQueueLimitAssociationCommand,    UpdateSessionCommand,    UpdateStepCommand,    UpdateStorageProfileCommand,    UpdateTaskCommand,    UpdateWorkerCommand,    UpdateWorkerScheduleCommand,};const paginators = {    paginateGetSessionsStatisticsAggregation,    paginateListAvailableMeteredProducts,    paginateListBudgets,    paginateListFarmMembers,    paginateListFarms,    paginateListFleetMembers,    paginateListFleets,    paginateListJobMembers,    paginateListJobParameterDefinitions,    paginateListJobs,    paginateListLicenseEndpoints,    paginateListLimits,    paginateListMeteredProducts,    paginateListMonitors,    paginateListQueueEnvironments,    paginateListQueueFleetAssociations,    paginateListQueueLimitAssociations,    paginateListQueueMembers,    paginateListQueues,    paginateListSessionActions,    paginateListSessions,    paginateListSessionsForWorker,    paginateListStepConsumers,    paginateListStepDependencies,    paginateListSteps,    paginateListStorageProfiles,    paginateListStorageProfilesForQueue,    paginateListTasks,    paginateListWorkers,};const waiters = {    waitUntilFleetActive,    waitUntilJobCreateComplete,    waitUntilJobComplete,    waitUntilJobSucceeded,    waitUntilLicenseEndpointValid,    waitUntilLicenseEndpointDeleted,    waitUntilQueueSchedulingBlocked,    waitUntilQueueScheduling,    waitUntilQueueFleetAssociationStopped,    waitUntilQueueLimitAssociationStopped,};class Deadline extends DeadlineClient {}client.createAggregatedClient(commands, Deadline, { paginators, waiters }); const AcceleratorName = {    A10G: "a10g",    L4: "l4",    L40S: "l40s",    RTX_PRO_SERVER_6000: "rtx-pro-server-6000",    T4: "t4",};const AcceleratorType = {    GPU: "gpu",};const MembershipLevel = {    CONTRIBUTOR: "CONTRIBUTOR",    MANAGER: "MANAGER",    OWNER: "OWNER",    VIEWER: "VIEWER",};const DeadlinePrincipalType = {    GROUP: "GROUP",    USER: "USER",};const ServiceQuotaExceededExceptionReason = {    DEPENDENCY_LIMIT_EXCEEDED: "DEPENDENCY_LIMIT_EXCEEDED",    KMS_KEY_LIMIT_EXCEEDED: "KMS_KEY_LIMIT_EXCEEDED",    SERVICE_QUOTA_EXCEEDED_EXCEPTION: "SERVICE_QUOTA_EXCEEDED_EXCEPTION",};const ValidationExceptionReason = {    CANNOT_PARSE: "CANNOT_PARSE",    FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",    OTHER: "OTHER",    UNKNOWN_OPERATION: "UNKNOWN_OPERATION",};const ConflictExceptionReason = {    CONCURRENT_MODIFICATION: "CONCURRENT_MODIFICATION",    CONFLICT_EXCEPTION: "CONFLICT_EXCEPTION",    RESOURCE_ALREADY_EXISTS: "RESOURCE_ALREADY_EXISTS",    RESOURCE_IN_USE: "RESOURCE_IN_USE",    STATUS_CONFLICT: "STATUS_CONFLICT",};const JobAttachmentsFileSystem = {    COPIED: "COPIED",    VIRTUAL: "VIRTUAL",};const PathFormat = {    POSIX: "posix",    WINDOWS: "windows",};const AutoScalingMode = {    EVENT_BASED_AUTO_SCALING: "EVENT_BASED_AUTO_SCALING",    NO_SCALING: "NO_SCALING",};const AutoScalingStatus = {    GROWING: "GROWING",    SHRINKING: "SHRINKING",    STEADY: "STEADY",};const BatchGetJobErrorCode = {    AccessDeniedException: "AccessDeniedException",    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ThrottlingException: "ThrottlingException",    ValidationException: "ValidationException",};const JobLifecycleStatus = {    ARCHIVED: "ARCHIVED",    CREATE_COMPLETE: "CREATE_COMPLETE",    CREATE_FAILED: "CREATE_FAILED",    CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",    UPDATE_FAILED: "UPDATE_FAILED",    UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",    UPDATE_SUCCEEDED: "UPDATE_SUCCEEDED",    UPLOAD_FAILED: "UPLOAD_FAILED",    UPLOAD_IN_PROGRESS: "UPLOAD_IN_PROGRESS",};const JobTargetTaskRunStatus = {    CANCELED: "CANCELED",    FAILED: "FAILED",    PENDING: "PENDING",    READY: "READY",    SUCCEEDED: "SUCCEEDED",    SUSPENDED: "SUSPENDED",};const TaskRunStatus = {    ASSIGNED: "ASSIGNED",    CANCELED: "CANCELED",    FAILED: "FAILED",    INTERRUPTING: "INTERRUPTING",    NOT_COMPATIBLE: "NOT_COMPATIBLE",    PENDING: "PENDING",    READY: "READY",    RUNNING: "RUNNING",    SCHEDULED: "SCHEDULED",    STARTING: "STARTING",    SUCCEEDED: "SUCCEEDED",    SUSPENDED: "SUSPENDED",};const RunAs = {    QUEUE_CONFIGURED_USER: "QUEUE_CONFIGURED_USER",    WORKER_AGENT_USER: "WORKER_AGENT_USER",};const JobEntityErrorCode = {    AccessDeniedException: "AccessDeniedException",    ConflictException: "ConflictException",    InternalServerException: "InternalServerException",    MaxPayloadSizeExceeded: "MaxPayloadSizeExceeded",    ResourceNotFoundException: "ResourceNotFoundException",    ValidationException: "ValidationException",};const BatchGetSessionErrorCode = {    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ValidationException: "ValidationException",};const SessionLifecycleStatus = {    ENDED: "ENDED",    STARTED: "STARTED",    UPDATE_FAILED: "UPDATE_FAILED",    UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",    UPDATE_SUCCEEDED: "UPDATE_SUCCEEDED",};const SessionLifecycleTargetStatus = {    ENDED: "ENDED",};const BatchGetSessionActionErrorCode = {    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ValidationException: "ValidationException",};const SessionActionStatus = {    ASSIGNED: "ASSIGNED",    CANCELED: "CANCELED",    CANCELING: "CANCELING",    FAILED: "FAILED",    INTERRUPTED: "INTERRUPTED",    NEVER_ATTEMPTED: "NEVER_ATTEMPTED",    RECLAIMED: "RECLAIMED",    RECLAIMING: "RECLAIMING",    RUNNING: "RUNNING",    SCHEDULED: "SCHEDULED",    SUCCEEDED: "SUCCEEDED",};const BatchGetStepErrorCode = {    AccessDeniedException: "AccessDeniedException",    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ThrottlingException: "ThrottlingException",    ValidationException: "ValidationException",};const StepLifecycleStatus = {    CREATE_COMPLETE: "CREATE_COMPLETE",    UPDATE_FAILED: "UPDATE_FAILED",    UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",    UPDATE_SUCCEEDED: "UPDATE_SUCCEEDED",};const RangeConstraint = {    CONTIGUOUS: "CONTIGUOUS",    NONCONTIGUOUS: "NONCONTIGUOUS",};const StepParameterType = {    CHUNK_INT: "CHUNK_INT",    FLOAT: "FLOAT",    INT: "INT",    PATH: "PATH",    STRING: "STRING",};const StepTargetTaskRunStatus = {    CANCELED: "CANCELED",    FAILED: "FAILED",    PENDING: "PENDING",    READY: "READY",    SUCCEEDED: "SUCCEEDED",    SUSPENDED: "SUSPENDED",};const BatchGetTaskErrorCode = {    AccessDeniedException: "AccessDeniedException",    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ThrottlingException: "ThrottlingException",    ValidationException: "ValidationException",};const TaskTargetRunStatus = {    CANCELED: "CANCELED",    FAILED: "FAILED",    PENDING: "PENDING",    READY: "READY",    SUCCEEDED: "SUCCEEDED",    SUSPENDED: "SUSPENDED",};const BatchGetWorkerErrorCode = {    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ValidationException: "ValidationException",};const WorkerStatus = {    CREATED: "CREATED",    IDLE: "IDLE",    NOT_COMPATIBLE: "NOT_COMPATIBLE",    NOT_RESPONDING: "NOT_RESPONDING",    RUNNING: "RUNNING",    STARTED: "STARTED",    STOPPED: "STOPPED",    STOPPING: "STOPPING",};const UpdateJobLifecycleStatus = {    ARCHIVED: "ARCHIVED",};const BatchUpdateJobErrorCode = {    AccessDeniedException: "AccessDeniedException",    ConflictException: "ConflictException",    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ThrottlingException: "ThrottlingException",    ValidationException: "ValidationException",};const BatchUpdateTaskErrorCode = {    AccessDeniedException: "AccessDeniedException",    ConflictException: "ConflictException",    InternalServerErrorException: "InternalServerErrorException",    ResourceNotFoundException: "ResourceNotFoundException",    ThrottlingException: "ThrottlingException",    ValidationException: "ValidationException",};const BudgetActionType = {    STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS",    STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS",};const BudgetStatus = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",};const ComparisonOperator = {    ALL_NOT_EQUALS: "ALL_NOT_EQUALS",    ANY_EQUALS: "ANY_EQUALS",    EQUAL: "EQUAL",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_EQUAL_TO: "GREATER_THAN_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_EQUAL_TO: "LESS_THAN_EQUAL_TO",    NOT_EQUAL: "NOT_EQUAL",};const CompletedStatus = {    CANCELED: "CANCELED",    FAILED: "FAILED",    INTERRUPTED: "INTERRUPTED",    NEVER_ATTEMPTED: "NEVER_ATTEMPTED",    SUCCEEDED: "SUCCEEDED",};const JobTemplateType = {    JSON: "JSON",    YAML: "YAML",};const CpuArchitectureType = {    ARM64: "arm64",    X86_64: "x86_64",};const TagPropagationMode = {    NO_PROPAGATION: "NO_PROPAGATION",    PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH: "PROPAGATE_TAGS_TO_WORKERS_AT_LAUNCH",};const CustomerManagedFleetOperatingSystemFamily = {    LINUX: "LINUX",    MACOS: "MACOS",    WINDOWS: "WINDOWS",};const ServiceManagedFleetOperatingSystemFamily = {    LINUX: "LINUX",    WINDOWS: "WINDOWS",};const Ec2MarketType = {    ON_DEMAND: "on-demand",    SPOT: "spot",    WAIT_AND_SAVE: "wait-and-save",};const CreateJobTargetTaskRunStatus = {    READY: "READY",    SUSPENDED: "SUSPENDED",};const DefaultQueueBudgetAction = {    NONE: "NONE",    STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS",    STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS",};const EnvironmentTemplateType = {    JSON: "JSON",    YAML: "YAML",};const FileSystemLocationType = {    LOCAL: "LOCAL",    SHARED: "SHARED",};const StorageProfileOperatingSystemFamily = {    LINUX: "LINUX",    MACOS: "MACOS",    WINDOWS: "WINDOWS",};const FleetStatus = {    ACTIVE: "ACTIVE",    CREATE_FAILED: "CREATE_FAILED",    CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",    SUSPENDED: "SUSPENDED",    UPDATE_FAILED: "UPDATE_FAILED",    UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",};const UpdatedWorkerStatus = {    STARTED: "STARTED",    STOPPED: "STOPPED",    STOPPING: "STOPPING",};const DesiredWorkerStatus = {    STOPPED: "STOPPED",};const QueueBlockedReason = {    BUDGET_THRESHOLD_REACHED: "BUDGET_THRESHOLD_REACHED",    NO_BUDGET_CONFIGURED: "NO_BUDGET_CONFIGURED",};const QueueStatus = {    IDLE: "IDLE",    SCHEDULING: "SCHEDULING",    SCHEDULING_BLOCKED: "SCHEDULING_BLOCKED",};const DependencyConsumerResolutionStatus = {    RESOLVED: "RESOLVED",    UNRESOLVED: "UNRESOLVED",};const QueueFleetAssociationStatus = {    ACTIVE: "ACTIVE",    STOPPED: "STOPPED",    STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS",    STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS",};const QueueLimitAssociationStatus = {    ACTIVE: "ACTIVE",    STOPPED: "STOPPED",    STOP_LIMIT_USAGE_AND_CANCEL_TASKS: "STOP_LIMIT_USAGE_AND_CANCEL_TASKS",    STOP_LIMIT_USAGE_AND_COMPLETE_TASKS: "STOP_LIMIT_USAGE_AND_COMPLETE_TASKS",};const UsageType = {    COMPUTE: "COMPUTE",    LICENSE: "LICENSE",};const SessionsStatisticsAggregationStatus = {    COMPLETED: "COMPLETED",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    TIMEOUT: "TIMEOUT",};const LicenseEndpointStatus = {    CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",    DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",    NOT_READY: "NOT_READY",    READY: "READY",};const SearchTermMatchingType = {    CONTAINS: "CONTAINS",    FUZZY_MATCH: "FUZZY_MATCH",};const LogicalOperator = {    AND: "AND",    OR: "OR",};const SortOrder = {    ASCENDING: "ASCENDING",    DESCENDING: "DESCENDING",};const UsageGroupByField = {    FLEET_ID: "FLEET_ID",    INSTANCE_TYPE: "INSTANCE_TYPE",    JOB_ID: "JOB_ID",    LICENSE_PRODUCT: "LICENSE_PRODUCT",    QUEUE_ID: "QUEUE_ID",    USAGE_TYPE: "USAGE_TYPE",    USER_ID: "USER_ID",};const Period = {    DAILY: "DAILY",    HOURLY: "HOURLY",    MONTHLY: "MONTHLY",    WEEKLY: "WEEKLY",};const UsageStatistic = {    AVG: "AVG",    MAX: "MAX",    MIN: "MIN",    SUM: "SUM",};const UpdateQueueFleetAssociationStatus = {    ACTIVE: "ACTIVE",    STOP_SCHEDULING_AND_CANCEL_TASKS: "STOP_SCHEDULING_AND_CANCEL_TASKS",    STOP_SCHEDULING_AND_COMPLETE_TASKS: "STOP_SCHEDULING_AND_COMPLETE_TASKS",};const UpdateQueueLimitAssociationStatus = {    ACTIVE: "ACTIVE",    STOP_LIMIT_USAGE_AND_CANCEL_TASKS: "STOP_LIMIT_USAGE_AND_CANCEL_TASKS",    STOP_LIMIT_USAGE_AND_COMPLETE_TASKS: "STOP_LIMIT_USAGE_AND_COMPLETE_TASKS",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.DeadlineServiceException = DeadlineServiceException.DeadlineServiceException;exports.AcceleratorName = AcceleratorName;exports.AcceleratorType = AcceleratorType;exports.AssociateMemberToFarmCommand = AssociateMemberToFarmCommand;exports.AssociateMemberToFleetCommand = AssociateMemberToFleetCommand;exports.AssociateMemberToJobCommand = AssociateMemberToJobCommand;exports.AssociateMemberToQueueCommand = AssociateMemberToQueueCommand;exports.AssumeFleetRoleForReadCommand = AssumeFleetRoleForReadCommand;exports.AssumeFleetRoleForWorkerCommand = AssumeFleetRoleForWorkerCommand;exports.AssumeQueueRoleForReadCommand = AssumeQueueRoleForReadCommand;exports.AssumeQueueRoleForUserCommand = AssumeQueueRoleForUserCommand;exports.AssumeQueueRoleForWorkerCommand = AssumeQueueRoleForWorkerCommand;exports.AutoScalingMode = AutoScalingMode;exports.AutoScalingStatus = AutoScalingStatus;exports.BatchGetJobCommand = BatchGetJobCommand;exports.BatchGetJobEntityCommand = BatchGetJobEntityCommand;exports.BatchGetJobErrorCode = BatchGetJobErrorCode;exports.BatchGetSessionActionCommand = BatchGetSessionActionCommand;exports.BatchGetSessionActionErrorCode = BatchGetSessionActionErrorCode;exports.BatchGetSessionCommand = BatchGetSessionCommand;exports.BatchGetSessionErrorCode = BatchGetSessionErrorCode;exports.BatchGetStepCommand = BatchGetStepCommand;exports.BatchGetStepErrorCode = BatchGetStepErrorCode;exports.BatchGetTaskCommand = BatchGetTaskCommand;exports.BatchGetTaskErrorCode = BatchGetTaskErrorCode;exports.BatchGetWorkerCommand = BatchGetWorkerCommand;exports.BatchGetWorkerErrorCode = BatchGetWorkerErrorCode;exports.BatchUpdateJobCommand = BatchUpdateJobCommand;exports.BatchUpdateJobErrorCode = BatchUpdateJobErrorCode;exports.BatchUpdateTaskCommand = BatchUpdateTaskCommand;exports.BatchUpdateTaskErrorCode = BatchUpdateTaskErrorCode;exports.BudgetActionType = BudgetActionType;exports.BudgetStatus = BudgetStatus;exports.ComparisonOperator = ComparisonOperator;exports.CompletedStatus = CompletedStatus;exports.ConflictExceptionReason = ConflictExceptionReason;exports.CopyJobTemplateCommand = CopyJobTemplateCommand;exports.CpuArchitectureType = CpuArchitectureType;exports.CreateBudgetCommand = CreateBudgetCommand;exports.CreateFarmCommand = CreateFarmCommand;exports.CreateFleetCommand = CreateFleetCommand;exports.CreateJobCommand = CreateJobCommand;exports.CreateJobTargetTaskRunStatus = CreateJobTargetTaskRunStatus;exports.CreateLicenseEndpointCommand = CreateLicenseEndpointCommand;exports.CreateLimitCommand = CreateLimitCommand;exports.CreateMonitorCommand = CreateMonitorCommand;exports.CreateQueueCommand = CreateQueueCommand;exports.CreateQueueEnvironmentCommand = CreateQueueEnvironmentCommand;exports.CreateQueueFleetAssociationCommand = CreateQueueFleetAssociationCommand;exports.CreateQueueLimitAssociationCommand = CreateQueueLimitAssociationCommand;exports.CreateStorageProfileCommand = CreateStorageProfileCommand;exports.CreateWorkerCommand = CreateWorkerCommand;exports.CustomerManagedFleetOperatingSystemFamily = CustomerManagedFleetOperatingSystemFamily;exports.Deadline = Deadline;exports.DeadlineClient = DeadlineClient;exports.DeadlinePrincipalType = DeadlinePrincipalType;exports.DefaultQueueBudgetAction = DefaultQueueBudgetAction;exports.DeleteBudgetCommand = DeleteBudgetCommand;exports.DeleteFarmCommand = DeleteFarmCommand;exports.DeleteFleetCommand = DeleteFleetCommand;exports.DeleteLicenseEndpointCommand = DeleteLicenseEndpointCommand;exports.DeleteLimitCommand = DeleteLimitCommand;exports.DeleteMeteredProductCommand = DeleteMeteredProductCommand;exports.DeleteMonitorCommand = DeleteMonitorCommand;exports.DeleteQueueCommand = DeleteQueueCommand;exports.DeleteQueueEnvironmentCommand = DeleteQueueEnvironmentCommand;exports.DeleteQueueFleetAssociationCommand = DeleteQueueFleetAssociationCommand;exports.DeleteQueueLimitAssociationCommand = DeleteQueueLimitAssociationCommand;exports.DeleteStorageProfileCommand = DeleteStorageProfileCommand;exports.DeleteWorkerCommand = DeleteWorkerCommand;exports.DependencyConsumerResolutionStatus = DependencyConsumerResolutionStatus;exports.DesiredWorkerStatus = DesiredWorkerStatus;exports.DisassociateMemberFromFarmCommand = DisassociateMemberFromFarmCommand;exports.DisassociateMemberFromFleetCommand = DisassociateMemberFromFleetCommand;exports.DisassociateMemberFromJobCommand = DisassociateMemberFromJobCommand;exports.DisassociateMemberFromQueueCommand = DisassociateMemberFromQueueCommand;exports.Ec2MarketType = Ec2MarketType;exports.EnvironmentTemplateType = EnvironmentTemplateType;exports.FileSystemLocationType = FileSystemLocationType;exports.FleetStatus = FleetStatus;exports.GetBudgetCommand = GetBudgetCommand;exports.GetFarmCommand = GetFarmCommand;exports.GetFleetCommand = GetFleetCommand;exports.GetJobCommand = GetJobCommand;exports.GetLicenseEndpointCommand = GetLicenseEndpointCommand;exports.GetLimitCommand = GetLimitCommand;exports.GetMonitorCommand = GetMonitorCommand;exports.GetMonitorSettingsCommand = GetMonitorSettingsCommand;exports.GetQueueCommand = GetQueueCommand;exports.GetQueueEnvironmentCommand = GetQueueEnvironmentCommand;exports.GetQueueFleetAssociationCommand = GetQueueFleetAssociationCommand;exports.GetQueueLimitAssociationCommand = GetQueueLimitAssociationCommand;exports.GetSessionActionCommand = GetSessionActionCommand;exports.GetSessionCommand = GetSessionCommand;exports.GetSessionsStatisticsAggregationCommand = GetSessionsStatisticsAggregationCommand;exports.GetStepCommand = GetStepCommand;exports.GetStorageProfileCommand = GetStorageProfileCommand;exports.GetStorageProfileForQueueCommand = GetStorageProfileForQueueCommand;exports.GetTaskCommand = GetTaskCommand;exports.GetWorkerCommand = GetWorkerCommand;exports.JobAttachmentsFileSystem = JobAttachmentsFileSystem;exports.JobEntityErrorCode = JobEntityErrorCode;exports.JobLifecycleStatus = JobLifecycleStatus;exports.JobTargetTaskRunStatus = JobTargetTaskRunStatus;exports.JobTemplateType = JobTemplateType;exports.LicenseEndpointStatus = LicenseEndpointStatus;exports.ListAvailableMeteredProductsCommand = ListAvailableMeteredProductsCommand;exports.ListBudgetsCommand = ListBudgetsCommand;exports.ListFarmMembersCommand = ListFarmMembersCommand;exports.ListFarmsCommand = ListFarmsCommand;exports.ListFleetMembersCommand = ListFleetMembersCommand;exports.ListFleetsCommand = ListFleetsCommand;exports.ListJobMembersCommand = ListJobMembersCommand;exports.ListJobParameterDefinitionsCommand = ListJobParameterDefinitionsCommand;exports.ListJobsCommand = ListJobsCommand;exports.ListLicenseEndpointsCommand = ListLicenseEndpointsCommand;exports.ListLimitsCommand = ListLimitsCommand;exports.ListMeteredProductsCommand = ListMeteredProductsCommand;exports.ListMonitorsCommand = ListMonitorsCommand;exports.ListQueueEnvironmentsCommand = ListQueueEnvironmentsCommand;exports.ListQueueFleetAssociationsCommand = ListQueueFleetAssociationsCommand;exports.ListQueueLimitAssociationsCommand = ListQueueLimitAssociationsCommand;exports.ListQueueMembersCommand = ListQueueMembersCommand;exports.ListQueuesCommand = ListQueuesCommand;exports.ListSessionActionsCommand = ListSessionActionsCommand;exports.ListSessionsCommand = ListSessionsCommand;exports.ListSessionsForWorkerCommand = ListSessionsForWorkerCommand;exports.ListStepConsumersCommand = ListStepConsumersCommand;exports.ListStepDependenciesCommand = ListStepDependenciesCommand;exports.ListStepsCommand = ListStepsCommand;exports.ListStorageProfilesCommand = ListStorageProfilesCommand;exports.ListStorageProfilesForQueueCommand = ListStorageProfilesForQueueCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.ListTasksCommand = ListTasksCommand;exports.ListWorkersCommand = ListWorkersCommand;exports.LogicalOperator = LogicalOperator;exports.MembershipLevel = MembershipLevel;exports.PathFormat = PathFormat;exports.Period = Period;exports.PutMeteredProductCommand = PutMeteredProductCommand;exports.QueueBlockedReason = QueueBlockedReason;exports.QueueFleetAssociationStatus = QueueFleetAssociationStatus;exports.QueueLimitAssociationStatus = QueueLimitAssociationStatus;exports.QueueStatus = QueueStatus;exports.RangeConstraint = RangeConstraint;exports.RunAs = RunAs;exports.SearchJobsCommand = SearchJobsCommand;exports.SearchStepsCommand = SearchStepsCommand;exports.SearchTasksCommand = SearchTasksCommand;exports.SearchTermMatchingType = SearchTermMatchingType;exports.SearchWorkersCommand = SearchWorkersCommand;exports.ServiceManagedFleetOperatingSystemFamily = ServiceManagedFleetOperatingSystemFamily;exports.ServiceQuotaExceededExceptionReason = ServiceQuotaExceededExceptionReason;exports.SessionActionStatus = SessionActionStatus;exports.SessionLifecycleStatus = SessionLifecycleStatus;exports.SessionLifecycleTargetStatus = SessionLifecycleTargetStatus;exports.SessionsStatisticsAggregationStatus = SessionsStatisticsAggregationStatus;exports.SortOrder = SortOrder;exports.StartSessionsStatisticsAggregationCommand = StartSessionsStatisticsAggregationCommand;exports.StepLifecycleStatus = StepLifecycleStatus;exports.StepParameterType = StepParameterType;exports.StepTargetTaskRunStatus = StepTargetTaskRunStatus;exports.StorageProfileOperatingSystemFamily = StorageProfileOperatingSystemFamily;exports.TagPropagationMode = TagPropagationMode;exports.TagResourceCommand = TagResourceCommand;exports.TaskRunStatus = TaskRunStatus;exports.TaskTargetRunStatus = TaskTargetRunStatus;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateBudgetCommand = UpdateBudgetCommand;exports.UpdateFarmCommand = UpdateFarmCommand;exports.UpdateFleetCommand = UpdateFleetCommand;exports.UpdateJobCommand = UpdateJobCommand;exports.UpdateJobLifecycleStatus = UpdateJobLifecycleStatus;exports.UpdateLimitCommand = UpdateLimitCommand;exports.UpdateMonitorCommand = UpdateMonitorCommand;exports.UpdateMonitorSettingsCommand = UpdateMonitorSettingsCommand;exports.UpdateQueueCommand = UpdateQueueCommand;exports.UpdateQueueEnvironmentCommand = UpdateQueueEnvironmentCommand;exports.UpdateQueueFleetAssociationCommand = UpdateQueueFleetAssociationCommand;exports.UpdateQueueFleetAssociationStatus = UpdateQueueFleetAssociationStatus;exports.UpdateQueueLimitAssociationCommand = UpdateQueueLimitAssociationCommand;exports.UpdateQueueLimitAssociationStatus = UpdateQueueLimitAssociationStatus;exports.UpdateSessionCommand = UpdateSessionCommand;exports.UpdateStepCommand = UpdateStepCommand;exports.UpdateStorageProfileCommand = UpdateStorageProfileCommand;exports.UpdateTaskCommand = UpdateTaskCommand;exports.UpdateWorkerCommand = UpdateWorkerCommand;exports.UpdateWorkerScheduleCommand = UpdateWorkerScheduleCommand;exports.UpdatedWorkerStatus = UpdatedWorkerStatus;exports.UsageGroupByField = UsageGroupByField;exports.UsageStatistic = UsageStatistic;exports.UsageType = UsageType;exports.ValidationExceptionReason = ValidationExceptionReason;exports.WorkerStatus = WorkerStatus;exports.paginateGetSessionsStatisticsAggregation = paginateGetSessionsStatisticsAggregation;exports.paginateListAvailableMeteredProducts = paginateListAvailableMeteredProducts;exports.paginateListBudgets = paginateListBudgets;exports.paginateListFarmMembers = paginateListFarmMembers;exports.paginateListFarms = paginateListFarms;exports.paginateListFleetMembers = paginateListFleetMembers;exports.paginateListFleets = paginateListFleets;exports.paginateListJobMembers = paginateListJobMembers;exports.paginateListJobParameterDefinitions = paginateListJobParameterDefinitions;exports.paginateListJobs = paginateListJobs;exports.paginateListLicenseEndpoints = paginateListLicenseEndpoints;exports.paginateListLimits = paginateListLimits;exports.paginateListMeteredProducts = paginateListMeteredProducts;exports.paginateListMonitors = paginateListMonitors;exports.paginateListQueueEnvironments = paginateListQueueEnvironments;exports.paginateListQueueFleetAssociations = paginateListQueueFleetAssociations;exports.paginateListQueueLimitAssociations = paginateListQueueLimitAssociations;exports.paginateListQueueMembers = paginateListQueueMembers;exports.paginateListQueues = paginateListQueues;exports.paginateListSessionActions = paginateListSessionActions;exports.paginateListSessions = paginateListSessions;exports.paginateListSessionsForWorker = paginateListSessionsForWorker;exports.paginateListStepConsumers = paginateListStepConsumers;exports.paginateListStepDependencies = paginateListStepDependencies;exports.paginateListSteps = paginateListSteps;exports.paginateListStorageProfiles = paginateListStorageProfiles;exports.paginateListStorageProfilesForQueue = paginateListStorageProfilesForQueue;exports.paginateListTasks = paginateListTasks;exports.paginateListWorkers = paginateListWorkers;exports.waitForFleetActive = waitForFleetActive;exports.waitForJobComplete = waitForJobComplete;exports.waitForJobCreateComplete = waitForJobCreateComplete;exports.waitForJobSucceeded = waitForJobSucceeded;exports.waitForLicenseEndpointDeleted = waitForLicenseEndpointDeleted;exports.waitForLicenseEndpointValid = waitForLicenseEndpointValid;exports.waitForQueueFleetAssociationStopped = waitForQueueFleetAssociationStopped;exports.waitForQueueLimitAssociationStopped = waitForQueueLimitAssociationStopped;exports.waitForQueueScheduling = waitForQueueScheduling;exports.waitForQueueSchedulingBlocked = waitForQueueSchedulingBlocked;exports.waitUntilFleetActive = waitUntilFleetActive;exports.waitUntilJobComplete = waitUntilJobComplete;exports.waitUntilJobCreateComplete = waitUntilJobCreateComplete;exports.waitUntilJobSucceeded = waitUntilJobSucceeded;exports.waitUntilLicenseEndpointDeleted = waitUntilLicenseEndpointDeleted;exports.waitUntilLicenseEndpointValid = waitUntilLicenseEndpointValid;exports.waitUntilQueueFleetAssociationStopped = waitUntilQueueFleetAssociationStopped;exports.waitUntilQueueLimitAssociationStopped = waitUntilQueueLimitAssociationStopped;exports.waitUntilQueueScheduling = waitUntilQueueScheduling;exports.waitUntilQueueSchedulingBlocked = waitUntilQueueSchedulingBlocked;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];});