aws-sdk-codebuild 1.107.0 → 1.109.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: 7d79e0ac114c2eb865fc144788034a6899d3497c8a9520403335b570328ce5f2
4
- data.tar.gz: b3627ac7c848187235ffceed467be9d35c8ece4099cc0c91f41923c59d642614
3
+ metadata.gz: 8e823fcd316503962ea98ebd88df647034be80959b126bc68a4b1ba616c8343e
4
+ data.tar.gz: 97f8f495fd381e46f97f4b89b4deb2b549cdf71e083b10d29ef6769c7af81e0c
5
5
  SHA512:
6
- metadata.gz: 0f617dcaa67ce3e59de0ccf8383698416886ce609c69154f42cf10ba7ddafdcb0b092e5d46f681f7fb23249dba8f6e4a40280260ce7fe7bc3793f60738f87b03
7
- data.tar.gz: 591ce6d2f8eeeac5584ae47b32b788dedcc3221c920db500e85e3b4fc2065886ea7501e7e0044dec99dc49eb969d950afd4b3b108cf1b810cf06978ceb9f1916
6
+ metadata.gz: 2394cdd0efaf89d457387976d51a9cee653738c4835205c279c383e36325a49319a3e5893a5aec22fcf54474dbce860e0a8b74edfcb8e4b13607237fcf01b0c3
7
+ data.tar.gz: eccbed05675ce33ea64e6b2300f43ad7e80ffbcfb990d6a412bb8fa798f8efb347b66892a7421bc0dd58ec2f76566b079a1ed11efaa7cb778585524ca1d7c1ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.109.0 (2024-04-09)
5
+ ------------------
6
+
7
+ * Feature - Add new webhook filter types for GitHub webhooks
8
+
9
+ 1.108.0 (2024-03-29)
10
+ ------------------
11
+
12
+ * Feature - Add new fleet status code for Reserved Capacity.
13
+
4
14
  1.107.0 (2024-03-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.107.0
1
+ 1.109.0
@@ -773,7 +773,7 @@ module Aws::CodeBuild
773
773
  # resp.fleets[0].id #=> String
774
774
  # resp.fleets[0].created #=> Time
775
775
  # resp.fleets[0].last_modified #=> Time
776
- # resp.fleets[0].status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
776
+ # resp.fleets[0].status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "PENDING_DELETION", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
777
777
  # resp.fleets[0].status.context #=> String, one of "CREATE_FAILED", "UPDATE_FAILED"
778
778
  # resp.fleets[0].status.message #=> String
779
779
  # resp.fleets[0].base_capacity #=> Integer
@@ -907,7 +907,7 @@ module Aws::CodeBuild
907
907
  # resp.projects[0].webhook.branch_filter #=> String
908
908
  # resp.projects[0].webhook.filter_groups #=> Array
909
909
  # resp.projects[0].webhook.filter_groups[0] #=> Array
910
- # resp.projects[0].webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
910
+ # resp.projects[0].webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE", "WORKFLOW_NAME", "TAG_NAME", "RELEASE_NAME"
911
911
  # resp.projects[0].webhook.filter_groups[0][0].pattern #=> String
912
912
  # resp.projects[0].webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
913
913
  # resp.projects[0].webhook.build_type #=> String, one of "BUILD", "BUILD_BATCH"
@@ -1211,7 +1211,7 @@ module Aws::CodeBuild
1211
1211
  # resp.fleet.id #=> String
1212
1212
  # resp.fleet.created #=> Time
1213
1213
  # resp.fleet.last_modified #=> Time
1214
- # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
1214
+ # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "PENDING_DELETION", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
1215
1215
  # resp.fleet.status.context #=> String, one of "CREATE_FAILED", "UPDATE_FAILED"
1216
1216
  # resp.fleet.status.message #=> String
1217
1217
  # resp.fleet.base_capacity #=> Integer
@@ -1613,7 +1613,7 @@ module Aws::CodeBuild
1613
1613
  # resp.project.webhook.branch_filter #=> String
1614
1614
  # resp.project.webhook.filter_groups #=> Array
1615
1615
  # resp.project.webhook.filter_groups[0] #=> Array
1616
- # resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
1616
+ # resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE", "WORKFLOW_NAME", "TAG_NAME", "RELEASE_NAME"
1617
1617
  # resp.project.webhook.filter_groups[0][0].pattern #=> String
1618
1618
  # resp.project.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
1619
1619
  # resp.project.webhook.build_type #=> String, one of "BUILD", "BUILD_BATCH"
@@ -1790,7 +1790,7 @@ module Aws::CodeBuild
1790
1790
  # filter_groups: [
1791
1791
  # [
1792
1792
  # {
1793
- # type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
1793
+ # type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE, WORKFLOW_NAME, TAG_NAME, RELEASE_NAME
1794
1794
  # pattern: "String", # required
1795
1795
  # exclude_matched_pattern: false,
1796
1796
  # },
@@ -1807,7 +1807,7 @@ module Aws::CodeBuild
1807
1807
  # resp.webhook.branch_filter #=> String
1808
1808
  # resp.webhook.filter_groups #=> Array
1809
1809
  # resp.webhook.filter_groups[0] #=> Array
1810
- # resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
1810
+ # resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE", "WORKFLOW_NAME", "TAG_NAME", "RELEASE_NAME"
1811
1811
  # resp.webhook.filter_groups[0][0].pattern #=> String
1812
1812
  # resp.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
1813
1813
  # resp.webhook.build_type #=> String, one of "BUILD", "BUILD_BATCH"
@@ -4936,7 +4936,7 @@ module Aws::CodeBuild
4936
4936
  # resp.fleet.id #=> String
4937
4937
  # resp.fleet.created #=> Time
4938
4938
  # resp.fleet.last_modified #=> Time
4939
- # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
4939
+ # resp.fleet.status.status_code #=> String, one of "CREATING", "UPDATING", "ROTATING", "PENDING_DELETION", "DELETING", "CREATE_FAILED", "UPDATE_ROLLBACK_FAILED", "ACTIVE"
4940
4940
  # resp.fleet.status.context #=> String, one of "CREATE_FAILED", "UPDATE_FAILED"
4941
4941
  # resp.fleet.status.message #=> String
4942
4942
  # resp.fleet.base_capacity #=> Integer
@@ -5346,7 +5346,7 @@ module Aws::CodeBuild
5346
5346
  # resp.project.webhook.branch_filter #=> String
5347
5347
  # resp.project.webhook.filter_groups #=> Array
5348
5348
  # resp.project.webhook.filter_groups[0] #=> Array
5349
- # resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
5349
+ # resp.project.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE", "WORKFLOW_NAME", "TAG_NAME", "RELEASE_NAME"
5350
5350
  # resp.project.webhook.filter_groups[0][0].pattern #=> String
5351
5351
  # resp.project.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
5352
5352
  # resp.project.webhook.build_type #=> String, one of "BUILD", "BUILD_BATCH"
@@ -5597,7 +5597,7 @@ module Aws::CodeBuild
5597
5597
  # filter_groups: [
5598
5598
  # [
5599
5599
  # {
5600
- # type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
5600
+ # type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE, WORKFLOW_NAME, TAG_NAME, RELEASE_NAME
5601
5601
  # pattern: "String", # required
5602
5602
  # exclude_matched_pattern: false,
5603
5603
  # },
@@ -5614,7 +5614,7 @@ module Aws::CodeBuild
5614
5614
  # resp.webhook.branch_filter #=> String
5615
5615
  # resp.webhook.filter_groups #=> Array
5616
5616
  # resp.webhook.filter_groups[0] #=> Array
5617
- # resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE"
5617
+ # resp.webhook.filter_groups[0][0].type #=> String, one of "EVENT", "BASE_REF", "HEAD_REF", "ACTOR_ACCOUNT_ID", "FILE_PATH", "COMMIT_MESSAGE", "WORKFLOW_NAME", "TAG_NAME", "RELEASE_NAME"
5618
5618
  # resp.webhook.filter_groups[0][0].pattern #=> String
5619
5619
  # resp.webhook.filter_groups[0][0].exclude_matched_pattern #=> Boolean
5620
5620
  # resp.webhook.build_type #=> String, one of "BUILD", "BUILD_BATCH"
@@ -5642,7 +5642,7 @@ module Aws::CodeBuild
5642
5642
  params: params,
5643
5643
  config: config)
