aws-sdk-codebuild 1.122.0 → 1.123.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 178c55a05a06dfee03f9f9ee58ad01b44726737678c0eaa11fe8a25d338ca5c6
4
- data.tar.gz: f8f96b281f7337854b1b64270fed286f5fe86bd00baeace6ce04a9af62029181
3
+ metadata.gz: cc9ad02a31c59a8a10c75e534a3fcb33e333e65bda5ea0fb95aef4ce26b9c659
4
+ data.tar.gz: 3f9c68f82afbf2a80dcdf7a549a446e35fef309efb8c42898316d678a808646a
5
5
  SHA512:
6
- metadata.gz: 46d7cc47671886e2d3ead5417352a25097a09d8513d0611b3f3391b88e82874e6d277552079690c62f36da5e4b046054bcc4bfb4a372fb9dbefcd039b88e65b9
7
- data.tar.gz: b50b566cc4e21b7616b379f2dcff7661e401c9d5f0467a62db80d40b97dd9814738a72e6f036636f473f558f24de48d7d865864d9c32742b8e09e88ddc60bc54
6
+ metadata.gz: 28abfdf7699243c42fce3b45448e253abbb6d29aabb42b1fe363f8ff9c54077ac47df5ba51df1ce4c14ff44b52444802e4883ee75ef1ecfafad1cc3fe6d5f537
7
+ data.tar.gz: ac9dfc9a8aedbd3bdda74bf5a8a0ed17b795870cbbd2b38c33f99a08b0b565ed8211bcbe7564bf8543103b64f50b3b7cf8a71e19368dbe5680b0ed96d57c911c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.123.0 (2024-08-14)
5
+ ------------------
6
+
7
+ * Feature - AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project.
8
+
4
9
  1.122.0 (2024-07-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.122.0
1
+ 1.123.0
@@ -507,7 +507,7 @@ module Aws::CodeBuild
507
507
  # resp.build_batches[0].source.git_clone_depth #=> Integer
508
508
  # resp.build_batches[0].source.git_submodules_config.fetch_submodules #=> Boolean
509
509
  # resp.build_batches[0].source.buildspec #=> String
510
- # resp.build_batches[0].source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
510
+ # resp.build_batches[0].source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
511
511
  # resp.build_batches[0].source.auth.resource #=> String
512
512
  # resp.build_batches[0].source.report_build_status #=> Boolean
513
513
  # resp.build_batches[0].source.build_status_config.context #=> String
@@ -520,7 +520,7 @@ module Aws::CodeBuild
520
520
  # resp.build_batches[0].secondary_sources[0].git_clone_depth #=> Integer
521
521
  # resp.build_batches[0].secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
522
522
  # resp.build_batches[0].secondary_sources[0].buildspec #=> String
523
- # resp.build_batches[0].secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
523
+ # resp.build_batches[0].secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
524
524
  # resp.build_batches[0].secondary_sources[0].auth.resource #=> String
525
525
  # resp.build_batches[0].secondary_sources[0].report_build_status #=> Boolean
526
526
  # resp.build_batches[0].secondary_sources[0].build_status_config.context #=> String
@@ -676,7 +676,7 @@ module Aws::CodeBuild
676
676
  # resp.builds[0].source.git_clone_depth #=> Integer
677
677
  # resp.builds[0].source.git_submodules_config.fetch_submodules #=> Boolean
678
678
  # resp.builds[0].source.buildspec #=> String
679
- # resp.builds[0].source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
679
+ # resp.builds[0].source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
680
680
  # resp.builds[0].source.auth.resource #=> String
681
681
  # resp.builds[0].source.report_build_status #=> Boolean
682
682
  # resp.builds[0].source.build_status_config.context #=> String
@@ -689,7 +689,7 @@ module Aws::CodeBuild
689
689
  # resp.builds[0].secondary_sources[0].git_clone_depth #=> Integer
690
690
  # resp.builds[0].secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
691
691
  # resp.builds[0].secondary_sources[0].buildspec #=> String
692
- # resp.builds[0].secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
692
+ # resp.builds[0].secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
693
693
  # resp.builds[0].secondary_sources[0].auth.resource #=> String
694
694
  # resp.builds[0].secondary_sources[0].report_build_status #=> Boolean
695
695
  # resp.builds[0].secondary_sources[0].build_status_config.context #=> String
@@ -870,7 +870,7 @@ module Aws::CodeBuild
870
870
  # resp.projects[0].source.git_clone_depth #=> Integer
871
871
  # resp.projects[0].source.git_submodules_config.fetch_submodules #=> Boolean
872
872
  # resp.projects[0].source.buildspec #=> String
873
- # resp.projects[0].source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
873
+ # resp.projects[0].source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
874
874
  # resp.projects[0].source.auth.resource #=> String
875
875
  # resp.projects[0].source.report_build_status #=> Boolean
876
876
  # resp.projects[0].source.build_status_config.context #=> String
@@ -883,7 +883,7 @@ module Aws::CodeBuild
883
883
  # resp.projects[0].secondary_sources[0].git_clone_depth #=> Integer
884
884
  # resp.projects[0].secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
885
885
  # resp.projects[0].secondary_sources[0].buildspec #=> String
886
- # resp.projects[0].secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
886
+ # resp.projects[0].secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
887
887
  # resp.projects[0].secondary_sources[0].auth.resource #=> String
888
888
  # resp.projects[0].secondary_sources[0].report_build_status #=> Boolean
889
889
  # resp.projects[0].secondary_sources[0].build_status_config.context #=> String
@@ -1470,7 +1470,7 @@ module Aws::CodeBuild
1470
1470
  # },
1471
1471
  # buildspec: "String",
1472
1472
  # auth: {
1473
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
1473
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
1474
1474
  # resource: "String",
1475
1475
  # },
1476
1476
  # report_build_status: false,
@@ -1491,7 +1491,7 @@ module Aws::CodeBuild
1491
1491
  # },
1492
1492
  # buildspec: "String",
1493
1493
  # auth: {
1494
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
1494
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
1495
1495
  # resource: "String",
1496
1496
  # },
1497
1497
  # report_build_status: false,
@@ -1624,7 +1624,7 @@ module Aws::CodeBuild
1624
1624
  # resp.project.source.git_clone_depth #=> Integer
1625
1625
  # resp.project.source.git_submodules_config.fetch_submodules #=> Boolean
1626
1626
  # resp.project.source.buildspec #=> String
1627
- # resp.project.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
1627
+ # resp.project.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
1628
1628
  # resp.project.source.auth.resource #=> String
1629
1629
  # resp.project.source.report_build_status #=> Boolean
1630
1630
  # resp.project.source.build_status_config.context #=> String
@@ -1637,7 +1637,7 @@ module Aws::CodeBuild
1637
1637
  # resp.project.secondary_sources[0].git_clone_depth #=> Integer
1638
1638
  # resp.project.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
1639
1639
  # resp.project.secondary_sources[0].buildspec #=> String
1640
- # resp.project.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
1640
+ # resp.project.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
1641
1641
  # resp.project.secondary_sources[0].auth.resource #=> String
1642
1642
  # resp.project.secondary_sources[0].report_build_status #=> Boolean
1643
1643
  # resp.project.secondary_sources[0].build_status_config.context #=> String
@@ -2423,8 +2423,8 @@ module Aws::CodeBuild
2423
2423
  end
2424
2424
 
2425
2425
  # Imports the source repository credentials for an CodeBuild project
2426
- # that has its source code stored in a GitHub, GitHub Enterprise, or
2427
- # Bitbucket repository.
2426
+ # that has its source code stored in a GitHub, GitHub Enterprise,
2427
+ # GitLab, GitLab Self Managed, or Bitbucket repository.
2428
2428
  #
2429
2429
  # @option params [String] :username
2430
2430
  # The Bitbucket username when the `authType` is BASIC\_AUTH. This
@@ -2434,7 +2434,8 @@ module Aws::CodeBuild
2434
2434
  # @option params [required, String] :token
2435
2435
  # For GitHub or GitHub Enterprise, this is the personal access token.
2436
2436
  # For Bitbucket, this is either the access token or the app password.
2437
- # For the `authType` CODECONNECTIONS, this is the `connectionArn`.
2437
+ # For the `authType` CODECONNECTIONS, this is the `connectionArn`. For
2438
+ # the `authType` SECRETS\_MANAGER, this is the `secretArn`.
2438
2439
  #
2439
2440
  # @option params [required, String] :server_type
2440
2441
  # The source provider used for this project.
@@ -2443,8 +2444,7 @@ module Aws::CodeBuild
2443
2444
  # The type of authentication used to connect to a GitHub, GitHub
2444
2445
  # Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. An
2445
2446
  # OAUTH connection is not supported by the API and must be created using
2446
- # the CodeBuild console. Note that CODECONNECTIONS is only valid for
2447
- # GitLab and GitLab Self Managed.
2447
+ # the CodeBuild console.
2448
2448
  #
2449
2449
  # @option params [Boolean] :should_overwrite
2450
2450
  # Set to `false` to prevent overwriting the repository source
@@ -2461,7 +2461,7 @@ module Aws::CodeBuild
2461
2461
  # username: "NonEmptyString",
2462
2462
  # token: "SensitiveNonEmptyString", # required
2463
2463
  # server_type: "GITHUB", # required, accepts GITHUB, BITBUCKET, GITHUB_ENTERPRISE, GITLAB, GITLAB_SELF_MANAGED
2464
- # auth_type: "OAUTH", # required, accepts OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, CODECONNECTIONS
2464
+ # auth_type: "OAUTH", # required, accepts OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, CODECONNECTIONS, SECRETS_MANAGER
2465
2465
  # should_overwrite: false,
2466
2466
  # })
2467
2467
  #
@@ -3214,7 +3214,7 @@ module Aws::CodeBuild
3214
3214
  # resp.source_credentials_infos #=> Array
3215
3215
  # resp.source_credentials_infos[0].arn #=> String
3216
3216
  # resp.source_credentials_infos[0].server_type #=> String, one of "GITHUB", "BITBUCKET", "GITHUB_ENTERPRISE", "GITLAB", "GITLAB_SELF_MANAGED"
3217
- # resp.source_credentials_infos[0].auth_type #=> String, one of "OAUTH", "BASIC_AUTH", "PERSONAL_ACCESS_TOKEN", "CODECONNECTIONS"
3217
+ # resp.source_credentials_infos[0].auth_type #=> String, one of "OAUTH", "BASIC_AUTH", "PERSONAL_ACCESS_TOKEN", "CODECONNECTIONS", "SECRETS_MANAGER"
3218
3218
  # resp.source_credentials_infos[0].resource #=> String
3219
3219
  #
3220
3220
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListSourceCredentials AWS API Documentation
@@ -3316,7 +3316,7 @@ module Aws::CodeBuild
3316
3316
  # resp.build.source.git_clone_depth #=> Integer
3317
3317
  # resp.build.source.git_submodules_config.fetch_submodules #=> Boolean
3318
3318
  # resp.build.source.buildspec #=> String
3319
- # resp.build.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
3319
+ # resp.build.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
3320
3320
  # resp.build.source.auth.resource #=> String
3321
3321
  # resp.build.source.report_build_status #=> Boolean
3322
3322
  # resp.build.source.build_status_config.context #=> String
@@ -3329,7 +3329,7 @@ module Aws::CodeBuild
3329
3329
  # resp.build.secondary_sources[0].git_clone_depth #=> Integer
3330
3330
  # resp.build.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
3331
3331
  # resp.build.secondary_sources[0].buildspec #=> String
3332
- # resp.build.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
3332
+ # resp.build.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
3333
3333
  # resp.build.secondary_sources[0].auth.resource #=> String
3334
3334
  # resp.build.secondary_sources[0].report_build_status #=> Boolean
3335
3335
  # resp.build.secondary_sources[0].build_status_config.context #=> String
@@ -3474,7 +3474,7 @@ module Aws::CodeBuild
3474
3474
  # resp.build_batch.source.git_clone_depth #=> Integer
3475
3475
  # resp.build_batch.source.git_submodules_config.fetch_submodules #=> Boolean
3476
3476
  # resp.build_batch.source.buildspec #=> String
3477
- # resp.build_batch.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
3477
+ # resp.build_batch.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
3478
3478
  # resp.build_batch.source.auth.resource #=> String
3479
3479
  # resp.build_batch.source.report_build_status #=> Boolean
3480
3480
  # resp.build_batch.source.build_status_config.context #=> String
@@ -3487,7 +3487,7 @@ module Aws::CodeBuild
3487
3487
  # resp.build_batch.secondary_sources[0].git_clone_depth #=> Integer
3488
3488
  # resp.build_batch.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
3489
3489
  # resp.build_batch.secondary_sources[0].buildspec #=> String
3490
- # resp.build_batch.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
3490
+ # resp.build_batch.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
3491
3491
  # resp.build_batch.secondary_sources[0].auth.resource #=> String
3492
3492
  # resp.build_batch.secondary_sources[0].report_build_status #=> Boolean
3493
3493
  # resp.build_batch.secondary_sources[0].build_status_config.context #=> String
@@ -3868,7 +3868,7 @@ module Aws::CodeBuild
3868
3868
  # },
3869
3869
  # buildspec: "String",
3870
3870
  # auth: {
3871
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
3871
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
3872
3872
  # resource: "String",
3873
3873
  # },
3874
3874
  # report_build_status: false,
@@ -3923,7 +3923,7 @@ module Aws::CodeBuild
3923
3923
  # source_type_override: "CODECOMMIT", # accepts CODECOMMIT, CODEPIPELINE, GITHUB, GITLAB, GITLAB_SELF_MANAGED, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
3924
3924
  # source_location_override: "String",
3925
3925
  # source_auth_override: {
3926
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
3926
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
3927
3927
  # resource: "String",
3928
3928
  # },
3929
3929
  # git_clone_depth_override: 1,
@@ -4002,7 +4002,7 @@ module Aws::CodeBuild
4002
4002
  # resp.build.source.git_clone_depth #=> Integer
4003
4003
  # resp.build.source.git_submodules_config.fetch_submodules #=> Boolean
4004
4004
  # resp.build.source.buildspec #=> String
4005
- # resp.build.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4005
+ # resp.build.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4006
4006
  # resp.build.source.auth.resource #=> String
4007
4007
  # resp.build.source.report_build_status #=> Boolean
4008
4008
  # resp.build.source.build_status_config.context #=> String
@@ -4015,7 +4015,7 @@ module Aws::CodeBuild
4015
4015
  # resp.build.secondary_sources[0].git_clone_depth #=> Integer
4016
4016
  # resp.build.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
4017
4017
  # resp.build.secondary_sources[0].buildspec #=> String
4018
- # resp.build.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4018
+ # resp.build.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4019
4019
  # resp.build.secondary_sources[0].auth.resource #=> String
4020
4020
  # resp.build.secondary_sources[0].report_build_status #=> Boolean
4021
4021
  # resp.build.secondary_sources[0].build_status_config.context #=> String
@@ -4342,7 +4342,7 @@ module Aws::CodeBuild
4342
4342
  # },
4343
4343
  # buildspec: "String",
4344
4344
  # auth: {
4345
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
4345
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
4346
4346
  # resource: "String",
4347
4347
  # },
4348
4348
  # report_build_status: false,
@@ -4397,7 +4397,7 @@ module Aws::CodeBuild
4397
4397
  # source_type_override: "CODECOMMIT", # accepts CODECOMMIT, CODEPIPELINE, GITHUB, GITLAB, GITLAB_SELF_MANAGED, S3, BITBUCKET, GITHUB_ENTERPRISE, NO_SOURCE
4398
4398
  # source_location_override: "String",
4399
4399
  # source_auth_override: {
4400
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
4400
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
4401
4401
  # resource: "String",
4402
4402
  # },
4403
4403
  # git_clone_depth_override: 1,
@@ -4478,7 +4478,7 @@ module Aws::CodeBuild
4478
4478
  # resp.build_batch.source.git_clone_depth #=> Integer
4479
4479
  # resp.build_batch.source.git_submodules_config.fetch_submodules #=> Boolean
4480
4480
  # resp.build_batch.source.buildspec #=> String
4481
- # resp.build_batch.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4481
+ # resp.build_batch.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4482
4482
  # resp.build_batch.source.auth.resource #=> String
4483
4483
  # resp.build_batch.source.report_build_status #=> Boolean
4484
4484
  # resp.build_batch.source.build_status_config.context #=> String
@@ -4491,7 +4491,7 @@ module Aws::CodeBuild
4491
4491
  # resp.build_batch.secondary_sources[0].git_clone_depth #=> Integer
4492
4492
  # resp.build_batch.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
4493
4493
  # resp.build_batch.secondary_sources[0].buildspec #=> String
4494
- # resp.build_batch.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4494
+ # resp.build_batch.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4495
4495
  # resp.build_batch.secondary_sources[0].auth.resource #=> String
4496
4496
  # resp.build_batch.secondary_sources[0].report_build_status #=> Boolean
4497
4497
  # resp.build_batch.secondary_sources[0].build_status_config.context #=> String
@@ -4643,7 +4643,7 @@ module Aws::CodeBuild
4643
4643
  # resp.build.source.git_clone_depth #=> Integer
4644
4644
  # resp.build.source.git_submodules_config.fetch_submodules #=> Boolean
4645
4645
  # resp.build.source.buildspec #=> String
4646
- # resp.build.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4646
+ # resp.build.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4647
4647
  # resp.build.source.auth.resource #=> String
4648
4648
  # resp.build.source.report_build_status #=> Boolean
4649
4649
  # resp.build.source.build_status_config.context #=> String
@@ -4656,7 +4656,7 @@ module Aws::CodeBuild
4656
4656
  # resp.build.secondary_sources[0].git_clone_depth #=> Integer
4657
4657
  # resp.build.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
4658
4658
  # resp.build.secondary_sources[0].buildspec #=> String
4659
- # resp.build.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4659
+ # resp.build.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4660
4660
  # resp.build.secondary_sources[0].auth.resource #=> String
4661
4661
  # resp.build.secondary_sources[0].report_build_status #=> Boolean
4662
4662
  # resp.build.secondary_sources[0].build_status_config.context #=> String
@@ -4788,7 +4788,7 @@ module Aws::CodeBuild
4788
4788
  # resp.build_batch.source.git_clone_depth #=> Integer
4789
4789
  # resp.build_batch.source.git_submodules_config.fetch_submodules #=> Boolean
4790
4790
  # resp.build_batch.source.buildspec #=> String
4791
- # resp.build_batch.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4791
+ # resp.build_batch.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4792
4792
  # resp.build_batch.source.auth.resource #=> String
4793
4793
  # resp.build_batch.source.report_build_status #=> Boolean
4794
4794
  # resp.build_batch.source.build_status_config.context #=> String
@@ -4801,7 +4801,7 @@ module Aws::CodeBuild
4801
4801
  # resp.build_batch.secondary_sources[0].git_clone_depth #=> Integer
4802
4802
  # resp.build_batch.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
4803
4803
  # resp.build_batch.secondary_sources[0].buildspec #=> String
4804
- # resp.build_batch.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
4804
+ # resp.build_batch.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
4805
4805
  # resp.build_batch.secondary_sources[0].auth.resource #=> String
4806
4806
  # resp.build_batch.secondary_sources[0].report_build_status #=> Boolean
4807
4807
  # resp.build_batch.secondary_sources[0].build_status_config.context #=> String
@@ -5281,7 +5281,7 @@ module Aws::CodeBuild
5281
5281
  # },
5282
5282
  # buildspec: "String",
5283
5283
  # auth: {
5284
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
5284
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
5285
5285
  # resource: "String",
5286
5286
  # },
5287
5287
  # report_build_status: false,
@@ -5302,7 +5302,7 @@ module Aws::CodeBuild
5302
5302
  # },
5303
5303
  # buildspec: "String",
5304
5304
  # auth: {
5305
- # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS
5305
+ # type: "OAUTH", # required, accepts OAUTH, CODECONNECTIONS, SECRETS_MANAGER
5306
5306
  # resource: "String",
5307
5307
  # },
5308
5308
  # report_build_status: false,
@@ -5435,7 +5435,7 @@ module Aws::CodeBuild
5435
5435
  # resp.project.source.git_clone_depth #=> Integer
5436
5436
  # resp.project.source.git_submodules_config.fetch_submodules #=> Boolean
5437
5437
  # resp.project.source.buildspec #=> String
5438
- # resp.project.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
5438
+ # resp.project.source.auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
5439
5439
  # resp.project.source.auth.resource #=> String
5440
5440
  # resp.project.source.report_build_status #=> Boolean
5441
5441
  # resp.project.source.build_status_config.context #=> String
@@ -5448,7 +5448,7 @@ module Aws::CodeBuild
5448
5448
  # resp.project.secondary_sources[0].git_clone_depth #=> Integer
5449
5449
  # resp.project.secondary_sources[0].git_submodules_config.fetch_submodules #=> Boolean
5450
5450
  # resp.project.secondary_sources[0].buildspec #=> String
5451
- # resp.project.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS"
5451
+ # resp.project.secondary_sources[0].auth.type #=> String, one of "OAUTH", "CODECONNECTIONS", "SECRETS_MANAGER"
5452
5452
  # resp.project.secondary_sources[0].auth.resource #=> String
5453
5453
  # resp.project.secondary_sources[0].report_build_status #=> Boolean
5454
5454
  # resp.project.secondary_sources[0].build_status_config.context #=> String
@@ -5816,7 +5816,7 @@ module Aws::CodeBuild
5816
5816
  params: params,
5817
5817
  config: config)
