aws-sdk-codebuild 1.143.0 → 1.144.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: 0c4e71debe0beaccf2c26e3308cb622a64df9d0ba672ae600471303677fa48f3
4
- data.tar.gz: 326e23010fa3868f5f4288a3984238f68fd6321297227910c0ae4c54a7bd57c4
3
+ metadata.gz: 4438d2e029ac4d4a6565063950840d2877c0818d1680e80c7890884af76cb35d
4
+ data.tar.gz: a34f2d8f9393986c249215be51375bc94479ef51aab5983b489a24859f798171
5
5
  SHA512:
6
- metadata.gz: 2bda8db8b62b4e693eea0d8f514cd6e2ef018fe9414082dde6cd23d3837bb24056fb5fb193cec0769258be3f5e021ba3b2c8f1cced0e6c2312f42c1f5559a9c5
7
- data.tar.gz: e3313bdcf7ba682c9e1faf5fe101327a99c3aed621fd0531bb7ca5ed9757cb4ce7b4da04bc76e658efddcd99a893962aa9192cbd7d34ce8f049c44bd86c3d9b3
6
+ metadata.gz: dddf3f31157ed28613d9b44467898b3b1e83a432d64d4ac9b5dcf2981135cb8879530c5fef53b098b7cee667a1edafdef795ebcad202b7a8ee9ac0490abdde2a
7
+ data.tar.gz: f7685ff5d8bde3752e2817a107f97f8a6e813692da9ac18cbee436233713015e5b39e294001de77356449a54c3efa7ee359f2a44f1f7222faadb87256027a1cc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.143.0 (2025-02-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.143.0
1
+ 1.144.0
@@ -2495,6 +2495,7 @@ module Aws::CodeBuild
2495
2495
  # resp.test_cases[0].duration_in_nano_seconds #=> Integer
2496
2496
  # resp.test_cases[0].message #=> String
2497
2497
  # resp.test_cases[0].expired #=> Time
2498
+ # resp.test_cases[0].test_suite_name #=> String
2498
2499
  #
2499
2500
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DescribeTestCases AWS API Documentation
2500
2501
  #
@@ -6205,7 +6206,7 @@ module Aws::CodeBuild
6205
6206
  tracer: tracer
6206
6207
  )
6207
6208
  context[:gem_name] = 'aws-sdk-codebuild'
6208
- context[:gem_version] = '1.143.0'
6209
+ context[:gem_version] = '1.144.0'
6209
6210
  Seahorse::Client::Request.new(handlers, context)
6210
6211
  end
6211
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"))
@@ -6626,6 +6626,10 @@ module Aws::CodeBuild
6626
6626
  # in CodeBuild.
6627
6627
  # @return [Time]
6628
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
+ #
6629
6633
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/TestCase AWS API Documentation
6630
6634
  #
6631
6635
  class TestCase < Struct.new(
@@ -6636,7 +6640,8 @@ module Aws::CodeBuild
6636
6640
  :status,
6637
6641
  :duration_in_nano_seconds,
6638
6642
  :message,
6639
- :expired)
6643
+ :expired,
6644
+ :test_suite_name)
6640
6645
  SENSITIVE = []
6641
6646
  include Aws::Structure
6642
6647
  end
@@ -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.143.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.143.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-12 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