5644
5644
  context[:gem_name] = 'aws-sdk-codebuild'
5645
- context[:gem_version] = '1.107.0'
5645
+ context[:gem_version] = '1.109.0'
5646
5646
  Seahorse::Client::Request.new(handlers, context)
5647
5647
  end
5648
5648
 
@@ -4577,14 +4577,14 @@ module Aws::CodeBuild
4577
4577
  # account to your GitLab account. Use the CodeBuild console to start
4578
4578
  # creating a build project. When you use the console to connect (or
4579
4579
  # reconnect) with GitLab, on the Connections **Authorize
4580
- # application** page, choose **Authorize**. Then on the CodeStar
4581
- # Connections **Create GitLab connection** page, choose **Connect to
4582
- # GitLab**. (After you have connected to your GitLab account, you do
4583
- # not need to finish creating the build project. You can leave the
4584
- # CodeBuild console.) To instruct CodeBuild to override the default
4585
- # connection and use this connection instead, set the `auth`
4586
- # object's `type` value to `CODECONNECTIONS` in the `source`
4587
- # object.
4580
+ # application** page, choose **Authorize**. Then on the
4581
+ # CodeConnections **Create GitLab connection** page, choose
4582
+ # **Connect to GitLab**. (After you have connected to your GitLab
4583
+ # account, you do not need to finish creating the build project. You
4584
+ # can leave the CodeBuild console.) To instruct CodeBuild to
4585
+ # override the default connection and use this connection instead,
4586
+ # set the `auth` object's `type` value to `CODECONNECTIONS` in the
4587
+ # `source` object.
4588
4588
  #