5818
5818
  context[:gem_name] = 'aws-sdk-codebuild'
5819
- context[:gem_version] = '1.122.0'
5819
+ context[:gem_version] = '1.123.0'
5820
5820
  Seahorse::Client::Request.new(handlers, context)
5821
5821
  end
5822
5822
 
@@ -2750,7 +2750,8 @@ module Aws::CodeBuild
2750
2750
  # @!attribute [rw] token
2751
2751
  # For GitHub or GitHub Enterprise, this is the personal access token.
2752
2752
  # For Bitbucket, this is either the access token or the app password.
2753
- # For the `authType` CODECONNECTIONS, this is the `connectionArn`.
2753
+ # For the `authType` CODECONNECTIONS, this is the `connectionArn`. For
2754
+ # the `authType` SECRETS\_MANAGER, this is the `secretArn`.
2754
2755
  # @return [String]
2755
2756
  #
2756
2757
  # @!attribute [rw] server_type
@@ -2761,8 +2762,7 @@ module Aws::CodeBuild
2761
2762
  # The type of authentication used to connect to a GitHub, GitHub
2762
2763
  # Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. An
2763
2764
  # OAUTH connection is not supported by the API and must be created
2764
- # using the CodeBuild console. Note that CODECONNECTIONS is only valid
2765
- # for GitLab and GitLab Self Managed.
2765
+ # using the CodeBuild console.
2766
2766
  # @return [String]
