aws-sdk-codebuild 1.103.0 → 1.104.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: a09b4c8431edbd6b7308498d0503b4ae4f499444858b86a49fb2f6a6edd27a3d
4
- data.tar.gz: b047ddbcf60a1c20b45c24d1bdef8ad4927c666c9c74a388ffbf74ecc2d9c5b4
3
+ metadata.gz: 408bfdb695e692b541dc395c0f3d331257e074af8513e0d1f4473a8941c3246e
4
+ data.tar.gz: f141db2d6e2b14cca6ba6eb45cd9d95622c2e05d2f87a34c7b0853b76415727d
5
5
  SHA512:
6
- metadata.gz: a9c980da2e65064dc9e869b9300e6d94ddcbeb6835d1c4bf0e2dbbaf0d4840f46866d7392016afc58deeda45e56fdfa2b32da4a06c9930e9deddd8299a244798
7
- data.tar.gz: 1e6cb80e1be496ae5d56544d4c249d070cecac8678878ab2c4906a90f5cdcdf9f6ed8f39ebc6b06d04e8aae5a23249c2d702ebb642fb6eaadc349ddd2b52b51a
6
+ metadata.gz: 10f2a0b6c7dc048deb0a3539975f1c8ae2be5bc26f9c61cd60ac65218b29b2b7c640d15e3a0ec66206e7c014f7a00ab56f3e0c8806d56e6c8dcb38c375b200cc
7
+ data.tar.gz: 82092a7a26a425acc6be70399721a7d16aa4cbd8689730998a811ebaab16a728f3ee5861f7ae461129fc27220641ab80a457facd80b9c3e3d27f9f7338bb5902
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.104.0 (2024-03-08)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for a new webhook event: PULL_REQUEST_CLOSED.
8
+
4
9
  1.103.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.103.0
1
+ 1.104.0
@@ -3462,7 +3462,14 @@ module Aws::CodeBuild
3462
3462
  req.send_request(options)
3463
3463
  end
3464
3464
 
3465
- # Starts running a build.
3465
+ # Starts running a build with the settings defined in the project. These
3466
+ # setting include: how to run a build, where to get the source code,
3467
+ # which build environment to use, which build commands to run, and where
3468
+ # to store the build output.
3469
+ #
3470
+ # You can also start a build run by overriding some of the build
3471
+ # settings in the project. The overrides only apply for that specific
3472
+ # start build request. The settings in the project are unaltered.
3466
3473
  #
3467
3474
  # @option params [required, String] :project_name
3468
3475
  # The name of the CodeBuild build project to start running a build.
@@ -3549,8 +3556,9 @@ module Aws::CodeBuild
3549
3556
  # an CodeBuild build project.
3550
3557
  #
3551
3558
  # @option params [String] :buildspec_override
3552
- # A buildspec file declaration that overrides, for this build only, the
3553
- # latest one already defined in the build project.
3559
+ # A buildspec file declaration that overrides the latest one defined in
3560
+ # the build project, for this build only. The buildspec defined on the
3561
+ # project is not changed.
3554
3562
  #
3555
3563
  # If this value is set, it can be either an inline buildspec definition,
3556
3564
  # the path to an alternate buildspec file relative to the value of the
@@ -3562,6 +3570,15 @@ module Aws::CodeBuild
3562
3570
  # must contain a buildspec file in its root directory. For more
3563
3571
  # information, see [Buildspec File Name and Storage Location][1].
3564
3572
  #
3573
+ # <note markdown="1"> Since this property allows you to change the build commands that will
3574
+ # run in the container, you should note that an IAM principal with the
3575
+ # ability to call this API and set this parameter can override the
3576
+ # default settings. Moreover, we encourage that you use a trustworthy
3577
+ # buildspec location like a file in your source repository or a Amazon
3578
+ # S3 bucket.
3579
+ #
3580
+ # </note>
3581
+ #
3565
3582
  #