4589
4589
  # * For source code in a Bitbucket repository, the HTTPS clone URL to
4590
4590
  # the repository that contains the source and the buildspec file.
@@ -6847,25 +6847,24 @@ module Aws::CodeBuild
6847
6847
  # A filter used to determine which webhooks trigger a build.
6848
6848
  #
6849
6849
  # @!attribute [rw] type
6850
- # The type of webhook filter. There are eight webhook filter types:
6850
+ # The type of webhook filter. There are nine webhook filter types:
6851
6851
  # `EVENT`, `ACTOR_ACCOUNT_ID`, `HEAD_REF`, `BASE_REF`, `FILE_PATH`,
6852
- # `COMMIT_MESSAGE`, `TAG_NAME`, and `RELEASE_NAME`.
6852
+ # `COMMIT_MESSAGE`, `TAG_NAME`, `RELEASE_NAME`, and `WORKFLOW_NAME`.
6853
6853
  #
6854
6854
  # * EVENT
6855
6855
  #
6856
6856
  # * A webhook event triggers a build when the provided `pattern`
6857
- # matches one of eight event types: `PUSH`,
6858
- # `PULL_REQUEST_CREATED`, `PULL_REQUEST_UPDATED`,
6859
- # `PULL_REQUEST_CLOSED`, `PULL_REQUEST_REOPENED`,
6860
- # `PULL_REQUEST_MERGED`, `RELEASED`, and `PRERELEASED`. The
6861
- # `EVENT` patterns are specified as a comma-separated string. For
6862
- # example, `PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED`
6863
- # filters all push, pull request created, and pull request updated
6864
- # events.
6857
+ # matches one of nine event types: `PUSH`, `PULL_REQUEST_CREATED`,
6858
+ # `PULL_REQUEST_UPDATED`, `PULL_REQUEST_CLOSED`,
6859
+ # `PULL_REQUEST_REOPENED`, `PULL_REQUEST_MERGED`, `RELEASED`,
6860
+ # `PRERELEASED`, and `WORKFLOW_JOB_QUEUED`. The `EVENT` patterns
6861
+ # are specified as a comma-separated string. For example, `PUSH,
6862
+ # PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED` filters all push,
6863
+ # pull request created, and pull request updated events.
6865
6864
  #
6866
6865
  # <note markdown="1"> The `PULL_REQUEST_REOPENED` works with GitHub and GitHub
