@aws-sdk/client-codebuild 3.1074.0 → 3.1076.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultCodeBuildHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { BatchDeleteBuilds$, BatchGetBuildBatches$, BatchGetBuilds$, BatchGetCommandExecutions$, BatchGetFleets$, BatchGetProjects$, BatchGetReportGroups$, BatchGetReports$, BatchGetSandboxes$, CreateFleet$, CreateProject$, CreateReportGroup$, CreateWebhook$, DeleteBuildBatch$, DeleteFleet$, DeleteProject$, DeleteReport$, DeleteReportGroup$, DeleteResourcePolicy$, DeleteSourceCredentials$, DeleteWebhook$, DescribeCodeCoverages$, DescribeTestCases$, GetReportGroupTrend$, GetResourcePolicy$, ImportSourceCredentials$, InvalidateProjectCache$, ListBuildBatches$, ListBuildBatchesForProject$, ListBuilds$, ListBuildsForProject$, ListCommandExecutionsForSandbox$, ListCuratedEnvironmentImages$, ListFleets$, ListProjects$, ListReportGroups$, ListReports$, ListReportsForReportGroup$, ListSandboxes$, ListSandboxesForProject$, ListSharedProjects$, ListSharedReportGroups$, ListSourceCredentials$, PutResourcePolicy$, RetryBuildBatch$, RetryBuild$, StartBuildBatch$, StartBuild$, StartCommandExecution$, StartSandbox$, StartSandboxConnection$, StopBuildBatch$, StopBuild$, StopSandbox$, UpdateFleet$, UpdateProject$, UpdateProjectVisibility$, UpdateReportGroup$, UpdateWebhook$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { CodeBuildServiceException } = require("./models/CodeBuildServiceException");
18
- exports.CodeBuildServiceException = CodeBuildServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultCodeBuildHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "codebuild",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultCodeBuildHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,2102 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://codebuild-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://codebuild-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://codebuild.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://codebuild.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class CodeBuildServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, CodeBuildServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccountLimitExceededException extends CodeBuildServiceException {
140
+ name = "AccountLimitExceededException";
141
+ $fault = "client";
142
+ constructor(opts) {
143
+ super({
144
+ name: "AccountLimitExceededException",
145
+ $fault: "client",
146
+ ...opts,
147
+ });
148
+ Object.setPrototypeOf(this, AccountLimitExceededException.prototype);
149
+ }
150
+ }
151
+ class AccountSuspendedException extends CodeBuildServiceException {
152
+ name = "AccountSuspendedException";
153
+ $fault = "client";
154
+ constructor(opts) {
155
+ super({
156
+ name: "AccountSuspendedException",
157
+ $fault: "client",
158
+ ...opts,
159
+ });
160
+ Object.setPrototypeOf(this, AccountSuspendedException.prototype);
161
+ }
162
+ }
163
+ class InvalidInputException extends CodeBuildServiceException {
164
+ name = "InvalidInputException";
165
+ $fault = "client";
166
+ constructor(opts) {
167
+ super({
168
+ name: "InvalidInputException",
169
+ $fault: "client",
170
+ ...opts,
171
+ });
172
+ Object.setPrototypeOf(this, InvalidInputException.prototype);
173
+ }
174
+ }
175
+ class ResourceAlreadyExistsException extends CodeBuildServiceException {
176
+ name = "ResourceAlreadyExistsException";
177
+ $fault = "client";
178
+ constructor(opts) {
179
+ super({
180
+ name: "ResourceAlreadyExistsException",
181
+ $fault: "client",
182
+ ...opts,
183
+ });
184
+ Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
185
+ }
186
+ }
187
+ class OAuthProviderException extends CodeBuildServiceException {
188
+ name = "OAuthProviderException";
189
+ $fault = "client";
190
+ constructor(opts) {
191
+ super({
192
+ name: "OAuthProviderException",
193
+ $fault: "client",
194
+ ...opts,
195
+ });
196
+ Object.setPrototypeOf(this, OAuthProviderException.prototype);
197
+ }
198
+ }
199
+ class ResourceNotFoundException extends CodeBuildServiceException {
200
+ name = "ResourceNotFoundException";
201
+ $fault = "client";
202
+ constructor(opts) {
203
+ super({
204
+ name: "ResourceNotFoundException",
205
+ $fault: "client",
206
+ ...opts,
207
+ });
208
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
209
+ }
210
+ }
211
+
212
+ const _ALEE = "AccountLimitExceededException";
213
+ const _ARC = "AutoRetryConfig";
214
+ const _ASE = "AccountSuspendedException";
215
+ const _B = "Build";
216
+ const _BA = "BuildArtifacts";
217
+ const _BAL = "BuildArtifactsList";
218
+ const _BB = "BuildBatch";
219
+ const _BBF = "BuildBatchFilter";
220
+ const _BBP = "BuildBatchPhase";
221
+ const _BBPu = "BuildBatchPhases";
222
+ const _BBu = "BuildBatches";
223
+ const _BDB = "BatchDeleteBuilds";
224
+ const _BDBI = "BatchDeleteBuildsInput";
225
+ const _BDBO = "BatchDeleteBuildsOutput";
226
+ const _BG = "BuildGroup";
227
+ const _BGB = "BatchGetBuilds";
228
+ const _BGBB = "BatchGetBuildBatches";
229
+ const _BGBBI = "BatchGetBuildBatchesInput";
230
+ const _BGBBO = "BatchGetBuildBatchesOutput";
231
+ const _BGBI = "BatchGetBuildsInput";
232
+ const _BGBO = "BatchGetBuildsOutput";
233
+ const _BGCE = "BatchGetCommandExecutions";
234
+ const _BGCEI = "BatchGetCommandExecutionsInput";
235
+ const _BGCEO = "BatchGetCommandExecutionsOutput";
236
+ const _BGF = "BatchGetFleets";
237
+ const _BGFI = "BatchGetFleetsInput";
238
+ const _BGFO = "BatchGetFleetsOutput";
239
+ const _BGP = "BatchGetProjects";
240
+ const _BGPI = "BatchGetProjectsInput";
241
+ const _BGPO = "BatchGetProjectsOutput";
242
+ const _BGR = "BatchGetReports";
243
+ const _BGRG = "BatchGetReportGroups";
244
+ const _BGRGI = "BatchGetReportGroupsInput";
245
+ const _BGRGO = "BatchGetReportGroupsOutput";
246
+ const _BGRI = "BatchGetReportsInput";
247
+ const _BGRO = "BatchGetReportsOutput";
248
+ const _BGS = "BatchGetSandboxes";
249
+ const _BGSI = "BatchGetSandboxesInput";
250
+ const _BGSO = "BatchGetSandboxesOutput";
251
+ const _BGu = "BuildGroups";
252
+ const _BND = "BuildNotDeleted";
253
+ const _BNDu = "BuildsNotDeleted";
254
+ const _BP = "BuildPhase";
255
+ const _BPu = "BuildPhases";
256
+ const _BR = "BatchRestrictions";
257
+ const _BS = "BuildSummary";
258
+ const _BSC = "BuildStatusConfig";
259
+ const _BSu = "BuildSummaries";
260
+ const _Bu = "Builds";
261
+ const _CC = "CodeCoverage";
262
+ const _CCRS = "CodeCoverageReportSummary";
263
+ const _CCo = "ComputeConfiguration";
264
+ const _CCod = "CodeCoverages";
265
+ const _CE = "CommandExecution";
266
+ const _CEo = "CommandExecutions";
267
+ const _CF = "CreateFleet";
268
+ const _CFI = "CreateFleetInput";
269
+ const _CFO = "CreateFleetOutput";
270
+ const _CP = "CreateProject";
271
+ const _CPI = "CreateProjectInput";
272
+ const _CPO = "CreateProjectOutput";
273
+ const _CRG = "CreateReportGroup";
274
+ const _CRGI = "CreateReportGroupInput";
275
+ const _CRGO = "CreateReportGroupOutput";
276
+ const _CW = "CreateWebhook";
277
+ const _CWI = "CreateWebhookInput";
278
+ const _CWLC = "CloudWatchLogsConfig";
279
+ const _CWO = "CreateWebhookOutput";
280
+ const _DBB = "DeleteBuildBatch";
281
+ const _DBBI = "DeleteBuildBatchInput";
282
+ const _DBBO = "DeleteBuildBatchOutput";
283
+ const _DCC = "DescribeCodeCoverages";
284
+ const _DCCI = "DescribeCodeCoveragesInput";
285
+ const _DCCO = "DescribeCodeCoveragesOutput";
286
+ const _DF = "DeleteFleet";
287
+ const _DFI = "DeleteFleetInput";
288
+ const _DFO = "DeleteFleetOutput";
289
+ const _DP = "DeleteProject";
290
+ const _DPI = "DeleteProjectInput";
291
+ const _DPO = "DeleteProjectOutput";
292
+ const _DR = "DeleteReport";
293
+ const _DRG = "DeleteReportGroup";
294
+ const _DRGI = "DeleteReportGroupInput";
295
+ const _DRGO = "DeleteReportGroupOutput";
296
+ const _DRI = "DeleteReportInput";
297
+ const _DRO = "DeleteReportOutput";
298
+ const _DRP = "DeleteResourcePolicy";
299
+ const _DRPI = "DeleteResourcePolicyInput";
300
+ const _DRPO = "DeleteResourcePolicyOutput";
301
+ const _DS = "DebugSession";
302
+ const _DSC = "DeleteSourceCredentials";
303
+ const _DSCI = "DeleteSourceCredentialsInput";
304
+ const _DSCO = "DeleteSourceCredentialsOutput";
305
+ const _DSS = "DockerServerStatus";
306
+ const _DSo = "DockerServer";
307
+ const _DTC = "DescribeTestCases";
308
+ const _DTCI = "DescribeTestCasesInput";
309
+ const _DTCO = "DescribeTestCasesOutput";
310
+ const _DW = "DeleteWebhook";
311
+ const _DWI = "DeleteWebhookInput";
312
+ const _DWO = "DeleteWebhookOutput";
313
+ const _EEV = "ExportedEnvironmentVariable";
314
+ const _EEVx = "ExportedEnvironmentVariables";
315
+ const _EI = "EnvironmentImage";
316
+ const _EIn = "EnvironmentImages";
317
+ const _EL = "EnvironmentLanguage";
318
+ const _ELn = "EnvironmentLanguages";
319
+ const _EP = "EnvironmentPlatform";
320
+ const _EPn = "EnvironmentPlatforms";
321
+ const _EV = "EnvironmentVariable";
322
+ const _EVn = "EnvironmentVariables";
323
+ const _F = "Fleet";
324
+ const _FG = "FilterGroups";
325
+ const _FGi = "FilterGroup";
326
+ const _FPR = "FleetProxyRule";
327
+ const _FPRl = "FleetProxyRules";
328
+ const _FS = "FleetStatus";
329
+ const _Fl = "Fleets";
330
+ const _GRGT = "GetReportGroupTrend";
331
+ const _GRGTI = "GetReportGroupTrendInput";
332
+ const _GRGTO = "GetReportGroupTrendOutput";
333
+ const _GRP = "GetResourcePolicy";
334
+ const _GRPI = "GetResourcePolicyInput";
335
+ const _GRPO = "GetResourcePolicyOutput";
336
+ const _GSC = "GitSubmodulesConfig";
337
+ const _IIE = "InvalidInputException";
338
+ const _IPC = "InvalidateProjectCache";
339
+ const _IPCI = "InvalidateProjectCacheInput";
340
+ const _IPCO = "InvalidateProjectCacheOutput";
341
+ const _ISC = "ImportSourceCredentials";
342
+ const _ISCI = "ImportSourceCredentialsInput";
343
+ const _ISCO = "ImportSourceCredentialsOutput";
344
+ const _LB = "ListBuilds";
345
+ const _LBB = "ListBuildBatches";
346
+ const _LBBFP = "ListBuildBatchesForProject";
347
+ const _LBBFPI = "ListBuildBatchesForProjectInput";
348
+ const _LBBFPO = "ListBuildBatchesForProjectOutput";
349
+ const _LBBI = "ListBuildBatchesInput";
350
+ const _LBBO = "ListBuildBatchesOutput";
351
+ const _LBFP = "ListBuildsForProject";
352
+ const _LBFPI = "ListBuildsForProjectInput";
353
+ const _LBFPO = "ListBuildsForProjectOutput";
354
+ const _LBI = "ListBuildsInput";
355
+ const _LBO = "ListBuildsOutput";
356
+ const _LC = "LogsConfig";
357
+ const _LCEFS = "ListCommandExecutionsForSandbox";
358
+ const _LCEFSI = "ListCommandExecutionsForSandboxInput";
359
+ const _LCEFSO = "ListCommandExecutionsForSandboxOutput";
360
+ const _LCEI = "ListCuratedEnvironmentImages";
361
+ const _LCEII = "ListCuratedEnvironmentImagesInput";
362
+ const _LCEIO = "ListCuratedEnvironmentImagesOutput";
363
+ const _LF = "ListFleets";
364
+ const _LFI = "ListFleetsInput";
365
+ const _LFO = "ListFleetsOutput";
366
+ const _LL = "LogsLocation";
367
+ const _LP = "ListProjects";
368
+ const _LPI = "ListProjectsInput";
369
+ const _LPO = "ListProjectsOutput";
370
+ const _LR = "ListReports";
371
+ const _LRFRG = "ListReportsForReportGroup";
372
+ const _LRFRGI = "ListReportsForReportGroupInput";
373
+ const _LRFRGO = "ListReportsForReportGroupOutput";
374
+ const _LRG = "ListReportGroups";
375
+ const _LRGI = "ListReportGroupsInput";
376
+ const _LRGO = "ListReportGroupsOutput";
377
+ const _LRI = "ListReportsInput";
378
+ const _LRO = "ListReportsOutput";
379
+ const _LS = "ListSandboxes";
380
+ const _LSC = "ListSourceCredentials";
381
+ const _LSCI = "ListSourceCredentialsInput";
382
+ const _LSCO = "ListSourceCredentialsOutput";
383
+ const _LSFP = "ListSandboxesForProject";
384
+ const _LSFPI = "ListSandboxesForProjectInput";
385
+ const _LSFPO = "ListSandboxesForProjectOutput";
386
+ const _LSI = "ListSandboxesInput";
387
+ const _LSO = "ListSandboxesOutput";
388
+ const _LSP = "ListSharedProjects";
389
+ const _LSPI = "ListSharedProjectsInput";
390
+ const _LSPO = "ListSharedProjectsOutput";
391
+ const _LSRG = "ListSharedReportGroups";
392
+ const _LSRGI = "ListSharedReportGroupsInput";
393
+ const _LSRGO = "ListSharedReportGroupsOutput";
394
+ const _NI = "NetworkInterface";
395
+ const _OAPE = "OAuthProviderException";
396
+ const _P = "Project";
397
+ const _PA = "ProjectArtifacts";
398
+ const _PAL = "ProjectArtifactsList";
399
+ const _PB = "ProjectBadge";
400
+ const _PBBC = "ProjectBuildBatchConfig";
401
+ const _PC = "PhaseContext";
402
+ const _PCh = "PhaseContexts";
403
+ const _PCr = "ProjectCache";
404
+ const _PCro = "ProxyConfiguration";
405
+ const _PE = "ProjectEnvironment";
406
+ const _PF = "ProjectFleet";
407
+ const _PFSL = "ProjectFileSystemLocation";
408
+ const _PFSLr = "ProjectFileSystemLocations";
409
+ const _PRBP = "PullRequestBuildPolicy";
410
+ const _PRP = "PutResourcePolicy";
411
+ const _PRPI = "PutResourcePolicyInput";
412
+ const _PRPO = "PutResourcePolicyOutput";
413
+ const _PS = "ProjectSource";
414
+ const _PSSV = "ProjectSecondarySourceVersions";
415
+ const _PSV = "ProjectSourceVersion";
416
+ const _PSr = "ProjectSources";
417
+ const _Pr = "Projects";
418
+ const _R = "Report";
419
+ const _RA = "ResolvedArtifact";
420
+ const _RAEE = "ResourceAlreadyExistsException";
421
+ const _RB = "RetryBuild";
422
+ const _RBB = "RetryBuildBatch";
423
+ const _RBBI = "RetryBuildBatchInput";
424
+ const _RBBO = "RetryBuildBatchOutput";
425
+ const _RBI = "RetryBuildInput";
426
+ const _RBO = "RetryBuildOutput";
427
+ const _RC = "RegistryCredential";
428
+ const _REC = "ReportExportConfig";
429
+ const _RF = "ReportFilter";
430
+ const _RG = "ReportGroup";
431
+ const _RGTRDL = "ReportGroupTrendRawDataList";
432
+ const _RGTS = "ReportGroupTrendStats";
433
+ const _RGe = "ReportGroups";
434
+ const _RNFE = "ResourceNotFoundException";
435
+ const _RSA = "ResolvedSecondaryArtifacts";
436
+ const _RWRD = "ReportWithRawData";
437
+ const _Re = "Reports";
438
+ const _S = "Sandbox";
439
+ const _SA = "SourceAuth";
440
+ const _SB = "StartBuild";
441
+ const _SBB = "StartBuildBatch";
442
+ const _SBBI = "StartBuildBatchInput";
443
+ const _SBBIt = "StopBuildBatchInput";
444
+ const _SBBO = "StartBuildBatchOutput";
445
+ const _SBBOt = "StopBuildBatchOutput";
446
+ const _SBBt = "StopBuildBatch";
447
+ const _SBI = "StartBuildInput";
448
+ const _SBIt = "StopBuildInput";
449
+ const _SBO = "StartBuildOutput";
450
+ const _SBOt = "StopBuildOutput";
451
+ const _SBt = "StopBuild";
452
+ const _SC = "ScopeConfiguration";
453
+ const _SCE = "StartCommandExecution";
454
+ const _SCEI = "StartCommandExecutionInput";
455
+ const _SCEO = "StartCommandExecutionOutput";
456
+ const _SCI = "ScalingConfigurationInput";
457
+ const _SCIo = "SourceCredentialsInfo";
458
+ const _SCIou = "SourceCredentialsInfos";
459
+ const _SCO = "ScalingConfigurationOutput";
460
+ const _SLC = "S3LogsConfig";
461
+ const _SNES = "SensitiveNonEmptyString";
462
+ const _SREC = "S3ReportExportConfig";
463
+ const _SS = "SensitiveString";
464
+ const _SSC = "StartSandboxConnection";
465
+ const _SSCI = "StartSandboxConnectionInput";
466
+ const _SSCO = "StartSandboxConnectionOutput";
467
+ const _SSI = "StartSandboxInput";
468
+ const _SSIt = "StopSandboxInput";
469
+ const _SSMS = "SSMSession";
470
+ const _SSO = "StartSandboxOutput";
471
+ const _SSOt = "StopSandboxOutput";
472
+ const _SSP = "SandboxSessionPhase";
473
+ const _SSPa = "SandboxSessionPhases";
474
+ const _SSa = "SandboxSession";
475
+ const _SSt = "StartSandbox";
476
+ const _SSto = "StopSandbox";
477
+ const _Sa = "Sandboxes";
478
+ const _T = "Tag";
479
+ const _TC = "TestCase";
480
+ const _TCF = "TestCaseFilter";
481
+ const _TCe = "TestCases";
482
+ const _TL = "TagList";
483
+ const _TRS = "TestReportSummary";
484
+ const _TTSC = "TargetTrackingScalingConfiguration";
485
+ const _TTSCa = "TargetTrackingScalingConfigurations";
486
+ const _UF = "UpdateFleet";
487
+ const _UFI = "UpdateFleetInput";
488
+ const _UFO = "UpdateFleetOutput";
489
+ const _UP = "UpdateProject";
490
+ const _UPI = "UpdateProjectInput";
491
+ const _UPO = "UpdateProjectOutput";
492
+ const _UPV = "UpdateProjectVisibility";
493
+ const _UPVI = "UpdateProjectVisibilityInput";
494
+ const _UPVO = "UpdateProjectVisibilityOutput";
495
+ const _URG = "UpdateReportGroup";
496
+ const _URGI = "UpdateReportGroupInput";
497
+ const _URGO = "UpdateReportGroupOutput";
498
+ const _UW = "UpdateWebhook";
499
+ const _UWI = "UpdateWebhookInput";
500
+ const _UWO = "UpdateWebhookOutput";
501
+ const _VC = "VpcConfig";
502
+ const _W = "Webhook";
503
+ const _WF = "WebhookFilter";
504
+ const _a = "arn";
505
+ const _aI = "artifactIdentifier";
506
+ const _aO = "artifactsOverride";
507
+ const _aR = "approverRoles";
508
+ const _aRC = "autoRetryConfig";
509
+ const _aRL = "autoRetryLimit";
510
+ const _aRLO = "autoRetryLimitOverride";
511
+ const _aRN = "autoRetryNumber";
512
+ const _aT = "authType";
513
+ const _ar = "artifacts";
514
+ const _au = "auth";
515
+ const _av = "average";
516
+ const _b = "builds";
517
+ const _bB = "buildBatches";
518
+ const _bBA = "buildBatchArn";
519
+ const _bBC = "buildBatchConfig";
520
+ const _bBCO = "buildBatchConfigOverride";
521
+ const _bBN = "buildBatchNumber";
522
+ const _bBNF = "buildBatchesNotFound";
523
+ const _bBS = "buildBatchStatus";
524
+ const _bBu = "buildBatch";
525
+ const _bC = "buildComplete";
526
+ const _bCP = "branchCoveragePercentage";
527
+ const _bCa = "baseCapacity";
528
+ const _bCr = "branchesCovered";
529
+ const _bD = "buildsDeleted";
530
+ const _bE = "badgeEnabled";
531
+ const _bF = "branchFilter";
532
+ const _bG = "buildGroups";
533
+ const _bM = "branchesMissed";
534
+ const _bN = "buildNumber";
535
+ const _bND = "buildsNotDeleted";
536
+ const _bNF = "buildsNotFound";
537
+ const _bO = "bucketOwner";
538
+ const _bOA = "bucketOwnerAccess";
539
+ const _bOu = "buildspecOverride";
540
+ const _bRM = "batchReportMode";
541
+ const _bRU = "badgeRequestUrl";
542
+ const _bS = "buildStatus";
543
+ const _bSC = "buildStatusConfig";
544
+ const _bSCO = "buildStatusConfigOverride";
545
+ const _bT = "buildType";
546
+ const _bTIM = "buildTimeoutInMinutes";
547
+ const _bTIMO = "buildTimeoutInMinutesOverride";
548
+ const _ba = "badge";
549
+ const _bu = "buildspec";
550
+ const _buc = "bucket";
551
+ const _bui = "build";
552
+ const _c = "client";
553
+ const _cA = "combineArtifacts";
554
+ const _cBL = "concurrentBuildLimit";
555
+ const _cBS = "currentBuildSummary";
556
+ const _cC = "computeConfiguration";
557
+ const _cCS = "codeCoverageSummary";
558
+ const _cCo = "codeCoverages";
559
+ const _cE = "commandExecutions";
560
+ const _cEI = "commandExecutionIds";
561
+ const _cENF = "commandExecutionsNotFound";
562
+ const _cEo = "commandExecution";
563
+ const _cN = "cacheNamespace";
564
+ const _cO = "certificateOverride";
565
+ const _cOa = "cacheOverride";
566
+ const _cP = "currentPhase";
567
+ const _cPr = "credentialProvider";
568
+ const _cS = "currentSession";
569
+ const _cT = "computeType";
570
+ const _cTA = "computeTypesAllowed";
571
+ const _cTO = "computeTypeOverride";
572
+ const _cWL = "cloudWatchLogs";
573
+ const _cWLA = "cloudWatchLogsArn";
574
+ const _ca = "cache";
575
+ const _ce = "certificate";
576
+ const _co = "complete";
577
+ const _com = "command";
578
+ const _con = "contexts";
579
+ const _cont = "context";
580
+ const _cr = "created";
581
+ const _cre = "credential";
582
+ const _d = "disk";
583
+ const _dB = "defaultBehavior";
584
+ const _dC = "desiredCapacity";
585
+ const _dINS = "durationInNanoSeconds";
586
+ const _dIS = "durationInSeconds";
587
+ const _dL = "deepLink";
588
+ const _dO = "dependsOn";
589
+ const _dR = "deleteReports";
590
+ const _dS = "debugSession";
591
+ const _dSE = "debugSessionEnabled";
592
+ const _dSo = "dockerServer";
593
+ const _da = "data";
594
+ const _de = "description";
595
+ const _do = "domain";
596
+ const _e = "error";
597
+ const _eC = "exitCode";
598
+ const _eCT = "exportConfigType";
599
+ const _eCx = "exportConfig";
600
+ const _eD = "encryptionDisabled";
601
+ const _eEV = "exportedEnvironmentVariables";
602
+ const _eI = "executionId";
603
+ const _eK = "encryptionKey";
604
+ const _eKO = "encryptionKeyOverride";
605
+ const _eMP = "excludeMatchedPattern";
606
+ const _eT = "endTime";
607
+ const _eTO = "environmentTypeOverride";
608
+ const _eTn = "environmentType";
609
+ const _eV = "environmentVariables";
610
+ const _eVO = "environmentVariablesOverride";
611
+ const _ef = "effect";
612
+ const _en = "environment";
613
+ const _ent = "entities";
614
+ const _ex = "expired";
615
+ const _f = "fleets";
616
+ const _fA = "fleetsAllowed";
617
+ const _fAl = "fleetArn";
618
+ const _fG = "filterGroups";
619
+ const _fNF = "fleetsNotFound";
620
+ const _fO = "fleetOverride";
621
+ const _fP = "filePath";
622
+ const _fS = "fetchSubmodules";
623
+ const _fSL = "fileSystemLocations";
624
+ const _fSR = "fleetServiceRole";
625
+ const _fi = "filter";
626
+ const _fl = "fleet";
627
+ const _gCD = "gitCloneDepth";
628
+ const _gCDO = "gitCloneDepthOverride";
629
+ const _gN = "groupName";
630
+ const _gSC = "gitSubmodulesConfig";
631
+ const _gSCO = "gitSubmodulesConfigOverride";
632
+ const _i = "ids";
633
+ const _iF = "ignoreFailure";
634
+ const _iI = "imageId";
635
+ const _iO = "imageOverride";
636
+ const _iPCT = "imagePullCredentialsType";
637
+ const _iPCTO = "imagePullCredentialsTypeOverride";
638
+ const _iS = "insecureSsl";
639
+ const _iSO = "insecureSslOverride";
640
+ const _iT = "instanceType";
641
+ const _iTd = "idempotencyToken";
642
+ const _id = "id";
643
+ const _ide = "identifier";
644
+ const _im = "images";
645
+ const _ima = "image";
646
+ const _in = "initiator";
647
+ const _k = "key";
648
+ const _ke = "keyword";
649
+ const _l = "logs";
650
+ const _lC = "logConfig";
651
+ const _lCO = "logsConfigOverride";
652
+ const _lCP = "lineCoveragePercentage";
653
+ const _lCi = "linesCovered";
654
+ const _lCo = "logsConfig";
655
+ const _lM = "linesMissed";
656
+ const _lMS = "lastModifiedSecret";
657
+ const _lMa = "lastModified";
658
+ const _la = "language";
659
+ const _lan = "languages";
660
+ const _lo = "location";
661
+ const _m = "message";
662
+ const _mBA = "maximumBuildsAllowed";
663
+ const _mC = "manualCreation";
664
+ const _mCa = "maxCapacity";
665
+ const _mLCP = "minLineCoveragePercentage";
666
+ const _mLCPa = "maxLineCoveragePercentage";
667
+ const _mO = "mountOptions";
668
+ const _mP = "mountPoint";
669
+ const _mR = "maxResults";
670
+ const _mT = "machineType";
671
+ const _mTe = "metricType";
672
+ const _ma = "max";
673
+ const _md = "md5sum";
674
+ const _me = "memory";
675
+ const _mi = "min";
676
+ const _mo = "modes";
677
+ const _n = "names";
678
+ const _nAR = "nextAutoRetry";
679
+ const _nI = "networkInterface";
680
+ const _nII = "networkInterfaceId";
681
+ const _nOR = "numOfReports";
682
+ const _nT = "nextToken";
683
+ const _nTa = "namespaceType";
684
+ const _na = "name";
685
+ const _oAN = "overrideArtifactName";
686
+ const _oB = "overflowBehavior";
687
+ const _oPR = "orderedProxyRules";
688
+ const _p = "projects";
689
+ const _pA = "primaryArtifact";
690
+ const _pAR = "previousAutoRetry";
691
+ const _pAr = "projectArn";
692
+ const _pBSL = "priorBuildSummaryList";
693
+ const _pC = "proxyConfiguration";
694
+ const _pM = "privilegedMode";
695
+ const _pMO = "privilegedModeOverride";
696
+ const _pN = "projectName";
697
+ const _pNF = "projectsNotFound";
698
+ const _pPA = "publicProjectAlias";
699
+ const _pRBP = "pullRequestBuildPolicy";
700
+ const _pS = "phaseStatus";
701
+ const _pT = "phaseType";
702
+ const _pU = "payloadUrl";
703
+ const _pV = "projectVisibility";
704
+ const _pa = "path";
705
+ const _pac = "packaging";
706
+ const _pat = "pattern";
707
+ const _ph = "phases";
708
+ const _pl = "platform";
709
+ const _pla = "platforms";
710
+ const _po = "policy";
711
+ const _pr = "project";
712
+ const _pre = "prefix";
713
+ const _qTIM = "queuedTimeoutInMinutes";
714
+ const _qTIMO = "queuedTimeoutInMinutesOverride";
715
+ const _r = "reports";
716
+ const _rA = "reportArns";
717
+ const _rAR = "resourceAccessRole";
718
+ const _rARN = "reportARN";
719
+ const _rAe = "resourceArn";
720
+ const _rAep = "reportArn";
721
+ const _rBBSO = "reportBuildBatchStatusOverride";
722
+ const _rBS = "reportBuildStatus";
723
+ const _rBSO = "reportBuildStatusOverride";
724
+ const _rC = "registryCredential";
725
+ const _rCA = "requiresCommentApproval";
726
+ const _rCO = "registryCredentialOverride";
727
+ const _rD = "rawData";
728
+ const _rG = "reportGroups";
729
+ const _rGA = "reportGroupArns";
730
+ const _rGAe = "reportGroupArn";
731
+ const _rGNF = "reportGroupsNotFound";
732
+ const _rGe = "reportGroup";
733
+ const _rNF = "reportsNotFound";
734
+ const _rO = "requestedOn";
735
+ const _rS = "rotateSecret";
736
+ const _rSV = "resolvedSourceVersion";
737
+ const _rT = "retryType";
738
+ const _rTe = "requestTime";
739
+ const _re = "restrictions";
740
+ const _res = "resource";
741
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codebuild";
742
+ const _sA = "secondaryArtifacts";
743
+ const _sAO = "secondaryArtifactsOverride";
744
+ const _sAOo = "sourceAuthOverride";
745
+ const _sAa = "sandboxArn";
746
+ const _sB = "sortBy";
747
+ const _sC = "statusCode";
748
+ const _sCI = "sourceCredentialsInfos";
749
+ const _sCc = "scalingConfiguration";
750
+ const _sCco = "scopeConfiguration";
751
+ const _sCt = "statusCounts";
752
+ const _sD = "s3Destination";
753
+ const _sDL = "s3DeepLink";
754
+ const _sE = "sessionEnabled";
755
+ const _sEC = "standardErrContent";
756
+ const _sGI = "securityGroupIds";
757
+ const _sI = "sandboxId";
758
+ const _sIe = "sessionId";
759
+ const _sIo = "sourceIdentifier";
760
+ const _sIu = "subnetId";
761
+ const _sL = "s3Logs";
762
+ const _sLA = "s3LogsArn";
763
+ const _sLO = "sourceLocationOverride";
764
+ const _sM = "statusMessage";
765
+ const _sN = "streamName";
766
+ const _sNF = "sandboxesNotFound";
767
+ const _sO = "sortOrder";
768
+ const _sOC = "standardOutputContent";
769
+ const _sOh = "shouldOverwrite";
770
+ const _sR = "serviceRole";
771
+ const _sRO = "serviceRoleOverride";
772
+ const _sS = "secondarySources";
773
+ const _sSO = "secondarySourcesOverride";
774
+ const _sSV = "secondarySourceVersions";
775
+ const _sSVO = "secondarySourcesVersionOverride";
776
+ const _sSs = "ssmSession";
777
+ const _sT = "startTime";
778
+ const _sTO = "sourceTypeOverride";
779
+ const _sTc = "scalingType";
780
+ const _sTe = "sessionTarget";
781
+ const _sTer = "serverType";
782
+ const _sTu = "submitTime";
783
+ const _sU = "streamUrl";
784
+ const _sV = "sourceVersion";
785
+ const _sa = "sandboxes";
786
+ const _san = "sandbox";
787
+ const _sc = "scope";
788
+ const _se = "secret";
789
+ const _sh = "sha256sum";
790
+ const _so = "source";
791
+ const _st = "status";
792
+ const _sta = "stats";
793
+ const _su = "subnets";
794
+ const _t = "type";
795
+ const _tC = "testCases";
796
+ const _tF = "trendField";
797
+ const _tIM = "timeoutInMinutes";
798
+ const _tIMO = "timeoutInMinutesOverride";
799
+ const _tIMi = "timeoutInMins";
800
+ const _tRDP = "testRawDataPath";
801
+ const _tS = "testSummary";
802
+ const _tSN = "testSuiteName";
803
+ const _tTSC = "targetTrackingScalingConfigs";
804
+ const _tU = "targetUrl";
805
+ const _tV = "tokenValue";
806
+ const _tVa = "targetValue";
807
+ const _ta = "tags";
808
+ const _to = "token";
809
+ const _tot = "total";
810
+ const _tr = "truncated";
811
+ const _u = "username";
812
+ const _ur = "url";
813
+ const _v = "versions";
814
+ const _vC = "vpcConfig";
815
+ const _vCp = "vCpu";
816
+ const _vI = "vpcId";
817
+ const _va = "value";
818
+ const _w = "webhook";
819
+ const n0 = "com.amazonaws.codebuild";
820
+ const _s_registry = TypeRegistry.for(_s);
821
+ var CodeBuildServiceException$ = [-3, _s, "CodeBuildServiceException", 0, [], []];
822
+ _s_registry.registerError(CodeBuildServiceException$, CodeBuildServiceException);
823
+ const n0_registry = TypeRegistry.for(n0);
824
+ var AccountLimitExceededException$ = [-3, n0, _ALEE,
825
+ { [_e]: _c },
826
+ [_m],
827
+ [0]
828
+ ];
829
+ n0_registry.registerError(AccountLimitExceededException$, AccountLimitExceededException);
830
+ var AccountSuspendedException$ = [-3, n0, _ASE,
831
+ { [_e]: _c },
832
+ [_m],
833
+ [0]
834
+ ];
835
+ n0_registry.registerError(AccountSuspendedException$, AccountSuspendedException);
836
+ var InvalidInputException$ = [-3, n0, _IIE,
837
+ { [_e]: _c },
838
+ [_m],
839
+ [0]
840
+ ];
841
+ n0_registry.registerError(InvalidInputException$, InvalidInputException);
842
+ var OAuthProviderException$ = [-3, n0, _OAPE,
843
+ { [_e]: _c },
844
+ [_m],
845
+ [0]
846
+ ];
847
+ n0_registry.registerError(OAuthProviderException$, OAuthProviderException);
848
+ var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
849
+ { [_e]: _c },
850
+ [_m],
851
+ [0]
852
+ ];
853
+ n0_registry.registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
854
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
855
+ { [_e]: _c },
856
+ [_m],
857
+ [0]
858
+ ];
859
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
860
+ const errorTypeRegistries = [
861
+ _s_registry,
862
+ n0_registry,
863
+ ];
864
+ var SensitiveNonEmptyString = [0, n0, _SNES, 8, 0];
865
+ var SensitiveString = [0, n0, _SS, 8, 0];
866
+ var AutoRetryConfig$ = [3, n0, _ARC,
867
+ 0,
868
+ [_aRL, _aRN, _nAR, _pAR],
869
+ [1, 1, 0, 0]
870
+ ];
871
+ var BatchDeleteBuildsInput$ = [3, n0, _BDBI,
872
+ 0,
873
+ [_i],
874
+ [64 | 0], 1
875
+ ];
876
+ var BatchDeleteBuildsOutput$ = [3, n0, _BDBO,
877
+ 0,
878
+ [_bD, _bND],
879
+ [64 | 0, () => BuildsNotDeleted]
880
+ ];
881
+ var BatchGetBuildBatchesInput$ = [3, n0, _BGBBI,
882
+ 0,
883
+ [_i],
884
+ [64 | 0], 1
885
+ ];
886
+ var BatchGetBuildBatchesOutput$ = [3, n0, _BGBBO,
887
+ 0,
888
+ [_bB, _bBNF],
889
+ [() => BuildBatches, 64 | 0]
890
+ ];
891
+ var BatchGetBuildsInput$ = [3, n0, _BGBI,
892
+ 0,
893
+ [_i],
894
+ [64 | 0], 1
895
+ ];
896
+ var BatchGetBuildsOutput$ = [3, n0, _BGBO,
897
+ 0,
898
+ [_b, _bNF],
899
+ [() => Builds, 64 | 0]
900
+ ];
901
+ var BatchGetCommandExecutionsInput$ = [3, n0, _BGCEI,
902
+ 0,
903
+ [_sI, _cEI],
904
+ [0, 64 | 0], 2
905
+ ];
906
+ var BatchGetCommandExecutionsOutput$ = [3, n0, _BGCEO,
907
+ 0,
908
+ [_cE, _cENF],
909
+ [[() => CommandExecutions, 0], 64 | 0]
910
+ ];
911
+ var BatchGetFleetsInput$ = [3, n0, _BGFI,
912
+ 0,
913
+ [_n],
914
+ [64 | 0], 1
915
+ ];
916
+ var BatchGetFleetsOutput$ = [3, n0, _BGFO,
917
+ 0,
918
+ [_f, _fNF],
919
+ [() => Fleets, 64 | 0]
920
+ ];
921
+ var BatchGetProjectsInput$ = [3, n0, _BGPI,
922
+ 0,
923
+ [_n],
924
+ [64 | 0], 1
925
+ ];
926
+ var BatchGetProjectsOutput$ = [3, n0, _BGPO,
927
+ 0,
928
+ [_p, _pNF],
929
+ [() => Projects, 64 | 0]
930
+ ];
931
+ var BatchGetReportGroupsInput$ = [3, n0, _BGRGI,
932
+ 0,
933
+ [_rGA],
934
+ [64 | 0], 1
935
+ ];
936
+ var BatchGetReportGroupsOutput$ = [3, n0, _BGRGO,
937
+ 0,
938
+ [_rG, _rGNF],
939
+ [() => ReportGroups, 64 | 0]
940
+ ];
941
+ var BatchGetReportsInput$ = [3, n0, _BGRI,
942
+ 0,
943
+ [_rA],
944
+ [64 | 0], 1
945
+ ];
946
+ var BatchGetReportsOutput$ = [3, n0, _BGRO,
947
+ 0,
948
+ [_r, _rNF],
949
+ [() => Reports, 64 | 0]
950
+ ];
951
+ var BatchGetSandboxesInput$ = [3, n0, _BGSI,
952
+ 0,
953
+ [_i],
954
+ [64 | 0], 1
955
+ ];
956
+ var BatchGetSandboxesOutput$ = [3, n0, _BGSO,
957
+ 0,
958
+ [_sa, _sNF],
959
+ [() => Sandboxes, 64 | 0]
960
+ ];
961
+ var BatchRestrictions$ = [3, n0, _BR,
962
+ 0,
963
+ [_mBA, _cTA, _fA],
964
+ [1, 64 | 0, 64 | 0]
965
+ ];
966
+ var Build$ = [3, n0, _B,
967
+ 0,
968
+ [_id, _a, _bN, _sT, _eT, _cP, _bS, _sV, _rSV, _pN, _ph, _so, _sS, _sSV, _ar, _sA, _ca, _en, _sR, _l, _tIM, _qTIM, _bC, _in, _vC, _nI, _eK, _eEV, _rA, _fSL, _dS, _bBA, _aRC],
969
+ [0, 0, 1, 4, 4, 0, 0, 0, 0, 0, () => BuildPhases, () => ProjectSource$, () => ProjectSources, () => ProjectSecondarySourceVersions, () => BuildArtifacts$, () => BuildArtifactsList, () => ProjectCache$, () => ProjectEnvironment$, 0, () => LogsLocation$, 1, 1, 2, 0, () => VpcConfig$, () => NetworkInterface$, 0, () => ExportedEnvironmentVariables, 64 | 0, () => ProjectFileSystemLocations, () => DebugSession$, 0, () => AutoRetryConfig$]
970
+ ];
971
+ var BuildArtifacts$ = [3, n0, _BA,
972
+ 0,
973
+ [_lo, _sh, _md, _oAN, _eD, _aI, _bOA],
974
+ [0, 0, 0, 2, 2, 0, 0]
975
+ ];
976
+ var BuildBatch$ = [3, n0, _BB,
977
+ 0,
978
+ [_id, _a, _sT, _eT, _cP, _bBS, _sV, _rSV, _pN, _ph, _so, _sS, _sSV, _ar, _sA, _ca, _en, _sR, _lC, _bTIM, _qTIM, _co, _in, _vC, _eK, _bBN, _fSL, _bBC, _bG, _dSE, _rA],
979
+ [0, 0, 4, 4, 0, 0, 0, 0, 0, () => BuildBatchPhases, () => ProjectSource$, () => ProjectSources, () => ProjectSecondarySourceVersions, () => BuildArtifacts$, () => BuildArtifactsList, () => ProjectCache$, () => ProjectEnvironment$, 0, () => LogsConfig$, 1, 1, 2, 0, () => VpcConfig$, 0, 1, () => ProjectFileSystemLocations, () => ProjectBuildBatchConfig$, () => BuildGroups, 2, 64 | 0]
980
+ ];
981
+ var BuildBatchFilter$ = [3, n0, _BBF,
982
+ 0,
983
+ [_st],
984
+ [0]
985
+ ];
986
+ var BuildBatchPhase$ = [3, n0, _BBP,
987
+ 0,
988
+ [_pT, _pS, _sT, _eT, _dIS, _con],
989
+ [0, 0, 4, 4, 1, () => PhaseContexts]
990
+ ];
991
+ var BuildGroup$ = [3, n0, _BG,
992
+ 0,
993
+ [_ide, _dO, _iF, _cBS, _pBSL],
994
+ [0, 64 | 0, 2, () => BuildSummary$, () => BuildSummaries]
995
+ ];
996
+ var BuildNotDeleted$ = [3, n0, _BND,
997
+ 0,
998
+ [_id, _sC],
999
+ [0, 0]
1000
+ ];
1001
+ var BuildPhase$ = [3, n0, _BP,
1002
+ 0,
1003
+ [_pT, _pS, _sT, _eT, _dIS, _con],
1004
+ [0, 0, 4, 4, 1, () => PhaseContexts]
1005
+ ];
1006
+ var BuildStatusConfig$ = [3, n0, _BSC,
1007
+ 0,
1008
+ [_cont, _tU],
1009
+ [0, 0]
1010
+ ];
1011
+ var BuildSummary$ = [3, n0, _BS,
1012
+ 0,
1013
+ [_a, _rO, _bS, _pA, _sA],
1014
+ [0, 4, 0, () => ResolvedArtifact$, () => ResolvedSecondaryArtifacts]
1015
+ ];
1016
+ var CloudWatchLogsConfig$ = [3, n0, _CWLC,
1017
+ 0,
1018
+ [_st, _gN, _sN],
1019
+ [0, 0, 0], 1
1020
+ ];
1021
+ var CodeCoverage$ = [3, n0, _CC,
1022
+ 0,
1023
+ [_id, _rARN, _fP, _lCP, _lCi, _lM, _bCP, _bCr, _bM, _ex],
1024
+ [0, 0, 0, 1, 1, 1, 1, 1, 1, 4]
1025
+ ];
1026
+ var CodeCoverageReportSummary$ = [3, n0, _CCRS,
1027
+ 0,
1028
+ [_lCP, _lCi, _lM, _bCP, _bCr, _bM],
1029
+ [1, 1, 1, 1, 1, 1]
1030
+ ];
1031
+ var CommandExecution$ = [3, n0, _CE,
1032
+ 0,
1033
+ [_id, _sI, _sTu, _sT, _eT, _st, _com, _t, _eC, _sOC, _sEC, _l, _sAa],
1034
+ [0, 0, 4, 4, 4, 0, [() => SensitiveNonEmptyString, 0], 0, 0, [() => SensitiveNonEmptyString, 0], [() => SensitiveNonEmptyString, 0], () => LogsLocation$, 0]
1035
+ ];
1036
+ var ComputeConfiguration$ = [3, n0, _CCo,
1037
+ 0,
1038
+ [_vCp, _me, _d, _mT, _iT],
1039
+ [1, 1, 1, 0, 0]
1040
+ ];
1041
+ var CreateFleetInput$ = [3, n0, _CFI,
1042
+ 0,
1043
+ [_na, _bCa, _eTn, _cT, _cC, _sCc, _oB, _vC, _pC, _iI, _fSR, _ta],
1044
+ [0, 1, 0, 0, () => ComputeConfiguration$, () => ScalingConfigurationInput$, 0, () => VpcConfig$, () => ProxyConfiguration$, 0, 0, () => TagList], 4
1045
+ ];
1046
+ var CreateFleetOutput$ = [3, n0, _CFO,
1047
+ 0,
1048
+ [_fl],
1049
+ [() => Fleet$]
1050
+ ];
1051
+ var CreateProjectInput$ = [3, n0, _CPI,
1052
+ 0,
1053
+ [_na, _so, _ar, _en, _sR, _de, _sS, _sV, _sSV, _sA, _ca, _tIM, _qTIM, _eK, _ta, _vC, _bE, _lCo, _fSL, _bBC, _cBL, _aRL],
1054
+ [0, () => ProjectSource$, () => ProjectArtifacts$, () => ProjectEnvironment$, 0, 0, () => ProjectSources, 0, () => ProjectSecondarySourceVersions, () => ProjectArtifactsList, () => ProjectCache$, 1, 1, 0, () => TagList, () => VpcConfig$, 2, () => LogsConfig$, () => ProjectFileSystemLocations, () => ProjectBuildBatchConfig$, 1, 1], 5
1055
+ ];
1056
+ var CreateProjectOutput$ = [3, n0, _CPO,
1057
+ 0,
1058
+ [_pr],
1059
+ [() => Project$]
1060
+ ];
1061
+ var CreateReportGroupInput$ = [3, n0, _CRGI,
1062
+ 0,
1063
+ [_na, _t, _eCx, _ta],
1064
+ [0, 0, () => ReportExportConfig$, () => TagList], 3
1065
+ ];
1066
+ var CreateReportGroupOutput$ = [3, n0, _CRGO,
1067
+ 0,
1068
+ [_rGe],
1069
+ [() => ReportGroup$]
1070
+ ];
1071
+ var CreateWebhookInput$ = [3, n0, _CWI,
1072
+ 0,
1073
+ [_pN, _bF, _fG, _bT, _mC, _sCco, _pRBP],
1074
+ [0, 0, () => FilterGroups, 0, 2, () => ScopeConfiguration$, () => PullRequestBuildPolicy$], 1
1075
+ ];
1076
+ var CreateWebhookOutput$ = [3, n0, _CWO,
1077
+ 0,
1078
+ [_w],
1079
+ [() => Webhook$]
1080
+ ];
1081
+ var DebugSession$ = [3, n0, _DS,
1082
+ 0,
1083
+ [_sE, _sTe],
1084
+ [2, 0]
1085
+ ];
1086
+ var DeleteBuildBatchInput$ = [3, n0, _DBBI,
1087
+ 0,
1088
+ [_id],
1089
+ [0], 1
1090
+ ];
1091
+ var DeleteBuildBatchOutput$ = [3, n0, _DBBO,
1092
+ 0,
1093
+ [_sC, _bD, _bND],
1094
+ [0, 64 | 0, () => BuildsNotDeleted]
1095
+ ];
1096
+ var DeleteFleetInput$ = [3, n0, _DFI,
1097
+ 0,
1098
+ [_a],
1099
+ [0], 1
1100
+ ];
1101
+ var DeleteFleetOutput$ = [3, n0, _DFO,
1102
+ 0,
1103
+ [],
1104
+ []
1105
+ ];
1106
+ var DeleteProjectInput$ = [3, n0, _DPI,
1107
+ 0,
1108
+ [_na],
1109
+ [0], 1
1110
+ ];
1111
+ var DeleteProjectOutput$ = [3, n0, _DPO,
1112
+ 0,
1113
+ [],
1114
+ []
1115
+ ];
1116
+ var DeleteReportGroupInput$ = [3, n0, _DRGI,
1117
+ 0,
1118
+ [_a, _dR],
1119
+ [0, 2], 1
1120
+ ];
1121
+ var DeleteReportGroupOutput$ = [3, n0, _DRGO,
1122
+ 0,
1123
+ [],
1124
+ []
1125
+ ];
1126
+ var DeleteReportInput$ = [3, n0, _DRI,
1127
+ 0,
1128
+ [_a],
1129
+ [0], 1
1130
+ ];
1131
+ var DeleteReportOutput$ = [3, n0, _DRO,
1132
+ 0,
1133
+ [],
1134
+ []
1135
+ ];
1136
+ var DeleteResourcePolicyInput$ = [3, n0, _DRPI,
1137
+ 0,
1138
+ [_rAe],
1139
+ [0], 1
1140
+ ];
1141
+ var DeleteResourcePolicyOutput$ = [3, n0, _DRPO,
1142
+ 0,
1143
+ [],
1144
+ []
1145
+ ];
1146
+ var DeleteSourceCredentialsInput$ = [3, n0, _DSCI,
1147
+ 0,
1148
+ [_a],
1149
+ [0], 1
1150
+ ];
1151
+ var DeleteSourceCredentialsOutput$ = [3, n0, _DSCO,
1152
+ 0,
1153
+ [_a],
1154
+ [0]
1155
+ ];
1156
+ var DeleteWebhookInput$ = [3, n0, _DWI,
1157
+ 0,
1158
+ [_pN],
1159
+ [0], 1
1160
+ ];
1161
+ var DeleteWebhookOutput$ = [3, n0, _DWO,
1162
+ 0,
1163
+ [],
1164
+ []
1165
+ ];
1166
+ var DescribeCodeCoveragesInput$ = [3, n0, _DCCI,
1167
+ 0,
1168
+ [_rAep, _nT, _mR, _sO, _sB, _mLCP, _mLCPa],
1169
+ [0, 0, 1, 0, 0, 1, 1], 1
1170
+ ];
1171
+ var DescribeCodeCoveragesOutput$ = [3, n0, _DCCO,
1172
+ 0,
1173
+ [_nT, _cCo],
1174
+ [0, () => CodeCoverages]
1175
+ ];
1176
+ var DescribeTestCasesInput$ = [3, n0, _DTCI,
1177
+ 0,
1178
+ [_rAep, _nT, _mR, _fi],
1179
+ [0, 0, 1, () => TestCaseFilter$], 1
1180
+ ];
1181
+ var DescribeTestCasesOutput$ = [3, n0, _DTCO,
1182
+ 0,
1183
+ [_nT, _tC],
1184
+ [0, () => TestCases]
1185
+ ];
1186
+ var DockerServer$ = [3, n0, _DSo,
1187
+ 0,
1188
+ [_cT, _sGI, _st],
1189
+ [0, 64 | 0, () => DockerServerStatus$], 1
1190
+ ];
1191
+ var DockerServerStatus$ = [3, n0, _DSS,
1192
+ 0,
1193
+ [_st, _m],
1194
+ [0, 0]
1195
+ ];
1196
+ var EnvironmentImage$ = [3, n0, _EI,
1197
+ 0,
1198
+ [_na, _de, _v],
1199
+ [0, 0, 64 | 0]
1200
+ ];
1201
+ var EnvironmentLanguage$ = [3, n0, _EL,
1202
+ 0,
1203
+ [_la, _im],
1204
+ [0, () => EnvironmentImages]
1205
+ ];
1206
+ var EnvironmentPlatform$ = [3, n0, _EP,
1207
+ 0,
1208
+ [_pl, _lan],
1209
+ [0, () => EnvironmentLanguages]
1210
+ ];
1211
+ var EnvironmentVariable$ = [3, n0, _EV,
1212
+ 0,
1213
+ [_na, _va, _t],
1214
+ [0, 0, 0], 2
1215
+ ];
1216
+ var ExportedEnvironmentVariable$ = [3, n0, _EEV,
1217
+ 0,
1218
+ [_na, _va],
1219
+ [0, 0]
1220
+ ];
1221
+ var Fleet$ = [3, n0, _F,
1222
+ 0,
1223
+ [_a, _na, _id, _cr, _lMa, _st, _bCa, _eTn, _cT, _cC, _sCc, _oB, _vC, _pC, _iI, _fSR, _ta],
1224
+ [0, 0, 0, 4, 4, () => FleetStatus$, 1, 0, 0, () => ComputeConfiguration$, () => ScalingConfigurationOutput$, 0, () => VpcConfig$, () => ProxyConfiguration$, 0, 0, () => TagList]
1225
+ ];
1226
+ var FleetProxyRule$ = [3, n0, _FPR,
1227
+ 0,
1228
+ [_t, _ef, _ent],
1229
+ [0, 0, 64 | 0], 3
1230
+ ];
1231
+ var FleetStatus$ = [3, n0, _FS,
1232
+ 0,
1233
+ [_sC, _cont, _m],
1234
+ [0, 0, 0]
1235
+ ];
1236
+ var GetReportGroupTrendInput$ = [3, n0, _GRGTI,
1237
+ 0,
1238
+ [_rGAe, _tF, _nOR],
1239
+ [0, 0, 1], 2
1240
+ ];
1241
+ var GetReportGroupTrendOutput$ = [3, n0, _GRGTO,
1242
+ 0,
1243
+ [_sta, _rD],
1244
+ [() => ReportGroupTrendStats$, () => ReportGroupTrendRawDataList]
1245
+ ];
1246
+ var GetResourcePolicyInput$ = [3, n0, _GRPI,
1247
+ 0,
1248
+ [_rAe],
1249
+ [0], 1
1250
+ ];
1251
+ var GetResourcePolicyOutput$ = [3, n0, _GRPO,
1252
+ 0,
1253
+ [_po],
1254
+ [0]
1255
+ ];
1256
+ var GitSubmodulesConfig$ = [3, n0, _GSC,
1257
+ 0,
1258
+ [_fS],
1259
+ [2], 1
1260
+ ];
1261
+ var ImportSourceCredentialsInput$ = [3, n0, _ISCI,
1262
+ 0,
1263
+ [_to, _sTer, _aT, _u, _sOh],
1264
+ [[() => SensitiveNonEmptyString, 0], 0, 0, 0, 2], 3
1265
+ ];
1266
+ var ImportSourceCredentialsOutput$ = [3, n0, _ISCO,
1267
+ 0,
1268
+ [_a],
1269
+ [0]
1270
+ ];
1271
+ var InvalidateProjectCacheInput$ = [3, n0, _IPCI,
1272
+ 0,
1273
+ [_pN],
1274
+ [0], 1
1275
+ ];
1276
+ var InvalidateProjectCacheOutput$ = [3, n0, _IPCO,
1277
+ 0,
1278
+ [],
1279
+ []
1280
+ ];
1281
+ var ListBuildBatchesForProjectInput$ = [3, n0, _LBBFPI,
1282
+ 0,
1283
+ [_pN, _fi, _mR, _sO, _nT],
1284
+ [0, () => BuildBatchFilter$, 1, 0, 0]
1285
+ ];
1286
+ var ListBuildBatchesForProjectOutput$ = [3, n0, _LBBFPO,
1287
+ 0,
1288
+ [_i, _nT],
1289
+ [64 | 0, 0]
1290
+ ];
1291
+ var ListBuildBatchesInput$ = [3, n0, _LBBI,
1292
+ 0,
1293
+ [_fi, _mR, _sO, _nT],
1294
+ [() => BuildBatchFilter$, 1, 0, 0]
1295
+ ];
1296
+ var ListBuildBatchesOutput$ = [3, n0, _LBBO,
1297
+ 0,
1298
+ [_i, _nT],
1299
+ [64 | 0, 0]
1300
+ ];
1301
+ var ListBuildsForProjectInput$ = [3, n0, _LBFPI,
1302
+ 0,
1303
+ [_pN, _sO, _nT],
1304
+ [0, 0, 0], 1
1305
+ ];
1306
+ var ListBuildsForProjectOutput$ = [3, n0, _LBFPO,
1307
+ 0,
1308
+ [_i, _nT],
1309
+ [64 | 0, 0]
1310
+ ];
1311
+ var ListBuildsInput$ = [3, n0, _LBI,
1312
+ 0,
1313
+ [_sO, _nT],
1314
+ [0, 0]
1315
+ ];
1316
+ var ListBuildsOutput$ = [3, n0, _LBO,
1317
+ 0,
1318
+ [_i, _nT],
1319
+ [64 | 0, 0]
1320
+ ];
1321
+ var ListCommandExecutionsForSandboxInput$ = [3, n0, _LCEFSI,
1322
+ 0,
1323
+ [_sI, _mR, _sO, _nT],
1324
+ [0, 1, 0, [() => SensitiveString, 0]], 1
1325
+ ];
1326
+ var ListCommandExecutionsForSandboxOutput$ = [3, n0, _LCEFSO,
1327
+ 0,
1328
+ [_cE, _nT],
1329
+ [[() => CommandExecutions, 0], 0]
1330
+ ];
1331
+ var ListCuratedEnvironmentImagesInput$ = [3, n0, _LCEII,
1332
+ 0,
1333
+ [],
1334
+ []
1335
+ ];
1336
+ var ListCuratedEnvironmentImagesOutput$ = [3, n0, _LCEIO,
1337
+ 0,
1338
+ [_pla],
1339
+ [() => EnvironmentPlatforms]
1340
+ ];
1341
+ var ListFleetsInput$ = [3, n0, _LFI,
1342
+ 0,
1343
+ [_nT, _mR, _sO, _sB],
1344
+ [[() => SensitiveString, 0], 1, 0, 0]
1345
+ ];
1346
+ var ListFleetsOutput$ = [3, n0, _LFO,
1347
+ 0,
1348
+ [_nT, _f],
1349
+ [0, 64 | 0]
1350
+ ];
1351
+ var ListProjectsInput$ = [3, n0, _LPI,
1352
+ 0,
1353
+ [_sB, _sO, _nT],
1354
+ [0, 0, 0]
1355
+ ];
1356
+ var ListProjectsOutput$ = [3, n0, _LPO,
1357
+ 0,
1358
+ [_nT, _p],
1359
+ [0, 64 | 0]
1360
+ ];
1361
+ var ListReportGroupsInput$ = [3, n0, _LRGI,
1362
+ 0,
1363
+ [_sO, _sB, _nT, _mR],
1364
+ [0, 0, 0, 1]
1365
+ ];
1366
+ var ListReportGroupsOutput$ = [3, n0, _LRGO,
1367
+ 0,
1368
+ [_nT, _rG],
1369
+ [0, 64 | 0]
1370
+ ];
1371
+ var ListReportsForReportGroupInput$ = [3, n0, _LRFRGI,
1372
+ 0,
1373
+ [_rGAe, _nT, _sO, _mR, _fi],
1374
+ [0, 0, 0, 1, () => ReportFilter$], 1
1375
+ ];
1376
+ var ListReportsForReportGroupOutput$ = [3, n0, _LRFRGO,
1377
+ 0,
1378
+ [_nT, _r],
1379
+ [0, 64 | 0]
1380
+ ];
1381
+ var ListReportsInput$ = [3, n0, _LRI,
1382
+ 0,
1383
+ [_sO, _nT, _mR, _fi],
1384
+ [0, 0, 1, () => ReportFilter$]
1385
+ ];
1386
+ var ListReportsOutput$ = [3, n0, _LRO,
1387
+ 0,
1388
+ [_nT, _r],
1389
+ [0, 64 | 0]
1390
+ ];
1391
+ var ListSandboxesForProjectInput$ = [3, n0, _LSFPI,
1392
+ 0,
1393
+ [_pN, _mR, _sO, _nT],
1394
+ [0, 1, 0, [() => SensitiveString, 0]], 1
1395
+ ];
1396
+ var ListSandboxesForProjectOutput$ = [3, n0, _LSFPO,
1397
+ 0,
1398
+ [_i, _nT],
1399
+ [64 | 0, 0]
1400
+ ];
1401
+ var ListSandboxesInput$ = [3, n0, _LSI,
1402
+ 0,
1403
+ [_mR, _sO, _nT],
1404
+ [1, 0, 0]
1405
+ ];
1406
+ var ListSandboxesOutput$ = [3, n0, _LSO,
1407
+ 0,
1408
+ [_i, _nT],
1409
+ [64 | 0, 0]
1410
+ ];
1411
+ var ListSharedProjectsInput$ = [3, n0, _LSPI,
1412
+ 0,
1413
+ [_sB, _sO, _mR, _nT],
1414
+ [0, 0, 1, 0]
1415
+ ];
1416
+ var ListSharedProjectsOutput$ = [3, n0, _LSPO,
1417
+ 0,
1418
+ [_nT, _p],
1419
+ [0, 64 | 0]
1420
+ ];
1421
+ var ListSharedReportGroupsInput$ = [3, n0, _LSRGI,
1422
+ 0,
1423
+ [_sO, _sB, _nT, _mR],
1424
+ [0, 0, 0, 1]
1425
+ ];
1426
+ var ListSharedReportGroupsOutput$ = [3, n0, _LSRGO,
1427
+ 0,
1428
+ [_nT, _rG],
1429
+ [0, 64 | 0]
1430
+ ];
1431
+ var ListSourceCredentialsInput$ = [3, n0, _LSCI,
1432
+ 0,
1433
+ [],
1434
+ []
1435
+ ];
1436
+ var ListSourceCredentialsOutput$ = [3, n0, _LSCO,
1437
+ 0,
1438
+ [_sCI],
1439
+ [() => SourceCredentialsInfos]
1440
+ ];
1441
+ var LogsConfig$ = [3, n0, _LC,
1442
+ 0,
1443
+ [_cWL, _sL],
1444
+ [() => CloudWatchLogsConfig$, () => S3LogsConfig$]
1445
+ ];
1446
+ var LogsLocation$ = [3, n0, _LL,
1447
+ 0,
1448
+ [_gN, _sN, _dL, _sDL, _cWLA, _sLA, _cWL, _sL],
1449
+ [0, 0, 0, 0, 0, 0, () => CloudWatchLogsConfig$, () => S3LogsConfig$]
1450
+ ];
1451
+ var NetworkInterface$ = [3, n0, _NI,
1452
+ 0,
1453
+ [_sIu, _nII],
1454
+ [0, 0]
1455
+ ];
1456
+ var PhaseContext$ = [3, n0, _PC,
1457
+ 0,
1458
+ [_sC, _m],
1459
+ [0, 0]
1460
+ ];
1461
+ var Project$ = [3, n0, _P,
1462
+ 0,
1463
+ [_na, _a, _de, _so, _sS, _sV, _sSV, _ar, _sA, _ca, _en, _sR, _tIM, _qTIM, _eK, _ta, _cr, _lMa, _w, _vC, _ba, _lCo, _fSL, _bBC, _cBL, _pV, _pPA, _rAR, _aRL],
1464
+ [0, 0, 0, () => ProjectSource$, () => ProjectSources, 0, () => ProjectSecondarySourceVersions, () => ProjectArtifacts$, () => ProjectArtifactsList, () => ProjectCache$, () => ProjectEnvironment$, 0, 1, 1, 0, () => TagList, 4, 4, () => Webhook$, () => VpcConfig$, () => ProjectBadge$, () => LogsConfig$, () => ProjectFileSystemLocations, () => ProjectBuildBatchConfig$, 1, 0, 0, 0, 1]
1465
+ ];
1466
+ var ProjectArtifacts$ = [3, n0, _PA,
1467
+ 0,
1468
+ [_t, _lo, _pa, _nTa, _na, _pac, _oAN, _eD, _aI, _bOA],
1469
+ [0, 0, 0, 0, 0, 0, 2, 2, 0, 0], 1
1470
+ ];
1471
+ var ProjectBadge$ = [3, n0, _PB,
1472
+ 0,
1473
+ [_bE, _bRU],
1474
+ [2, 0]
1475
+ ];
1476
+ var ProjectBuildBatchConfig$ = [3, n0, _PBBC,
1477
+ 0,
1478
+ [_sR, _cA, _re, _tIMi, _bRM],
1479
+ [0, 2, () => BatchRestrictions$, 1, 0]
1480
+ ];
1481
+ var ProjectCache$ = [3, n0, _PCr,
1482
+ 0,
1483
+ [_t, _lo, _mo, _cN],
1484
+ [0, 0, 64 | 0, 0], 1
1485
+ ];
1486
+ var ProjectEnvironment$ = [3, n0, _PE,
1487
+ 0,
1488
+ [_t, _ima, _cT, _cC, _fl, _eV, _pM, _ce, _rC, _iPCT, _dSo],
1489
+ [0, 0, 0, () => ComputeConfiguration$, () => ProjectFleet$, () => EnvironmentVariables, 2, 0, () => RegistryCredential$, 0, () => DockerServer$], 3
1490
+ ];
1491
+ var ProjectFileSystemLocation$ = [3, n0, _PFSL,
1492
+ 0,
1493
+ [_t, _lo, _mP, _ide, _mO],
1494
+ [0, 0, 0, 0, 0]
1495
+ ];
1496
+ var ProjectFleet$ = [3, n0, _PF,
1497
+ 0,
1498
+ [_fAl],
1499
+ [0]
1500
+ ];
1501
+ var ProjectSource$ = [3, n0, _PS,
1502
+ 0,
1503
+ [_t, _lo, _gCD, _gSC, _bu, _au, _rBS, _bSC, _iS, _sIo],
1504
+ [0, 0, 1, () => GitSubmodulesConfig$, 0, () => SourceAuth$, 2, () => BuildStatusConfig$, 2, 0], 1
1505
+ ];
1506
+ var ProjectSourceVersion$ = [3, n0, _PSV,
1507
+ 0,
1508
+ [_sIo, _sV],
1509
+ [0, 0], 2
1510
+ ];
1511
+ var ProxyConfiguration$ = [3, n0, _PCro,
1512
+ 0,
1513
+ [_dB, _oPR],
1514
+ [0, () => FleetProxyRules]
1515
+ ];
1516
+ var PullRequestBuildPolicy$ = [3, n0, _PRBP,
1517
+ 0,
1518
+ [_rCA, _aR],
1519
+ [0, 64 | 0], 1
1520
+ ];
1521
+ var PutResourcePolicyInput$ = [3, n0, _PRPI,
1522
+ 0,
1523
+ [_po, _rAe],
1524
+ [0, 0], 2
1525
+ ];
1526
+ var PutResourcePolicyOutput$ = [3, n0, _PRPO,
1527
+ 0,
1528
+ [_rAe],
1529
+ [0]
1530
+ ];
1531
+ var RegistryCredential$ = [3, n0, _RC,
1532
+ 0,
1533
+ [_cre, _cPr],
1534
+ [0, 0], 2
1535
+ ];
1536
+ var Report$ = [3, n0, _R,
1537
+ 0,
1538
+ [_a, _t, _na, _rGAe, _eI, _st, _cr, _ex, _eCx, _tr, _tS, _cCS],
1539
+ [0, 0, 0, 0, 0, 0, 4, 4, () => ReportExportConfig$, 2, () => TestReportSummary$, () => CodeCoverageReportSummary$]
1540
+ ];
1541
+ var ReportExportConfig$ = [3, n0, _REC,
1542
+ 0,
1543
+ [_eCT, _sD],
1544
+ [0, () => S3ReportExportConfig$]
1545
+ ];
1546
+ var ReportFilter$ = [3, n0, _RF,
1547
+ 0,
1548
+ [_st],
1549
+ [0]
1550
+ ];
1551
+ var ReportGroup$ = [3, n0, _RG,
1552
+ 0,
1553
+ [_a, _na, _t, _eCx, _cr, _lMa, _ta, _st],
1554
+ [0, 0, 0, () => ReportExportConfig$, 4, 4, () => TagList, 0]
1555
+ ];
1556
+ var ReportGroupTrendStats$ = [3, n0, _RGTS,
1557
+ 0,
1558
+ [_av, _ma, _mi],
1559
+ [0, 0, 0]
1560
+ ];
1561
+ var ReportWithRawData$ = [3, n0, _RWRD,
1562
+ 0,
1563
+ [_rAep, _da],
1564
+ [0, 0]
1565
+ ];
1566
+ var ResolvedArtifact$ = [3, n0, _RA,
1567
+ 0,
1568
+ [_t, _lo, _ide],
1569
+ [0, 0, 0]
1570
+ ];
1571
+ var RetryBuildBatchInput$ = [3, n0, _RBBI,
1572
+ 0,
1573
+ [_id, _iTd, _rT],
1574
+ [0, 0, 0]
1575
+ ];
1576
+ var RetryBuildBatchOutput$ = [3, n0, _RBBO,
1577
+ 0,
1578
+ [_bBu],
1579
+ [() => BuildBatch$]
1580
+ ];
1581
+ var RetryBuildInput$ = [3, n0, _RBI,
1582
+ 0,
1583
+ [_id, _iTd],
1584
+ [0, 0]
1585
+ ];
1586
+ var RetryBuildOutput$ = [3, n0, _RBO,
1587
+ 0,
1588
+ [_bui],
1589
+ [() => Build$]
1590
+ ];
1591
+ var S3LogsConfig$ = [3, n0, _SLC,
1592
+ 0,
1593
+ [_st, _lo, _eD, _bOA],
1594
+ [0, 0, 2, 0], 1
1595
+ ];
1596
+ var S3ReportExportConfig$ = [3, n0, _SREC,
1597
+ 0,
1598
+ [_buc, _bO, _pa, _pac, _eK, _eD],
1599
+ [0, 0, 0, 0, 0, 2]
1600
+ ];
1601
+ var Sandbox$ = [3, n0, _S,
1602
+ 0,
1603
+ [_id, _a, _pN, _rTe, _sT, _eT, _st, _so, _sV, _sS, _sSV, _en, _fSL, _tIM, _qTIM, _vC, _lC, _eK, _sR, _cS],
1604
+ [0, 0, 0, 4, 4, 4, 0, () => ProjectSource$, 0, () => ProjectSources, () => ProjectSecondarySourceVersions, () => ProjectEnvironment$, () => ProjectFileSystemLocations, 1, 1, () => VpcConfig$, () => LogsConfig$, 0, 0, () => SandboxSession$]
1605
+ ];
1606
+ var SandboxSession$ = [3, n0, _SSa,
1607
+ 0,
1608
+ [_id, _st, _sT, _eT, _cP, _ph, _rSV, _l, _nI],
1609
+ [0, 0, 4, 4, 0, () => SandboxSessionPhases, 0, () => LogsLocation$, () => NetworkInterface$]
1610
+ ];
1611
+ var SandboxSessionPhase$ = [3, n0, _SSP,
1612
+ 0,
1613
+ [_pT, _pS, _sT, _eT, _dIS, _con],
1614
+ [0, 0, 4, 4, 1, () => PhaseContexts]
1615
+ ];
1616
+ var ScalingConfigurationInput$ = [3, n0, _SCI,
1617
+ 0,
1618
+ [_sTc, _tTSC, _mCa],
1619
+ [0, () => TargetTrackingScalingConfigurations, 1]
1620
+ ];
1621
+ var ScalingConfigurationOutput$ = [3, n0, _SCO,
1622
+ 0,
1623
+ [_sTc, _tTSC, _mCa, _dC],
1624
+ [0, () => TargetTrackingScalingConfigurations, 1, 1]
1625
+ ];
1626
+ var ScopeConfiguration$ = [3, n0, _SC,
1627
+ 0,
1628
+ [_na, _sc, _do],
1629
+ [0, 0, 0], 2
1630
+ ];
1631
+ var SourceAuth$ = [3, n0, _SA,
1632
+ 0,
1633
+ [_t, _res],
1634
+ [0, 0], 1
1635
+ ];
1636
+ var SourceCredentialsInfo$ = [3, n0, _SCIo,
1637
+ 0,
1638
+ [_a, _sTer, _aT, _res],
1639
+ [0, 0, 0, 0]
1640
+ ];
1641
+ var SSMSession$ = [3, n0, _SSMS,
1642
+ 0,
1643
+ [_sIe, _tV, _sU],
1644
+ [0, 0, 0]
1645
+ ];
1646
+ var StartBuildBatchInput$ = [3, n0, _SBBI,
1647
+ 0,
1648
+ [_pN, _sSO, _sSVO, _sV, _aO, _sAO, _eVO, _sTO, _sLO, _sAOo, _gCDO, _gSCO, _bOu, _iSO, _rBBSO, _eTO, _iO, _cTO, _cO, _cOa, _sRO, _pMO, _bTIMO, _qTIMO, _eKO, _iTd, _lCO, _rCO, _iPCTO, _bBCO, _dSE],
1649
+ [0, () => ProjectSources, () => ProjectSecondarySourceVersions, 0, () => ProjectArtifacts$, () => ProjectArtifactsList, () => EnvironmentVariables, 0, 0, () => SourceAuth$, 1, () => GitSubmodulesConfig$, 0, 2, 2, 0, 0, 0, 0, () => ProjectCache$, 0, 2, 1, 1, 0, 0, () => LogsConfig$, () => RegistryCredential$, 0, () => ProjectBuildBatchConfig$, 2], 1
1650
+ ];
1651
+ var StartBuildBatchOutput$ = [3, n0, _SBBO,
1652
+ 0,
1653
+ [_bBu],
1654
+ [() => BuildBatch$]
1655
+ ];
1656
+ var StartBuildInput$ = [3, n0, _SBI,
1657
+ 0,
1658
+ [_pN, _sSO, _sSVO, _sV, _aO, _sAO, _eVO, _sTO, _sLO, _sAOo, _gCDO, _gSCO, _bOu, _iSO, _rBSO, _bSCO, _eTO, _iO, _cTO, _cO, _cOa, _sRO, _pMO, _tIMO, _qTIMO, _eKO, _iTd, _lCO, _rCO, _iPCTO, _dSE, _fO, _aRLO],
1659
+ [0, () => ProjectSources, () => ProjectSecondarySourceVersions, 0, () => ProjectArtifacts$, () => ProjectArtifactsList, () => EnvironmentVariables, 0, 0, () => SourceAuth$, 1, () => GitSubmodulesConfig$, 0, 2, 2, () => BuildStatusConfig$, 0, 0, 0, 0, () => ProjectCache$, 0, 2, 1, 1, 0, 0, () => LogsConfig$, () => RegistryCredential$, 0, 2, () => ProjectFleet$, 1], 1
1660
+ ];
1661
+ var StartBuildOutput$ = [3, n0, _SBO,
1662
+ 0,
1663
+ [_bui],
1664
+ [() => Build$]
1665
+ ];
1666
+ var StartCommandExecutionInput$ = [3, n0, _SCEI,
1667
+ 0,
1668
+ [_sI, _com, _t],
1669
+ [0, [() => SensitiveNonEmptyString, 0], 0], 2
1670
+ ];
1671
+ var StartCommandExecutionOutput$ = [3, n0, _SCEO,
1672
+ 0,
1673
+ [_cEo],
1674
+ [[() => CommandExecution$, 0]]
1675
+ ];
1676
+ var StartSandboxConnectionInput$ = [3, n0, _SSCI,
1677
+ 0,
1678
+ [_sI],
1679
+ [0], 1
1680
+ ];
1681
+ var StartSandboxConnectionOutput$ = [3, n0, _SSCO,
1682
+ 0,
1683
+ [_sSs],
1684
+ [() => SSMSession$]
1685
+ ];
1686
+ var StartSandboxInput$ = [3, n0, _SSI,
1687
+ 0,
1688
+ [_pN, _iTd],
1689
+ [0, [() => SensitiveString, 0]]
1690
+ ];
1691
+ var StartSandboxOutput$ = [3, n0, _SSO,
1692
+ 0,
1693
+ [_san],
1694
+ [() => Sandbox$]
1695
+ ];
1696
+ var StopBuildBatchInput$ = [3, n0, _SBBIt,
1697
+ 0,
1698
+ [_id],
1699
+ [0], 1
1700
+ ];
1701
+ var StopBuildBatchOutput$ = [3, n0, _SBBOt,
1702
+ 0,
1703
+ [_bBu],
1704
+ [() => BuildBatch$]
1705
+ ];
1706
+ var StopBuildInput$ = [3, n0, _SBIt,
1707
+ 0,
1708
+ [_id],
1709
+ [0], 1
1710
+ ];
1711
+ var StopBuildOutput$ = [3, n0, _SBOt,
1712
+ 0,
1713
+ [_bui],
1714
+ [() => Build$]
1715
+ ];
1716
+ var StopSandboxInput$ = [3, n0, _SSIt,
1717
+ 0,
1718
+ [_id],
1719
+ [0], 1
1720
+ ];
1721
+ var StopSandboxOutput$ = [3, n0, _SSOt,
1722
+ 0,
1723
+ [_san],
1724
+ [() => Sandbox$]
1725
+ ];
1726
+ var Tag$ = [3, n0, _T,
1727
+ 0,
1728
+ [_k, _va],
1729
+ [0, 0]
1730
+ ];
1731
+ var TargetTrackingScalingConfiguration$ = [3, n0, _TTSC,
1732
+ 0,
1733
+ [_mTe, _tVa],
1734
+ [0, 1]
1735
+ ];
1736
+ var TestCase$ = [3, n0, _TC,
1737
+ 0,
1738
+ [_rAep, _tRDP, _pre, _na, _st, _dINS, _m, _ex, _tSN],
1739
+ [0, 0, 0, 0, 0, 1, 0, 4, 0]
1740
+ ];
1741
+ var TestCaseFilter$ = [3, n0, _TCF,
1742
+ 0,
1743
+ [_st, _ke],
1744
+ [0, 0]
1745
+ ];
1746
+ var TestReportSummary$ = [3, n0, _TRS,
1747
+ 0,
1748
+ [_tot, _sCt, _dINS],
1749
+ [1, 128 | 1, 1], 3
1750
+ ];
1751
+ var UpdateFleetInput$ = [3, n0, _UFI,
1752
+ 0,
1753
+ [_a, _bCa, _eTn, _cT, _cC, _sCc, _oB, _vC, _pC, _iI, _fSR, _ta],
1754
+ [0, 1, 0, 0, () => ComputeConfiguration$, () => ScalingConfigurationInput$, 0, () => VpcConfig$, () => ProxyConfiguration$, 0, 0, () => TagList], 1
1755
+ ];
1756
+ var UpdateFleetOutput$ = [3, n0, _UFO,
1757
+ 0,
1758
+ [_fl],
1759
+ [() => Fleet$]
1760
+ ];
1761
+ var UpdateProjectInput$ = [3, n0, _UPI,
1762
+ 0,
1763
+ [_na, _de, _so, _sS, _sV, _sSV, _ar, _sA, _ca, _en, _sR, _tIM, _qTIM, _eK, _ta, _vC, _bE, _lCo, _fSL, _bBC, _cBL, _aRL],
1764
+ [0, 0, () => ProjectSource$, () => ProjectSources, 0, () => ProjectSecondarySourceVersions, () => ProjectArtifacts$, () => ProjectArtifactsList, () => ProjectCache$, () => ProjectEnvironment$, 0, 1, 1, 0, () => TagList, () => VpcConfig$, 2, () => LogsConfig$, () => ProjectFileSystemLocations, () => ProjectBuildBatchConfig$, 1, 1], 1
1765
+ ];
1766
+ var UpdateProjectOutput$ = [3, n0, _UPO,
1767
+ 0,
1768
+ [_pr],
1769
+ [() => Project$]
1770
+ ];
1771
+ var UpdateProjectVisibilityInput$ = [3, n0, _UPVI,
1772
+ 0,
1773
+ [_pAr, _pV, _rAR],
1774
+ [0, 0, 0], 2
1775
+ ];
1776
+ var UpdateProjectVisibilityOutput$ = [3, n0, _UPVO,
1777
+ 0,
1778
+ [_pAr, _pPA, _pV],
1779
+ [0, 0, 0]
1780
+ ];
1781
+ var UpdateReportGroupInput$ = [3, n0, _URGI,
1782
+ 0,
1783
+ [_a, _eCx, _ta],
1784
+ [0, () => ReportExportConfig$, () => TagList], 1
1785
+ ];
1786
+ var UpdateReportGroupOutput$ = [3, n0, _URGO,
1787
+ 0,
1788
+ [_rGe],
1789
+ [() => ReportGroup$]
1790
+ ];
1791
+ var UpdateWebhookInput$ = [3, n0, _UWI,
1792
+ 0,
1793
+ [_pN, _bF, _rS, _fG, _bT, _pRBP],
1794
+ [0, 0, 2, () => FilterGroups, 0, () => PullRequestBuildPolicy$], 1
1795
+ ];
1796
+ var UpdateWebhookOutput$ = [3, n0, _UWO,
1797
+ 0,
1798
+ [_w],
1799
+ [() => Webhook$]
1800
+ ];
1801
+ var VpcConfig$ = [3, n0, _VC,
1802
+ 0,
1803
+ [_vI, _su, _sGI],
1804
+ [0, 64 | 0, 64 | 0]
1805
+ ];
1806
+ var Webhook$ = [3, n0, _W,
1807
+ 0,
1808
+ [_ur, _pU, _se, _bF, _fG, _bT, _mC, _lMS, _sCco, _st, _sM, _pRBP],
1809
+ [0, 0, 0, 0, () => FilterGroups, 0, 2, 4, () => ScopeConfiguration$, 0, 0, () => PullRequestBuildPolicy$]
1810
+ ];
1811
+ var WebhookFilter$ = [3, n0, _WF,
1812
+ 0,
1813
+ [_t, _pat, _eMP],
1814
+ [0, 0, 2], 2
1815
+ ];
1816
+ var BuildArtifactsList = [1, n0, _BAL,
1817
+ 0, () => BuildArtifacts$
1818
+ ];
1819
+ var BuildBatches = [1, n0, _BBu,
1820
+ 0, () => BuildBatch$
1821
+ ];
1822
+ var BuildBatchPhases = [1, n0, _BBPu,
1823
+ 0, () => BuildBatchPhase$
1824
+ ];
1825
+ var BuildGroups = [1, n0, _BGu,
1826
+ 0, () => BuildGroup$
1827
+ ];
1828
+ var BuildPhases = [1, n0, _BPu,
1829
+ 0, () => BuildPhase$
1830
+ ];
1831
+ var Builds = [1, n0, _Bu,
1832
+ 0, () => Build$
1833
+ ];
1834
+ var BuildsNotDeleted = [1, n0, _BNDu,
1835
+ 0, () => BuildNotDeleted$
1836
+ ];
1837
+ var BuildSummaries = [1, n0, _BSu,
1838
+ 0, () => BuildSummary$
1839
+ ];
1840
+ var CodeCoverages = [1, n0, _CCod,
1841
+ 0, () => CodeCoverage$
1842
+ ];
1843
+ var CommandExecutions = [1, n0, _CEo,
1844
+ 0, [() => CommandExecution$,
1845
+ 0]
1846
+ ];
1847
+ var EnvironmentImages = [1, n0, _EIn,
1848
+ 0, () => EnvironmentImage$
1849
+ ];
1850
+ var EnvironmentLanguages = [1, n0, _ELn,
1851
+ 0, () => EnvironmentLanguage$
1852
+ ];
1853
+ var EnvironmentPlatforms = [1, n0, _EPn,
1854
+ 0, () => EnvironmentPlatform$
1855
+ ];
1856
+ var EnvironmentVariables = [1, n0, _EVn,
1857
+ 0, () => EnvironmentVariable$
1858
+ ];
1859
+ var ExportedEnvironmentVariables = [1, n0, _EEVx,
1860
+ 0, () => ExportedEnvironmentVariable$
1861
+ ];
1862
+ var FilterGroup = [1, n0, _FGi,
1863
+ 0, () => WebhookFilter$
1864
+ ];
1865
+ var FilterGroups = [1, n0, _FG,
1866
+ 0, () => FilterGroup
1867
+ ];
1868
+ var FleetProxyRules = [1, n0, _FPRl,
1869
+ 0, () => FleetProxyRule$
1870
+ ];
1871
+ var Fleets = [1, n0, _Fl,
1872
+ 0, () => Fleet$
1873
+ ];
1874
+ var PhaseContexts = [1, n0, _PCh,
1875
+ 0, () => PhaseContext$
1876
+ ];
1877
+ var ProjectArtifactsList = [1, n0, _PAL,
1878
+ 0, () => ProjectArtifacts$
1879
+ ];
1880
+ var ProjectFileSystemLocations = [1, n0, _PFSLr,
1881
+ 0, () => ProjectFileSystemLocation$
1882
+ ];
1883
+ var Projects = [1, n0, _Pr,
1884
+ 0, () => Project$
1885
+ ];
1886
+ var ProjectSecondarySourceVersions = [1, n0, _PSSV,
1887
+ 0, () => ProjectSourceVersion$
1888
+ ];
1889
+ var ProjectSources = [1, n0, _PSr,
1890
+ 0, () => ProjectSource$
1891
+ ];
1892
+ var ReportGroups = [1, n0, _RGe,
1893
+ 0, () => ReportGroup$
1894
+ ];
1895
+ var ReportGroupTrendRawDataList = [1, n0, _RGTRDL,
1896
+ 0, () => ReportWithRawData$
1897
+ ];
1898
+ var Reports = [1, n0, _Re,
1899
+ 0, () => Report$
1900
+ ];
1901
+ var ResolvedSecondaryArtifacts = [1, n0, _RSA,
1902
+ 0, () => ResolvedArtifact$
1903
+ ];
1904
+ var Sandboxes = [1, n0, _Sa,
1905
+ 0, () => Sandbox$
1906
+ ];
1907
+ var SandboxSessionPhases = [1, n0, _SSPa,
1908
+ 0, () => SandboxSessionPhase$
1909
+ ];
1910
+ var SourceCredentialsInfos = [1, n0, _SCIou,
1911
+ 0, () => SourceCredentialsInfo$
1912
+ ];
1913
+ var TagList = [1, n0, _TL,
1914
+ 0, () => Tag$
1915
+ ];
1916
+ var TargetTrackingScalingConfigurations = [1, n0, _TTSCa,
1917
+ 0, () => TargetTrackingScalingConfiguration$
1918
+ ];
1919
+ var TestCases = [1, n0, _TCe,
1920
+ 0, () => TestCase$
1921
+ ];
1922
+ var BatchDeleteBuilds$ = [9, n0, _BDB,
1923
+ 0, () => BatchDeleteBuildsInput$, () => BatchDeleteBuildsOutput$
1924
+ ];
1925
+ var BatchGetBuildBatches$ = [9, n0, _BGBB,
1926
+ 0, () => BatchGetBuildBatchesInput$, () => BatchGetBuildBatchesOutput$
1927
+ ];
1928
+ var BatchGetBuilds$ = [9, n0, _BGB,
1929
+ 0, () => BatchGetBuildsInput$, () => BatchGetBuildsOutput$
1930
+ ];
1931
+ var BatchGetCommandExecutions$ = [9, n0, _BGCE,
1932
+ 0, () => BatchGetCommandExecutionsInput$, () => BatchGetCommandExecutionsOutput$
1933
+ ];
1934
+ var BatchGetFleets$ = [9, n0, _BGF,
1935
+ 0, () => BatchGetFleetsInput$, () => BatchGetFleetsOutput$
1936
+ ];
1937
+ var BatchGetProjects$ = [9, n0, _BGP,
1938
+ 0, () => BatchGetProjectsInput$, () => BatchGetProjectsOutput$
1939
+ ];
1940
+ var BatchGetReportGroups$ = [9, n0, _BGRG,
1941
+ 0, () => BatchGetReportGroupsInput$, () => BatchGetReportGroupsOutput$
1942
+ ];
1943
+ var BatchGetReports$ = [9, n0, _BGR,
1944
+ 0, () => BatchGetReportsInput$, () => BatchGetReportsOutput$
1945
+ ];
1946
+ var BatchGetSandboxes$ = [9, n0, _BGS,
1947
+ 0, () => BatchGetSandboxesInput$, () => BatchGetSandboxesOutput$
1948
+ ];
1949
+ var CreateFleet$ = [9, n0, _CF,
1950
+ 0, () => CreateFleetInput$, () => CreateFleetOutput$
1951
+ ];
1952
+ var CreateProject$ = [9, n0, _CP,
1953
+ 0, () => CreateProjectInput$, () => CreateProjectOutput$
1954
+ ];
1955
+ var CreateReportGroup$ = [9, n0, _CRG,
1956
+ 0, () => CreateReportGroupInput$, () => CreateReportGroupOutput$
1957
+ ];
1958
+ var CreateWebhook$ = [9, n0, _CW,
1959
+ 0, () => CreateWebhookInput$, () => CreateWebhookOutput$
1960
+ ];
1961
+ var DeleteBuildBatch$ = [9, n0, _DBB,
1962
+ 0, () => DeleteBuildBatchInput$, () => DeleteBuildBatchOutput$
1963
+ ];
1964
+ var DeleteFleet$ = [9, n0, _DF,
1965
+ 0, () => DeleteFleetInput$, () => DeleteFleetOutput$
1966
+ ];
1967
+ var DeleteProject$ = [9, n0, _DP,
1968
+ 0, () => DeleteProjectInput$, () => DeleteProjectOutput$
1969
+ ];
1970
+ var DeleteReport$ = [9, n0, _DR,
1971
+ 0, () => DeleteReportInput$, () => DeleteReportOutput$
1972
+ ];
1973
+ var DeleteReportGroup$ = [9, n0, _DRG,
1974
+ 0, () => DeleteReportGroupInput$, () => DeleteReportGroupOutput$
1975
+ ];
1976
+ var DeleteResourcePolicy$ = [9, n0, _DRP,
1977
+ 0, () => DeleteResourcePolicyInput$, () => DeleteResourcePolicyOutput$
1978
+ ];
1979
+ var DeleteSourceCredentials$ = [9, n0, _DSC,
1980
+ 0, () => DeleteSourceCredentialsInput$, () => DeleteSourceCredentialsOutput$
1981
+ ];
1982
+ var DeleteWebhook$ = [9, n0, _DW,
1983
+ 0, () => DeleteWebhookInput$, () => DeleteWebhookOutput$
1984
+ ];
1985
+ var DescribeCodeCoverages$ = [9, n0, _DCC,
1986
+ 0, () => DescribeCodeCoveragesInput$, () => DescribeCodeCoveragesOutput$
1987
+ ];
1988
+ var DescribeTestCases$ = [9, n0, _DTC,
1989
+ 0, () => DescribeTestCasesInput$, () => DescribeTestCasesOutput$
1990
+ ];
1991
+ var GetReportGroupTrend$ = [9, n0, _GRGT,
1992
+ 0, () => GetReportGroupTrendInput$, () => GetReportGroupTrendOutput$
1993
+ ];
1994
+ var GetResourcePolicy$ = [9, n0, _GRP,
1995
+ 0, () => GetResourcePolicyInput$, () => GetResourcePolicyOutput$
1996
+ ];
1997
+ var ImportSourceCredentials$ = [9, n0, _ISC,
1998
+ 0, () => ImportSourceCredentialsInput$, () => ImportSourceCredentialsOutput$
1999
+ ];
2000
+ var InvalidateProjectCache$ = [9, n0, _IPC,
2001
+ 0, () => InvalidateProjectCacheInput$, () => InvalidateProjectCacheOutput$
2002
+ ];
2003
+ var ListBuildBatches$ = [9, n0, _LBB,
2004
+ 0, () => ListBuildBatchesInput$, () => ListBuildBatchesOutput$
2005
+ ];
2006
+ var ListBuildBatchesForProject$ = [9, n0, _LBBFP,
2007
+ 0, () => ListBuildBatchesForProjectInput$, () => ListBuildBatchesForProjectOutput$
2008
+ ];
2009
+ var ListBuilds$ = [9, n0, _LB,
2010
+ 0, () => ListBuildsInput$, () => ListBuildsOutput$
2011
+ ];
2012
+ var ListBuildsForProject$ = [9, n0, _LBFP,
2013
+ 0, () => ListBuildsForProjectInput$, () => ListBuildsForProjectOutput$
2014
+ ];
2015
+ var ListCommandExecutionsForSandbox$ = [9, n0, _LCEFS,
2016
+ 0, () => ListCommandExecutionsForSandboxInput$, () => ListCommandExecutionsForSandboxOutput$
2017
+ ];
2018
+ var ListCuratedEnvironmentImages$ = [9, n0, _LCEI,
2019
+ 0, () => ListCuratedEnvironmentImagesInput$, () => ListCuratedEnvironmentImagesOutput$
2020
+ ];
2021
+ var ListFleets$ = [9, n0, _LF,
2022
+ 0, () => ListFleetsInput$, () => ListFleetsOutput$
2023
+ ];
2024
+ var ListProjects$ = [9, n0, _LP,
2025
+ 0, () => ListProjectsInput$, () => ListProjectsOutput$
2026
+ ];
2027
+ var ListReportGroups$ = [9, n0, _LRG,
2028
+ 0, () => ListReportGroupsInput$, () => ListReportGroupsOutput$
2029
+ ];
2030
+ var ListReports$ = [9, n0, _LR,
2031
+ 0, () => ListReportsInput$, () => ListReportsOutput$
2032
+ ];
2033
+ var ListReportsForReportGroup$ = [9, n0, _LRFRG,
2034
+ 0, () => ListReportsForReportGroupInput$, () => ListReportsForReportGroupOutput$
2035
+ ];
2036
+ var ListSandboxes$ = [9, n0, _LS,
2037
+ 0, () => ListSandboxesInput$, () => ListSandboxesOutput$
2038
+ ];
2039
+ var ListSandboxesForProject$ = [9, n0, _LSFP,
2040
+ 0, () => ListSandboxesForProjectInput$, () => ListSandboxesForProjectOutput$
2041
+ ];
2042
+ var ListSharedProjects$ = [9, n0, _LSP,
2043
+ 0, () => ListSharedProjectsInput$, () => ListSharedProjectsOutput$
2044
+ ];
2045
+ var ListSharedReportGroups$ = [9, n0, _LSRG,
2046
+ 0, () => ListSharedReportGroupsInput$, () => ListSharedReportGroupsOutput$
2047
+ ];
2048
+ var ListSourceCredentials$ = [9, n0, _LSC,
2049
+ 0, () => ListSourceCredentialsInput$, () => ListSourceCredentialsOutput$
2050
+ ];
2051
+ var PutResourcePolicy$ = [9, n0, _PRP,
2052
+ 0, () => PutResourcePolicyInput$, () => PutResourcePolicyOutput$
2053
+ ];
2054
+ var RetryBuild$ = [9, n0, _RB,
2055
+ 0, () => RetryBuildInput$, () => RetryBuildOutput$
2056
+ ];
2057
+ var RetryBuildBatch$ = [9, n0, _RBB,
2058
+ 0, () => RetryBuildBatchInput$, () => RetryBuildBatchOutput$
2059
+ ];
2060
+ var StartBuild$ = [9, n0, _SB,
2061
+ 0, () => StartBuildInput$, () => StartBuildOutput$
2062
+ ];
2063
+ var StartBuildBatch$ = [9, n0, _SBB,
2064
+ 0, () => StartBuildBatchInput$, () => StartBuildBatchOutput$
2065
+ ];
2066
+ var StartCommandExecution$ = [9, n0, _SCE,
2067
+ 0, () => StartCommandExecutionInput$, () => StartCommandExecutionOutput$
2068
+ ];
2069
+ var StartSandbox$ = [9, n0, _SSt,
2070
+ 0, () => StartSandboxInput$, () => StartSandboxOutput$
2071
+ ];
2072
+ var StartSandboxConnection$ = [9, n0, _SSC,
2073
+ 0, () => StartSandboxConnectionInput$, () => StartSandboxConnectionOutput$
2074
+ ];
2075
+ var StopBuild$ = [9, n0, _SBt,
2076
+ 0, () => StopBuildInput$, () => StopBuildOutput$
2077
+ ];
2078
+ var StopBuildBatch$ = [9, n0, _SBBt,
2079
+ 0, () => StopBuildBatchInput$, () => StopBuildBatchOutput$
2080
+ ];
2081
+ var StopSandbox$ = [9, n0, _SSto,
2082
+ 0, () => StopSandboxInput$, () => StopSandboxOutput$
2083
+ ];
2084
+ var UpdateFleet$ = [9, n0, _UF,
2085
+ 0, () => UpdateFleetInput$, () => UpdateFleetOutput$
2086
+ ];
2087
+ var UpdateProject$ = [9, n0, _UP,
2088
+ 0, () => UpdateProjectInput$, () => UpdateProjectOutput$
2089
+ ];
2090
+ var UpdateProjectVisibility$ = [9, n0, _UPV,
2091
+ 0, () => UpdateProjectVisibilityInput$, () => UpdateProjectVisibilityOutput$
2092
+ ];
2093
+ var UpdateReportGroup$ = [9, n0, _URG,
2094
+ 0, () => UpdateReportGroupInput$, () => UpdateReportGroupOutput$
2095
+ ];
2096
+ var UpdateWebhook$ = [9, n0, _UW,
2097
+ 0, () => UpdateWebhookInput$, () => UpdateWebhookOutput$
2098
+ ];
2099
+
2100
+ const getRuntimeConfig$1 = (config) => {
2101
+ return {
2102
+ apiVersion: "2016-10-06",
2103
+ base64Decoder: config?.base64Decoder ?? fromBase64,
2104
+ base64Encoder: config?.base64Encoder ?? toBase64,
2105
+ disableHostPrefix: config?.disableHostPrefix ?? false,
2106
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
2107
+ extensions: config?.extensions ?? [],
2108
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCodeBuildHttpAuthSchemeProvider,
2109
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
2110
+ {
2111
+ schemeId: "aws.auth#sigv4",
2112
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
2113
+ signer: new AwsSdkSigV4Signer(),
2114
+ },
2115
+ ],
2116
+ logger: config?.logger ?? new NoOpLogger(),
2117
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
2118
+ protocolSettings: config?.protocolSettings ?? {
2119
+ defaultNamespace: "com.amazonaws.codebuild",
2120
+ errorTypeRegistries,
2121
+ version: "2016-10-06",
2122
+ serviceTarget: "CodeBuild_20161006",
2123
+ },
2124
+ serviceId: config?.serviceId ?? "CodeBuild",
2125
+ urlParser: config?.urlParser ?? parseUrl,
2126
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
2127
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
2128
+ };
2129
+ };
2130
+
2131
+ const getRuntimeConfig = (config) => {
2132
+ emitWarningIfUnsupportedVersion(process.version);
2133
+ const defaultsMode = resolveDefaultsModeConfig(config);
2134
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
2135
+ const clientSharedValues = getRuntimeConfig$1(config);
2136
+ emitWarningIfUnsupportedVersion$1(process.version);
2137
+ const loaderConfig = {
2138
+ profile: config?.profile,
2139
+ logger: clientSharedValues.logger,
2140
+ };
2141
+ return {
2142
+ ...clientSharedValues,
2143
+ ...config,
2144
+ runtime: "node",
2145
+ defaultsMode,
2146
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
2147
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
2148
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
2149
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
2150
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
2151
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
2152
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
2153
+ retryMode: config?.retryMode ??
2154
+ loadConfig({
2155
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
2156
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
2157
+ }, config),
2158
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
2159
+ streamCollector: config?.streamCollector ?? streamCollector,
2160
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2161
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2162
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
2163
+ };
2164
+ };
2165
+
34
2166
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
2167
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
2168
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1257,120 +3389,384 @@ const RetryBuildBatchType = {
1257
3389
  RETRY_FAILED_BUILDS: "RETRY_FAILED_BUILDS",
1258
3390
  };
