@aws-sdk/client-codebuild 3.428.0 → 3.430.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-types/models/models_0.d.ts +75 -75
- package/dist-types/ts3.4/models/models_0.d.ts +75 -75
- package/package.json +11 -11
|
@@ -233,7 +233,7 @@ export interface BuildArtifacts {
|
|
|
233
233
|
* </dd>
|
|
234
234
|
* </dl>
|
|
235
235
|
*/
|
|
236
|
-
bucketOwnerAccess?: BucketOwnerAccess
|
|
236
|
+
bucketOwnerAccess?: BucketOwnerAccess;
|
|
237
237
|
}
|
|
238
238
|
/**
|
|
239
239
|
* @public
|
|
@@ -309,7 +309,7 @@ export interface ProjectBuildBatchConfig {
|
|
|
309
309
|
* </dd>
|
|
310
310
|
* </dl>
|
|
311
311
|
*/
|
|
312
|
-
batchReportMode?: BatchReportModeType
|
|
312
|
+
batchReportMode?: BatchReportModeType;
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
315
|
* @public
|
|
@@ -337,7 +337,7 @@ export interface ResolvedArtifact {
|
|
|
337
337
|
* @public
|
|
338
338
|
* <p>Specifies the type of artifact.</p>
|
|
339
339
|
*/
|
|
340
|
-
type?: ArtifactsType
|
|
340
|
+
type?: ArtifactsType;
|
|
341
341
|
/**
|
|
342
342
|
* @public
|
|
343
343
|
* <p>The location of the artifact.</p>
|
|
@@ -394,7 +394,7 @@ export interface BuildSummary {
|
|
|
394
394
|
* </dd>
|
|
395
395
|
* </dl>
|
|
396
396
|
*/
|
|
397
|
-
buildStatus?: StatusType
|
|
397
|
+
buildStatus?: StatusType;
|
|
398
398
|
/**
|
|
399
399
|
* @public
|
|
400
400
|
* <p>A <code>ResolvedArtifact</code> object that represents the primary build artifacts for the
|
|
@@ -494,7 +494,7 @@ export interface ProjectCache {
|
|
|
494
494
|
* </li>
|
|
495
495
|
* </ul>
|
|
496
496
|
*/
|
|
497
|
-
type: CacheType |
|
|
497
|
+
type: CacheType | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* @public
|
|
500
500
|
* <p>Information about the cache location: </p>
|
|
@@ -571,7 +571,7 @@ export interface ProjectCache {
|
|
|
571
571
|
* </dd>
|
|
572
572
|
* </dl>
|
|
573
573
|
*/
|
|
574
|
-
modes?:
|
|
574
|
+
modes?: CacheMode[];
|
|
575
575
|
}
|
|
576
576
|
/**
|
|
577
577
|
* @public
|
|
@@ -647,7 +647,7 @@ export interface EnvironmentVariable {
|
|
|
647
647
|
* </li>
|
|
648
648
|
* </ul>
|
|
649
649
|
*/
|
|
650
|
-
type?: EnvironmentVariableType
|
|
650
|
+
type?: EnvironmentVariableType;
|
|
651
651
|
}
|
|
652
652
|
/**
|
|
653
653
|
* @public
|
|
@@ -704,7 +704,7 @@ export interface RegistryCredential {
|
|
|
704
704
|
* <p> The service that created the credentials to access a private Docker registry. The
|
|
705
705
|
* valid value, SECRETS_MANAGER, is for Secrets Manager. </p>
|
|
706
706
|
*/
|
|
707
|
-
credentialProvider: CredentialProviderType |
|
|
707
|
+
credentialProvider: CredentialProviderType | undefined;
|
|
708
708
|
}
|
|
709
709
|
/**
|
|
710
710
|
* @public
|
|
@@ -765,7 +765,7 @@ export interface ProjectEnvironment {
|
|
|
765
765
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html">Build environment compute types</a> in the <i>CodeBuild
|
|
766
766
|
* user guide</i>.</p>
|
|
767
767
|
*/
|
|
768
|
-
type: EnvironmentType |
|
|
768
|
+
type: EnvironmentType | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* @public
|
|
771
771
|
* <p>The image tag or image digest that identifies the Docker image to use for this build
|
|
@@ -833,7 +833,7 @@ export interface ProjectEnvironment {
|
|
|
833
833
|
* Compute Types</a> in the <i>CodeBuild User Guide.</i>
|
|
834
834
|
* </p>
|
|
835
835
|
*/
|
|
836
|
-
computeType: ComputeType |
|
|
836
|
+
computeType: ComputeType | undefined;
|
|
837
837
|
/**
|
|
838
838
|
* @public
|
|
839
839
|
* <p>A set of environment variables to make available to builds for this build
|
|
@@ -897,7 +897,7 @@ export interface ProjectEnvironment {
|
|
|
897
897
|
* credentials. When you use an CodeBuild curated image, you must use CODEBUILD credentials.
|
|
898
898
|
* </p>
|
|
899
899
|
*/
|
|
900
|
-
imagePullCredentialsType?: ImagePullCredentialsType
|
|
900
|
+
imagePullCredentialsType?: ImagePullCredentialsType;
|
|
901
901
|
}
|
|
902
902
|
/**
|
|
903
903
|
* @public
|
|
@@ -922,7 +922,7 @@ export interface ProjectFileSystemLocation {
|
|
|
922
922
|
* @public
|
|
923
923
|
* <p> The type of the file system. The one supported type is <code>EFS</code>. </p>
|
|
924
924
|
*/
|
|
925
|
-
type?: FileSystemType
|
|
925
|
+
type?: FileSystemType;
|
|
926
926
|
/**
|
|
927
927
|
* @public
|
|
928
928
|
* <p>A string that specifies the location of the file system created by Amazon EFS. Its
|
|
@@ -993,7 +993,7 @@ export interface CloudWatchLogsConfig {
|
|
|
993
993
|
* </li>
|
|
994
994
|
* </ul>
|
|
995
995
|
*/
|
|
996
|
-
status: LogsConfigStatusType |
|
|
996
|
+
status: LogsConfigStatusType | undefined;
|
|
997
997
|
/**
|
|
998
998
|
* @public
|
|
999
999
|
* <p> The group name of the logs in CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working
|
|
@@ -1027,7 +1027,7 @@ export interface S3LogsConfig {
|
|
|
1027
1027
|
* </li>
|
|
1028
1028
|
* </ul>
|
|
1029
1029
|
*/
|
|
1030
|
-
status: LogsConfigStatusType |
|
|
1030
|
+
status: LogsConfigStatusType | undefined;
|
|
1031
1031
|
/**
|
|
1032
1032
|
* @public
|
|
1033
1033
|
* <p> The ARN of an S3 bucket and the path prefix for S3 logs. If your Amazon S3 bucket
|
|
@@ -1087,7 +1087,7 @@ export interface S3LogsConfig {
|
|
|
1087
1087
|
* </dd>
|
|
1088
1088
|
* </dl>
|
|
1089
1089
|
*/
|
|
1090
|
-
bucketOwnerAccess?: BucketOwnerAccess
|
|
1090
|
+
bucketOwnerAccess?: BucketOwnerAccess;
|
|
1091
1091
|
}
|
|
1092
1092
|
/**
|
|
1093
1093
|
* @public
|
|
@@ -1182,7 +1182,7 @@ export interface BuildBatchPhase {
|
|
|
1182
1182
|
* </dd>
|
|
1183
1183
|
* </dl>
|
|
1184
1184
|
*/
|
|
1185
|
-
phaseType?: BuildBatchPhaseType
|
|
1185
|
+
phaseType?: BuildBatchPhaseType;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* @public
|
|
1188
1188
|
* <p>The current status of the batch build phase. Valid values include:</p>
|
|
@@ -1213,7 +1213,7 @@ export interface BuildBatchPhase {
|
|
|
1213
1213
|
* </dd>
|
|
1214
1214
|
* </dl>
|
|
1215
1215
|
*/
|
|
1216
|
-
phaseStatus?: StatusType
|
|
1216
|
+
phaseStatus?: StatusType;
|
|
1217
1217
|
/**
|
|
1218
1218
|
* @public
|
|
1219
1219
|
* <p>When the batch build phase started, expressed in Unix time format.</p>
|
|
@@ -1264,7 +1264,7 @@ export interface SourceAuth {
|
|
|
1264
1264
|
* <p>The authorization type to use. The only valid value is <code>OAUTH</code>, which
|
|
1265
1265
|
* represents the OAuth authorization type.</p>
|
|
1266
1266
|
*/
|
|
1267
|
-
type: SourceAuthType |
|
|
1267
|
+
type: SourceAuthType | undefined;
|
|
1268
1268
|
/**
|
|
1269
1269
|
* @public
|
|
1270
1270
|
* <p>The resource value that applies to the specified authorization type.</p>
|
|
@@ -1386,7 +1386,7 @@ export interface ProjectSource {
|
|
|
1386
1386
|
* </li>
|
|
1387
1387
|
* </ul>
|
|
1388
1388
|
*/
|
|
1389
|
-
type: SourceType |
|
|
1389
|
+
type: SourceType | undefined;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* @public
|
|
1392
1392
|
* <p>Information about the location of the source code to be built. Valid values
|
|
@@ -1615,7 +1615,7 @@ export interface BuildBatch {
|
|
|
1615
1615
|
* @public
|
|
1616
1616
|
* <p>The status of the batch build.</p>
|
|
1617
1617
|
*/
|
|
1618
|
-
buildBatchStatus?: StatusType
|
|
1618
|
+
buildBatchStatus?: StatusType;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* @public
|
|
1621
1621
|
* <p>The identifier of the version of the source code to be built.</p>
|
|
@@ -2021,7 +2021,7 @@ export interface BuildPhase {
|
|
|
2021
2021
|
* </dd>
|
|
2022
2022
|
* </dl>
|
|
2023
2023
|
*/
|
|
2024
|
-
phaseType?: BuildPhaseType
|
|
2024
|
+
phaseType?: BuildPhaseType;
|
|
2025
2025
|
/**
|
|
2026
2026
|
* @public
|
|
2027
2027
|
* <p>The current status of the build phase. Valid values include:</p>
|
|
@@ -2052,7 +2052,7 @@ export interface BuildPhase {
|
|
|
2052
2052
|
* </dd>
|
|
2053
2053
|
* </dl>
|
|
2054
2054
|
*/
|
|
2055
|
-
phaseStatus?: StatusType
|
|
2055
|
+
phaseStatus?: StatusType;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* @public
|
|
2058
2058
|
* <p>When the build phase started, expressed in Unix time format.</p>
|
|
@@ -2144,7 +2144,7 @@ export interface Build {
|
|
|
2144
2144
|
* </li>
|
|
2145
2145
|
* </ul>
|
|
2146
2146
|
*/
|
|
2147
|
-
buildStatus?: StatusType
|
|
2147
|
+
buildStatus?: StatusType;
|
|
2148
2148
|
/**
|
|
2149
2149
|
* @public
|
|
2150
2150
|
* <p>Any version identifier for the version of the source code to be built. If
|
|
@@ -2399,7 +2399,7 @@ export interface ProjectArtifacts {
|
|
|
2399
2399
|
* </li>
|
|
2400
2400
|
* </ul>
|
|
2401
2401
|
*/
|
|
2402
|
-
type: ArtifactsType |
|
|
2402
|
+
type: ArtifactsType | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* @public
|
|
2405
2405
|
* <p>Information about the build output artifact location:</p>
|
|
@@ -2481,7 +2481,7 @@ export interface ProjectArtifacts {
|
|
|
2481
2481
|
* set to <code>MyArtifact.zip</code>, the output artifact is stored in
|
|
2482
2482
|
* <code>MyArtifacts/<build-ID>/MyArtifact.zip</code>.</p>
|
|
2483
2483
|
*/
|
|
2484
|
-
namespaceType?: ArtifactNamespace
|
|
2484
|
+
namespaceType?: ArtifactNamespace;
|
|
2485
2485
|
/**
|
|
2486
2486
|
* @public
|
|
2487
2487
|
* <p>Along with <code>path</code> and <code>namespaceType</code>, the pattern that CodeBuild
|
|
@@ -2555,7 +2555,7 @@ export interface ProjectArtifacts {
|
|
|
2555
2555
|
* </li>
|
|
2556
2556
|
* </ul>
|
|
2557
2557
|
*/
|
|
2558
|
-
packaging?: ArtifactPackaging
|
|
2558
|
+
packaging?: ArtifactPackaging;
|
|
2559
2559
|
/**
|
|
2560
2560
|
* @public
|
|
2561
2561
|
* <p> If this flag is set, a name specified in the buildspec file overrides the artifact
|
|
@@ -2621,7 +2621,7 @@ export interface ProjectArtifacts {
|
|
|
2621
2621
|
* </dd>
|
|
2622
2622
|
* </dl>
|
|
2623
2623
|
*/
|
|
2624
|
-
bucketOwnerAccess?: BucketOwnerAccess
|
|
2624
|
+
bucketOwnerAccess?: BucketOwnerAccess;
|
|
2625
2625
|
}
|
|
2626
2626
|
/**
|
|
2627
2627
|
* @public
|
|
@@ -2780,7 +2780,7 @@ export interface WebhookFilter {
|
|
|
2780
2780
|
* </dd>
|
|
2781
2781
|
* </dl>
|
|
2782
2782
|
*/
|
|
2783
|
-
type: WebhookFilterType |
|
|
2783
|
+
type: WebhookFilterType | undefined;
|
|
2784
2784
|
/**
|
|
2785
2785
|
* @public
|
|
2786
2786
|
* <p> For a <code>WebHookFilter</code> that uses <code>EVENT</code> type, a comma-separated
|
|
@@ -2852,7 +2852,7 @@ export interface Webhook {
|
|
|
2852
2852
|
* @public
|
|
2853
2853
|
* <p>Specifies the type of build this webhook will trigger.</p>
|
|
2854
2854
|
*/
|
|
2855
|
-
buildType?: WebhookBuildType
|
|
2855
|
+
buildType?: WebhookBuildType;
|
|
2856
2856
|
/**
|
|
2857
2857
|
* @public
|
|
2858
2858
|
* <p>A timestamp that indicates the last time a repository's secret token was modified.
|
|
@@ -3059,7 +3059,7 @@ export interface Project {
|
|
|
3059
3059
|
* </dd>
|
|
3060
3060
|
* </dl>
|
|
3061
3061
|
*/
|
|
3062
|
-
projectVisibility?: ProjectVisibilityType
|
|
3062
|
+
projectVisibility?: ProjectVisibilityType;
|
|
3063
3063
|
/**
|
|
3064
3064
|
* @public
|
|
3065
3065
|
* <p>Contains the project identifier used with the public build APIs. </p>
|
|
@@ -3160,7 +3160,7 @@ export interface S3ReportExportConfig {
|
|
|
3160
3160
|
* </li>
|
|
3161
3161
|
* </ul>
|
|
3162
3162
|
*/
|
|
3163
|
-
packaging?: ReportPackagingType
|
|
3163
|
+
packaging?: ReportPackagingType;
|
|
3164
3164
|
/**
|
|
3165
3165
|
* @public
|
|
3166
3166
|
* <p> The encryption key for the report's encrypted raw data. </p>
|
|
@@ -3191,7 +3191,7 @@ export interface ReportExportConfig {
|
|
|
3191
3191
|
* </li>
|
|
3192
3192
|
* </ul>
|
|
3193
3193
|
*/
|
|
3194
|
-
exportConfigType?: ReportExportConfigType
|
|
3194
|
+
exportConfigType?: ReportExportConfigType;
|
|
3195
3195
|
/**
|
|
3196
3196
|
* @public
|
|
3197
3197
|
* <p> A <code>S3ReportExportConfig</code> object that contains information about the S3
|
|
@@ -3257,7 +3257,7 @@ export interface ReportGroup {
|
|
|
3257
3257
|
* </dd>
|
|
3258
3258
|
* </dl>
|
|
3259
3259
|
*/
|
|
3260
|
-
type?: ReportType
|
|
3260
|
+
type?: ReportType;
|
|
3261
3261
|
/**
|
|
3262
3262
|
* @public
|
|
3263
3263
|
* <p>Information about the destination where the raw data of this <code>ReportGroup</code>
|
|
@@ -3296,7 +3296,7 @@ export interface ReportGroup {
|
|
|
3296
3296
|
* </dd>
|
|
3297
3297
|
* </dl>
|
|
3298
3298
|
*/
|
|
3299
|
-
status?: ReportGroupStatusType
|
|
3299
|
+
status?: ReportGroupStatusType;
|
|
3300
3300
|
}
|
|
3301
3301
|
/**
|
|
3302
3302
|
* @public
|
|
@@ -3435,7 +3435,7 @@ export interface Report {
|
|
|
3435
3435
|
* </dd>
|
|
3436
3436
|
* </dl>
|
|
3437
3437
|
*/
|
|
3438
|
-
type?: ReportType
|
|
3438
|
+
type?: ReportType;
|
|
3439
3439
|
/**
|
|
3440
3440
|
* @public
|
|
3441
3441
|
* <p> The name of the report that was run. </p>
|
|
@@ -3455,7 +3455,7 @@ export interface Report {
|
|
|
3455
3455
|
* @public
|
|
3456
3456
|
* <p> The status of this report. </p>
|
|
3457
3457
|
*/
|
|
3458
|
-
status?: ReportStatusType
|
|
3458
|
+
status?: ReportStatusType;
|
|
3459
3459
|
/**
|
|
3460
3460
|
* @public
|
|
3461
3461
|
* <p> The date and time this report run occurred. </p>
|
|
@@ -3521,7 +3521,7 @@ export interface BuildBatchFilter {
|
|
|
3521
3521
|
* <p>The status of the batch builds to retrieve. Only batch builds that have this status will
|
|
3522
3522
|
* be retrieved.</p>
|
|
3523
3523
|
*/
|
|
3524
|
-
status?: StatusType
|
|
3524
|
+
status?: StatusType;
|
|
3525
3525
|
}
|
|
3526
3526
|
/**
|
|
3527
3527
|
* @public
|
|
@@ -3728,7 +3728,7 @@ export interface CreateReportGroupInput {
|
|
|
3728
3728
|
* The type of report group.
|
|
3729
3729
|
* </p>
|
|
3730
3730
|
*/
|
|
3731
|
-
type: ReportType |
|
|
3731
|
+
type: ReportType | undefined;
|
|
3732
3732
|
/**
|
|
3733
3733
|
* @public
|
|
3734
3734
|
* <p>
|
|
@@ -3792,7 +3792,7 @@ export interface CreateWebhookInput {
|
|
|
3792
3792
|
* @public
|
|
3793
3793
|
* <p>Specifies the type of build this webhook will trigger.</p>
|
|
3794
3794
|
*/
|
|
3795
|
-
buildType?: WebhookBuildType
|
|
3795
|
+
buildType?: WebhookBuildType;
|
|
3796
3796
|
}
|
|
3797
3797
|
/**
|
|
3798
3798
|
* @public
|
|
@@ -4017,7 +4017,7 @@ export interface DescribeCodeCoveragesInput {
|
|
|
4017
4017
|
* @public
|
|
4018
4018
|
* <p>Specifies if the results are sorted in ascending or descending order.</p>
|
|
4019
4019
|
*/
|
|
4020
|
-
sortOrder?: SortOrderType
|
|
4020
|
+
sortOrder?: SortOrderType;
|
|
4021
4021
|
/**
|
|
4022
4022
|
* @public
|
|
4023
4023
|
* <p>Specifies how the results are sorted. Possible values are:</p>
|
|
@@ -4032,7 +4032,7 @@ export interface DescribeCodeCoveragesInput {
|
|
|
4032
4032
|
* </dd>
|
|
4033
4033
|
* </dl>
|
|
4034
4034
|
*/
|
|
4035
|
-
sortBy?: ReportCodeCoverageSortByType
|
|
4035
|
+
sortBy?: ReportCodeCoverageSortByType;
|
|
4036
4036
|
/**
|
|
4037
4037
|
* @public
|
|
4038
4038
|
* <p>The minimum line coverage percentage to report.</p>
|
|
@@ -4378,7 +4378,7 @@ export interface GetReportGroupTrendInput {
|
|
|
4378
4378
|
* </dd>
|
|
4379
4379
|
* </dl>
|
|
4380
4380
|
*/
|
|
4381
|
-
trendField: ReportGroupTrendFieldType |
|
|
4381
|
+
trendField: ReportGroupTrendFieldType | undefined;
|
|
4382
4382
|
}
|
|
4383
4383
|
/**
|
|
4384
4384
|
* @public
|
|
@@ -4486,14 +4486,14 @@ export interface ImportSourceCredentialsInput {
|
|
|
4486
4486
|
* @public
|
|
4487
4487
|
* <p> The source provider used for this project. </p>
|
|
4488
4488
|
*/
|
|
4489
|
-
serverType: ServerType |
|
|
4489
|
+
serverType: ServerType | undefined;
|
|
4490
4490
|
/**
|
|
4491
4491
|
* @public
|
|
4492
4492
|
* <p> The type of authentication used to connect to a GitHub, GitHub Enterprise, or
|
|
4493
4493
|
* Bitbucket repository. An OAUTH connection is not supported by the API and must be
|
|
4494
4494
|
* created using the CodeBuild console. </p>
|
|
4495
4495
|
*/
|
|
4496
|
-
authType: AuthType |
|
|
4496
|
+
authType: AuthType | undefined;
|
|
4497
4497
|
/**
|
|
4498
4498
|
* @public
|
|
4499
4499
|
* <p> Set to <code>false</code> to prevent overwriting the repository source credentials.
|
|
@@ -4555,7 +4555,7 @@ export interface ListBuildBatchesInput {
|
|
|
4555
4555
|
* </li>
|
|
4556
4556
|
* </ul>
|
|
4557
4557
|
*/
|
|
4558
|
-
sortOrder?: SortOrderType
|
|
4558
|
+
sortOrder?: SortOrderType;
|
|
4559
4559
|
/**
|
|
4560
4560
|
* @public
|
|
4561
4561
|
* <p>The <code>nextToken</code> value returned from a previous call to
|
|
@@ -4615,7 +4615,7 @@ export interface ListBuildBatchesForProjectInput {
|
|
|
4615
4615
|
* </li>
|
|
4616
4616
|
* </ul>
|
|
4617
4617
|
*/
|
|
4618
|
-
sortOrder?: SortOrderType
|
|
4618
|
+
sortOrder?: SortOrderType;
|
|
4619
4619
|
/**
|
|
4620
4620
|
* @public
|
|
4621
4621
|
* <p>The <code>nextToken</code> value returned from a previous call to
|
|
@@ -4661,7 +4661,7 @@ export interface ListBuildsInput {
|
|
|
4661
4661
|
* </li>
|
|
4662
4662
|
* </ul>
|
|
4663
4663
|
*/
|
|
4664
|
-
sortOrder?: SortOrderType
|
|
4664
|
+
sortOrder?: SortOrderType;
|
|
4665
4665
|
/**
|
|
4666
4666
|
* @public
|
|
4667
4667
|
* <p>During a previous call, if there are more than 100 items in the list, only the first
|
|
@@ -4718,7 +4718,7 @@ export interface ListBuildsForProjectInput {
|
|
|
4718
4718
|
* <p>If the project has more than 100 builds, setting the sort order will result in an
|
|
4719
4719
|
* error. </p>
|
|
4720
4720
|
*/
|
|
4721
|
-
sortOrder?: SortOrderType
|
|
4721
|
+
sortOrder?: SortOrderType;
|
|
4722
4722
|
/**
|
|
4723
4723
|
* @public
|
|
4724
4724
|
* <p>During a previous call, if there are more than 100 items in the list, only the first
|
|
@@ -4805,7 +4805,7 @@ export interface EnvironmentLanguage {
|
|
|
4805
4805
|
* @public
|
|
4806
4806
|
* <p>The programming language for the Docker images.</p>
|
|
4807
4807
|
*/
|
|
4808
|
-
language?: LanguageType
|
|
4808
|
+
language?: LanguageType;
|
|
4809
4809
|
/**
|
|
4810
4810
|
* @public
|
|
4811
4811
|
* <p>The list of Docker images that are related by the specified programming
|
|
@@ -4836,7 +4836,7 @@ export interface EnvironmentPlatform {
|
|
|
4836
4836
|
* @public
|
|
4837
4837
|
* <p>The platform's name.</p>
|
|
4838
4838
|
*/
|
|
4839
|
-
platform?: PlatformType
|
|
4839
|
+
platform?: PlatformType;
|
|
4840
4840
|
/**
|
|
4841
4841
|
* @public
|
|
4842
4842
|
* <p>The list of programming languages that are available for the specified
|
|
@@ -4894,7 +4894,7 @@ export interface ListProjectsInput {
|
|
|
4894
4894
|
* <p>Use <code>sortOrder</code> to specify in what order to list the build project names
|
|
4895
4895
|
* based on the preceding criteria.</p>
|
|
4896
4896
|
*/
|
|
4897
|
-
sortBy?: ProjectSortByType
|
|
4897
|
+
sortBy?: ProjectSortByType;
|
|
4898
4898
|
/**
|
|
4899
4899
|
* @public
|
|
4900
4900
|
* <p>The order in which to list build projects. Valid values include:</p>
|
|
@@ -4911,7 +4911,7 @@ export interface ListProjectsInput {
|
|
|
4911
4911
|
* <p>Use <code>sortBy</code> to specify the criterion to be used to list build project
|
|
4912
4912
|
* names.</p>
|
|
4913
4913
|
*/
|
|
4914
|
-
sortOrder?: SortOrderType
|
|
4914
|
+
sortOrder?: SortOrderType;
|
|
4915
4915
|
/**
|
|
4916
4916
|
* @public
|
|
4917
4917
|
* <p>During a previous call, if there are more than 100 items in the list, only the first
|
|
@@ -4966,7 +4966,7 @@ export interface ListReportGroupsInput {
|
|
|
4966
4966
|
* <code>ASCENDING</code> and <code>DESCENDING</code>.
|
|
4967
4967
|
* </p>
|
|
4968
4968
|
*/
|
|
4969
|
-
sortOrder?: SortOrderType
|
|
4969
|
+
sortOrder?: SortOrderType;
|
|
4970
4970
|
/**
|
|
4971
4971
|
* @public
|
|
4972
4972
|
* <p>
|
|
@@ -4988,7 +4988,7 @@ export interface ListReportGroupsInput {
|
|
|
4988
4988
|
* </li>
|
|
4989
4989
|
* </ul>
|
|
4990
4990
|
*/
|
|
4991
|
-
sortBy?: ReportGroupSortByType
|
|
4991
|
+
sortBy?: ReportGroupSortByType;
|
|
4992
4992
|
/**
|
|
4993
4993
|
* @public
|
|
4994
4994
|
* <p>
|
|
@@ -5042,7 +5042,7 @@ export interface ReportFilter {
|
|
|
5042
5042
|
* @public
|
|
5043
5043
|
* <p> The status used to filter reports. You can filter using one status only. </p>
|
|
5044
5044
|
*/
|
|
5045
|
-
status?: ReportStatusType
|
|
5045
|
+
status?: ReportStatusType;
|
|
5046
5046
|
}
|
|
5047
5047
|
/**
|
|
5048
5048
|
* @public
|
|
@@ -5066,7 +5066,7 @@ export interface ListReportsInput {
|
|
|
5066
5066
|
* </li>
|
|
5067
5067
|
* </ul>
|
|
5068
5068
|
*/
|
|
5069
|
-
sortOrder?: SortOrderType
|
|
5069
|
+
sortOrder?: SortOrderType;
|
|
5070
5070
|
/**
|
|
5071
5071
|
* @public
|
|
5072
5072
|
* <p>
|
|
@@ -5145,7 +5145,7 @@ export interface ListReportsForReportGroupInput {
|
|
|
5145
5145
|
* Use to specify whether the results are returned in ascending or descending order.
|
|
5146
5146
|
* </p>
|
|
5147
5147
|
*/
|
|
5148
|
-
sortOrder?: SortOrderType
|
|
5148
|
+
sortOrder?: SortOrderType;
|
|
5149
5149
|
/**
|
|
5150
5150
|
* @public
|
|
5151
5151
|
* <p>
|
|
@@ -5217,7 +5217,7 @@ export interface ListSharedProjectsInput {
|
|
|
5217
5217
|
* </li>
|
|
5218
5218
|
* </ul>
|
|
5219
5219
|
*/
|
|
5220
|
-
sortBy?: SharedResourceSortByType
|
|
5220
|
+
sortBy?: SharedResourceSortByType;
|
|
5221
5221
|
/**
|
|
5222
5222
|
* @public
|
|
5223
5223
|
* <p>The order in which to list shared build projects. Valid values include:</p>
|
|
@@ -5232,7 +5232,7 @@ export interface ListSharedProjectsInput {
|
|
|
5232
5232
|
* </li>
|
|
5233
5233
|
* </ul>
|
|
5234
5234
|
*/
|
|
5235
|
-
sortOrder?: SortOrderType
|
|
5235
|
+
sortOrder?: SortOrderType;
|
|
5236
5236
|
/**
|
|
5237
5237
|
* @public
|
|
5238
5238
|
* <p> The maximum number of paginated shared build projects returned per response. Use
|
|
@@ -5290,7 +5290,7 @@ export interface ListSharedReportGroupsInput {
|
|
|
5290
5290
|
* </li>
|
|
5291
5291
|
* </ul>
|
|
5292
5292
|
*/
|
|
5293
|
-
sortOrder?: SortOrderType
|
|
5293
|
+
sortOrder?: SortOrderType;
|
|
5294
5294
|
/**
|
|
5295
5295
|
* @public
|
|
5296
5296
|
* <p> The criterion to be used to list report groups shared with the current Amazon Web Services account or
|
|
@@ -5307,7 +5307,7 @@ export interface ListSharedReportGroupsInput {
|
|
|
5307
5307
|
* </li>
|
|
5308
5308
|
* </ul>
|
|
5309
5309
|
*/
|
|
5310
|
-
sortBy?: SharedResourceSortByType
|
|
5310
|
+
sortBy?: SharedResourceSortByType;
|
|
5311
5311
|
/**
|
|
5312
5312
|
* @public
|
|
5313
5313
|
* <p> During a previous call, the maximum number of items that can be returned is the value
|
|
@@ -5368,13 +5368,13 @@ export interface SourceCredentialsInfo {
|
|
|
5368
5368
|
* <p> The type of source provider. The valid options are GITHUB, GITHUB_ENTERPRISE, or
|
|
5369
5369
|
* BITBUCKET. </p>
|
|
5370
5370
|
*/
|
|
5371
|
-
serverType?: ServerType
|
|
5371
|
+
serverType?: ServerType;
|
|
5372
5372
|
/**
|
|
5373
5373
|
* @public
|
|
5374
5374
|
* <p> The type of authentication used by the credentials. Valid options are OAUTH,
|
|
5375
5375
|
* BASIC_AUTH, or PERSONAL_ACCESS_TOKEN. </p>
|
|
5376
5376
|
*/
|
|
5377
|
-
authType?: AuthType
|
|
5377
|
+
authType?: AuthType;
|
|
5378
5378
|
}
|
|
5379
5379
|
/**
|
|
5380
5380
|
* @public
|
|
@@ -5480,7 +5480,7 @@ export interface RetryBuildBatchInput {
|
|
|
5480
5480
|
* @public
|
|
5481
5481
|
* <p>Specifies the type of retry to perform.</p>
|
|
5482
5482
|
*/
|
|
5483
|
-
retryType?: RetryBuildBatchType
|
|
5483
|
+
retryType?: RetryBuildBatchType;
|
|
5484
5484
|
}
|
|
5485
5485
|
/**
|
|
5486
5486
|
* @public
|
|
@@ -5572,7 +5572,7 @@ export interface StartBuildInput {
|
|
|
5572
5572
|
* <p>A source input type, for this build, that overrides the source input defined in the
|
|
5573
5573
|
* build project.</p>
|
|
5574
5574
|
*/
|
|
5575
|
-
sourceTypeOverride?: SourceType
|
|
5575
|
+
sourceTypeOverride?: SourceType;
|
|
5576
5576
|
/**
|
|
5577
5577
|
* @public
|
|
5578
5578
|
* <p>A location that overrides, for this build, the source location for the one defined in
|
|
@@ -5646,7 +5646,7 @@ export interface StartBuildInput {
|
|
|
5646
5646
|
* <p>A container type for this build that overrides the one specified in the build
|
|
5647
5647
|
* project.</p>
|
|
5648
5648
|
*/
|
|
5649
|
-
environmentTypeOverride?: EnvironmentType
|
|
5649
|
+
environmentTypeOverride?: EnvironmentType;
|
|
5650
5650
|
/**
|
|
5651
5651
|
* @public
|
|
5652
5652
|
* <p>The name of an image for this build that overrides the one specified in the build
|
|
@@ -5658,7 +5658,7 @@ export interface StartBuildInput {
|
|
|
5658
5658
|
* <p>The name of a compute type for this build that overrides the one specified in the
|
|
5659
5659
|
* build project.</p>
|
|
5660
5660
|
*/
|
|
5661
|
-
computeTypeOverride?: ComputeType
|
|
5661
|
+
computeTypeOverride?: ComputeType;
|
|
5662
5662
|
/**
|
|
5663
5663
|
* @public
|
|
5664
5664
|
* <p>The name of a certificate for this build that overrides the one specified in the build
|
|
@@ -5743,7 +5743,7 @@ export interface StartBuildInput {
|
|
|
5743
5743
|
* <code>SERVICE_ROLE</code> credentials. When using an CodeBuild curated image,
|
|
5744
5744
|
* you must use <code>CODEBUILD</code> credentials. </p>
|
|
5745
5745
|
*/
|
|
5746
|
-
imagePullCredentialsTypeOverride?: ImagePullCredentialsType
|
|
5746
|
+
imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
|
|
5747
5747
|
/**
|
|
5748
5748
|
* @public
|
|
5749
5749
|
* <p>Specifies if session debugging is enabled for this build. For more information, see
|
|
@@ -5843,7 +5843,7 @@ export interface StartBuildBatchInput {
|
|
|
5843
5843
|
* <p>The source input type that overrides the source input defined in the batch
|
|
5844
5844
|
* build project.</p>
|
|
5845
5845
|
*/
|
|
5846
|
-
sourceTypeOverride?: SourceType
|
|
5846
|
+
sourceTypeOverride?: SourceType;
|
|
5847
5847
|
/**
|
|
5848
5848
|
* @public
|
|
5849
5849
|
* <p>A location that overrides, for this batch build, the source location defined in
|
|
@@ -5907,7 +5907,7 @@ export interface StartBuildBatchInput {
|
|
|
5907
5907
|
* <p>A container type for this batch build that overrides the one specified in the batch build
|
|
5908
5908
|
* project.</p>
|
|
5909
5909
|
*/
|
|
5910
|
-
environmentTypeOverride?: EnvironmentType
|
|
5910
|
+
environmentTypeOverride?: EnvironmentType;
|
|
5911
5911
|
/**
|
|
5912
5912
|
* @public
|
|
5913
5913
|
* <p>The name of an image for this batch build that overrides the one specified in the batch
|
|
@@ -5919,7 +5919,7 @@ export interface StartBuildBatchInput {
|
|
|
5919
5919
|
* <p>The name of a compute type for this batch build that overrides the one specified in the
|
|
5920
5920
|
* batch build project.</p>
|
|
5921
5921
|
*/
|
|
5922
|
-
computeTypeOverride?: ComputeType
|
|
5922
|
+
computeTypeOverride?: ComputeType;
|
|
5923
5923
|
/**
|
|
5924
5924
|
* @public
|
|
5925
5925
|
* <p>The name of a certificate for this batch build that overrides the one specified in the batch build
|
|
@@ -6004,7 +6004,7 @@ export interface StartBuildBatchInput {
|
|
|
6004
6004
|
* <code>SERVICE_ROLE</code> credentials. When using an CodeBuild curated image,
|
|
6005
6005
|
* you must use <code>CODEBUILD</code> credentials. </p>
|
|
6006
6006
|
*/
|
|
6007
|
-
imagePullCredentialsTypeOverride?: ImagePullCredentialsType
|
|
6007
|
+
imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
|
|
6008
6008
|
/**
|
|
6009
6009
|
* @public
|
|
6010
6010
|
* <p>A <code>BuildBatchConfigOverride</code> object that contains batch build configuration
|
|
@@ -6269,7 +6269,7 @@ export interface UpdateProjectVisibilityInput {
|
|
|
6269
6269
|
* </dd>
|
|
6270
6270
|
* </dl>
|
|
6271
6271
|
*/
|
|
6272
|
-
projectVisibility: ProjectVisibilityType |
|
|
6272
|
+
projectVisibility: ProjectVisibilityType | undefined;
|
|
6273
6273
|
/**
|
|
6274
6274
|
* @public
|
|
6275
6275
|
* <p>The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for
|
|
@@ -6305,7 +6305,7 @@ export interface UpdateProjectVisibilityOutput {
|
|
|
6305
6305
|
* </dd>
|
|
6306
6306
|
* </dl>
|
|
6307
6307
|
*/
|
|
6308
|
-
projectVisibility?: ProjectVisibilityType
|
|
6308
|
+
projectVisibility?: ProjectVisibilityType;
|
|
6309
6309
|
}
|
|
6310
6310
|
/**
|
|
6311
6311
|
* @public
|
|
@@ -6398,7 +6398,7 @@ export interface UpdateWebhookInput {
|
|
|
6398
6398
|
* @public
|
|
6399
6399
|
* <p>Specifies the type of build this webhook will trigger.</p>
|
|
6400
6400
|
*/
|
|
6401
|
-
buildType?: WebhookBuildType
|
|
6401
|
+
buildType?: WebhookBuildType;
|
|
6402
6402
|
}
|
|
6403
6403
|
/**
|
|
6404
6404
|
* @public
|
|
@@ -66,7 +66,7 @@ export interface BuildArtifacts {
|
|
|
66
66
|
overrideArtifactName?: boolean;
|
|
67
67
|
encryptionDisabled?: boolean;
|
|
68
68
|
artifactIdentifier?: string;
|
|
69
|
-
bucketOwnerAccess?: BucketOwnerAccess
|
|
69
|
+
bucketOwnerAccess?: BucketOwnerAccess;
|
|
70
70
|
}
|
|
71
71
|
export declare const BatchReportModeType: {
|
|
72
72
|
readonly REPORT_AGGREGATED_BATCH: "REPORT_AGGREGATED_BATCH";
|
|
@@ -83,7 +83,7 @@ export interface ProjectBuildBatchConfig {
|
|
|
83
83
|
combineArtifacts?: boolean;
|
|
84
84
|
restrictions?: BatchRestrictions;
|
|
85
85
|
timeoutInMins?: number;
|
|
86
|
-
batchReportMode?: BatchReportModeType
|
|
86
|
+
batchReportMode?: BatchReportModeType;
|
|
87
87
|
}
|
|
88
88
|
export declare const StatusType: {
|
|
89
89
|
readonly FAILED: "FAILED";
|
|
@@ -95,14 +95,14 @@ export declare const StatusType: {
|
|
|
95
95
|
};
|
|
96
96
|
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
97
97
|
export interface ResolvedArtifact {
|
|
98
|
-
type?: ArtifactsType
|
|
98
|
+
type?: ArtifactsType;
|
|
99
99
|
location?: string;
|
|
100
100
|
identifier?: string;
|
|
101
101
|
}
|
|
102
102
|
export interface BuildSummary {
|
|
103
103
|
arn?: string;
|
|
104
104
|
requestedOn?: Date;
|
|
105
|
-
buildStatus?: StatusType
|
|
105
|
+
buildStatus?: StatusType;
|
|
106
106
|
primaryArtifact?: ResolvedArtifact;
|
|
107
107
|
secondaryArtifacts?: ResolvedArtifact[];
|
|
108
108
|
}
|
|
@@ -126,9 +126,9 @@ export declare const CacheType: {
|
|
|
126
126
|
};
|
|
127
127
|
export type CacheType = (typeof CacheType)[keyof typeof CacheType];
|
|
128
128
|
export interface ProjectCache {
|
|
129
|
-
type: CacheType |
|
|
129
|
+
type: CacheType | undefined;
|
|
130
130
|
location?: string;
|
|
131
|
-
modes?:
|
|
131
|
+
modes?: CacheMode[];
|
|
132
132
|
}
|
|
133
133
|
export declare const ComputeType: {
|
|
134
134
|
readonly BUILD_GENERAL1_2XLARGE: "BUILD_GENERAL1_2XLARGE";
|
|
@@ -147,7 +147,7 @@ export type EnvironmentVariableType =
|
|
|
147
147
|
export interface EnvironmentVariable {
|
|
148
148
|
name: string | undefined;
|
|
149
149
|
value: string | undefined;
|
|
150
|
-
type?: EnvironmentVariableType
|
|
150
|
+
type?: EnvironmentVariableType;
|
|
151
151
|
}
|
|
152
152
|
export declare const ImagePullCredentialsType: {
|
|
153
153
|
readonly CODEBUILD: "CODEBUILD";
|
|
@@ -162,7 +162,7 @@ export type CredentialProviderType =
|
|
|
162
162
|
(typeof CredentialProviderType)[keyof typeof CredentialProviderType];
|
|
163
163
|
export interface RegistryCredential {
|
|
164
164
|
credential: string | undefined;
|
|
165
|
-
credentialProvider: CredentialProviderType |
|
|
165
|
+
credentialProvider: CredentialProviderType | undefined;
|
|
166
166
|
}
|
|
167
167
|
export declare const EnvironmentType: {
|
|
168
168
|
readonly ARM_CONTAINER: "ARM_CONTAINER";
|
|
@@ -174,14 +174,14 @@ export declare const EnvironmentType: {
|
|
|
174
174
|
export type EnvironmentType =
|
|
175
175
|
(typeof EnvironmentType)[keyof typeof EnvironmentType];
|
|
176
176
|
export interface ProjectEnvironment {
|
|
177
|
-
type: EnvironmentType |
|
|
177
|
+
type: EnvironmentType | undefined;
|
|
178
178
|
image: string | undefined;
|
|
179
|
-
computeType: ComputeType |
|
|
179
|
+
computeType: ComputeType | undefined;
|
|
180
180
|
environmentVariables?: EnvironmentVariable[];
|
|
181
181
|
privilegedMode?: boolean;
|
|
182
182
|
certificate?: string;
|
|
183
183
|
registryCredential?: RegistryCredential;
|
|
184
|
-
imagePullCredentialsType?: ImagePullCredentialsType
|
|
184
|
+
imagePullCredentialsType?: ImagePullCredentialsType;
|
|
185
185
|
}
|
|
186
186
|
export declare const FileSystemType: {
|
|
187
187
|
readonly EFS: "EFS";
|
|
@@ -189,7 +189,7 @@ export declare const FileSystemType: {
|
|
|
189
189
|
export type FileSystemType =
|
|
190
190
|
(typeof FileSystemType)[keyof typeof FileSystemType];
|
|
191
191
|
export interface ProjectFileSystemLocation {
|
|
192
|
-
type?: FileSystemType
|
|
192
|
+
type?: FileSystemType;
|
|
193
193
|
location?: string;
|
|
194
194
|
mountPoint?: string;
|
|
195
195
|
identifier?: string;
|
|
@@ -202,15 +202,15 @@ export declare const LogsConfigStatusType: {
|
|
|
202
202
|
export type LogsConfigStatusType =
|
|
203
203
|
(typeof LogsConfigStatusType)[keyof typeof LogsConfigStatusType];
|
|
204
204
|
export interface CloudWatchLogsConfig {
|
|
205
|
-
status: LogsConfigStatusType |
|
|
205
|
+
status: LogsConfigStatusType | undefined;
|
|
206
206
|
groupName?: string;
|
|
207
207
|
streamName?: string;
|
|
208
208
|
}
|
|
209
209
|
export interface S3LogsConfig {
|
|
210
|
-
status: LogsConfigStatusType |
|
|
210
|
+
status: LogsConfigStatusType | undefined;
|
|
211
211
|
location?: string;
|
|
212
212
|
encryptionDisabled?: boolean;
|
|
213
|
-
bucketOwnerAccess?: BucketOwnerAccess
|
|
213
|
+
bucketOwnerAccess?: BucketOwnerAccess;
|
|
214
214
|
}
|
|
215
215
|
export interface LogsConfig {
|
|
216
216
|
cloudWatchLogs?: CloudWatchLogsConfig;
|
|
@@ -232,8 +232,8 @@ export declare const BuildBatchPhaseType: {
|
|
|
232
232
|
export type BuildBatchPhaseType =
|
|
233
233
|
(typeof BuildBatchPhaseType)[keyof typeof BuildBatchPhaseType];
|
|
234
234
|
export interface BuildBatchPhase {
|
|
235
|
-
phaseType?: BuildBatchPhaseType
|
|
236
|
-
phaseStatus?: StatusType
|
|
235
|
+
phaseType?: BuildBatchPhaseType;
|
|
236
|
+
phaseStatus?: StatusType;
|
|
237
237
|
startTime?: Date;
|
|
238
238
|
endTime?: Date;
|
|
239
239
|
durationInSeconds?: number;
|
|
@@ -245,7 +245,7 @@ export declare const SourceAuthType: {
|
|
|
245
245
|
export type SourceAuthType =
|
|
246
246
|
(typeof SourceAuthType)[keyof typeof SourceAuthType];
|
|
247
247
|
export interface SourceAuth {
|
|
248
|
-
type: SourceAuthType |
|
|
248
|
+
type: SourceAuthType | undefined;
|
|
249
249
|
resource?: string;
|
|
250
250
|
}
|
|
251
251
|
export interface BuildStatusConfig {
|
|
@@ -266,7 +266,7 @@ export declare const SourceType: {
|
|
|
266
266
|
};
|
|
267
267
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
268
268
|
export interface ProjectSource {
|
|
269
|
-
type: SourceType |
|
|
269
|
+
type: SourceType | undefined;
|
|
270
270
|
location?: string;
|
|
271
271
|
gitCloneDepth?: number;
|
|
272
272
|
gitSubmodulesConfig?: GitSubmodulesConfig;
|
|
@@ -292,7 +292,7 @@ export interface BuildBatch {
|
|
|
292
292
|
startTime?: Date;
|
|
293
293
|
endTime?: Date;
|
|
294
294
|
currentPhase?: string;
|
|
295
|
-
buildBatchStatus?: StatusType
|
|
295
|
+
buildBatchStatus?: StatusType;
|
|
296
296
|
sourceVersion?: string;
|
|
297
297
|
resolvedSourceVersion?: string;
|
|
298
298
|
projectName?: string;
|
|
@@ -363,8 +363,8 @@ export declare const BuildPhaseType: {
|
|
|
363
363
|
export type BuildPhaseType =
|
|
364
364
|
(typeof BuildPhaseType)[keyof typeof BuildPhaseType];
|
|
365
365
|
export interface BuildPhase {
|
|
366
|
-
phaseType?: BuildPhaseType
|
|
367
|
-
phaseStatus?: StatusType
|
|
366
|
+
phaseType?: BuildPhaseType;
|
|
367
|
+
phaseStatus?: StatusType;
|
|
368
368
|
startTime?: Date;
|
|
369
369
|
endTime?: Date;
|
|
370
370
|
durationInSeconds?: number;
|
|
@@ -377,7 +377,7 @@ export interface Build {
|
|
|
377
377
|
startTime?: Date;
|
|
378
378
|
endTime?: Date;
|
|
379
379
|
currentPhase?: string;
|
|
380
|
-
buildStatus?: StatusType
|
|
380
|
+
buildStatus?: StatusType;
|
|
381
381
|
sourceVersion?: string;
|
|
382
382
|
resolvedSourceVersion?: string;
|
|
383
383
|
projectName?: string;
|
|
@@ -412,16 +412,16 @@ export interface BatchGetProjectsInput {
|
|
|
412
412
|
names: string[] | undefined;
|
|
413
413
|
}
|
|
414
414
|
export interface ProjectArtifacts {
|
|
415
|
-
type: ArtifactsType |
|
|
415
|
+
type: ArtifactsType | undefined;
|
|
416
416
|
location?: string;
|
|
417
417
|
path?: string;
|
|
418
|
-
namespaceType?: ArtifactNamespace
|
|
418
|
+
namespaceType?: ArtifactNamespace;
|
|
419
419
|
name?: string;
|
|
420
|
-
packaging?: ArtifactPackaging
|
|
420
|
+
packaging?: ArtifactPackaging;
|
|
421
421
|
overrideArtifactName?: boolean;
|
|
422
422
|
encryptionDisabled?: boolean;
|
|
423
423
|
artifactIdentifier?: string;
|
|
424
|
-
bucketOwnerAccess?: BucketOwnerAccess
|
|
424
|
+
bucketOwnerAccess?: BucketOwnerAccess;
|
|
425
425
|
}
|
|
426
426
|
export interface ProjectBadge {
|
|
427
427
|
badgeEnabled?: boolean;
|
|
@@ -454,7 +454,7 @@ export declare const WebhookFilterType: {
|
|
|
454
454
|
export type WebhookFilterType =
|
|
455
455
|
(typeof WebhookFilterType)[keyof typeof WebhookFilterType];
|
|
456
456
|
export interface WebhookFilter {
|
|
457
|
-
type: WebhookFilterType |
|
|
457
|
+
type: WebhookFilterType | undefined;
|
|
458
458
|
pattern: string | undefined;
|
|
459
459
|
excludeMatchedPattern?: boolean;
|
|
460
460
|
}
|
|
@@ -464,7 +464,7 @@ export interface Webhook {
|
|
|
464
464
|
secret?: string;
|
|
465
465
|
branchFilter?: string;
|
|
466
466
|
filterGroups?: WebhookFilter[][];
|
|
467
|
-
buildType?: WebhookBuildType
|
|
467
|
+
buildType?: WebhookBuildType;
|
|
468
468
|
lastModifiedSecret?: Date;
|
|
469
469
|
}
|
|
470
470
|
export interface Project {
|
|
@@ -493,7 +493,7 @@ export interface Project {
|
|
|
493
493
|
fileSystemLocations?: ProjectFileSystemLocation[];
|
|
494
494
|
buildBatchConfig?: ProjectBuildBatchConfig;
|
|
495
495
|
concurrentBuildLimit?: number;
|
|
496
|
-
projectVisibility?: ProjectVisibilityType
|
|
496
|
+
projectVisibility?: ProjectVisibilityType;
|
|
497
497
|
publicProjectAlias?: string;
|
|
498
498
|
resourceAccessRole?: string;
|
|
499
499
|
}
|
|
@@ -520,12 +520,12 @@ export interface S3ReportExportConfig {
|
|
|
520
520
|
bucket?: string;
|
|
521
521
|
bucketOwner?: string;
|
|
522
522
|
path?: string;
|
|
523
|
-
packaging?: ReportPackagingType
|
|
523
|
+
packaging?: ReportPackagingType;
|
|
524
524
|
encryptionKey?: string;
|
|
525
525
|
encryptionDisabled?: boolean;
|
|
526
526
|
}
|
|
527
527
|
export interface ReportExportConfig {
|
|
528
|
-
exportConfigType?: ReportExportConfigType
|
|
528
|
+
exportConfigType?: ReportExportConfigType;
|
|
529
529
|
s3Destination?: S3ReportExportConfig;
|
|
530
530
|
}
|
|
531
531
|
export declare const ReportGroupStatusType: {
|
|
@@ -542,12 +542,12 @@ export type ReportType = (typeof ReportType)[keyof typeof ReportType];
|
|
|
542
542
|
export interface ReportGroup {
|
|
543
543
|
arn?: string;
|
|
544
544
|
name?: string;
|
|
545
|
-
type?: ReportType
|
|
545
|
+
type?: ReportType;
|
|
546
546
|
exportConfig?: ReportExportConfig;
|
|
547
547
|
created?: Date;
|
|
548
548
|
lastModified?: Date;
|
|
549
549
|
tags?: Tag[];
|
|
550
|
-
status?: ReportGroupStatusType
|
|
550
|
+
status?: ReportGroupStatusType;
|
|
551
551
|
}
|
|
552
552
|
export interface BatchGetReportGroupsOutput {
|
|
553
553
|
reportGroups?: ReportGroup[];
|
|
@@ -580,11 +580,11 @@ export interface TestReportSummary {
|
|
|
580
580
|
}
|
|
581
581
|
export interface Report {
|
|
582
582
|
arn?: string;
|
|
583
|
-
type?: ReportType
|
|
583
|
+
type?: ReportType;
|
|
584
584
|
name?: string;
|
|
585
585
|
reportGroupArn?: string;
|
|
586
586
|
executionId?: string;
|
|
587
|
-
status?: ReportStatusType
|
|
587
|
+
status?: ReportStatusType;
|
|
588
588
|
created?: Date;
|
|
589
589
|
expired?: Date;
|
|
590
590
|
exportConfig?: ReportExportConfig;
|
|
@@ -597,7 +597,7 @@ export interface BatchGetReportsOutput {
|
|
|
597
597
|
reportsNotFound?: string[];
|
|
598
598
|
}
|
|
599
599
|
export interface BuildBatchFilter {
|
|
600
|
-
status?: StatusType
|
|
600
|
+
status?: StatusType;
|
|
601
601
|
}
|
|
602
602
|
export interface CreateProjectInput {
|
|
603
603
|
name: string | undefined;
|
|
@@ -634,7 +634,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
634
634
|
}
|
|
635
635
|
export interface CreateReportGroupInput {
|
|
636
636
|
name: string | undefined;
|
|
637
|
-
type: ReportType |
|
|
637
|
+
type: ReportType | undefined;
|
|
638
638
|
exportConfig: ReportExportConfig | undefined;
|
|
639
639
|
tags?: Tag[];
|
|
640
640
|
}
|
|
@@ -645,7 +645,7 @@ export interface CreateWebhookInput {
|
|
|
645
645
|
projectName: string | undefined;
|
|
646
646
|
branchFilter?: string;
|
|
647
647
|
filterGroups?: WebhookFilter[][];
|
|
648
|
-
buildType?: WebhookBuildType
|
|
648
|
+
buildType?: WebhookBuildType;
|
|
649
649
|
}
|
|
650
650
|
export interface CreateWebhookOutput {
|
|
651
651
|
webhook?: Webhook;
|
|
@@ -714,8 +714,8 @@ export interface DescribeCodeCoveragesInput {
|
|
|
714
714
|
reportArn: string | undefined;
|
|
715
715
|
nextToken?: string;
|
|
716
716
|
maxResults?: number;
|
|
717
|
-
sortOrder?: SortOrderType
|
|
718
|
-
sortBy?: ReportCodeCoverageSortByType
|
|
717
|
+
sortOrder?: SortOrderType;
|
|
718
|
+
sortBy?: ReportCodeCoverageSortByType;
|
|
719
719
|
minLineCoveragePercentage?: number;
|
|
720
720
|
maxLineCoveragePercentage?: number;
|
|
721
721
|
}
|
|
@@ -775,7 +775,7 @@ export type ReportGroupTrendFieldType =
|
|
|
775
775
|
export interface GetReportGroupTrendInput {
|
|
776
776
|
reportGroupArn: string | undefined;
|
|
777
777
|
numOfReports?: number;
|
|
778
|
-
trendField: ReportGroupTrendFieldType |
|
|
778
|
+
trendField: ReportGroupTrendFieldType | undefined;
|
|
779
779
|
}
|
|
780
780
|
export interface ReportWithRawData {
|
|
781
781
|
reportArn?: string;
|
|
@@ -805,8 +805,8 @@ export type ServerType = (typeof ServerType)[keyof typeof ServerType];
|
|
|
805
805
|
export interface ImportSourceCredentialsInput {
|
|
806
806
|
username?: string;
|
|
807
807
|
token: string | undefined;
|
|
808
|
-
serverType: ServerType |
|
|
809
|
-
authType: AuthType |
|
|
808
|
+
serverType: ServerType | undefined;
|
|
809
|
+
authType: AuthType | undefined;
|
|
810
810
|
shouldOverwrite?: boolean;
|
|
811
811
|
}
|
|
812
812
|
export interface ImportSourceCredentialsOutput {
|
|
@@ -819,7 +819,7 @@ export interface InvalidateProjectCacheOutput {}
|
|
|
819
819
|
export interface ListBuildBatchesInput {
|
|
820
820
|
filter?: BuildBatchFilter;
|
|
821
821
|
maxResults?: number;
|
|
822
|
-
sortOrder?: SortOrderType
|
|
822
|
+
sortOrder?: SortOrderType;
|
|
823
823
|
nextToken?: string;
|
|
824
824
|
}
|
|
825
825
|
export interface ListBuildBatchesOutput {
|
|
@@ -830,7 +830,7 @@ export interface ListBuildBatchesForProjectInput {
|
|
|
830
830
|
projectName?: string;
|
|
831
831
|
filter?: BuildBatchFilter;
|
|
832
832
|
maxResults?: number;
|
|
833
|
-
sortOrder?: SortOrderType
|
|
833
|
+
sortOrder?: SortOrderType;
|
|
834
834
|
nextToken?: string;
|
|
835
835
|
}
|
|
836
836
|
export interface ListBuildBatchesForProjectOutput {
|
|
@@ -838,7 +838,7 @@ export interface ListBuildBatchesForProjectOutput {
|
|
|
838
838
|
nextToken?: string;
|
|
839
839
|
}
|
|
840
840
|
export interface ListBuildsInput {
|
|
841
|
-
sortOrder?: SortOrderType
|
|
841
|
+
sortOrder?: SortOrderType;
|
|
842
842
|
nextToken?: string;
|
|
843
843
|
}
|
|
844
844
|
export interface ListBuildsOutput {
|
|
@@ -847,7 +847,7 @@ export interface ListBuildsOutput {
|
|
|
847
847
|
}
|
|
848
848
|
export interface ListBuildsForProjectInput {
|
|
849
849
|
projectName: string | undefined;
|
|
850
|
-
sortOrder?: SortOrderType
|
|
850
|
+
sortOrder?: SortOrderType;
|
|
851
851
|
nextToken?: string;
|
|
852
852
|
}
|
|
853
853
|
export interface ListBuildsForProjectOutput {
|
|
@@ -874,7 +874,7 @@ export declare const LanguageType: {
|
|
|
874
874
|
};
|
|
875
875
|
export type LanguageType = (typeof LanguageType)[keyof typeof LanguageType];
|
|
876
876
|
export interface EnvironmentLanguage {
|
|
877
|
-
language?: LanguageType
|
|
877
|
+
language?: LanguageType;
|
|
878
878
|
images?: EnvironmentImage[];
|
|
879
879
|
}
|
|
880
880
|
export declare const PlatformType: {
|
|
@@ -885,7 +885,7 @@ export declare const PlatformType: {
|
|
|
885
885
|
};
|
|
886
886
|
export type PlatformType = (typeof PlatformType)[keyof typeof PlatformType];
|
|
887
887
|
export interface EnvironmentPlatform {
|
|
888
|
-
platform?: PlatformType
|
|
888
|
+
platform?: PlatformType;
|
|
889
889
|
languages?: EnvironmentLanguage[];
|
|
890
890
|
}
|
|
891
891
|
export interface ListCuratedEnvironmentImagesOutput {
|
|
@@ -899,8 +899,8 @@ export declare const ProjectSortByType: {
|
|
|
899
899
|
export type ProjectSortByType =
|
|
900
900
|
(typeof ProjectSortByType)[keyof typeof ProjectSortByType];
|
|
901
901
|
export interface ListProjectsInput {
|
|
902
|
-
sortBy?: ProjectSortByType
|
|
903
|
-
sortOrder?: SortOrderType
|
|
902
|
+
sortBy?: ProjectSortByType;
|
|
903
|
+
sortOrder?: SortOrderType;
|
|
904
904
|
nextToken?: string;
|
|
905
905
|
}
|
|
906
906
|
export interface ListProjectsOutput {
|
|
@@ -915,8 +915,8 @@ export declare const ReportGroupSortByType: {
|
|
|
915
915
|
export type ReportGroupSortByType =
|
|
916
916
|
(typeof ReportGroupSortByType)[keyof typeof ReportGroupSortByType];
|
|
917
917
|
export interface ListReportGroupsInput {
|
|
918
|
-
sortOrder?: SortOrderType
|
|
919
|
-
sortBy?: ReportGroupSortByType
|
|
918
|
+
sortOrder?: SortOrderType;
|
|
919
|
+
sortBy?: ReportGroupSortByType;
|
|
920
920
|
nextToken?: string;
|
|
921
921
|
maxResults?: number;
|
|
922
922
|
}
|
|
@@ -925,10 +925,10 @@ export interface ListReportGroupsOutput {
|
|
|
925
925
|
reportGroups?: string[];
|
|
926
926
|
}
|
|
927
927
|
export interface ReportFilter {
|
|
928
|
-
status?: ReportStatusType
|
|
928
|
+
status?: ReportStatusType;
|
|
929
929
|
}
|
|
930
930
|
export interface ListReportsInput {
|
|
931
|
-
sortOrder?: SortOrderType
|
|
931
|
+
sortOrder?: SortOrderType;
|
|
932
932
|
nextToken?: string;
|
|
933
933
|
maxResults?: number;
|
|
934
934
|
filter?: ReportFilter;
|
|
@@ -940,7 +940,7 @@ export interface ListReportsOutput {
|
|
|
940
940
|
export interface ListReportsForReportGroupInput {
|
|
941
941
|
reportGroupArn: string | undefined;
|
|
942
942
|
nextToken?: string;
|
|
943
|
-
sortOrder?: SortOrderType
|
|
943
|
+
sortOrder?: SortOrderType;
|
|
944
944
|
maxResults?: number;
|
|
945
945
|
filter?: ReportFilter;
|
|
946
946
|
}
|
|
@@ -955,8 +955,8 @@ export declare const SharedResourceSortByType: {
|
|
|
955
955
|
export type SharedResourceSortByType =
|
|
956
956
|
(typeof SharedResourceSortByType)[keyof typeof SharedResourceSortByType];
|
|
957
957
|
export interface ListSharedProjectsInput {
|
|
958
|
-
sortBy?: SharedResourceSortByType
|
|
959
|
-
sortOrder?: SortOrderType
|
|
958
|
+
sortBy?: SharedResourceSortByType;
|
|
959
|
+
sortOrder?: SortOrderType;
|
|
960
960
|
maxResults?: number;
|
|
961
961
|
nextToken?: string;
|
|
962
962
|
}
|
|
@@ -965,8 +965,8 @@ export interface ListSharedProjectsOutput {
|
|
|
965
965
|
projects?: string[];
|
|
966
966
|
}
|
|
967
967
|
export interface ListSharedReportGroupsInput {
|
|
968
|
-
sortOrder?: SortOrderType
|
|
969
|
-
sortBy?: SharedResourceSortByType
|
|
968
|
+
sortOrder?: SortOrderType;
|
|
969
|
+
sortBy?: SharedResourceSortByType;
|
|
970
970
|
nextToken?: string;
|
|
971
971
|
maxResults?: number;
|
|
972
972
|
}
|
|
@@ -977,8 +977,8 @@ export interface ListSharedReportGroupsOutput {
|
|
|
977
977
|
export interface ListSourceCredentialsInput {}
|
|
978
978
|
export interface SourceCredentialsInfo {
|
|
979
979
|
arn?: string;
|
|
980
|
-
serverType?: ServerType
|
|
981
|
-
authType?: AuthType
|
|
980
|
+
serverType?: ServerType;
|
|
981
|
+
authType?: AuthType;
|
|
982
982
|
}
|
|
983
983
|
export interface ListSourceCredentialsOutput {
|
|
984
984
|
sourceCredentialsInfos?: SourceCredentialsInfo[];
|
|
@@ -1006,7 +1006,7 @@ export type RetryBuildBatchType =
|
|
|
1006
1006
|
export interface RetryBuildBatchInput {
|
|
1007
1007
|
id?: string;
|
|
1008
1008
|
idempotencyToken?: string;
|
|
1009
|
-
retryType?: RetryBuildBatchType
|
|
1009
|
+
retryType?: RetryBuildBatchType;
|
|
1010
1010
|
}
|
|
1011
1011
|
export interface RetryBuildBatchOutput {
|
|
1012
1012
|
buildBatch?: BuildBatch;
|
|
@@ -1019,7 +1019,7 @@ export interface StartBuildInput {
|
|
|
1019
1019
|
artifactsOverride?: ProjectArtifacts;
|
|
1020
1020
|
secondaryArtifactsOverride?: ProjectArtifacts[];
|
|
1021
1021
|
environmentVariablesOverride?: EnvironmentVariable[];
|
|
1022
|
-
sourceTypeOverride?: SourceType
|
|
1022
|
+
sourceTypeOverride?: SourceType;
|
|
1023
1023
|
sourceLocationOverride?: string;
|
|
1024
1024
|
sourceAuthOverride?: SourceAuth;
|
|
1025
1025
|
gitCloneDepthOverride?: number;
|
|
@@ -1028,9 +1028,9 @@ export interface StartBuildInput {
|
|
|
1028
1028
|
insecureSslOverride?: boolean;
|
|
1029
1029
|
reportBuildStatusOverride?: boolean;
|
|
1030
1030
|
buildStatusConfigOverride?: BuildStatusConfig;
|
|
1031
|
-
environmentTypeOverride?: EnvironmentType
|
|
1031
|
+
environmentTypeOverride?: EnvironmentType;
|
|
1032
1032
|
imageOverride?: string;
|
|
1033
|
-
computeTypeOverride?: ComputeType
|
|
1033
|
+
computeTypeOverride?: ComputeType;
|
|
1034
1034
|
certificateOverride?: string;
|
|
1035
1035
|
cacheOverride?: ProjectCache;
|
|
1036
1036
|
serviceRoleOverride?: string;
|
|
@@ -1041,7 +1041,7 @@ export interface StartBuildInput {
|
|
|
1041
1041
|
idempotencyToken?: string;
|
|
1042
1042
|
logsConfigOverride?: LogsConfig;
|
|
1043
1043
|
registryCredentialOverride?: RegistryCredential;
|
|
1044
|
-
imagePullCredentialsTypeOverride?: ImagePullCredentialsType
|
|
1044
|
+
imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
|
|
1045
1045
|
debugSessionEnabled?: boolean;
|
|
1046
1046
|
}
|
|
1047
1047
|
export interface StartBuildOutput {
|
|
@@ -1055,7 +1055,7 @@ export interface StartBuildBatchInput {
|
|
|
1055
1055
|
artifactsOverride?: ProjectArtifacts;
|
|
1056
1056
|
secondaryArtifactsOverride?: ProjectArtifacts[];
|
|
1057
1057
|
environmentVariablesOverride?: EnvironmentVariable[];
|
|
1058
|
-
sourceTypeOverride?: SourceType
|
|
1058
|
+
sourceTypeOverride?: SourceType;
|
|
1059
1059
|
sourceLocationOverride?: string;
|
|
1060
1060
|
sourceAuthOverride?: SourceAuth;
|
|
1061
1061
|
gitCloneDepthOverride?: number;
|
|
@@ -1063,9 +1063,9 @@ export interface StartBuildBatchInput {
|
|
|
1063
1063
|
buildspecOverride?: string;
|
|
1064
1064
|
insecureSslOverride?: boolean;
|
|
1065
1065
|
reportBuildBatchStatusOverride?: boolean;
|
|
1066
|
-
environmentTypeOverride?: EnvironmentType
|
|
1066
|
+
environmentTypeOverride?: EnvironmentType;
|
|
1067
1067
|
imageOverride?: string;
|
|
1068
|
-
computeTypeOverride?: ComputeType
|
|
1068
|
+
computeTypeOverride?: ComputeType;
|
|
1069
1069
|
certificateOverride?: string;
|
|
1070
1070
|
cacheOverride?: ProjectCache;
|
|
1071
1071
|
serviceRoleOverride?: string;
|
|
@@ -1076,7 +1076,7 @@ export interface StartBuildBatchInput {
|
|
|
1076
1076
|
idempotencyToken?: string;
|
|
1077
1077
|
logsConfigOverride?: LogsConfig;
|
|
1078
1078
|
registryCredentialOverride?: RegistryCredential;
|
|
1079
|
-
imagePullCredentialsTypeOverride?: ImagePullCredentialsType
|
|
1079
|
+
imagePullCredentialsTypeOverride?: ImagePullCredentialsType;
|
|
1080
1080
|
buildBatchConfigOverride?: ProjectBuildBatchConfig;
|
|
1081
1081
|
debugSessionEnabled?: boolean;
|
|
1082
1082
|
}
|
|
@@ -1123,13 +1123,13 @@ export interface UpdateProjectOutput {
|
|
|
1123
1123
|
}
|
|
1124
1124
|
export interface UpdateProjectVisibilityInput {
|
|
1125
1125
|
projectArn: string | undefined;
|
|
1126
|
-
projectVisibility: ProjectVisibilityType |
|
|
1126
|
+
projectVisibility: ProjectVisibilityType | undefined;
|
|
1127
1127
|
resourceAccessRole?: string;
|
|
1128
1128
|
}
|
|
1129
1129
|
export interface UpdateProjectVisibilityOutput {
|
|
1130
1130
|
projectArn?: string;
|
|
1131
1131
|
publicProjectAlias?: string;
|
|
1132
|
-
projectVisibility?: ProjectVisibilityType
|
|
1132
|
+
projectVisibility?: ProjectVisibilityType;
|
|
1133
1133
|
}
|
|
1134
1134
|
export interface UpdateReportGroupInput {
|
|
1135
1135
|
arn: string | undefined;
|
|
@@ -1144,7 +1144,7 @@ export interface UpdateWebhookInput {
|
|
|
1144
1144
|
branchFilter?: string;
|
|
1145
1145
|
rotateSecret?: boolean;
|
|
1146
1146
|
filterGroups?: WebhookFilter[][];
|
|
1147
|
-
buildType?: WebhookBuildType
|
|
1147
|
+
buildType?: WebhookBuildType;
|
|
1148
1148
|
}
|
|
1149
1149
|
export interface UpdateWebhookOutput {
|
|
1150
1150
|
webhook?: Webhook;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codebuild",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codebuild Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.430.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,28 +21,28 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.430.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.430.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.430.0",
|
|
32
32
|
"@aws-sdk/types": "3.428.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.430.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.15",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.17",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.2",
|
|
46
46
|
"@smithy/node-http-handler": "^2.1.7",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.7",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.11",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.20",
|
|
56
56
|
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|