6867
- # Enterprise only. The `RELEASED` and `PRERELEASED` work with
6868
- # GitHub only.
6866
+ # Enterprise only. The `RELEASED`, `PRERELEASED`, and
6867
+ # `WORKFLOW_JOB_QUEUED` work with GitHub only.
6869
6868
  #
6870
6869
  # </note>
6871
6870
  #
@@ -6938,6 +6937,15 @@ module Aws::CodeBuild
6938
6937
  # <note markdown="1"> Works with `RELEASED` and `PRERELEASED` events only.
6939
6938
  #
6940
6939
  # </note>
6940
+ #
6941
+ # * WORKFLOW\_NAME
6942
+ #
6943
+ # * A webhook triggers a build when the workflow name matches the
6944
+ # regular expression `pattern`.
6945
+ #
6946
+ # <note markdown="1"> Works with `WORKFLOW_JOB_QUEUED` events only.
6947
+ #
6948
+ # </note>
6941
6949
  # @return [String]
6942
6950
  #
6943
6951
  # @!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.107.0'
55
+ GEM_VERSION = '1.109.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -381,7 +381,7 @@ module Aws
381
381
  ?filter_groups: Array[
382
382
  Array[
383
383
  {
384
- type: ("EVENT" | "BASE_REF" | "HEAD_REF" | "ACTOR_ACCOUNT_ID" | "FILE_PATH" | "COMMIT_MESSAGE"),
384
+ type: ("EVENT" | "BASE_REF" | "HEAD_REF" | "ACTOR_ACCOUNT_ID" | "FILE_PATH" | "COMMIT_MESSAGE" | "WORKFLOW_NAME" | "TAG_NAME" | "RELEASE_NAME"),
385
385
  pattern: ::String,
386
386
  exclude_matched_pattern: bool?
387
387
  },
@@ -1280,7 +1280,7 @@ module Aws
1280
1280
  ?filter_groups: Array[
1281
1281
  Array[
1282
1282
  {
1283
- type: ("EVENT" | "BASE_REF" | "HEAD_REF" | "ACTOR_ACCOUNT_ID" | "FILE_PATH" | "COMMIT_MESSAGE"),
1283
+ type: ("EVENT" | "BASE_REF" | "HEAD_REF" | "ACTOR_ACCOUNT_ID" | "FILE_PATH" | "COMMIT_MESSAGE" | "WORKFLOW_NAME" | "TAG_NAME" | "RELEASE_NAME"),
1284
1284
  pattern: ::String,
1285
1285
  exclude_matched_pattern: bool?
1286
1286
  },
data/sig/types.rbs CHANGED
@@ -490,7 +490,7 @@ module Aws::CodeBuild
490
490
  end
491
491
 
492
492
  class FleetStatus
493
- attr_accessor status_code: ("CREATING" | "UPDATING" | "ROTATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_ROLLBACK_FAILED" | "ACTIVE")
493
+ attr_accessor status_code: ("CREATING" | "UPDATING" | "ROTATING" | "PENDING_DELETION" | "DELETING" | "CREATE_FAILED" | "UPDATE_ROLLBACK_FAILED" | "ACTIVE")
494
494
  attr_accessor context: ("CREATE_FAILED" | "UPDATE_FAILED")
495
495
  attr_accessor message: ::String
496
496
  SENSITIVE: []
@@ -1260,7 +1260,7 @@ module Aws::CodeBuild
1260
1260
  end
1261
1261
 
1262
1262
  class WebhookFilter
1263
- attr_accessor type: ("EVENT" | "BASE_REF" | "HEAD_REF" | "ACTOR_ACCOUNT_ID" | "FILE_PATH" | "COMMIT_MESSAGE")
1263
+ attr_accessor type: ("EVENT" | "BASE_REF" | "HEAD_REF" | "ACTOR_ACCOUNT_ID" | "FILE_PATH" | "COMMIT_MESSAGE" | "WORKFLOW_NAME" | "TAG_NAME" | "RELEASE_NAME")
1264
1264
  attr_accessor pattern: ::String
1265
1265
  attr_accessor exclude_matched_pattern: bool
1266
1266
  SENSITIVE: []
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.107.0
4
+ version: 1.109.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-03-25 00:00:00.000000000 Z
11
+ date: 2024-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core