aws-sdk-codebuild 1.138.0 → 1.139.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codebuild/client.rb +20 -3
- data/lib/aws-sdk-codebuild/client_api.rb +4 -0
- data/lib/aws-sdk-codebuild/types.rb +17 -5
- data/lib/aws-sdk-codebuild.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d6faa01d1064c60e4878dd2f2b7fe0daa8255afbe7f58cfe039eb97c815f6d9
|
|
4
|
+
data.tar.gz: 9fe71d0225d8f6f3c3c44f6238d84d0c2424f6975c8da9dada2dff276bd6adfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d518adf1a0b416665f31d261418bdd5e84f50a289812bf2e214e07e7e285470b51c3a9239a31347d194718719a6ccea86ed1227c54ef56033101135519b827c1
|
|
7
|
+
data.tar.gz: cad4b285f4cd4d220f2dee1808d181a04231c1d68a7028f9bc21575759b7e4c60a1110f59a735e5a796d70d1fb8bd2504c4531f9513b5133364c03d99d616e70
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.139.0
|
|
@@ -618,6 +618,8 @@ module Aws::CodeBuild
|
|
|
618
618
|
# resp.build_batches[0].build_batch_config.restrictions.maximum_builds_allowed #=> Integer
|
|
619
619
|
# resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed #=> Array
|
|
620
620
|
# resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
|
621
|
+
# resp.build_batches[0].build_batch_config.restrictions.fleets_allowed #=> Array
|
|
622
|
+
# resp.build_batches[0].build_batch_config.restrictions.fleets_allowed[0] #=> String
|
|
621
623
|
# resp.build_batches[0].build_batch_config.timeout_in_mins #=> Integer
|
|
622
624
|
# resp.build_batches[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
|
623
625
|
# resp.build_batches[0].build_groups #=> Array
|
|
@@ -1030,6 +1032,8 @@ module Aws::CodeBuild
|
|
|
1030
1032
|
# resp.projects[0].build_batch_config.restrictions.maximum_builds_allowed #=> Integer
|
|
1031
1033
|
# resp.projects[0].build_batch_config.restrictions.compute_types_allowed #=> Array
|
|
1032
1034
|
# resp.projects[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
|
1035
|
+
# resp.projects[0].build_batch_config.restrictions.fleets_allowed #=> Array
|
|
1036
|
+
# resp.projects[0].build_batch_config.restrictions.fleets_allowed[0] #=> String
|
|
1033
1037
|
# resp.projects[0].build_batch_config.timeout_in_mins #=> Integer
|
|
1034
1038
|
# resp.projects[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
|
1035
1039
|
# resp.projects[0].concurrent_build_limit #=> Integer
|
|
@@ -1765,6 +1769,7 @@ module Aws::CodeBuild
|
|
|
1765
1769
|
# restrictions: {
|
|
1766
1770
|
# maximum_builds_allowed: 1,
|
|
1767
1771
|
# compute_types_allowed: ["NonEmptyString"],
|
|
1772
|
+
# fleets_allowed: ["NonEmptyString"],
|
|
1768
1773
|
# },
|
|
1769
1774
|
# timeout_in_mins: 1,
|
|
1770
1775
|
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
|
@@ -1898,6 +1903,8 @@ module Aws::CodeBuild
|
|
|
1898
1903
|
# resp.project.build_batch_config.restrictions.maximum_builds_allowed #=> Integer
|
|
1899
1904
|
# resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
|
|
1900
1905
|
# resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
|
1906
|
+
# resp.project.build_batch_config.restrictions.fleets_allowed #=> Array
|
|
1907
|
+
# resp.project.build_batch_config.restrictions.fleets_allowed[0] #=> String
|
|
1901
1908
|
# resp.project.build_batch_config.timeout_in_mins #=> Integer
|
|
1902
1909
|
# resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
|
1903
1910
|
# resp.project.concurrent_build_limit #=> Integer
|
|
@@ -3735,6 +3742,8 @@ module Aws::CodeBuild
|
|
|
3735
3742
|
# resp.build_batch.build_batch_config.restrictions.maximum_builds_allowed #=> Integer
|
|
3736
3743
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
|
|
3737
3744
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
|
3745
|
+
# resp.build_batch.build_batch_config.restrictions.fleets_allowed #=> Array
|
|
3746
|
+
# resp.build_batch.build_batch_config.restrictions.fleets_allowed[0] #=> String
|
|
3738
3747
|
# resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
|
|
3739
3748
|
# resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
|
3740
3749
|
# resp.build_batch.build_groups #=> Array
|
|
@@ -3909,8 +3918,8 @@ module Aws::CodeBuild
|
|
|
3909
3918
|
# @option params [Boolean] :report_build_status_override
|
|
3910
3919
|
# Set to true to report to your source provider the status of a build's
|
|
3911
3920
|
# start and completion. If you use this option with a source provider
|
|
3912
|
-
# other than GitHub, GitHub Enterprise,
|
|
3913
|
-
# `invalidInputException` is thrown.
|
|
3921
|
+
# other than GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or
|
|
3922
|
+
# Bitbucket, an `invalidInputException` is thrown.
|
|
3914
3923
|
#
|
|
3915
3924
|
# To be able to report the build status to the source provider, the user
|
|
3916
3925
|
# associated with the source provider must have write access to the
|
|
@@ -4637,6 +4646,7 @@ module Aws::CodeBuild
|
|
|
4637
4646
|
# restrictions: {
|
|
4638
4647
|
# maximum_builds_allowed: 1,
|
|
4639
4648
|
# compute_types_allowed: ["NonEmptyString"],
|
|
4649
|
+
# fleets_allowed: ["NonEmptyString"],
|
|
4640
4650
|
# },
|
|
4641
4651
|
# timeout_in_mins: 1,
|
|
4642
4652
|
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
|
@@ -4758,6 +4768,8 @@ module Aws::CodeBuild
|
|
|
4758
4768
|
# resp.build_batch.build_batch_config.restrictions.maximum_builds_allowed #=> Integer
|
|
4759
4769
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
|
|
4760
4770
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
|
4771
|
+
# resp.build_batch.build_batch_config.restrictions.fleets_allowed #=> Array
|
|
4772
|
+
# resp.build_batch.build_batch_config.restrictions.fleets_allowed[0] #=> String
|
|
4761
4773
|
# resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
|
|
4762
4774
|
# resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
|
4763
4775
|
# resp.build_batch.build_groups #=> Array
|
|
@@ -5080,6 +5092,8 @@ module Aws::CodeBuild
|
|
|
5080
5092
|
# resp.build_batch.build_batch_config.restrictions.maximum_builds_allowed #=> Integer
|
|
5081
5093
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
|
|
5082
5094
|
# resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
|
5095
|
+
# resp.build_batch.build_batch_config.restrictions.fleets_allowed #=> Array
|
|
5096
|
+
# resp.build_batch.build_batch_config.restrictions.fleets_allowed[0] #=> String
|
|
5083
5097
|
# resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
|
|
5084
5098
|
# resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
|
5085
5099
|
# resp.build_batch.build_groups #=> Array
|
|
@@ -5733,6 +5747,7 @@ module Aws::CodeBuild
|
|
|
5733
5747
|
# restrictions: {
|
|
5734
5748
|
# maximum_builds_allowed: 1,
|
|
5735
5749
|
# compute_types_allowed: ["NonEmptyString"],
|
|
5750
|
+
# fleets_allowed: ["NonEmptyString"],
|
|
5736
5751
|
# },
|
|
5737
5752
|
# timeout_in_mins: 1,
|
|
5738
5753
|
# batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
|
|
@@ -5866,6 +5881,8 @@ module Aws::CodeBuild
|
|
|
5866
5881
|
# resp.project.build_batch_config.restrictions.maximum_builds_allowed #=> Integer
|
|
5867
5882
|
# resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
|
|
5868
5883
|
# resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
|
|
5884
|
+
# resp.project.build_batch_config.restrictions.fleets_allowed #=> Array
|
|
5885
|
+
# resp.project.build_batch_config.restrictions.fleets_allowed[0] #=> String
|
|
5869
5886
|
# resp.project.build_batch_config.timeout_in_mins #=> Integer
|
|
5870
5887
|
# resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
|
|
5871
5888
|
# resp.project.concurrent_build_limit #=> Integer
|
|
@@ -6141,7 +6158,7 @@ module Aws::CodeBuild
|
|
|
6141
6158
|
tracer: tracer
|
|
6142
6159
|
)
|
|
6143
6160
|
context[:gem_name] = 'aws-sdk-codebuild'
|
|
6144
|
-
context[:gem_version] = '1.
|
|
6161
|
+
context[:gem_version] = '1.139.0'
|
|
6145
6162
|
Seahorse::Client::Request.new(handlers, context)
|
|
6146
6163
|
end
|
|
6147
6164
|
|
|
@@ -135,6 +135,7 @@ module Aws::CodeBuild
|
|
|
135
135
|
FleetStatus = Shapes::StructureShape.new(name: 'FleetStatus')
|
|
136
136
|
FleetStatusCode = Shapes::StringShape.new(name: 'FleetStatusCode')
|
|
137
137
|
Fleets = Shapes::ListShape.new(name: 'Fleets')
|
|
138
|
+
FleetsAllowed = Shapes::ListShape.new(name: 'FleetsAllowed')
|
|
138
139
|
GetReportGroupTrendInput = Shapes::StructureShape.new(name: 'GetReportGroupTrendInput')
|
|
139
140
|
GetReportGroupTrendOutput = Shapes::StructureShape.new(name: 'GetReportGroupTrendOutput')
|
|
140
141
|
GetResourcePolicyInput = Shapes::StructureShape.new(name: 'GetResourcePolicyInput')
|
|
@@ -364,6 +365,7 @@ module Aws::CodeBuild
|
|
|
364
365
|
|
|
365
366
|
BatchRestrictions.add_member(:maximum_builds_allowed, Shapes::ShapeRef.new(shape: WrapperInt, location_name: "maximumBuildsAllowed"))
|
|
366
367
|
BatchRestrictions.add_member(:compute_types_allowed, Shapes::ShapeRef.new(shape: ComputeTypesAllowed, location_name: "computeTypesAllowed"))
|
|
368
|
+
BatchRestrictions.add_member(:fleets_allowed, Shapes::ShapeRef.new(shape: FleetsAllowed, location_name: "fleetsAllowed"))
|
|
367
369
|
BatchRestrictions.struct_class = Types::BatchRestrictions
|
|
368
370
|
|
|
369
371
|
Build.add_member(:id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "id"))
|
|
@@ -751,6 +753,8 @@ module Aws::CodeBuild
|
|
|
751
753
|
|
|
752
754
|
Fleets.member = Shapes::ShapeRef.new(shape: Fleet)
|
|
753
755
|
|
|
756
|
+
FleetsAllowed.member = Shapes::ShapeRef.new(shape: NonEmptyString)
|
|
757
|
+
|
|
754
758
|
GetReportGroupTrendInput.add_member(:report_group_arn, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "reportGroupArn"))
|
|
755
759
|
GetReportGroupTrendInput.add_member(:num_of_reports, Shapes::ShapeRef.new(shape: PageSize, location_name: "numOfReports"))
|
|
756
760
|
GetReportGroupTrendInput.add_member(:trend_field, Shapes::ShapeRef.new(shape: ReportGroupTrendFieldType, required: true, location_name: "trendField"))
|
|
@@ -281,11 +281,22 @@ module Aws::CodeBuild
|
|
|
281
281
|
# [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html
|
|
282
282
|
# @return [Array<String>]
|
|
283
283
|
#
|
|
284
|
+
# @!attribute [rw] fleets_allowed
|
|
285
|
+
# An array of strings that specify the fleets that are allowed for the
|
|
286
|
+
# batch build. See [Run builds on reserved capacity fleets][1] in the
|
|
287
|
+
# *CodeBuild User Guide* for more information.
|
|
288
|
+
#
|
|
289
|
+
#
|
|
290
|
+
#
|
|
291
|
+
# [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/fleets.html
|
|
292
|
+
# @return [Array<String>]
|
|
293
|
+
#
|
|
284
294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/BatchRestrictions AWS API Documentation
|
|
285
295
|
#
|
|
286
296
|
class BatchRestrictions < Struct.new(
|
|
287
297
|
:maximum_builds_allowed,
|
|
288
|
-
:compute_types_allowed
|
|
298
|
+
:compute_types_allowed,
|
|
299
|
+
:fleets_allowed)
|
|
289
300
|
SENSITIVE = []
|
|
290
301
|
include Aws::Structure
|
|
291
302
|
end
|
|
@@ -5006,8 +5017,9 @@ module Aws::CodeBuild
|
|
|
5006
5017
|
# Set to true to report the status of a build's start and finish to
|
|
5007
5018
|
# your source provider. This option is valid only when your source
|
|
5008
5019
|
# provider is GitHub, GitHub Enterprise, GitLab, GitLab Self Managed,
|
|
5009
|
-
# or Bitbucket. If this is set and you
|
|
5010
|
-
# provider, an `invalidInputException` is
|
|
5020
|
+
# GitLab, GitLab Self Managed, or Bitbucket. If this is set and you
|
|
5021
|
+
# use a different source provider, an `invalidInputException` is
|
|
5022
|
+
# thrown.
|
|
5011
5023
|
#
|
|
5012
5024
|
# To be able to report the build status to the source provider, the
|
|
5013
5025
|
# user associated with the source provider must have write access to
|
|
@@ -6276,8 +6288,8 @@ module Aws::CodeBuild
|
|
|
6276
6288
|
# @!attribute [rw] report_build_status_override
|
|
6277
6289
|
# Set to true to report to your source provider the status of a
|
|
6278
6290
|
# build's start and completion. If you use this option with a source
|
|
6279
|
-
# provider other than GitHub, GitHub Enterprise,
|
|
6280
|
-
# `invalidInputException` is thrown.
|
|
6291
|
+
# provider other than GitHub, GitHub Enterprise, GitLab, GitLab Self
|
|
6292
|
+
# Managed, or Bitbucket, an `invalidInputException` is thrown.
|
|
6281
6293
|
#
|
|
6282
6294
|
# To be able to report the build status to the source provider, the
|
|
6283
6295
|
# user associated with the source provider must have write access to
|
data/lib/aws-sdk-codebuild.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -365,7 +365,8 @@ module Aws
|
|
|
365
365
|
combine_artifacts: bool?,
|
|
366
366
|
restrictions: {
|
|
367
367
|
maximum_builds_allowed: ::Integer?,
|
|
368
|
-
compute_types_allowed: Array[::String]
|
|
368
|
+
compute_types_allowed: Array[::String]?,
|
|
369
|
+
fleets_allowed: Array[::String]?
|
|
369
370
|
}?,
|
|
370
371
|
timeout_in_mins: ::Integer?,
|
|
371
372
|
batch_report_mode: ("REPORT_INDIVIDUAL_BUILDS" | "REPORT_AGGREGATED_BATCH")?
|
|
@@ -1046,7 +1047,8 @@ module Aws
|
|
|
1046
1047
|
combine_artifacts: bool?,
|
|
1047
1048
|
restrictions: {
|
|
1048
1049
|
maximum_builds_allowed: ::Integer?,
|
|
1049
|
-
compute_types_allowed: Array[::String]
|
|
1050
|
+
compute_types_allowed: Array[::String]?,
|
|
1051
|
+
fleets_allowed: Array[::String]?
|
|
1050
1052
|
}?,
|
|
1051
1053
|
timeout_in_mins: ::Integer?,
|
|
1052
1054
|
batch_report_mode: ("REPORT_INDIVIDUAL_BUILDS" | "REPORT_AGGREGATED_BATCH")?
|
|
@@ -1287,7 +1289,8 @@ module Aws
|
|
|
1287
1289
|
combine_artifacts: bool?,
|
|
1288
1290
|
restrictions: {
|
|
1289
1291
|
maximum_builds_allowed: ::Integer?,
|
|
1290
|
-
compute_types_allowed: Array[::String]
|
|
1292
|
+
compute_types_allowed: Array[::String]?,
|
|
1293
|
+
fleets_allowed: Array[::String]?
|
|
1291
1294
|
}?,
|
|
1292
1295
|
timeout_in_mins: ::Integer?,
|
|
1293
1296
|
batch_report_mode: ("REPORT_INDIVIDUAL_BUILDS" | "REPORT_AGGREGATED_BATCH")?
|
data/sig/types.rbs
CHANGED
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.
|
|
4
|
+
version: 1.139.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:
|
|
11
|
+
date: 2025-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|