2767
2767
  #
2768
2768
  # @!attribute [rw] should_overwrite
@@ -4727,9 +4727,6 @@ module Aws::CodeBuild
4727
4727
  # @!attribute [rw] auth
4728
4728
  # Information about the authorization settings for CodeBuild to access
4729
4729
  # the source code to be built.
4730
- #
4731
- # This information is for the CodeBuild console's use only. Your code
4732
- # should not get or set this information directly.
4733
4730
  # @return [Types::SourceAuth]
4734
4731
  #
4735
4732
  # @!attribute [rw] report_build_status
@@ -5491,12 +5488,9 @@ module Aws::CodeBuild
5491
5488
  # Information about the authorization settings for CodeBuild to access
5492
5489
  # the source code to be built.
5493
5490
  #
5494
- # This information is for the CodeBuild console's use only. Your code
5495
- # should not get or set this information directly.
5496
- #
5497
5491
  # @!attribute [rw] type
5498
- # The authorization type to use. Valid options are OAUTH or
5499
- # CODECONNECTIONS.
5492
+ # The authorization type to use. Valid options are OAUTH,
5493
+ # CODECONNECTIONS, or SECRETS\_MANAGER.
5500
5494
  # @return [String]
5501
5495
  #
5502
5496
  # @!attribute [rw] resource