1259
3391
 
3392
+ exports.AccountLimitExceededException = AccountLimitExceededException;
3393
+ exports.AccountLimitExceededException$ = AccountLimitExceededException$;
3394
+ exports.AccountSuspendedException = AccountSuspendedException;
3395
+ exports.AccountSuspendedException$ = AccountSuspendedException$;
1260
3396
  exports.ArtifactNamespace = ArtifactNamespace;
1261
3397
  exports.ArtifactPackaging = ArtifactPackaging;
1262
3398
  exports.ArtifactsType = ArtifactsType;
1263
3399
  exports.AuthType = AuthType;
3400
+ exports.AutoRetryConfig$ = AutoRetryConfig$;
3401
+ exports.BatchDeleteBuilds$ = BatchDeleteBuilds$;
1264
3402
  exports.BatchDeleteBuildsCommand = BatchDeleteBuildsCommand;
3403
+ exports.BatchDeleteBuildsInput$ = BatchDeleteBuildsInput$;
3404
+ exports.BatchDeleteBuildsOutput$ = BatchDeleteBuildsOutput$;
3405
+ exports.BatchGetBuildBatches$ = BatchGetBuildBatches$;
1265
3406
  exports.BatchGetBuildBatchesCommand = BatchGetBuildBatchesCommand;
