aws-sdk-codebuild 1.142.0 → 1.144.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd47b235610c11efaa43735347044099ce5a8e6f1b2feb2c047cfde71b7f6096
4
- data.tar.gz: 175eaadf64617e197b328884125f34e074084bfdeab3233df5d9fc408b37ad02
3
+ metadata.gz: 4438d2e029ac4d4a6565063950840d2877c0818d1680e80c7890884af76cb35d
4
+ data.tar.gz: a34f2d8f9393986c249215be51375bc94479ef51aab5983b489a24859f798171
5
5
  SHA512:
6
- metadata.gz: 765bd81bf515678b4bffa52c69c2a24d472b366830cf09365c6bddacfade006f6b2e9e8024c692702223ac30b0ea2c8e07e12d2a05bf0e3f7d939ca2113dd9e5
7
- data.tar.gz: ccbd6fe441241eb3fa3a8c6e6c53812d5160c4c7f0a07f49eb79d518069d79634c8c7264cefc3428404014ad1c2cc2d433acb6172909bfd82898e7d67b01c4d3
6
+ metadata.gz: dddf3f31157ed28613d9b44467898b3b1e83a432d64d4ac9b5dcf2981135cb8879530c5fef53b098b7cee667a1edafdef795ebcad202b7a8ee9ac0490abdde2a
7
+ data.tar.gz: f7685ff5d8bde3752e2817a107f97f8a6e813692da9ac18cbee436233713015e5b39e294001de77356449a54c3efa7ee359f2a44f1f7222faadb87256027a1cc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.144.0 (2025-02-14)
5
+ ------------------
6
+
7
+ * Feature - Added test suite names to test case metadata
8
+
9
+ 1.143.0 (2025-02-12)
10
+ ------------------
11
+
12
+ * Feature - Add note for the RUNNER_BUILDKITE_BUILD buildType.
13
+
4
14
  1.142.0 (2025-02-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.142.0
1
+ 1.144.0
@@ -2064,6 +2064,18 @@ module Aws::CodeBuild
2064
2064
  # @option params [String] :build_type
2065
2065
  # Specifies the type of build this webhook will trigger.
2066
2066
  #
2067
+ # <note markdown="1"> `RUNNER_BUILDKITE_BUILD` is only available for `NO_SOURCE` source type
2068
+ # projects configured for Buildkite runner builds. For more information
2069
+ # about CodeBuild-hosted Buildkite runner builds, see [Tutorial:
2070
+ # Configure a CodeBuild-hosted Buildkite runner][1] in the *CodeBuild
2071
+ # user guide*.
2072
+ #
2073
+ # </note>
2074
+ #
2075
+ #
2076
+ #
2077
+ # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html
2078
+ #
2067
2079
  # @option params [Boolean] :manual_creation
2068
2080
  # If manualCreation is true, CodeBuild doesn't create a webhook in
2069
2081
  # GitHub and instead returns `payloadUrl` and `secret` values for the
@@ -2483,6 +2495,7 @@ module Aws::CodeBuild
2483
2495
  # resp.test_cases[0].duration_in_nano_seconds #=> Integer
2484
2496
  # resp.test_cases[0].message #=> String
2485
2497
  # resp.test_cases[0].expired #=> Time
2498
+ # resp.test_cases[0].test_suite_name #=> String
2486
2499
  #
2487
2500
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DescribeTestCases AWS API Documentation
2488
2501
  #
@@ -6114,6 +6127,18 @@ module Aws::CodeBuild
6114
6127
  # @option params [String] :build_type
6115
6128
  # Specifies the type of build this webhook will trigger.
6116
6129
  #
6130
+ # <note markdown="1"> `RUNNER_BUILDKITE_BUILD` is only available for `NO_SOURCE` source type
6131
+ # projects configured for Buildkite runner builds. For more information
6132
+ # about CodeBuild-hosted Buildkite runner builds, see [Tutorial:
6133
+ # Configure a CodeBuild-hosted Buildkite runner][1] in the *CodeBuild
6134
+ # user guide*.
6135
+ #
6136
+ # </note>
6137
+ #
6138
+ #
6139
+ #
6140
+ # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html
6141
+ #
6117
6142
  # @return [Types::UpdateWebhookOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6118
6143
  #
6119
6144
  # * {Types::UpdateWebhookOutput#webhook #webhook} => Types::Webhook
@@ -6181,7 +6206,7 @@ module Aws::CodeBuild
6181
6206
  tracer: tracer
6182
6207
  )
6183
6208
  context[:gem_name] = 'aws-sdk-codebuild'
6184
- context[:gem_version] = '1.142.0'
6209
+ context[:gem_version] = '1.144.0'
6185
6210
  Seahorse::Client::Request.new(handlers, context)
6186
6211
  end
6187
6212
 