@@ -5526,12 +5520,13 @@ module Aws::CodeBuild
5526
5520
  #
5527
5521
  # @!attribute [rw] auth_type
5528
5522
  # The type of authentication used by the credentials. Valid options
5529
- # are OAUTH, BASIC\_AUTH, PERSONAL\_ACCESS\_TOKEN, or CODECONNECTIONS.
5523
+ # are OAUTH, BASIC\_AUTH, PERSONAL\_ACCESS\_TOKEN, CODECONNECTIONS, or
5524
+ # SECRETS\_MANAGER.
5530
5525
  # @return [String]
5531
5526
  #
5532
5527
  # @!attribute [rw] resource
5533
- # The connection ARN if your serverType type is GITLAB or
5534
- # GITLAB\_SELF\_MANAGED and your authType is CODECONNECTIONS.
5528
+ # The connection ARN if your authType is CODECONNECTIONS or
5529
+ # SECRETS\_MANAGER.
5535
5530
  # @return [String]
5536
5531
  #
5537
5532
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/SourceCredentialsInfo AWS API Documentation
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codebuild/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeBuild
54
54
 
55
- GEM_VERSION = '1.122.0'
55
+ GEM_VERSION = '1.123.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -204,7 +204,7 @@ module Aws
204
204
  }?,