3407
+ exports.BatchGetBuildBatchesInput$ = BatchGetBuildBatchesInput$;
3408
+ exports.BatchGetBuildBatchesOutput$ = BatchGetBuildBatchesOutput$;
3409
+ exports.BatchGetBuilds$ = BatchGetBuilds$;
1266
3410
  exports.BatchGetBuildsCommand = BatchGetBuildsCommand;
3411
+ exports.BatchGetBuildsInput$ = BatchGetBuildsInput$;
3412
+ exports.BatchGetBuildsOutput$ = BatchGetBuildsOutput$;
3413
+ exports.BatchGetCommandExecutions$ = BatchGetCommandExecutions$;
1267
3414
  exports.BatchGetCommandExecutionsCommand = BatchGetCommandExecutionsCommand;
3415
+ exports.BatchGetCommandExecutionsInput$ = BatchGetCommandExecutionsInput$;
3416
+ exports.BatchGetCommandExecutionsOutput$ = BatchGetCommandExecutionsOutput$;
3417
+ exports.BatchGetFleets$ = BatchGetFleets$;
1268
3418
  exports.BatchGetFleetsCommand = BatchGetFleetsCommand;
3419
+ exports.BatchGetFleetsInput$ = BatchGetFleetsInput$;
3420
+ exports.BatchGetFleetsOutput$ = BatchGetFleetsOutput$;
3421
+ exports.BatchGetProjects$ = BatchGetProjects$;
1269
3422
  exports.BatchGetProjectsCommand = BatchGetProjectsCommand;
