File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-codebuild/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.js49.1 KB · 1410 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 CodeBuildServiceException = require('./models/CodeBuildServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "codebuild",    });};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 CodeBuildClient 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.defaultCodeBuildHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class BatchDeleteBuildsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchDeleteBuilds", {})    .n("CodeBuildClient", "BatchDeleteBuildsCommand")    .sc(schemas_0.BatchDeleteBuilds$)    .build() {} class BatchGetBuildBatchesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetBuildBatches", {})    .n("CodeBuildClient", "BatchGetBuildBatchesCommand")    .sc(schemas_0.BatchGetBuildBatches$)    .build() {} class BatchGetBuildsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetBuilds", {})    .n("CodeBuildClient", "BatchGetBuildsCommand")    .sc(schemas_0.BatchGetBuilds$)    .build() {} class BatchGetCommandExecutionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetCommandExecutions", {})    .n("CodeBuildClient", "BatchGetCommandExecutionsCommand")    .sc(schemas_0.BatchGetCommandExecutions$)    .build() {} class BatchGetFleetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetFleets", {})    .n("CodeBuildClient", "BatchGetFleetsCommand")    .sc(schemas_0.BatchGetFleets$)    .build() {} class BatchGetProjectsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetProjects", {})    .n("CodeBuildClient", "BatchGetProjectsCommand")    .sc(schemas_0.BatchGetProjects$)    .build() {} class BatchGetReportGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetReportGroups", {})    .n("CodeBuildClient", "BatchGetReportGroupsCommand")    .sc(schemas_0.BatchGetReportGroups$)    .build() {} class BatchGetReportsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetReports", {})    .n("CodeBuildClient", "BatchGetReportsCommand")    .sc(schemas_0.BatchGetReports$)    .build() {} class BatchGetSandboxesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "BatchGetSandboxes", {})    .n("CodeBuildClient", "BatchGetSandboxesCommand")    .sc(schemas_0.BatchGetSandboxes$)    .build() {} class CreateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "CreateFleet", {})    .n("CodeBuildClient", "CreateFleetCommand")    .sc(schemas_0.CreateFleet$)    .build() {} class CreateProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "CreateProject", {})    .n("CodeBuildClient", "CreateProjectCommand")    .sc(schemas_0.CreateProject$)    .build() {} class CreateReportGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "CreateReportGroup", {})    .n("CodeBuildClient", "CreateReportGroupCommand")    .sc(schemas_0.CreateReportGroup$)    .build() {} class CreateWebhookCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "CreateWebhook", {})    .n("CodeBuildClient", "CreateWebhookCommand")    .sc(schemas_0.CreateWebhook$)    .build() {} class DeleteBuildBatchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteBuildBatch", {})    .n("CodeBuildClient", "DeleteBuildBatchCommand")    .sc(schemas_0.DeleteBuildBatch$)    .build() {} class DeleteFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteFleet", {})    .n("CodeBuildClient", "DeleteFleetCommand")    .sc(schemas_0.DeleteFleet$)    .build() {} class DeleteProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteProject", {})    .n("CodeBuildClient", "DeleteProjectCommand")    .sc(schemas_0.DeleteProject$)    .build() {} class DeleteReportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteReport", {})    .n("CodeBuildClient", "DeleteReportCommand")    .sc(schemas_0.DeleteReport$)    .build() {} class DeleteReportGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteReportGroup", {})    .n("CodeBuildClient", "DeleteReportGroupCommand")    .sc(schemas_0.DeleteReportGroup$)    .build() {} class DeleteResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteResourcePolicy", {})    .n("CodeBuildClient", "DeleteResourcePolicyCommand")    .sc(schemas_0.DeleteResourcePolicy$)    .build() {} class DeleteSourceCredentialsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteSourceCredentials", {})    .n("CodeBuildClient", "DeleteSourceCredentialsCommand")    .sc(schemas_0.DeleteSourceCredentials$)    .build() {} class DeleteWebhookCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DeleteWebhook", {})    .n("CodeBuildClient", "DeleteWebhookCommand")    .sc(schemas_0.DeleteWebhook$)    .build() {} class DescribeCodeCoveragesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DescribeCodeCoverages", {})    .n("CodeBuildClient", "DescribeCodeCoveragesCommand")    .sc(schemas_0.DescribeCodeCoverages$)    .build() {} class DescribeTestCasesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "DescribeTestCases", {})    .n("CodeBuildClient", "DescribeTestCasesCommand")    .sc(schemas_0.DescribeTestCases$)    .build() {} class GetReportGroupTrendCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "GetReportGroupTrend", {})    .n("CodeBuildClient", "GetReportGroupTrendCommand")    .sc(schemas_0.GetReportGroupTrend$)    .build() {} class GetResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "GetResourcePolicy", {})    .n("CodeBuildClient", "GetResourcePolicyCommand")    .sc(schemas_0.GetResourcePolicy$)    .build() {} class ImportSourceCredentialsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ImportSourceCredentials", {})    .n("CodeBuildClient", "ImportSourceCredentialsCommand")    .sc(schemas_0.ImportSourceCredentials$)    .build() {} class InvalidateProjectCacheCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "InvalidateProjectCache", {})    .n("CodeBuildClient", "InvalidateProjectCacheCommand")    .sc(schemas_0.InvalidateProjectCache$)    .build() {} class ListBuildBatchesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListBuildBatches", {})    .n("CodeBuildClient", "ListBuildBatchesCommand")    .sc(schemas_0.ListBuildBatches$)    .build() {} class ListBuildBatchesForProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListBuildBatchesForProject", {})    .n("CodeBuildClient", "ListBuildBatchesForProjectCommand")    .sc(schemas_0.ListBuildBatchesForProject$)    .build() {} class ListBuildsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListBuilds", {})    .n("CodeBuildClient", "ListBuildsCommand")    .sc(schemas_0.ListBuilds$)    .build() {} class ListBuildsForProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListBuildsForProject", {})    .n("CodeBuildClient", "ListBuildsForProjectCommand")    .sc(schemas_0.ListBuildsForProject$)    .build() {} class ListCommandExecutionsForSandboxCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListCommandExecutionsForSandbox", {})    .n("CodeBuildClient", "ListCommandExecutionsForSandboxCommand")    .sc(schemas_0.ListCommandExecutionsForSandbox$)    .build() {} class ListCuratedEnvironmentImagesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListCuratedEnvironmentImages", {})    .n("CodeBuildClient", "ListCuratedEnvironmentImagesCommand")    .sc(schemas_0.ListCuratedEnvironmentImages$)    .build() {} class ListFleetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListFleets", {})    .n("CodeBuildClient", "ListFleetsCommand")    .sc(schemas_0.ListFleets$)    .build() {} class ListProjectsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListProjects", {})    .n("CodeBuildClient", "ListProjectsCommand")    .sc(schemas_0.ListProjects$)    .build() {} class ListReportGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListReportGroups", {})    .n("CodeBuildClient", "ListReportGroupsCommand")    .sc(schemas_0.ListReportGroups$)    .build() {} class ListReportsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListReports", {})    .n("CodeBuildClient", "ListReportsCommand")    .sc(schemas_0.ListReports$)    .build() {} class ListReportsForReportGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListReportsForReportGroup", {})    .n("CodeBuildClient", "ListReportsForReportGroupCommand")    .sc(schemas_0.ListReportsForReportGroup$)    .build() {} class ListSandboxesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListSandboxes", {})    .n("CodeBuildClient", "ListSandboxesCommand")    .sc(schemas_0.ListSandboxes$)    .build() {} class ListSandboxesForProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListSandboxesForProject", {})    .n("CodeBuildClient", "ListSandboxesForProjectCommand")    .sc(schemas_0.ListSandboxesForProject$)    .build() {} class ListSharedProjectsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListSharedProjects", {})    .n("CodeBuildClient", "ListSharedProjectsCommand")    .sc(schemas_0.ListSharedProjects$)    .build() {} class ListSharedReportGroupsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListSharedReportGroups", {})    .n("CodeBuildClient", "ListSharedReportGroupsCommand")    .sc(schemas_0.ListSharedReportGroups$)    .build() {} class ListSourceCredentialsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "ListSourceCredentials", {})    .n("CodeBuildClient", "ListSourceCredentialsCommand")    .sc(schemas_0.ListSourceCredentials$)    .build() {} class PutResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "PutResourcePolicy", {})    .n("CodeBuildClient", "PutResourcePolicyCommand")    .sc(schemas_0.PutResourcePolicy$)    .build() {} class RetryBuildBatchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "RetryBuildBatch", {})    .n("CodeBuildClient", "RetryBuildBatchCommand")    .sc(schemas_0.RetryBuildBatch$)    .build() {} class RetryBuildCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "RetryBuild", {})    .n("CodeBuildClient", "RetryBuildCommand")    .sc(schemas_0.RetryBuild$)    .build() {} class StartBuildBatchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StartBuildBatch", {})    .n("CodeBuildClient", "StartBuildBatchCommand")    .sc(schemas_0.StartBuildBatch$)    .build() {} class StartBuildCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StartBuild", {})    .n("CodeBuildClient", "StartBuildCommand")    .sc(schemas_0.StartBuild$)    .build() {} class StartCommandExecutionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StartCommandExecution", {})    .n("CodeBuildClient", "StartCommandExecutionCommand")    .sc(schemas_0.StartCommandExecution$)    .build() {} class StartSandboxCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StartSandbox", {})    .n("CodeBuildClient", "StartSandboxCommand")    .sc(schemas_0.StartSandbox$)    .build() {} class StartSandboxConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StartSandboxConnection", {})    .n("CodeBuildClient", "StartSandboxConnectionCommand")    .sc(schemas_0.StartSandboxConnection$)    .build() {} class StopBuildBatchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StopBuildBatch", {})    .n("CodeBuildClient", "StopBuildBatchCommand")    .sc(schemas_0.StopBuildBatch$)    .build() {} class StopBuildCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StopBuild", {})    .n("CodeBuildClient", "StopBuildCommand")    .sc(schemas_0.StopBuild$)    .build() {} class StopSandboxCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "StopSandbox", {})    .n("CodeBuildClient", "StopSandboxCommand")    .sc(schemas_0.StopSandbox$)    .build() {} class UpdateFleetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "UpdateFleet", {})    .n("CodeBuildClient", "UpdateFleetCommand")    .sc(schemas_0.UpdateFleet$)    .build() {} class UpdateProjectCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "UpdateProject", {})    .n("CodeBuildClient", "UpdateProjectCommand")    .sc(schemas_0.UpdateProject$)    .build() {} class UpdateProjectVisibilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "UpdateProjectVisibility", {})    .n("CodeBuildClient", "UpdateProjectVisibilityCommand")    .sc(schemas_0.UpdateProjectVisibility$)    .build() {} class UpdateReportGroupCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "UpdateReportGroup", {})    .n("CodeBuildClient", "UpdateReportGroupCommand")    .sc(schemas_0.UpdateReportGroup$)    .build() {} class UpdateWebhookCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CodeBuild_20161006", "UpdateWebhook", {})    .n("CodeBuildClient", "UpdateWebhookCommand")    .sc(schemas_0.UpdateWebhook$)    .build() {} const paginateDescribeCodeCoverages = core.createPaginator(CodeBuildClient, DescribeCodeCoveragesCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeTestCases = core.createPaginator(CodeBuildClient, DescribeTestCasesCommand, "nextToken", "nextToken", "maxResults"); const paginateListBuildBatchesForProject = core.createPaginator(CodeBuildClient, ListBuildBatchesForProjectCommand, "nextToken", "nextToken", "maxResults"); const paginateListBuildBatches = core.createPaginator(CodeBuildClient, ListBuildBatchesCommand, "nextToken", "nextToken", "maxResults"); const paginateListBuildsForProject = core.createPaginator(CodeBuildClient, ListBuildsForProjectCommand, "nextToken", "nextToken", ""); const paginateListBuilds = core.createPaginator(CodeBuildClient, ListBuildsCommand, "nextToken", "nextToken", ""); const paginateListCommandExecutionsForSandbox = core.createPaginator(CodeBuildClient, ListCommandExecutionsForSandboxCommand, "nextToken", "nextToken", "maxResults"); const paginateListFleets = core.createPaginator(CodeBuildClient, ListFleetsCommand, "nextToken", "nextToken", "maxResults"); const paginateListProjects = core.createPaginator(CodeBuildClient, ListProjectsCommand, "nextToken", "nextToken", ""); const paginateListReportGroups = core.createPaginator(CodeBuildClient, ListReportGroupsCommand, "nextToken", "nextToken", "maxResults"); const paginateListReportsForReportGroup = core.createPaginator(CodeBuildClient, ListReportsForReportGroupCommand, "nextToken", "nextToken", "maxResults"); const paginateListReports = core.createPaginator(CodeBuildClient, ListReportsCommand, "nextToken", "nextToken", "maxResults"); const paginateListSandboxesForProject = core.createPaginator(CodeBuildClient, ListSandboxesForProjectCommand, "nextToken", "nextToken", "maxResults"); const paginateListSandboxes = core.createPaginator(CodeBuildClient, ListSandboxesCommand, "nextToken", "nextToken", "maxResults"); const paginateListSharedProjects = core.createPaginator(CodeBuildClient, ListSharedProjectsCommand, "nextToken", "nextToken", "maxResults"); const paginateListSharedReportGroups = core.createPaginator(CodeBuildClient, ListSharedReportGroupsCommand, "nextToken", "nextToken", "maxResults"); const commands = {    BatchDeleteBuildsCommand,    BatchGetBuildBatchesCommand,    BatchGetBuildsCommand,    BatchGetCommandExecutionsCommand,    BatchGetFleetsCommand,    BatchGetProjectsCommand,    BatchGetReportGroupsCommand,    BatchGetReportsCommand,    BatchGetSandboxesCommand,    CreateFleetCommand,    CreateProjectCommand,    CreateReportGroupCommand,    CreateWebhookCommand,    DeleteBuildBatchCommand,    DeleteFleetCommand,    DeleteProjectCommand,    DeleteReportCommand,    DeleteReportGroupCommand,    DeleteResourcePolicyCommand,    DeleteSourceCredentialsCommand,    DeleteWebhookCommand,    DescribeCodeCoveragesCommand,    DescribeTestCasesCommand,    GetReportGroupTrendCommand,    GetResourcePolicyCommand,    ImportSourceCredentialsCommand,    InvalidateProjectCacheCommand,    ListBuildBatchesCommand,    ListBuildBatchesForProjectCommand,    ListBuildsCommand,    ListBuildsForProjectCommand,    ListCommandExecutionsForSandboxCommand,    ListCuratedEnvironmentImagesCommand,    ListFleetsCommand,    ListProjectsCommand,    ListReportGroupsCommand,    ListReportsCommand,    ListReportsForReportGroupCommand,    ListSandboxesCommand,    ListSandboxesForProjectCommand,    ListSharedProjectsCommand,    ListSharedReportGroupsCommand,    ListSourceCredentialsCommand,    PutResourcePolicyCommand,    RetryBuildCommand,    RetryBuildBatchCommand,    StartBuildCommand,    StartBuildBatchCommand,    StartCommandExecutionCommand,    StartSandboxCommand,    StartSandboxConnectionCommand,    StopBuildCommand,    StopBuildBatchCommand,    StopSandboxCommand,    UpdateFleetCommand,    UpdateProjectCommand,    UpdateProjectVisibilityCommand,    UpdateReportGroupCommand,    UpdateWebhookCommand,};const paginators = {    paginateDescribeCodeCoverages,    paginateDescribeTestCases,    paginateListBuildBatches,    paginateListBuildBatchesForProject,    paginateListBuilds,    paginateListBuildsForProject,    paginateListCommandExecutionsForSandbox,    paginateListFleets,    paginateListProjects,    paginateListReportGroups,    paginateListReports,    paginateListReportsForReportGroup,    paginateListSandboxes,    paginateListSandboxesForProject,    paginateListSharedProjects,    paginateListSharedReportGroups,};class CodeBuild extends CodeBuildClient {}client.createAggregatedClient(commands, CodeBuild, { paginators }); const ArtifactNamespace = {    BUILD_ID: "BUILD_ID",    NONE: "NONE",};const ArtifactPackaging = {    NONE: "NONE",    ZIP: "ZIP",};const ArtifactsType = {    CODEPIPELINE: "CODEPIPELINE",    NO_ARTIFACTS: "NO_ARTIFACTS",    S3: "S3",};const AuthType = {    BASIC_AUTH: "BASIC_AUTH",    CODECONNECTIONS: "CODECONNECTIONS",    OAUTH: "OAUTH",    PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN",    SECRETS_MANAGER: "SECRETS_MANAGER",};const BucketOwnerAccess = {    FULL: "FULL",    NONE: "NONE",    READ_ONLY: "READ_ONLY",};const BatchReportModeType = {    REPORT_AGGREGATED_BATCH: "REPORT_AGGREGATED_BATCH",    REPORT_INDIVIDUAL_BUILDS: "REPORT_INDIVIDUAL_BUILDS",};const StatusType = {    FAILED: "FAILED",    FAULT: "FAULT",    IN_PROGRESS: "IN_PROGRESS",    STOPPED: "STOPPED",    SUCCEEDED: "SUCCEEDED",    TIMED_OUT: "TIMED_OUT",};const CacheMode = {    LOCAL_CUSTOM_CACHE: "LOCAL_CUSTOM_CACHE",    LOCAL_DOCKER_LAYER_CACHE: "LOCAL_DOCKER_LAYER_CACHE",    LOCAL_SOURCE_CACHE: "LOCAL_SOURCE_CACHE",};const CacheType = {    LOCAL: "LOCAL",    NO_CACHE: "NO_CACHE",    S3: "S3",};const MachineType = {    GENERAL: "GENERAL",    NVME: "NVME",};const ComputeType = {    ATTRIBUTE_BASED_COMPUTE: "ATTRIBUTE_BASED_COMPUTE",    BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE",    BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",    BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",    BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL",    BUILD_GENERAL1_XLARGE: "BUILD_GENERAL1_XLARGE",    BUILD_LAMBDA_10GB: "BUILD_LAMBDA_10GB",    BUILD_LAMBDA_1GB: "BUILD_LAMBDA_1GB",    BUILD_LAMBDA_2GB: "BUILD_LAMBDA_2GB",    BUILD_LAMBDA_4GB: "BUILD_LAMBDA_4GB",    BUILD_LAMBDA_8GB: "BUILD_LAMBDA_8GB",    CUSTOM_INSTANCE_TYPE: "CUSTOM_INSTANCE_TYPE",};const EnvironmentVariableType = {    PARAMETER_STORE: "PARAMETER_STORE",    PLAINTEXT: "PLAINTEXT",    SECRETS_MANAGER: "SECRETS_MANAGER",};const ImagePullCredentialsType = {    CODEBUILD: "CODEBUILD",    SERVICE_ROLE: "SERVICE_ROLE",};const CredentialProviderType = {    SECRETS_MANAGER: "SECRETS_MANAGER",};const EnvironmentType = {    ARM_CONTAINER: "ARM_CONTAINER",    ARM_EC2: "ARM_EC2",    ARM_LAMBDA_CONTAINER: "ARM_LAMBDA_CONTAINER",    LINUX_CONTAINER: "LINUX_CONTAINER",    LINUX_EC2: "LINUX_EC2",    LINUX_GPU_CONTAINER: "LINUX_GPU_CONTAINER",    LINUX_LAMBDA_CONTAINER: "LINUX_LAMBDA_CONTAINER",    MAC_ARM: "MAC_ARM",    WINDOWS_CONTAINER: "WINDOWS_CONTAINER",    WINDOWS_EC2: "WINDOWS_EC2",    WINDOWS_SERVER_2019_CONTAINER: "WINDOWS_SERVER_2019_CONTAINER",    WINDOWS_SERVER_2022_CONTAINER: "WINDOWS_SERVER_2022_CONTAINER",};const FileSystemType = {    EFS: "EFS",};const LogsConfigStatusType = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const BuildBatchPhaseType = {    COMBINE_ARTIFACTS: "COMBINE_ARTIFACTS",    DOWNLOAD_BATCHSPEC: "DOWNLOAD_BATCHSPEC",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    STOPPED: "STOPPED",    SUBMITTED: "SUBMITTED",    SUCCEEDED: "SUCCEEDED",};const SourceAuthType = {    CODECONNECTIONS: "CODECONNECTIONS",    OAUTH: "OAUTH",    SECRETS_MANAGER: "SECRETS_MANAGER",};const SourceType = {    BITBUCKET: "BITBUCKET",    CODECOMMIT: "CODECOMMIT",    CODEPIPELINE: "CODEPIPELINE",    GITHUB: "GITHUB",    GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",    GITLAB: "GITLAB",    GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED",    NO_SOURCE: "NO_SOURCE",    S3: "S3",};const BuildPhaseType = {    BUILD: "BUILD",    COMPLETED: "COMPLETED",    DOWNLOAD_SOURCE: "DOWNLOAD_SOURCE",    FINALIZING: "FINALIZING",    INSTALL: "INSTALL",    POST_BUILD: "POST_BUILD",    PRE_BUILD: "PRE_BUILD",    PROVISIONING: "PROVISIONING",    QUEUED: "QUEUED",    SUBMITTED: "SUBMITTED",    UPLOAD_ARTIFACTS: "UPLOAD_ARTIFACTS",};const CommandType = {    SHELL: "SHELL",};const FleetOverflowBehavior = {    ON_DEMAND: "ON_DEMAND",    QUEUE: "QUEUE",};const FleetProxyRuleBehavior = {    ALLOW_ALL: "ALLOW_ALL",    DENY_ALL: "DENY_ALL",};const FleetProxyRuleEffectType = {    ALLOW: "ALLOW",    DENY: "DENY",};const FleetProxyRuleType = {    DOMAIN: "DOMAIN",    IP: "IP",};const FleetScalingType = {    TARGET_TRACKING_SCALING: "TARGET_TRACKING_SCALING",};const FleetScalingMetricType = {    FLEET_UTILIZATION_RATE: "FLEET_UTILIZATION_RATE",};const FleetContextCode = {    ACTION_REQUIRED: "ACTION_REQUIRED",    CREATE_FAILED: "CREATE_FAILED",    INSUFFICIENT_CAPACITY: "INSUFFICIENT_CAPACITY",    PENDING_DELETION: "PENDING_DELETION",    UPDATE_FAILED: "UPDATE_FAILED",};const FleetStatusCode = {    ACTIVE: "ACTIVE",    CREATE_FAILED: "CREATE_FAILED",    CREATING: "CREATING",    DELETING: "DELETING",    PENDING_DELETION: "PENDING_DELETION",    ROTATING: "ROTATING",    UPDATE_ROLLBACK_FAILED: "UPDATE_ROLLBACK_FAILED",    UPDATING: "UPDATING",};const ProjectVisibilityType = {    PRIVATE: "PRIVATE",    PUBLIC_READ: "PUBLIC_READ",};const WebhookBuildType = {    BUILD: "BUILD",    BUILD_BATCH: "BUILD_BATCH",    RUNNER_BUILDKITE_BUILD: "RUNNER_BUILDKITE_BUILD",};const WebhookFilterType = {    ACTOR_ACCOUNT_ID: "ACTOR_ACCOUNT_ID",    BASE_REF: "BASE_REF",    COMMIT_MESSAGE: "COMMIT_MESSAGE",    EVENT: "EVENT",    FILE_PATH: "FILE_PATH",    HEAD_REF: "HEAD_REF",    ORGANIZATION_NAME: "ORGANIZATION_NAME",    RELEASE_NAME: "RELEASE_NAME",    REPOSITORY_NAME: "REPOSITORY_NAME",    TAG_NAME: "TAG_NAME",    WORKFLOW_NAME: "WORKFLOW_NAME",};const PullRequestBuildApproverRole = {    BITBUCKET_ADMIN: "BITBUCKET_ADMIN",    BITBUCKET_READ: "BITBUCKET_READ",    BITBUCKET_WRITE: "BITBUCKET_WRITE",    GITHUB_ADMIN: "GITHUB_ADMIN",    GITHUB_MAINTAIN: "GITHUB_MAINTAIN",    GITHUB_READ: "GITHUB_READ",    GITHUB_TRIAGE: "GITHUB_TRIAGE",    GITHUB_WRITE: "GITHUB_WRITE",    GITLAB_DEVELOPER: "GITLAB_DEVELOPER",    GITLAB_GUEST: "GITLAB_GUEST",    GITLAB_MAINTAINER: "GITLAB_MAINTAINER",    GITLAB_OWNER: "GITLAB_OWNER",    GITLAB_PLANNER: "GITLAB_PLANNER",    GITLAB_REPORTER: "GITLAB_REPORTER",};const PullRequestBuildCommentApproval = {    ALL_PULL_REQUESTS: "ALL_PULL_REQUESTS",    DISABLED: "DISABLED",    FORK_PULL_REQUESTS: "FORK_PULL_REQUESTS",};const WebhookScopeType = {    GITHUB_GLOBAL: "GITHUB_GLOBAL",    GITHUB_ORGANIZATION: "GITHUB_ORGANIZATION",    GITLAB_GROUP: "GITLAB_GROUP",};const WebhookStatus = {    ACTIVE: "ACTIVE",    CREATE_FAILED: "CREATE_FAILED",    CREATING: "CREATING",    DELETING: "DELETING",};const ReportExportConfigType = {    NO_EXPORT: "NO_EXPORT",    S3: "S3",};const ReportPackagingType = {    NONE: "NONE",    ZIP: "ZIP",};const ReportGroupStatusType = {    ACTIVE: "ACTIVE",    DELETING: "DELETING",};const ReportType = {    CODE_COVERAGE: "CODE_COVERAGE",    TEST: "TEST",};const ReportStatusType = {    DELETING: "DELETING",    FAILED: "FAILED",    GENERATING: "GENERATING",    INCOMPLETE: "INCOMPLETE",    SUCCEEDED: "SUCCEEDED",};const ReportCodeCoverageSortByType = {    FILE_PATH: "FILE_PATH",    LINE_COVERAGE_PERCENTAGE: "LINE_COVERAGE_PERCENTAGE",};const SortOrderType = {    ASCENDING: "ASCENDING",    DESCENDING: "DESCENDING",};const ReportGroupTrendFieldType = {    BRANCHES_COVERED: "BRANCHES_COVERED",    BRANCHES_MISSED: "BRANCHES_MISSED",    BRANCH_COVERAGE: "BRANCH_COVERAGE",    DURATION: "DURATION",    LINES_COVERED: "LINES_COVERED",    LINES_MISSED: "LINES_MISSED",    LINE_COVERAGE: "LINE_COVERAGE",    PASS_RATE: "PASS_RATE",    TOTAL: "TOTAL",};const ServerType = {    BITBUCKET: "BITBUCKET",    GITHUB: "GITHUB",    GITHUB_ENTERPRISE: "GITHUB_ENTERPRISE",    GITLAB: "GITLAB",    GITLAB_SELF_MANAGED: "GITLAB_SELF_MANAGED",};const LanguageType = {    ANDROID: "ANDROID",    BASE: "BASE",    DOCKER: "DOCKER",    DOTNET: "DOTNET",    GOLANG: "GOLANG",    JAVA: "JAVA",    NODE_JS: "NODE_JS",    PHP: "PHP",    PYTHON: "PYTHON",    RUBY: "RUBY",};const PlatformType = {    AMAZON_LINUX: "AMAZON_LINUX",    DEBIAN: "DEBIAN",    UBUNTU: "UBUNTU",    WINDOWS_SERVER: "WINDOWS_SERVER",};const FleetSortByType = {    CREATED_TIME: "CREATED_TIME",    LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME",    NAME: "NAME",};const ProjectSortByType = {    CREATED_TIME: "CREATED_TIME",    LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME",    NAME: "NAME",};const ReportGroupSortByType = {    CREATED_TIME: "CREATED_TIME",    LAST_MODIFIED_TIME: "LAST_MODIFIED_TIME",    NAME: "NAME",};const SharedResourceSortByType = {    ARN: "ARN",    MODIFIED_TIME: "MODIFIED_TIME",};const RetryBuildBatchType = {    RETRY_ALL_BUILDS: "RETRY_ALL_BUILDS",    RETRY_FAILED_BUILDS: "RETRY_FAILED_BUILDS",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.CodeBuildServiceException = CodeBuildServiceException.CodeBuildServiceException;exports.ArtifactNamespace = ArtifactNamespace;exports.ArtifactPackaging = ArtifactPackaging;exports.ArtifactsType = ArtifactsType;exports.AuthType = AuthType;exports.BatchDeleteBuildsCommand = BatchDeleteBuildsCommand;exports.BatchGetBuildBatchesCommand = BatchGetBuildBatchesCommand;exports.BatchGetBuildsCommand = BatchGetBuildsCommand;exports.BatchGetCommandExecutionsCommand = BatchGetCommandExecutionsCommand;exports.BatchGetFleetsCommand = BatchGetFleetsCommand;exports.BatchGetProjectsCommand = BatchGetProjectsCommand;exports.BatchGetReportGroupsCommand = BatchGetReportGroupsCommand;exports.BatchGetReportsCommand = BatchGetReportsCommand;exports.BatchGetSandboxesCommand = BatchGetSandboxesCommand;exports.BatchReportModeType = BatchReportModeType;exports.BucketOwnerAccess = BucketOwnerAccess;exports.BuildBatchPhaseType = BuildBatchPhaseType;exports.BuildPhaseType = BuildPhaseType;exports.CacheMode = CacheMode;exports.CacheType = CacheType;exports.CodeBuild = CodeBuild;exports.CodeBuildClient = CodeBuildClient;exports.CommandType = CommandType;exports.ComputeType = ComputeType;exports.CreateFleetCommand = CreateFleetCommand;exports.CreateProjectCommand = CreateProjectCommand;exports.CreateReportGroupCommand = CreateReportGroupCommand;exports.CreateWebhookCommand = CreateWebhookCommand;exports.CredentialProviderType = CredentialProviderType;exports.DeleteBuildBatchCommand = DeleteBuildBatchCommand;exports.DeleteFleetCommand = DeleteFleetCommand;exports.DeleteProjectCommand = DeleteProjectCommand;exports.DeleteReportCommand = DeleteReportCommand;exports.DeleteReportGroupCommand = DeleteReportGroupCommand;exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;exports.DeleteSourceCredentialsCommand = DeleteSourceCredentialsCommand;exports.DeleteWebhookCommand = DeleteWebhookCommand;exports.DescribeCodeCoveragesCommand = DescribeCodeCoveragesCommand;exports.DescribeTestCasesCommand = DescribeTestCasesCommand;exports.EnvironmentType = EnvironmentType;exports.EnvironmentVariableType = EnvironmentVariableType;exports.FileSystemType = FileSystemType;exports.FleetContextCode = FleetContextCode;exports.FleetOverflowBehavior = FleetOverflowBehavior;exports.FleetProxyRuleBehavior = FleetProxyRuleBehavior;exports.FleetProxyRuleEffectType = FleetProxyRuleEffectType;exports.FleetProxyRuleType = FleetProxyRuleType;exports.FleetScalingMetricType = FleetScalingMetricType;exports.FleetScalingType = FleetScalingType;exports.FleetSortByType = FleetSortByType;exports.FleetStatusCode = FleetStatusCode;exports.GetReportGroupTrendCommand = GetReportGroupTrendCommand;exports.GetResourcePolicyCommand = GetResourcePolicyCommand;exports.ImagePullCredentialsType = ImagePullCredentialsType;exports.ImportSourceCredentialsCommand = ImportSourceCredentialsCommand;exports.InvalidateProjectCacheCommand = InvalidateProjectCacheCommand;exports.LanguageType = LanguageType;exports.ListBuildBatchesCommand = ListBuildBatchesCommand;exports.ListBuildBatchesForProjectCommand = ListBuildBatchesForProjectCommand;exports.ListBuildsCommand = ListBuildsCommand;exports.ListBuildsForProjectCommand = ListBuildsForProjectCommand;exports.ListCommandExecutionsForSandboxCommand = ListCommandExecutionsForSandboxCommand;exports.ListCuratedEnvironmentImagesCommand = ListCuratedEnvironmentImagesCommand;exports.ListFleetsCommand = ListFleetsCommand;exports.ListProjectsCommand = ListProjectsCommand;exports.ListReportGroupsCommand = ListReportGroupsCommand;exports.ListReportsCommand = ListReportsCommand;exports.ListReportsForReportGroupCommand = ListReportsForReportGroupCommand;exports.ListSandboxesCommand = ListSandboxesCommand;exports.ListSandboxesForProjectCommand = ListSandboxesForProjectCommand;exports.ListSharedProjectsCommand = ListSharedProjectsCommand;exports.ListSharedReportGroupsCommand = ListSharedReportGroupsCommand;exports.ListSourceCredentialsCommand = ListSourceCredentialsCommand;exports.LogsConfigStatusType = LogsConfigStatusType;exports.MachineType = MachineType;exports.PlatformType = PlatformType;exports.ProjectSortByType = ProjectSortByType;exports.ProjectVisibilityType = ProjectVisibilityType;exports.PullRequestBuildApproverRole = PullRequestBuildApproverRole;exports.PullRequestBuildCommentApproval = PullRequestBuildCommentApproval;exports.PutResourcePolicyCommand = PutResourcePolicyCommand;exports.ReportCodeCoverageSortByType = ReportCodeCoverageSortByType;exports.ReportExportConfigType = ReportExportConfigType;exports.ReportGroupSortByType = ReportGroupSortByType;exports.ReportGroupStatusType = ReportGroupStatusType;exports.ReportGroupTrendFieldType = ReportGroupTrendFieldType;exports.ReportPackagingType = ReportPackagingType;exports.ReportStatusType = ReportStatusType;exports.ReportType = ReportType;exports.RetryBuildBatchCommand = RetryBuildBatchCommand;exports.RetryBuildBatchType = RetryBuildBatchType;exports.RetryBuildCommand = RetryBuildCommand;exports.ServerType = ServerType;exports.SharedResourceSortByType = SharedResourceSortByType;exports.SortOrderType = SortOrderType;exports.SourceAuthType = SourceAuthType;exports.SourceType = SourceType;exports.StartBuildBatchCommand = StartBuildBatchCommand;exports.StartBuildCommand = StartBuildCommand;exports.StartCommandExecutionCommand = StartCommandExecutionCommand;exports.StartSandboxCommand = StartSandboxCommand;exports.StartSandboxConnectionCommand = StartSandboxConnectionCommand;exports.StatusType = StatusType;exports.StopBuildBatchCommand = StopBuildBatchCommand;exports.StopBuildCommand = StopBuildCommand;exports.StopSandboxCommand = StopSandboxCommand;exports.UpdateFleetCommand = UpdateFleetCommand;exports.UpdateProjectCommand = UpdateProjectCommand;exports.UpdateProjectVisibilityCommand = UpdateProjectVisibilityCommand;exports.UpdateReportGroupCommand = UpdateReportGroupCommand;exports.UpdateWebhookCommand = UpdateWebhookCommand;exports.WebhookBuildType = WebhookBuildType;exports.WebhookFilterType = WebhookFilterType;exports.WebhookScopeType = WebhookScopeType;exports.WebhookStatus = WebhookStatus;exports.paginateDescribeCodeCoverages = paginateDescribeCodeCoverages;exports.paginateDescribeTestCases = paginateDescribeTestCases;exports.paginateListBuildBatches = paginateListBuildBatches;exports.paginateListBuildBatchesForProject = paginateListBuildBatchesForProject;exports.paginateListBuilds = paginateListBuilds;exports.paginateListBuildsForProject = paginateListBuildsForProject;exports.paginateListCommandExecutionsForSandbox = paginateListCommandExecutionsForSandbox;exports.paginateListFleets = paginateListFleets;exports.paginateListProjects = paginateListProjects;exports.paginateListReportGroups = paginateListReportGroups;exports.paginateListReports = paginateListReports;exports.paginateListReportsForReportGroup = paginateListReportsForReportGroup;exports.paginateListSandboxes = paginateListSandboxes;exports.paginateListSandboxesForProject = paginateListSandboxesForProject;exports.paginateListSharedProjects = paginateListSharedProjects;exports.paginateListSharedReportGroups = paginateListSharedReportGroups;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];});