205
205
  buildspec: ::String?,
206
206
  auth: {
207
- type: ("OAUTH" | "CODECONNECTIONS"),
207
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
208
208
  resource: ::String?
209
209
  }?,
210
210
  report_build_status: bool?,
@@ -225,7 +225,7 @@ module Aws
225
225
  }?,
226
226
  buildspec: ::String?,
227
227
  auth: {
228
- type: ("OAUTH" | "CODECONNECTIONS"),
228
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
229
229
  resource: ::String?
230
230
  }?,
231
231
  report_build_status: bool?,
@@ -547,7 +547,7 @@ module Aws
547
547
  ?username: ::String,
548
548
  token: ::String,
549
549
  server_type: ("GITHUB" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "GITLAB" | "GITLAB_SELF_MANAGED"),
550
- auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN" | "CODECONNECTIONS"),
550
+ auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
551
551
  ?should_overwrite: bool
552
552
  ) -> _ImportSourceCredentialsResponseSuccess
553
553
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportSourceCredentialsResponseSuccess
@@ -790,7 +790,7 @@ module Aws
790
790
  }?,
791
791
  buildspec: ::String?,
792
792
  auth: {
793
- type: ("OAUTH" | "CODECONNECTIONS"),
793
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
794
794
  resource: ::String?
795
795
  }?,