3423
+ exports.BatchGetProjectsInput$ = BatchGetProjectsInput$;
3424
+ exports.BatchGetProjectsOutput$ = BatchGetProjectsOutput$;
3425
+ exports.BatchGetReportGroups$ = BatchGetReportGroups$;
1270
3426
  exports.BatchGetReportGroupsCommand = BatchGetReportGroupsCommand;
3427
+ exports.BatchGetReportGroupsInput$ = BatchGetReportGroupsInput$;
3428
+ exports.BatchGetReportGroupsOutput$ = BatchGetReportGroupsOutput$;
3429
+ exports.BatchGetReports$ = BatchGetReports$;
1271
3430
  exports.BatchGetReportsCommand = BatchGetReportsCommand;
3431
+ exports.BatchGetReportsInput$ = BatchGetReportsInput$;
3432
+ exports.BatchGetReportsOutput$ = BatchGetReportsOutput$;
3433
+ exports.BatchGetSandboxes$ = BatchGetSandboxes$;
1272
3434
  exports.BatchGetSandboxesCommand = BatchGetSandboxesCommand;
3435
+ exports.BatchGetSandboxesInput$ = BatchGetSandboxesInput$;
3436
+ exports.BatchGetSandboxesOutput$ = BatchGetSandboxesOutput$;
1273
3437
  exports.BatchReportModeType = BatchReportModeType;
