/var/runtime/node_modules/@aws-sdk/client-codedeploy/dist-cjs/auth
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 /.
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.resolveHttpAuthSchemeConfig = exports.defaultCodeDeployHttpAuthSchemeProvider = exports.defaultCodeDeployHttpAuthSchemeParametersProvider = void 0;const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");const client_1 = require("@smithy/core/client");const defaultCodeDeployHttpAuthSchemeParametersProvider = async (config, context, input) => { return { operation: (0, client_1.getSmithyContext)(context).operation, region: await (0, client_1.normalizeProvider)(config.region)() || (() => { throw new Error("expected `region` to be configured for `aws.auth#sigv4`"); })(), };};exports.defaultCodeDeployHttpAuthSchemeParametersProvider = defaultCodeDeployHttpAuthSchemeParametersProvider;function createAwsAuthSigv4HttpAuthOption(authParameters) { return { schemeId: "aws.auth#sigv4", signingProperties: { name: "codedeploy", region: authParameters.region, }, propertiesExtractor: (config, context) => ({ signingProperties: { config, context, }, }), };}const defaultCodeDeployHttpAuthSchemeProvider = (authParameters) => { const options = []; switch (authParameters.operation) { default: { options.push(createAwsAuthSigv4HttpAuthOption(authParameters)); } } return options;};exports.defaultCodeDeployHttpAuthSchemeProvider = defaultCodeDeployHttpAuthSchemeProvider;const resolveHttpAuthSchemeConfig = (config) => { const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config); return Object.assign(config_0, { authSchemePreference: (0, client_1.normalizeProvider)(config.authSchemePreference ?? []), });};exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;