3566
3583
  #
3567
3584
  # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec-ref-name-storage
@@ -5601,7 +5618,7 @@ module Aws::CodeBuild
5601
5618
  params: params,
5602
5619
  config: config)
5603
5620
  context[:gem_name] = 'aws-sdk-codebuild'
5604
- context[:gem_version] = '1.103.0'
5621
+ context[:gem_version] = '1.104.0'
5605
5622
  Seahorse::Client::Request.new(handlers, context)
5606
5623
  end
5607
5624
 
@@ -5774,8 +5774,9 @@ module Aws::CodeBuild
5774
5774
  # @return [Types::GitSubmodulesConfig]
5775
5775
  #
5776
5776
  # @!attribute [rw] buildspec_override
5777
- # A buildspec file declaration that overrides, for this build only,
5778
- # the latest one already defined in the build project.
5777
+ # A buildspec file declaration that overrides the latest one defined
5778
+ # in the build project, for this build only. The buildspec defined on
5779
+ # the project is not changed.
5779
5780
  #
5780
5781
  # If this value is set, it can be either an inline buildspec
5781
5782
  # definition, the path to an alternate buildspec file relative to the
@@ -5788,6 +5789,15 @@ module Aws::CodeBuild
5788
5789
  # contain a buildspec file in its root directory. For more
5789
5790
  # information, see [Buildspec File Name and Storage Location][1].
5790
5791
  #
5792
+ # <note markdown="1"> Since this property allows you to change the build commands that
5793
+ # will run in the container, you should note that an IAM principal
5794
+ # with the ability to call this API and set this parameter can
5795
+ # override the default settings. Moreover, we encourage that you use a
5796
+ # trustworthy buildspec location like a file in your source repository
5797
+ # or a Amazon S3 bucket.
5798
+ #
5799
+ # </note>
5800
+ #
5791
5801
  #
5792
5802
  #
5793
5803
  # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec-ref-name-storage
@@ -6785,67 +6795,70 @@ module Aws::CodeBuild
6785
6795
  # `EVENT`, `ACTOR_ACCOUNT_ID`, `HEAD_REF`, `BASE_REF`, `FILE_PATH`,
6786
6796
  # and `COMMIT_MESSAGE`.
6787
6797
  #
6788
- # EVENT
6798
+ # * EVENT
6789
6799
  #
6790
- # : A webhook event triggers a build when the provided `pattern`
6791
- # matches one of five event types: `PUSH`, `PULL_REQUEST_CREATED`,
6792
- # `PULL_REQUEST_UPDATED`, `PULL_REQUEST_REOPENED`, and
6793
- # `PULL_REQUEST_MERGED`. The `EVENT` patterns are specified as a
6794
- # comma-separated string. For example, `PUSH, PULL_REQUEST_CREATED,
6795
- # PULL_REQUEST_UPDATED` filters all push, pull request created, and
6796
- # pull request updated events.
6800
+ # * A webhook event triggers a build when the provided `pattern`
6801
+ # matches one of six event types: `PUSH`, `PULL_REQUEST_CREATED`,
6802
+ # `PULL_REQUEST_UPDATED`, `PULL_REQUEST_CLOSED`,
6803
+ # `PULL_REQUEST_REOPENED`, and `PULL_REQUEST_MERGED`. The `EVENT`
6804
+ # patterns are specified as a comma-separated string. For example,
6805
+ # `PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED` filters all
6806
+ # push, pull request created, and pull request updated events.
6797
6807
  #
6798
- # <note markdown="1"> The `PULL_REQUEST_REOPENED` works with GitHub and GitHub
6799
- # Enterprise only.
6808
+ # <note markdown="1"> The `PULL_REQUEST_REOPENED` works with GitHub and GitHub
6809
+ # Enterprise only.
6800
6810
  #
6801
- # </note>
6811
+ # </note>
6802
6812
  #