3438
+ exports.BatchRestrictions$ = BatchRestrictions$;
1274
3439
  exports.BucketOwnerAccess = BucketOwnerAccess;
3440
+ exports.Build$ = Build$;
3441
+ exports.BuildArtifacts$ = BuildArtifacts$;
3442
+ exports.BuildBatch$ = BuildBatch$;
3443
+ exports.BuildBatchFilter$ = BuildBatchFilter$;
3444
+ exports.BuildBatchPhase$ = BuildBatchPhase$;
1275
3445
  exports.BuildBatchPhaseType = BuildBatchPhaseType;
3446
+ exports.BuildGroup$ = BuildGroup$;
3447
+ exports.BuildNotDeleted$ = BuildNotDeleted$;
3448
+ exports.BuildPhase$ = BuildPhase$;
1276
3449
  exports.BuildPhaseType = BuildPhaseType;
3450
+ exports.BuildStatusConfig$ = BuildStatusConfig$;
3451
+ exports.BuildSummary$ = BuildSummary$;
1277
3452
  exports.CacheMode = CacheMode;
1278
3453
  exports.CacheType = CacheType;
3454
+ exports.CloudWatchLogsConfig$ = CloudWatchLogsConfig$;
1279
3455
  exports.CodeBuild = CodeBuild;