796
796
  report_build_status: bool?,
@@ -845,7 +845,7 @@ module Aws
845
845
  ?source_type_override: ("CODECOMMIT" | "CODEPIPELINE" | "GITHUB" | "GITLAB" | "GITLAB_SELF_MANAGED" | "S3" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "NO_SOURCE"),
846
846
  ?source_location_override: ::String,
847
847
  ?source_auth_override: {
848
- type: ("OAUTH" | "CODECONNECTIONS"),
848
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
849
849
  resource: ::String?
850
850
  },
851
851
  ?git_clone_depth_override: ::Integer,
@@ -916,7 +916,7 @@ module Aws
916
916
  }?,
917
917
  buildspec: ::String?,
918
918
  auth: {
919
- type: ("OAUTH" | "CODECONNECTIONS"),
919
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
920
920
  resource: ::String?
921
921
  }?,
922
922
  report_build_status: bool?,
@@ -971,7 +971,7 @@ module Aws
971
971
  ?source_type_override: ("CODECOMMIT" | "CODEPIPELINE" | "GITHUB" | "GITLAB" | "GITLAB_SELF_MANAGED" | "S3" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "NO_SOURCE"),
972
972
  ?source_location_override: ::String,
973
973
  ?source_auth_override: {
974
- type: ("OAUTH" | "CODECONNECTIONS"),
974
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
975
975
  resource: ::String?
976
976
  },
