File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-servicediscovery/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.js25.0 KB · 686 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 ServiceDiscoveryServiceException = require('./models/ServiceDiscoveryServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "servicediscovery",    });};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 ServiceDiscoveryClient 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.defaultServiceDiscoveryHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateHttpNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "CreateHttpNamespace", {})    .n("ServiceDiscoveryClient", "CreateHttpNamespaceCommand")    .sc(schemas_0.CreateHttpNamespace$)    .build() {} class CreatePrivateDnsNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "CreatePrivateDnsNamespace", {})    .n("ServiceDiscoveryClient", "CreatePrivateDnsNamespaceCommand")    .sc(schemas_0.CreatePrivateDnsNamespace$)    .build() {} class CreatePublicDnsNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "CreatePublicDnsNamespace", {})    .n("ServiceDiscoveryClient", "CreatePublicDnsNamespaceCommand")    .sc(schemas_0.CreatePublicDnsNamespace$)    .build() {} class CreateServiceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "CreateService", {})    .n("ServiceDiscoveryClient", "CreateServiceCommand")    .sc(schemas_0.CreateService$)    .build() {} class DeleteNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "DeleteNamespace", {})    .n("ServiceDiscoveryClient", "DeleteNamespaceCommand")    .sc(schemas_0.DeleteNamespace$)    .build() {} class DeleteServiceAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "DeleteServiceAttributes", {})    .n("ServiceDiscoveryClient", "DeleteServiceAttributesCommand")    .sc(schemas_0.DeleteServiceAttributes$)    .build() {} class DeleteServiceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "DeleteService", {})    .n("ServiceDiscoveryClient", "DeleteServiceCommand")    .sc(schemas_0.DeleteService$)    .build() {} class DeregisterInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "DeregisterInstance", {})    .n("ServiceDiscoveryClient", "DeregisterInstanceCommand")    .sc(schemas_0.DeregisterInstance$)    .build() {} class DiscoverInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "DiscoverInstances", {})    .n("ServiceDiscoveryClient", "DiscoverInstancesCommand")    .sc(schemas_0.DiscoverInstances$)    .build() {} class DiscoverInstancesRevisionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "DiscoverInstancesRevision", {})    .n("ServiceDiscoveryClient", "DiscoverInstancesRevisionCommand")    .sc(schemas_0.DiscoverInstancesRevision$)    .build() {} class GetInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "GetInstance", {})    .n("ServiceDiscoveryClient", "GetInstanceCommand")    .sc(schemas_0.GetInstance$)    .build() {} class GetInstancesHealthStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "GetInstancesHealthStatus", {})    .n("ServiceDiscoveryClient", "GetInstancesHealthStatusCommand")    .sc(schemas_0.GetInstancesHealthStatus$)    .build() {} class GetNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "GetNamespace", {})    .n("ServiceDiscoveryClient", "GetNamespaceCommand")    .sc(schemas_0.GetNamespace$)    .build() {} class GetOperationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "GetOperation", {})    .n("ServiceDiscoveryClient", "GetOperationCommand")    .sc(schemas_0.GetOperation$)    .build() {} class GetServiceAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "GetServiceAttributes", {})    .n("ServiceDiscoveryClient", "GetServiceAttributesCommand")    .sc(schemas_0.GetServiceAttributes$)    .build() {} class GetServiceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "GetService", {})    .n("ServiceDiscoveryClient", "GetServiceCommand")    .sc(schemas_0.GetService$)    .build() {} class ListInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "ListInstances", {})    .n("ServiceDiscoveryClient", "ListInstancesCommand")    .sc(schemas_0.ListInstances$)    .build() {} class ListNamespacesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "ListNamespaces", {})    .n("ServiceDiscoveryClient", "ListNamespacesCommand")    .sc(schemas_0.ListNamespaces$)    .build() {} class ListOperationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "ListOperations", {})    .n("ServiceDiscoveryClient", "ListOperationsCommand")    .sc(schemas_0.ListOperations$)    .build() {} class ListServicesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "ListServices", {})    .n("ServiceDiscoveryClient", "ListServicesCommand")    .sc(schemas_0.ListServices$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "ListTagsForResource", {})    .n("ServiceDiscoveryClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class RegisterInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "RegisterInstance", {})    .n("ServiceDiscoveryClient", "RegisterInstanceCommand")    .sc(schemas_0.RegisterInstance$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "TagResource", {})    .n("ServiceDiscoveryClient", "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("Route53AutoNaming_v20170314", "UntagResource", {})    .n("ServiceDiscoveryClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateHttpNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "UpdateHttpNamespace", {})    .n("ServiceDiscoveryClient", "UpdateHttpNamespaceCommand")    .sc(schemas_0.UpdateHttpNamespace$)    .build() {} class UpdateInstanceCustomHealthStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "UpdateInstanceCustomHealthStatus", {})    .n("ServiceDiscoveryClient", "UpdateInstanceCustomHealthStatusCommand")    .sc(schemas_0.UpdateInstanceCustomHealthStatus$)    .build() {} class UpdatePrivateDnsNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "UpdatePrivateDnsNamespace", {})    .n("ServiceDiscoveryClient", "UpdatePrivateDnsNamespaceCommand")    .sc(schemas_0.UpdatePrivateDnsNamespace$)    .build() {} class UpdatePublicDnsNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "UpdatePublicDnsNamespace", {})    .n("ServiceDiscoveryClient", "UpdatePublicDnsNamespaceCommand")    .sc(schemas_0.UpdatePublicDnsNamespace$)    .build() {} class UpdateServiceAttributesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "UpdateServiceAttributes", {})    .n("ServiceDiscoveryClient", "UpdateServiceAttributesCommand")    .sc(schemas_0.UpdateServiceAttributes$)    .build() {} class UpdateServiceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("Route53AutoNaming_v20170314", "UpdateService", {})    .n("ServiceDiscoveryClient", "UpdateServiceCommand")    .sc(schemas_0.UpdateService$)    .build() {} const paginateGetInstancesHealthStatus = core.createPaginator(ServiceDiscoveryClient, GetInstancesHealthStatusCommand, "NextToken", "NextToken", "MaxResults"); const paginateListInstances = core.createPaginator(ServiceDiscoveryClient, ListInstancesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListNamespaces = core.createPaginator(ServiceDiscoveryClient, ListNamespacesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListOperations = core.createPaginator(ServiceDiscoveryClient, ListOperationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListServices = core.createPaginator(ServiceDiscoveryClient, ListServicesCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    CreateHttpNamespaceCommand,    CreatePrivateDnsNamespaceCommand,    CreatePublicDnsNamespaceCommand,    CreateServiceCommand,    DeleteNamespaceCommand,    DeleteServiceCommand,    DeleteServiceAttributesCommand,    DeregisterInstanceCommand,    DiscoverInstancesCommand,    DiscoverInstancesRevisionCommand,    GetInstanceCommand,    GetInstancesHealthStatusCommand,    GetNamespaceCommand,    GetOperationCommand,    GetServiceCommand,    GetServiceAttributesCommand,    ListInstancesCommand,    ListNamespacesCommand,    ListOperationsCommand,    ListServicesCommand,    ListTagsForResourceCommand,    RegisterInstanceCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateHttpNamespaceCommand,    UpdateInstanceCustomHealthStatusCommand,    UpdatePrivateDnsNamespaceCommand,    UpdatePublicDnsNamespaceCommand,    UpdateServiceCommand,    UpdateServiceAttributesCommand,};const paginators = {    paginateGetInstancesHealthStatus,    paginateListInstances,    paginateListNamespaces,    paginateListOperations,    paginateListServices,};class ServiceDiscovery extends ServiceDiscoveryClient {}client.createAggregatedClient(commands, ServiceDiscovery, { paginators }); const RecordType = {    A: "A",    AAAA: "AAAA",    CNAME: "CNAME",    SRV: "SRV",};const RoutingPolicy = {    MULTIVALUE: "MULTIVALUE",    WEIGHTED: "WEIGHTED",};const HealthCheckType = {    HTTP: "HTTP",    HTTPS: "HTTPS",    TCP: "TCP",};const ServiceTypeOption = {    HTTP: "HTTP",};const ServiceType = {    DNS: "DNS",    DNS_HTTP: "DNS_HTTP",    HTTP: "HTTP",};const CustomHealthStatus = {    HEALTHY: "HEALTHY",    UNHEALTHY: "UNHEALTHY",};const HealthStatusFilter = {    ALL: "ALL",    HEALTHY: "HEALTHY",    HEALTHY_OR_ELSE_ALL: "HEALTHY_OR_ELSE_ALL",    UNHEALTHY: "UNHEALTHY",};const HealthStatus = {    HEALTHY: "HEALTHY",    UNHEALTHY: "UNHEALTHY",    UNKNOWN: "UNKNOWN",};const FilterCondition = {    BEGINS_WITH: "BEGINS_WITH",    BETWEEN: "BETWEEN",    EQ: "EQ",    IN: "IN",};const NamespaceType = {    DNS_PRIVATE: "DNS_PRIVATE",    DNS_PUBLIC: "DNS_PUBLIC",    HTTP: "HTTP",};const OperationStatus = {    FAIL: "FAIL",    PENDING: "PENDING",    SUBMITTED: "SUBMITTED",    SUCCESS: "SUCCESS",};const OperationTargetType = {    INSTANCE: "INSTANCE",    NAMESPACE: "NAMESPACE",    SERVICE: "SERVICE",};const OperationType = {    CREATE_NAMESPACE: "CREATE_NAMESPACE",    DELETE_NAMESPACE: "DELETE_NAMESPACE",    DEREGISTER_INSTANCE: "DEREGISTER_INSTANCE",    REGISTER_INSTANCE: "REGISTER_INSTANCE",    UPDATE_NAMESPACE: "UPDATE_NAMESPACE",    UPDATE_SERVICE: "UPDATE_SERVICE",};const NamespaceFilterName = {    HTTP_NAME: "HTTP_NAME",    NAME: "NAME",    RESOURCE_OWNER: "RESOURCE_OWNER",    TYPE: "TYPE",};const OperationFilterName = {    NAMESPACE_ID: "NAMESPACE_ID",    SERVICE_ID: "SERVICE_ID",    STATUS: "STATUS",    TYPE: "TYPE",    UPDATE_DATE: "UPDATE_DATE",};const ServiceFilterName = {    NAMESPACE_ID: "NAMESPACE_ID",    RESOURCE_OWNER: "RESOURCE_OWNER",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.ServiceDiscoveryServiceException = ServiceDiscoveryServiceException.ServiceDiscoveryServiceException;exports.CreateHttpNamespaceCommand = CreateHttpNamespaceCommand;exports.CreatePrivateDnsNamespaceCommand = CreatePrivateDnsNamespaceCommand;exports.CreatePublicDnsNamespaceCommand = CreatePublicDnsNamespaceCommand;exports.CreateServiceCommand = CreateServiceCommand;exports.CustomHealthStatus = CustomHealthStatus;exports.DeleteNamespaceCommand = DeleteNamespaceCommand;exports.DeleteServiceAttributesCommand = DeleteServiceAttributesCommand;exports.DeleteServiceCommand = DeleteServiceCommand;exports.DeregisterInstanceCommand = DeregisterInstanceCommand;exports.DiscoverInstancesCommand = DiscoverInstancesCommand;exports.DiscoverInstancesRevisionCommand = DiscoverInstancesRevisionCommand;exports.FilterCondition = FilterCondition;exports.GetInstanceCommand = GetInstanceCommand;exports.GetInstancesHealthStatusCommand = GetInstancesHealthStatusCommand;exports.GetNamespaceCommand = GetNamespaceCommand;exports.GetOperationCommand = GetOperationCommand;exports.GetServiceAttributesCommand = GetServiceAttributesCommand;exports.GetServiceCommand = GetServiceCommand;exports.HealthCheckType = HealthCheckType;exports.HealthStatus = HealthStatus;exports.HealthStatusFilter = HealthStatusFilter;exports.ListInstancesCommand = ListInstancesCommand;exports.ListNamespacesCommand = ListNamespacesCommand;exports.ListOperationsCommand = ListOperationsCommand;exports.ListServicesCommand = ListServicesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.NamespaceFilterName = NamespaceFilterName;exports.NamespaceType = NamespaceType;exports.OperationFilterName = OperationFilterName;exports.OperationStatus = OperationStatus;exports.OperationTargetType = OperationTargetType;exports.OperationType = OperationType;exports.RecordType = RecordType;exports.RegisterInstanceCommand = RegisterInstanceCommand;exports.RoutingPolicy = RoutingPolicy;exports.ServiceDiscovery = ServiceDiscovery;exports.ServiceDiscoveryClient = ServiceDiscoveryClient;exports.ServiceFilterName = ServiceFilterName;exports.ServiceType = ServiceType;exports.ServiceTypeOption = ServiceTypeOption;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateHttpNamespaceCommand = UpdateHttpNamespaceCommand;exports.UpdateInstanceCustomHealthStatusCommand = UpdateInstanceCustomHealthStatusCommand;exports.UpdatePrivateDnsNamespaceCommand = UpdatePrivateDnsNamespaceCommand;exports.UpdatePublicDnsNamespaceCommand = UpdatePublicDnsNamespaceCommand;exports.UpdateServiceAttributesCommand = UpdateServiceAttributesCommand;exports.UpdateServiceCommand = UpdateServiceCommand;exports.paginateGetInstancesHealthStatus = paginateGetInstancesHealthStatus;exports.paginateListInstances = paginateListInstances;exports.paginateListNamespaces = paginateListNamespaces;exports.paginateListOperations = paginateListOperations;exports.paginateListServices = paginateListServices;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];});