1280
3456
  exports.CodeBuildClient = CodeBuildClient;
3457
+ exports.CodeBuildServiceException = CodeBuildServiceException;
3458
+ exports.CodeBuildServiceException$ = CodeBuildServiceException$;
3459
+ exports.CodeCoverage$ = CodeCoverage$;
3460
+ exports.CodeCoverageReportSummary$ = CodeCoverageReportSummary$;
3461
+ exports.CommandExecution$ = CommandExecution$;
1281
3462
  exports.CommandType = CommandType;
3463
+ exports.ComputeConfiguration$ = ComputeConfiguration$;
1282
3464
  exports.ComputeType = ComputeType;
3465
+ exports.CreateFleet$ = CreateFleet$;
1283
3466
  exports.CreateFleetCommand = CreateFleetCommand;
3467
+ exports.CreateFleetInput$ = CreateFleetInput$;
3468
+ exports.CreateFleetOutput$ = CreateFleetOutput$;
3469
+ exports.CreateProject$ = CreateProject$;
1284
3470
  exports.CreateProjectCommand = CreateProjectCommand;
3471
+ exports.CreateProjectInput$ = CreateProjectInput$;
3472
+ exports.CreateProjectOutput$ = CreateProjectOutput$;
3473
+ exports.CreateReportGroup$ = CreateReportGroup$;
1285
3474
  exports.CreateReportGroupCommand = CreateReportGroupCommand;