977
977
  ?git_clone_depth_override: ::Integer,
@@ -1101,7 +1101,7 @@ module Aws
1101
1101
  }?,
1102
1102
  buildspec: ::String?,
1103
1103
  auth: {
1104
- type: ("OAUTH" | "CODECONNECTIONS"),
1104
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
1105
1105
  resource: ::String?
1106
1106
  }?,
1107
1107
  report_build_status: bool?,
@@ -1122,7 +1122,7 @@ module Aws
1122
1122
  }?,
1123
1123
  buildspec: ::String?,
1124
1124
  auth: {
1125
- type: ("OAUTH" | "CODECONNECTIONS"),
1125
+ type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER"),
1126
1126
  resource: ::String?
1127
1127
  }?,
1128
1128
  report_build_status: bool?,
data/sig/types.rbs CHANGED
@@ -534,7 +534,7 @@ module Aws::CodeBuild
534
534
  attr_accessor username: ::String
535
535
  attr_accessor token: ::String
536
536
  attr_accessor server_type: ("GITHUB" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "GITLAB" | "GITLAB_SELF_MANAGED")
537
- attr_accessor auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN" | "CODECONNECTIONS")
537
+ attr_accessor auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN" | "CODECONNECTIONS" | "SECRETS_MANAGER")
538
538
  attr_accessor should_overwrite: bool
