aws-sdk-codebuild 1.146.0 → 1.147.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: 2f6baf7b2cf8bcf1b0c8f9d413f1cb8323fd8b6350a265cc6fba40bac03d67e8
4
- data.tar.gz: 261e8325de216867eec144afcaedb8eb3de51d6c6a4c0396146e4673add724bb
3
+ metadata.gz: 4edb8ec3be224ec67f7dc3811fb6503b96807f83f7d77d6b866523cb5f597e00
4
+ data.tar.gz: 47483eea5681ce1d7ce212ab8a14eaa11494abec4b84ed1a966e1cbab8bfb354
5
5
  SHA512:
6
- metadata.gz: 321d0c8996c08af7a4db1d3d00a850478a6e54a52ab60427805bc53684fcce6785d42c878e5358084cd6963696a77f478ee945d70ed262e900c48cb53884e734
7
- data.tar.gz: d21e2d3b49bc77ab7a70a7c88d866ef5480f1097411e571390b18748565441fee855ae026ba4f9cc6af44ece2ef42463104088981a6456886a14ea3056600554
6
+ metadata.gz: d40d60cab7b8aa43681d090a70ae452fedf23c2bafa88e06d8e8c9ec83e4466109775d6eee4b82b11e2ae922e1d8020d1ddfe186880dcca5071047d1d9b10a85
7
+ data.tar.gz: bf113b2bdc2acf348abc23fa01d485350a33902762b7c877697b46c67653e8266bdb773137916daa426c54a86cda44fdf40532ab4a049a0ff259b6462875566b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.147.0 (2025-02-25)
5
+ ------------------
6
+
7
+ * Feature - Adding "reportArns" field in output of BatchGetBuildBatches API. "reportArns" is an array that contains the ARNs of reports created by merging reports from builds associated with the batch build.
8
+
4
9
  1.146.0 (2025-02-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.146.0
1
+ 1.147.0
@@ -672,6 +672,8 @@ module Aws::CodeBuild
672
672
  # resp.build_batches[0].build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].location #=> String
673
673
  # resp.build_batches[0].build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].identifier #=> String
674
674
  # resp.build_batches[0].debug_session_enabled #=> Boolean
675
+ # resp.build_batches[0].report_arns #=> Array
676
+ # resp.build_batches[0].report_arns[0] #=> String
675
677
  # resp.build_batches_not_found #=> Array
676
678
  # resp.build_batches_not_found[0] #=> String
677
679
  #
@@ -3815,6 +3817,8 @@ module Aws::CodeBuild
3815
3817
  # resp.build_batch.build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].location #=> String
3816
3818
  # resp.build_batch.build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].identifier #=> String
3817
3819
  # resp.build_batch.debug_session_enabled #=> Boolean
3820
+ # resp.build_batch.report_arns #=> Array
3821
+ # resp.build_batch.report_arns[0] #=> String
3818
3822
  #
3819
3823
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/RetryBuildBatch AWS API Documentation
3820
3824
  #
@@ -4841,6 +4845,8 @@ module Aws::CodeBuild
4841
4845
  # resp.build_batch.build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].location #=> String
4842
4846
  # resp.build_batch.build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].identifier #=> String
4843
4847
  # resp.build_batch.debug_session_enabled #=> Boolean
4848
+ # resp.build_batch.report_arns #=> Array
4849
+ # resp.build_batch.report_arns[0] #=> String
4844
4850
  #
4845
4851
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/StartBuildBatch AWS API Documentation
4846
4852
  #
@@ -5165,6 +5171,8 @@ module Aws::CodeBuild
5165
5171
  # resp.build_batch.build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].location #=> String
5166
5172
  # resp.build_batch.build_groups[0].prior_build_summary_list[0].secondary_artifacts[0].identifier #=> String
5167
5173
  # resp.build_batch.debug_session_enabled #=> Boolean
5174
+ # resp.build_batch.report_arns #=> Array
5175
+ # resp.build_batch.report_arns[0] #=> String
5168
5176
  #
5169
5177
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/StopBuildBatch AWS API Documentation
5170
5178
  #
@@ -6216,7 +6224,7 @@ module Aws::CodeBuild
6216
6224
  tracer: tracer
6217
6225
  )
6218
6226
  context[:gem_name] = 'aws-sdk-codebuild'
6219
- context[:gem_version] = '1.146.0'
6227
+ context[:gem_version] = '1.147.0'
6220
6228
  Seahorse::Client::Request.new(handlers, context)
6221
6229
  end
6222
6230
 
@@ -445,6 +445,7 @@ module Aws::CodeBuild
445
445
  BuildBatch.add_member(:build_batch_config, Shapes::ShapeRef.new(shape: ProjectBuildBatchConfig, location_name: "buildBatchConfig"))
446
446
  BuildBatch.add_member(:build_groups, Shapes::ShapeRef.new(shape: BuildGroups, location_name: "buildGroups"))
447
447
  BuildBatch.add_member(:debug_session_enabled, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "debugSessionEnabled"))
448
+ BuildBatch.add_member(:report_arns, Shapes::ShapeRef.new(shape: BuildReportArns, location_name: "reportArns"))
448
449
  BuildBatch.struct_class = Types::BuildBatch
449
450
 
450
451
  BuildBatchFilter.add_member(:status, Shapes::ShapeRef.new(shape: StatusType, location_name: "status"))
@@ -862,6 +862,11 @@ module Aws::CodeBuild
862
862
  # [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/session-manager.html
863
863
  # @return [Boolean]
864
864
  #
865
+ # @!attribute [rw] report_arns
866
+ # An array that contains the ARNs of reports created by merging
867
+ # reports from builds associated with this batch build.
868
+ # @return [Array<String>]
869
+ #
865
870
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BuildBatch AWS API Documentation
866
871
  #
867
872
  class BuildBatch < Struct.new(
@@ -894,7 +899,8 @@ module Aws::CodeBuild
894
899
  :file_system_locations,
895
900
  :build_batch_config,
896
901
  :build_groups,
897
- :debug_session_enabled)
902
+ :debug_session_enabled,
903
+ :report_arns)
898
904
  SENSITIVE = []
899
905
  include Aws::Structure
900
906
  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.146.0'
57
+ GEM_VERSION = '1.147.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -182,6 +182,7 @@ module Aws::CodeBuild
182
182
  attr_accessor build_batch_config: Types::ProjectBuildBatchConfig
183
183
  attr_accessor build_groups: ::Array[Types::BuildGroup]
184
184
  attr_accessor debug_session_enabled: bool
185
+ attr_accessor report_arns: ::Array[::String]
185
186
  SENSITIVE: []
186
187
  end
187
188
 
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.146.0
4
+ version: 1.147.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-20 00:00:00.000000000 Z
11
+ date: 2025-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core