3475
+ exports.CreateReportGroupInput$ = CreateReportGroupInput$;
3476
+ exports.CreateReportGroupOutput$ = CreateReportGroupOutput$;
3477
+ exports.CreateWebhook$ = CreateWebhook$;
1286
3478
  exports.CreateWebhookCommand = CreateWebhookCommand;
3479
+ exports.CreateWebhookInput$ = CreateWebhookInput$;
3480
+ exports.CreateWebhookOutput$ = CreateWebhookOutput$;
1287
3481
  exports.CredentialProviderType = CredentialProviderType;
3482
+ exports.DebugSession$ = DebugSession$;
3483
+ exports.DeleteBuildBatch$ = DeleteBuildBatch$;
1288
3484
  exports.DeleteBuildBatchCommand = DeleteBuildBatchCommand;
3485
+ exports.DeleteBuildBatchInput$ = DeleteBuildBatchInput$;
3486
+ exports.DeleteBuildBatchOutput$ = DeleteBuildBatchOutput$;
3487
+ exports.DeleteFleet$ = DeleteFleet$;
1289
3488
  exports.DeleteFleetCommand = DeleteFleetCommand;
3489
+ exports.DeleteFleetInput$ = DeleteFleetInput$;
3490
+ exports.DeleteFleetOutput$ = DeleteFleetOutput$;
3491
+ exports.DeleteProject$ = DeleteProject$;
1290
3492
  exports.DeleteProjectCommand = DeleteProjectCommand;
3493
+ exports.DeleteProjectInput$ = DeleteProjectInput$;
3494
+ exports.DeleteProjectOutput$ = DeleteProjectOutput$;
3495
+ exports.DeleteReport$ = DeleteReport$;
1291
3496
  exports.DeleteReportCommand = DeleteReportCommand;
3497
+ exports.DeleteReportGroup$ = DeleteReportGroup$;
1292
3498
  exports.DeleteReportGroupCommand = DeleteReportGroupCommand;
3499
+ exports.DeleteReportGroupInput$ = DeleteReportGroupInput$;
3500
+ exports.DeleteReportGroupOutput$ = DeleteReportGroupOutput$;
3501
+ exports.DeleteReportInput$ = DeleteReportInput$;
3502
+ exports.DeleteReportOutput$ = DeleteReportOutput$;
3503
+ exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
1293
3504
  exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
3505
+ exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
3506
+ exports.DeleteResourcePolicyOutput$ = DeleteResourcePolicyOutput$;
3507
+ exports.DeleteSourceCredentials$ = DeleteSourceCredentials$;
1294
3508
  exports.DeleteSourceCredentialsCommand = DeleteSourceCredentialsCommand;
3509
+ exports.DeleteSourceCredentialsInput$ = DeleteSourceCredentialsInput$;
3510
+ exports.DeleteSourceCredentialsOutput$ = DeleteSourceCredentialsOutput$;
3511
+ exports.DeleteWebhook$ = DeleteWebhook$;
1295
3512
  exports.DeleteWebhookCommand = DeleteWebhookCommand;
3513
+ exports.DeleteWebhookInput$ = DeleteWebhookInput$;
3514
+ exports.DeleteWebhookOutput$ = DeleteWebhookOutput$;
3515
+ exports.DescribeCodeCoverages$ = DescribeCodeCoverages$;
1296
3516
  exports.DescribeCodeCoveragesCommand = DescribeCodeCoveragesCommand;
3517
+ exports.DescribeCodeCoveragesInput$ = DescribeCodeCoveragesInput$;
3518
+ exports.DescribeCodeCoveragesOutput$ = DescribeCodeCoveragesOutput$;
3519
+ exports.DescribeTestCases$ = DescribeTestCases$;
1297
3520
  exports.DescribeTestCasesCommand = DescribeTestCasesCommand;
3521
+ exports.DescribeTestCasesInput$ = DescribeTestCasesInput$;
3522
+ exports.DescribeTestCasesOutput$ = DescribeTestCasesOutput$;
3523
+ exports.DockerServer$ = DockerServer$;
3524
+ exports.DockerServerStatus$ = DockerServerStatus$;
3525
+ exports.EnvironmentImage$ = EnvironmentImage$;
3526
+ exports.EnvironmentLanguage$ = EnvironmentLanguage$;
3527
+ exports.EnvironmentPlatform$ = EnvironmentPlatform$;
1298
3528
  exports.EnvironmentType = EnvironmentType;
3529
+ exports.EnvironmentVariable$ = EnvironmentVariable$;
1299
3530
  exports.EnvironmentVariableType = EnvironmentVariableType;
3531
+ exports.ExportedEnvironmentVariable$ = ExportedEnvironmentVariable$;
1300
3532
  exports.FileSystemType = FileSystemType;
3533
+ exports.Fleet$ = Fleet$;
1301
3534
  exports.FleetContextCode = FleetContextCode;
1302
3535
  exports.FleetOverflowBehavior = FleetOverflowBehavior;
3536
+ exports.FleetProxyRule$ = FleetProxyRule$;
1303
3537
  exports.FleetProxyRuleBehavior = FleetProxyRuleBehavior;
1304
3538
  exports.FleetProxyRuleEffectType = FleetProxyRuleEffectType;
1305
3539
  exports.FleetProxyRuleType = FleetProxyRuleType;
1306
3540
  exports.FleetScalingMetricType = FleetScalingMetricType;
1307
3541
  exports.FleetScalingType = FleetScalingType;
1308
3542
  exports.FleetSortByType = FleetSortByType;
3543
+ exports.FleetStatus$ = FleetStatus$;
1309
3544
  exports.FleetStatusCode = FleetStatusCode;
3545
+ exports.GetReportGroupTrend$ = GetReportGroupTrend$;
1310
3546
  exports.GetReportGroupTrendCommand = GetReportGroupTrendCommand;
3547
+ exports.GetReportGroupTrendInput$ = GetReportGroupTrendInput$;
3548
+ exports.GetReportGroupTrendOutput$ = GetReportGroupTrendOutput$;
3549
+ exports.GetResourcePolicy$ = GetResourcePolicy$;
1311
3550
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
3551
+ exports.GetResourcePolicyInput$ = GetResourcePolicyInput$;
3552
+ exports.GetResourcePolicyOutput$ = GetResourcePolicyOutput$;
3553
+ exports.GitSubmodulesConfig$ = GitSubmodulesConfig$;
1312
3554
  exports.ImagePullCredentialsType = ImagePullCredentialsType;
3555
+ exports.ImportSourceCredentials$ = ImportSourceCredentials$;
1313
3556
  exports.ImportSourceCredentialsCommand = ImportSourceCredentialsCommand;
3557
+ exports.ImportSourceCredentialsInput$ = ImportSourceCredentialsInput$;
3558
+ exports.ImportSourceCredentialsOutput$ = ImportSourceCredentialsOutput$;
3559
+ exports.InvalidInputException = InvalidInputException;
3560
+ exports.InvalidInputException$ = InvalidInputException$;
3561
+ exports.InvalidateProjectCache$ = InvalidateProjectCache$;
1314
3562
  exports.InvalidateProjectCacheCommand = InvalidateProjectCacheCommand;