539
539
  SENSITIVE: [:token]
540
540
  end
@@ -1017,7 +1017,7 @@ module Aws::CodeBuild
1017
1017
  end
1018
1018
 
1019
1019
  class SourceAuth
1020
- attr_accessor type: ("OAUTH" | "CODECONNECTIONS")
1020
+ attr_accessor type: ("OAUTH" | "CODECONNECTIONS" | "SECRETS_MANAGER")
1021
1021
  attr_accessor resource: ::String
1022
1022
  SENSITIVE: []
1023
1023
  end
@@ -1025,7 +1025,7 @@ module Aws::CodeBuild
1025
1025
  class SourceCredentialsInfo
1026
1026
  attr_accessor arn: ::String
1027
1027
  attr_accessor server_type: ("GITHUB" | "BITBUCKET" | "GITHUB_ENTERPRISE" | "GITLAB" | "GITLAB_SELF_MANAGED")
1028
- attr_accessor auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN" | "CODECONNECTIONS")
1028
+ attr_accessor auth_type: ("OAUTH" | "BASIC_AUTH" | "PERSONAL_ACCESS_TOKEN" | "CODECONNECTIONS" | "SECRETS_MANAGER")
1029
1029
  attr_accessor resource: ::String
1030
1030
  SENSITIVE: []
1031
1031
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codebuild
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.122.0
4
+ version: 1.123.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-12 00:00:00.000000000 Z
11
+ date: 2024-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core