6803
- # ACTOR\_ACCOUNT\_ID
6813
+ # * ACTOR\_ACCOUNT\_ID
6804
6814
  #
6805
- # : A webhook event triggers a build when a GitHub, GitHub Enterprise,
6806
- # or Bitbucket account ID matches the regular expression `pattern`.
6815
+ # * A webhook event triggers a build when a GitHub, GitHub
6816
+ # Enterprise, or Bitbucket account ID matches the regular
6817
+ # expression `pattern`.
6807
6818
  #
6808
- # HEAD\_REF
6819
+ # ^
6809
6820
  #
6810
- # : A webhook event triggers a build when the head reference matches
6811
- # the regular expression `pattern`. For example,
6812
- # `refs/heads/branch-name` and `refs/tags/tag-name`.
6821
+ # * HEAD\_REF
6813
6822
  #
6814
- # Works with GitHub and GitHub Enterprise push, GitHub and GitHub
6815
- # Enterprise pull request, Bitbucket push, and Bitbucket pull
6816
- # request events.
6823
+ # * A webhook event triggers a build when the head reference matches
6824
+ # the regular expression `pattern`. For example,
6825
+ # `refs/heads/branch-name` and `refs/tags/tag-name`.
6817
6826
  #
6818
- # BASE\_REF
6827
+ # Works with GitHub and GitHub Enterprise push, GitHub and GitHub
6828
+ # Enterprise pull request, Bitbucket push, and Bitbucket pull
6829
+ # request events.
6819
6830
  #
6820
- # : A webhook event triggers a build when the base reference matches
6821
- # the regular expression `pattern`. For example,
6822
- # `refs/heads/branch-name`.
6831
+ # * BASE\_REF
6823
6832
  #
6824
- # <note markdown="1"> Works with pull request events only.
6833
+ # * A webhook event triggers a build when the base reference matches
6834
+ # the regular expression `pattern`. For example,
6835
+ # `refs/heads/branch-name`.
6825
6836
  #
6826
- # </note>
6837
+ # <note markdown="1"> Works with pull request events only.
6827
6838
  #
6828
- # FILE\_PATH
6839
+ # </note>
6829
6840
  #
6830
- # : A webhook triggers a build when the path of a changed file matches
6831
- # the regular expression `pattern`.
6841
+ # * FILE\_PATH
6832
6842
  #
6833
- # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6834
- # events. Also works with GitHub Enterprise push events, but does
6835
- # not work with GitHub Enterprise pull request events.
6843
+ # * A webhook triggers a build when the path of a changed file
6844
+ # matches the regular expression `pattern`.
6836
6845
  #
6837
- # </note>
6846
+ # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6847
+ # events. Also works with GitHub Enterprise push events, but does
6848
+ # not work with GitHub Enterprise pull request events.
6838
6849
  #
6839
- # COMMIT\_MESSAGE
6850
+ # </note>
6840
6851
  #
6841
- # : A webhook triggers a build when the head commit message matches
6842
- # the regular expression `pattern`.
6852
+ # * COMMIT\_MESSAGE
6843
6853
  #
6844
- # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6845
- # events. Also works with GitHub Enterprise push events, but does
6846
- # not work with GitHub Enterprise pull request events.
6854
+ # * A webhook triggers a build when the head commit message matches
6855
+ # the regular expression `pattern`.
6847
6856
  #
6848
- # </note>
6857
+ # <note markdown="1"> Works with GitHub and Bitbucket events push and pull requests
6858
+ # events. Also works with GitHub Enterprise push events, but does
6859
+ # not work with GitHub Enterprise pull request events.
6860
+ #
6861
+ # </note>
6849
6862
  # @return [String]
6850
6863
  #
6851
6864
  # @!attribute [rw] pattern
@@ -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.103.0'
55
+ GEM_VERSION = '1.104.0'
56
56
 
57
57
  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.103.0
4
+ version: 1.104.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core