3563
+ exports.InvalidateProjectCacheInput$ = InvalidateProjectCacheInput$;
3564
+ exports.InvalidateProjectCacheOutput$ = InvalidateProjectCacheOutput$;
1315
3565
  exports.LanguageType = LanguageType;
3566
+ exports.ListBuildBatches$ = ListBuildBatches$;
1316
3567
  exports.ListBuildBatchesCommand = ListBuildBatchesCommand;
3568
+ exports.ListBuildBatchesForProject$ = ListBuildBatchesForProject$;
1317
3569
  exports.ListBuildBatchesForProjectCommand = ListBuildBatchesForProjectCommand;
3570
+ exports.ListBuildBatchesForProjectInput$ = ListBuildBatchesForProjectInput$;
3571
+ exports.ListBuildBatchesForProjectOutput$ = ListBuildBatchesForProjectOutput$;
3572
+ exports.ListBuildBatchesInput$ = ListBuildBatchesInput$;
3573
+ exports.ListBuildBatchesOutput$ = ListBuildBatchesOutput$;
3574
+ exports.ListBuilds$ = ListBuilds$;
1318
3575
  exports.ListBuildsCommand = ListBuildsCommand;
3576
+ exports.ListBuildsForProject$ = ListBuildsForProject$;
1319
3577
  exports.ListBuildsForProjectCommand = ListBuildsForProjectCommand;
3578
+ exports.ListBuildsForProjectInput$ = ListBuildsForProjectInput$;
3579
+ exports.ListBuildsForProjectOutput$ = ListBuildsForProjectOutput$;
3580
+ exports.ListBuildsInput$ = ListBuildsInput$;
3581
+ exports.ListBuildsOutput$ = ListBuildsOutput$;
3582
+ exports.ListCommandExecutionsForSandbox$ = ListCommandExecutionsForSandbox$;
1320
3583
  exports.ListCommandExecutionsForSandboxCommand = ListCommandExecutionsForSandboxCommand;
3584
+ exports.ListCommandExecutionsForSandboxInput$ = ListCommandExecutionsForSandboxInput$;
3585
+ exports.ListCommandExecutionsForSandboxOutput$ = ListCommandExecutionsForSandboxOutput$;
3586
+ exports.ListCuratedEnvironmentImages$ = ListCuratedEnvironmentImages$;
1321
3587
  exports.ListCuratedEnvironmentImagesCommand = ListCuratedEnvironmentImagesCommand;
3588
+ exports.ListCuratedEnvironmentImagesInput$ = ListCuratedEnvironmentImagesInput$;
3589
+ exports.ListCuratedEnvironmentImagesOutput$ = ListCuratedEnvironmentImagesOutput$;
3590
+ exports.ListFleets$ = ListFleets$;
1322
3591
  exports.ListFleetsCommand = ListFleetsCommand;
3592
+ exports.ListFleetsInput$ = ListFleetsInput$;
3593
+ exports.ListFleetsOutput$ = ListFleetsOutput$;
3594
+ exports.ListProjects$ = ListProjects$;
1323
3595
  exports.ListProjectsCommand = ListProjectsCommand;
3596
+ exports.ListProjectsInput$ = ListProjectsInput$;
3597
+ exports.ListProjectsOutput$ = ListProjectsOutput$;
3598
+ exports.ListReportGroups$ = ListReportGroups$;
1324
3599
  exports.ListReportGroupsCommand = ListReportGroupsCommand;
3600
+ exports.ListReportGroupsInput$ = ListReportGroupsInput$;
3601
+ exports.ListReportGroupsOutput$ = ListReportGroupsOutput$;
3602
+ exports.ListReports$ = ListReports$;
1325
3603
  exports.ListReportsCommand = ListReportsCommand;
3604
+ exports.ListReportsForReportGroup$ = ListReportsForReportGroup$;
1326
3605
  exports.ListReportsForReportGroupCommand = ListReportsForReportGroupCommand;
3606
+ exports.ListReportsForReportGroupInput$ = ListReportsForReportGroupInput$;
3607
+ exports.ListReportsForReportGroupOutput$ = ListReportsForReportGroupOutput$;
3608
+ exports.ListReportsInput$ = ListReportsInput$;
3609
+ exports.ListReportsOutput$ = ListReportsOutput$;
3610
+ exports.ListSandboxes$ = ListSandboxes$;
1327
3611
  exports.ListSandboxesCommand = ListSandboxesCommand;
3612
+ exports.ListSandboxesForProject$ = ListSandboxesForProject$;
1328
3613
  exports.ListSandboxesForProjectCommand = ListSandboxesForProjectCommand;
3614
+ exports.ListSandboxesForProjectInput$ = ListSandboxesForProjectInput$;
3615
+ exports.ListSandboxesForProjectOutput$ = ListSandboxesForProjectOutput$;
3616
+ exports.ListSandboxesInput$ = ListSandboxesInput$;
3617
+ exports.ListSandboxesOutput$ = ListSandboxesOutput$;
3618
+ exports.ListSharedProjects$ = ListSharedProjects$;
1329
3619
  exports.ListSharedProjectsCommand = ListSharedProjectsCommand;
3620
+ exports.ListSharedProjectsInput$ = ListSharedProjectsInput$;
3621
+ exports.ListSharedProjectsOutput$ = ListSharedProjectsOutput$;
3622
+ exports.ListSharedReportGroups$ = ListSharedReportGroups$;
1330
3623
  exports.ListSharedReportGroupsCommand = ListSharedReportGroupsCommand;
3624
+ exports.ListSharedReportGroupsInput$ = ListSharedReportGroupsInput$;
3625
+ exports.ListSharedReportGroupsOutput$ = ListSharedReportGroupsOutput$;
3626
+ exports.ListSourceCredentials$ = ListSourceCredentials$;
1331
3627
  exports.ListSourceCredentialsCommand = ListSourceCredentialsCommand;
3628
+ exports.ListSourceCredentialsInput$ = ListSourceCredentialsInput$;
3629
+ exports.ListSourceCredentialsOutput$ = ListSourceCredentialsOutput$;
3630
+ exports.LogsConfig$ = LogsConfig$;
1332
3631
  exports.LogsConfigStatusType = LogsConfigStatusType;
3632
+ exports.LogsLocation$ = LogsLocation$;
1333
3633
  exports.MachineType = MachineType;
3634
+ exports.NetworkInterface$ = NetworkInterface$;
3635
+ exports.OAuthProviderException = OAuthProviderException;
3636
+ exports.OAuthProviderException$ = OAuthProviderException$;
3637
+ exports.PhaseContext$ = PhaseContext$;
1334
3638
  exports.PlatformType = PlatformType;
3639
+ exports.Project$ = Project$;
3640
+ exports.ProjectArtifacts$ = ProjectArtifacts$;
3641
+ exports.ProjectBadge$ = ProjectBadge$;
3642
+ exports.ProjectBuildBatchConfig$ = ProjectBuildBatchConfig$;
3643
+ exports.ProjectCache$ = ProjectCache$;
3644
+ exports.ProjectEnvironment$ = ProjectEnvironment$;
3645
+ exports.ProjectFileSystemLocation$ = ProjectFileSystemLocation$;
3646
+ exports.ProjectFleet$ = ProjectFleet$;
1335
3647
  exports.ProjectSortByType = ProjectSortByType;
3648
+ exports.ProjectSource$ = ProjectSource$;
3649
+ exports.ProjectSourceVersion$ = ProjectSourceVersion$;
1336
3650
  exports.ProjectVisibilityType = ProjectVisibilityType;
3651
+ exports.ProxyConfiguration$ = ProxyConfiguration$;
1337
3652
  exports.PullRequestBuildApproverRole = PullRequestBuildApproverRole;
1338
3653
  exports.PullRequestBuildCommentApproval = PullRequestBuildCommentApproval;
3654
+ exports.PullRequestBuildPolicy$ = PullRequestBuildPolicy$;
3655
+ exports.PutResourcePolicy$ = PutResourcePolicy$;
1339
3656
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
3657
+ exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
3658
+ exports.PutResourcePolicyOutput$ = PutResourcePolicyOutput$;
3659
+ exports.RegistryCredential$ = RegistryCredential$;
3660
+ exports.Report$ = Report$;
1340
3661
  exports.ReportCodeCoverageSortByType = ReportCodeCoverageSortByType;
3662
+ exports.ReportExportConfig$ = ReportExportConfig$;
1341
3663
  exports.ReportExportConfigType = ReportExportConfigType;
3664
+ exports.ReportFilter$ = ReportFilter$;
3665
+ exports.ReportGroup$ = ReportGroup$;
1342
3666
  exports.ReportGroupSortByType = ReportGroupSortByType;
1343
3667
  exports.ReportGroupStatusType = ReportGroupStatusType;
1344
3668
  exports.ReportGroupTrendFieldType = ReportGroupTrendFieldType;
3669
+ exports.ReportGroupTrendStats$ = ReportGroupTrendStats$;
1345
3670
  exports.ReportPackagingType = ReportPackagingType;
1346
3671
  exports.ReportStatusType = ReportStatusType;
1347
3672
  exports.ReportType = ReportType;
3673
+ exports.ReportWithRawData$ = ReportWithRawData$;
3674
+ exports.ResolvedArtifact$ = ResolvedArtifact$;
3675
+ exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
3676
+ exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
3677
+ exports.ResourceNotFoundException = ResourceNotFoundException;
3678
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
3679
+ exports.RetryBuild$ = RetryBuild$;
3680
+ exports.RetryBuildBatch$ = RetryBuildBatch$;
1348
3681
  exports.RetryBuildBatchCommand = RetryBuildBatchCommand;
3682
+ exports.RetryBuildBatchInput$ = RetryBuildBatchInput$;
3683
+ exports.RetryBuildBatchOutput$ = RetryBuildBatchOutput$;
1349
3684
  exports.RetryBuildBatchType = RetryBuildBatchType;
1350
3685
  exports.RetryBuildCommand = RetryBuildCommand;
3686
+ exports.RetryBuildInput$ = RetryBuildInput$;
3687
+ exports.RetryBuildOutput$ = RetryBuildOutput$;
3688
+ exports.S3LogsConfig$ = S3LogsConfig$;
3689
+ exports.S3ReportExportConfig$ = S3ReportExportConfig$;
3690
+ exports.SSMSession$ = SSMSession$;
3691
+ exports.Sandbox$ = Sandbox$;
3692
+ exports.SandboxSession$ = SandboxSession$;
3693
+ exports.SandboxSessionPhase$ = SandboxSessionPhase$;
3694
+ exports.ScalingConfigurationInput$ = ScalingConfigurationInput$;
3695
+ exports.ScalingConfigurationOutput$ = ScalingConfigurationOutput$;
3696
+ exports.ScopeConfiguration$ = ScopeConfiguration$;
1351
3697
  exports.ServerType = ServerType;
1352
3698
  exports.SharedResourceSortByType = SharedResourceSortByType;
1353
3699
  exports.SortOrderType = SortOrderType;
3700
+ exports.SourceAuth$ = SourceAuth$;
1354
3701
  exports.SourceAuthType = SourceAuthType;
3702
+ exports.SourceCredentialsInfo$ = SourceCredentialsInfo$;
1355
3703
  exports.SourceType = SourceType;
3704
+ exports.StartBuild$ = StartBuild$;
3705
+ exports.StartBuildBatch$ = StartBuildBatch$;
1356
3706
  exports.StartBuildBatchCommand = StartBuildBatchCommand;
3707
+ exports.StartBuildBatchInput$ = StartBuildBatchInput$;
3708
+ exports.StartBuildBatchOutput$ = StartBuildBatchOutput$;
1357
3709
  exports.StartBuildCommand = StartBuildCommand;
3710
+ exports.StartBuildInput$ = StartBuildInput$;
3711
+ exports.StartBuildOutput$ = StartBuildOutput$;
3712
+ exports.StartCommandExecution$ = StartCommandExecution$;
1358
3713
  exports.StartCommandExecutionCommand = StartCommandExecutionCommand;
3714
+ exports.StartCommandExecutionInput$ = StartCommandExecutionInput$;
3715
+ exports.StartCommandExecutionOutput$ = StartCommandExecutionOutput$;
3716
+ exports.StartSandbox$ = StartSandbox$;
1359
3717
  exports.StartSandboxCommand = StartSandboxCommand;
3718
+ exports.StartSandboxConnection$ = StartSandboxConnection$;
1360
3719
  exports.StartSandboxConnectionCommand = StartSandboxConnectionCommand;
3720
+ exports.StartSandboxConnectionInput$ = StartSandboxConnectionInput$;
3721
+ exports.StartSandboxConnectionOutput$ = StartSandboxConnectionOutput$;
3722
+ exports.StartSandboxInput$ = StartSandboxInput$;
3723
+ exports.StartSandboxOutput$ = StartSandboxOutput$;
1361
3724
  exports.StatusType = StatusType;
3725
+ exports.StopBuild$ = StopBuild$;
3726
+ exports.StopBuildBatch$ = StopBuildBatch$;
1362
3727
  exports.StopBuildBatchCommand = StopBuildBatchCommand;
3728
+ exports.StopBuildBatchInput$ = StopBuildBatchInput$;
3729
+ exports.StopBuildBatchOutput$ = StopBuildBatchOutput$;
1363
3730
  exports.StopBuildCommand = StopBuildCommand;
3731
+ exports.StopBuildInput$ = StopBuildInput$;
3732
+ exports.StopBuildOutput$ = StopBuildOutput$;
3733
+ exports.StopSandbox$ = StopSandbox$;
1364
3734
  exports.StopSandboxCommand = StopSandboxCommand;
3735
+ exports.StopSandboxInput$ = StopSandboxInput$;
3736
+ exports.StopSandboxOutput$ = StopSandboxOutput$;
3737
+ exports.Tag$ = Tag$;
3738
+ exports.TargetTrackingScalingConfiguration$ = TargetTrackingScalingConfiguration$;
3739
+ exports.TestCase$ = TestCase$;
3740
+ exports.TestCaseFilter$ = TestCaseFilter$;
3741
+ exports.TestReportSummary$ = TestReportSummary$;
3742
+ exports.UpdateFleet$ = UpdateFleet$;
1365
3743
  exports.UpdateFleetCommand = UpdateFleetCommand;
3744
+ exports.UpdateFleetInput$ = UpdateFleetInput$;
3745
+ exports.UpdateFleetOutput$ = UpdateFleetOutput$;
3746
+ exports.UpdateProject$ = UpdateProject$;
1366
3747
  exports.UpdateProjectCommand = UpdateProjectCommand;
3748
+ exports.UpdateProjectInput$ = UpdateProjectInput$;
3749
+ exports.UpdateProjectOutput$ = UpdateProjectOutput$;
3750
+ exports.UpdateProjectVisibility$ = UpdateProjectVisibility$;
1367
3751
  exports.UpdateProjectVisibilityCommand = UpdateProjectVisibilityCommand;
3752
+ exports.UpdateProjectVisibilityInput$ = UpdateProjectVisibilityInput$;
3753
+ exports.UpdateProjectVisibilityOutput$ = UpdateProjectVisibilityOutput$;
3754
+ exports.UpdateReportGroup$ = UpdateReportGroup$;
1368
3755
  exports.UpdateReportGroupCommand = UpdateReportGroupCommand;
3756
+ exports.UpdateReportGroupInput$ = UpdateReportGroupInput$;
3757
+ exports.UpdateReportGroupOutput$ = UpdateReportGroupOutput$;
3758
+ exports.UpdateWebhook$ = UpdateWebhook$;
1369
3759
  exports.UpdateWebhookCommand = UpdateWebhookCommand;
3760
+ exports.UpdateWebhookInput$ = UpdateWebhookInput$;
3761
+ exports.UpdateWebhookOutput$ = UpdateWebhookOutput$;
3762
+ exports.VpcConfig$ = VpcConfig$;
3763
+ exports.Webhook$ = Webhook$;
1370
3764
  exports.WebhookBuildType = WebhookBuildType;
3765
+ exports.WebhookFilter$ = WebhookFilter$;
1371
3766
  exports.WebhookFilterType = WebhookFilterType;
1372
3767
  exports.WebhookScopeType = WebhookScopeType;
1373
3768
  exports.WebhookStatus = WebhookStatus;
3769
+ exports.errorTypeRegistries = errorTypeRegistries;
1374
3770
  exports.paginateDescribeCodeCoverages = paginateDescribeCodeCoverages;
1375
3771
  exports.paginateDescribeTestCases = paginateDescribeTestCases;
1376
3772
  exports.paginateListBuildBatches = paginateListBuildBatches;