@@ -1297,6 +1297,7 @@ module Aws::CodeBuild
1297
1297
  TestCase.add_member(:duration_in_nano_seconds, Shapes::ShapeRef.new(shape: WrapperLong, location_name: "durationInNanoSeconds"))
1298
1298
  TestCase.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
1299
1299
  TestCase.add_member(:expired, Shapes::ShapeRef.new(shape: Timestamp, location_name: "expired"))
1300
+ TestCase.add_member(:test_suite_name, Shapes::ShapeRef.new(shape: String, location_name: "testSuiteName"))
1300
1301
  TestCase.struct_class = Types::TestCase
1301
1302
 
1302
1303
  TestCaseFilter.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
@@ -2005,6 +2005,18 @@ module Aws::CodeBuild
2005
2005
  #
2006
2006
  # @!attribute [rw] build_type
2007
2007
  # Specifies the type of build this webhook will trigger.
2008
+ #
2009
+ # <note markdown="1"> `RUNNER_BUILDKITE_BUILD` is only available for `NO_SOURCE` source
2010
+ # type projects configured for Buildkite runner builds. For more
2011
+ # information about CodeBuild-hosted Buildkite runner builds, see
2012
+ # [Tutorial: Configure a CodeBuild-hosted Buildkite runner][1] in the
2013
+ # *CodeBuild user guide*.
2014
+ #
2015
+ # </note>
2016
+ #
2017
+ #
2018
+ #
2019
+ # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html
2008
2020
  # @return [String]
2009
2021
  #
2010
2022
  # @!attribute [rw] manual_creation
@@ -6614,6 +6626,10 @@ module Aws::CodeBuild
6614
6626
  # in CodeBuild.
6615
6627
  # @return [Time]
6616
6628
  #
6629
+ # @!attribute [rw] test_suite_name
6630
+ # The name of the test suite that the test case is a part of.
6631
+ # @return [String]
6632
+ #
6617
6633
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/TestCase AWS API Documentation
6618
6634
  #
6619
6635
  class TestCase < Struct.new(
@@ -6624,7 +6640,8 @@ module Aws::CodeBuild
6624
6640
  :status,
6625
6641
  :duration_in_nano_seconds,
6626
6642
  :message,
6627
- :expired)
6643
+ :expired,
6644
+ :test_suite_name)
6628
6645
  SENSITIVE = []
6629
6646
  include Aws::Structure
6630
6647
  end
@@ -7279,6 +7296,18 @@ module Aws::CodeBuild
7279
7296
  #
7280
7297
  # @!attribute [rw] build_type
7281
7298
  # Specifies the type of build this webhook will trigger.
7299
+ #
7300
+ # <note markdown="1"> `RUNNER_BUILDKITE_BUILD` is only available for `NO_SOURCE` source
7301
+ # type projects configured for Buildkite runner builds. For more
7302
+ # information about CodeBuild-hosted Buildkite runner builds, see
7303
+ # [Tutorial: Configure a CodeBuild-hosted Buildkite runner][1] in the
7304
+ # *CodeBuild user guide*.
7305
+ #
7306
+ # </note>
7307
+ #
7308
+ #
7309
+ #
7310
+ # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html
7282
7311
  # @return [String]
7283
7312
  #
7284
7313
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateWebhookInput AWS API Documentation
@@ -7373,6 +7402,18 @@ module Aws::CodeBuild
7373
7402
  #
7374
7403
  # @!attribute [rw] build_type
7375
7404
  # Specifies the type of build this webhook will trigger.
7405
+ #
7406
+ # <note markdown="1"> `RUNNER_BUILDKITE_BUILD` is only available for `NO_SOURCE` source
7407
+ # type projects configured for Buildkite runner builds. For more
7408
+ # information about CodeBuild-hosted Buildkite runner builds, see
7409
+ # [Tutorial: Configure a CodeBuild-hosted Buildkite runner][1] in the
7410
+ # *CodeBuild user guide*.
7411
+ #
7412
+ # </note>
7413
+ #
7414
+ #
7415
+ #
7416
+ # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/sample-runner-buildkite.html
7376
7417
  # @return [String]
7377
7418
  #
7378
7419
  # @!attribute [rw] manual_creation
@@ -54,7 +54,7 @@ module Aws::CodeBuild
54
54
  autoload :EndpointProvider, 'aws-sdk-codebuild/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-codebuild/endpoints'
56
56
 
57
- GEM_VERSION = '1.142.0'
57
+ GEM_VERSION = '1.144.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -1193,6 +1193,7 @@ module Aws::CodeBuild
1193
1193
  attr_accessor duration_in_nano_seconds: ::Integer
1194
1194
  attr_accessor message: ::String
1195
1195
  attr_accessor expired: ::Time
1196
+ attr_accessor test_suite_name: ::String
1196
1197
  SENSITIVE: []
1197
1198
  end
1198
1199
 
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.142.0
4
+ version: 1.144.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: 2025-02-06 00:00:00.000000000 Z
11
+ date: 2025-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core