aws-sdk-codebuild 1.80.0 → 1.84.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: 6c516510bb2c723ce072f2c10496523debe7aca1cccb41f56bdcb56fc602ac62
4
- data.tar.gz: 1c8d3abef00ad33016a3a7703f59d9ceeec726cabf0f0e882e3f2f1a3eca8b95
3
+ metadata.gz: f84bd93ee86965f8a176af924519f9fa340f94c5f46a7052bd45bb2420c1d7c4
4
+ data.tar.gz: 0a823d079714e99b09e6be83625c92a6d538e9eb7ebae14110e2f47bc055f4a2
5
5
  SHA512:
6
- metadata.gz: cac31ee10aca654614495ba3aa3960fa58b4ef882b972045ee6d534140afb7e48ddcc428145c141e3d780548525804afb300da03961247c3e5eb8dfe926325ba
7
- data.tar.gz: bfd270039db5ffbd988fc261d806c49644e3251b32a039eb523bdcfd034a3d072870c6b804e9796b745d76789f1e174a5f5b48abe09b93c0bfb1dd8eaaeb4b12
6
+ metadata.gz: f95197cd9746994a564b3bd36b10af16e9b1da7458c0e91ee948e55ce6bb40c2692dec36ccd629d9c4864838e5c370ba22a7e4bc0f85f816258f6f57e825a430
7
+ data.tar.gz: d32a1faec82196f66197af8d96d9aeeca49ffd7beafb647c2a84d922688dcb53091e8148f474e8e1a4f56bee4f40211d6790faa4384ae9cf8aedcf21cdfc8770
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.83.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.82.0 (2021-10-04)
15
+ ------------------
16
+
17
+ * Feature - CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
18
+
19
+ 1.81.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.80.0 (2021-08-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.84.0
@@ -285,6 +285,15 @@ module Aws::CodeBuild
285
285
  # ** Please note ** When response stubbing is enabled, no HTTP
286
286
  # requests are made, and retries are disabled.
287
287
  #
288
+ # @option options [Boolean] :use_dualstack_endpoint
289
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
290
+ # will be used if available.
291
+ #
292
+ # @option options [Boolean] :use_fips_endpoint
293
+ # When set to `true`, fips compatible endpoints will be used if available.
294
+ # When a `fips` region is used, the region is normalized and this config
295
+ # is set to `true`.
296
+ #
288
297
  # @option options [Boolean] :validate_params (true)
289
298
  # When `true`, request parameters are validated before
290
299
  # sending the request.
@@ -497,6 +506,7 @@ module Aws::CodeBuild
497
506
  # resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed #=> Array
498
507
  # resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
499
508
  # resp.build_batches[0].build_batch_config.timeout_in_mins #=> Integer
509
+ # resp.build_batches[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
500
510
  # resp.build_batches[0].build_groups #=> Array
501
511
  # resp.build_batches[0].build_groups[0].identifier #=> String
502
512
  # resp.build_batches[0].build_groups[0].depends_on #=> Array
@@ -821,6 +831,7 @@ module Aws::CodeBuild
821
831
  # resp.projects[0].build_batch_config.restrictions.compute_types_allowed #=> Array
822
832
  # resp.projects[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
823
833
  # resp.projects[0].build_batch_config.timeout_in_mins #=> Integer
834
+ # resp.projects[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
824
835
  # resp.projects[0].concurrent_build_limit #=> Integer
825
836
  # resp.projects[0].project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
826
837
  # resp.projects[0].public_project_alias #=> String
@@ -1223,6 +1234,7 @@ module Aws::CodeBuild
1223
1234
  # compute_types_allowed: ["NonEmptyString"],
1224
1235
  # },
1225
1236
  # timeout_in_mins: 1,
1237
+ # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
1226
1238
  # },
1227
1239
  # concurrent_build_limit: 1,
1228
1240
  # })
@@ -1344,6 +1356,7 @@ module Aws::CodeBuild
1344
1356
  # resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
1345
1357
  # resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
1346
1358
  # resp.project.build_batch_config.timeout_in_mins #=> Integer
1359
+ # resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
1347
1360
  # resp.project.concurrent_build_limit #=> Integer
1348
1361
  # resp.project.project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
1349
1362
  # resp.project.public_project_alias #=> String
@@ -2222,14 +2235,17 @@ module Aws::CodeBuild
2222
2235
  # The name of the CodeBuild project.
2223
2236
  #
2224
2237
  # @option params [String] :sort_order
2225
- # The order to list results in. The results are sorted by build number,
2226
- # not the build identifier.
2238
+ # The order to sort the results in. The results are sorted by build
2239
+ # number, not the build identifier. If this is not specified, the
2240
+ # results are sorted in descending order.
2227
2241
  #
2228
2242
  # Valid values include:
2229
2243
  #
2230
- # * `ASCENDING`\: List the build IDs in ascending order by build ID.
2244
+ # * `ASCENDING`\: List the build identifiers in ascending order, by
2245
+ # build number.
2231
2246
  #
2232
- # * `DESCENDING`\: List the build IDs in descending order by build ID.
2247
+ # * `DESCENDING`\: List the build identifiers in descending order, by
2248
+ # build number.
2233
2249
  #
2234
2250
  # If the project has more than 100 builds, setting the sort order will
2235
2251
  # result in an error.
@@ -3035,6 +3051,7 @@ module Aws::CodeBuild
3035
3051
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
3036
3052
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
3037
3053
  # resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
3054
+ # resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
3038
3055
  # resp.build_batch.build_groups #=> Array
3039
3056
  # resp.build_batch.build_groups[0].identifier #=> String
3040
3057
  # resp.build_batch.build_groups[0].depends_on #=> Array
@@ -3893,6 +3910,7 @@ module Aws::CodeBuild
3893
3910
  # compute_types_allowed: ["NonEmptyString"],
3894
3911
  # },
3895
3912
  # timeout_in_mins: 1,
3913
+ # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
3896
3914
  # },
3897
3915
  # debug_session_enabled: false,
3898
3916
  # })
@@ -4007,6 +4025,7 @@ module Aws::CodeBuild
4007
4025
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
4008
4026
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
4009
4027
  # resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
4028
+ # resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
4010
4029
  # resp.build_batch.build_groups #=> Array
4011
4030
  # resp.build_batch.build_groups[0].identifier #=> String
4012
4031
  # resp.build_batch.build_groups[0].depends_on #=> Array
@@ -4314,6 +4333,7 @@ module Aws::CodeBuild
4314
4333
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
4315
4334
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
4316
4335
  # resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
4336
+ # resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
4317
4337
  # resp.build_batch.build_groups #=> Array
4318
4338
  # resp.build_batch.build_groups[0].identifier #=> String
4319
4339
  # resp.build_batch.build_groups[0].depends_on #=> Array
@@ -4412,7 +4432,7 @@ module Aws::CodeBuild
4412
4432
  # build project.
4413
4433
  #
4414
4434
  # @option params [Array<Types::ProjectArtifacts>] :secondary_artifacts
4415
- # An array of `ProjectSource` objects.
4435
+ # An array of `ProjectArtifact` objects.
4416
4436
  #
4417
4437
  # @option params [Types::ProjectCache] :cache
4418
4438
  # Stores recently used information so that it can be quickly accessed at
@@ -4640,6 +4660,7 @@ module Aws::CodeBuild
4640
4660
  # compute_types_allowed: ["NonEmptyString"],
4641
4661
  # },
4642
4662
  # timeout_in_mins: 1,
4663
+ # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
4643
4664
  # },
4644
4665
  # concurrent_build_limit: 1,
4645
4666
  # })
@@ -4761,6 +4782,7 @@ module Aws::CodeBuild
4761
4782
  # resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
4762
4783
  # resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
4763
4784
  # resp.project.build_batch_config.timeout_in_mins #=> Integer
4785
+ # resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
4764
4786
  # resp.project.concurrent_build_limit #=> Integer
4765
4787
  # resp.project.project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
4766
4788
  # resp.project.public_project_alias #=> String
@@ -5026,7 +5048,7 @@ module Aws::CodeBuild
5026
5048
  params: params,
5027
5049
  config: config)
5028
5050
  context[:gem_name] = 'aws-sdk-codebuild'
5029
- context[:gem_version] = '1.80.0'
5051
+ context[:gem_version] = '1.84.0'
5030
5052
  Seahorse::Client::Request.new(handlers, context)
5031
5053
  end
5032
5054
 
@@ -30,6 +30,7 @@ module Aws::CodeBuild
30
30
  BatchGetReportGroupsOutput = Shapes::StructureShape.new(name: 'BatchGetReportGroupsOutput')
31
31
  BatchGetReportsInput = Shapes::StructureShape.new(name: 'BatchGetReportsInput')
32
32
  BatchGetReportsOutput = Shapes::StructureShape.new(name: 'BatchGetReportsOutput')
33
+ BatchReportModeType = Shapes::StringShape.new(name: 'BatchReportModeType')
33
34
  BatchRestrictions = Shapes::StructureShape.new(name: 'BatchRestrictions')
34
35
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
35
36
  BucketOwnerAccess = Shapes::StringShape.new(name: 'BucketOwnerAccess')
@@ -849,6 +850,7 @@ module Aws::CodeBuild
849
850
  ProjectBuildBatchConfig.add_member(:combine_artifacts, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "combineArtifacts"))
850
851
  ProjectBuildBatchConfig.add_member(:restrictions, Shapes::ShapeRef.new(shape: BatchRestrictions, location_name: "restrictions"))
851
852
  ProjectBuildBatchConfig.add_member(:timeout_in_mins, Shapes::ShapeRef.new(shape: WrapperInt, location_name: "timeoutInMins"))
853
+ ProjectBuildBatchConfig.add_member(:batch_report_mode, Shapes::ShapeRef.new(shape: BatchReportModeType, location_name: "batchReportMode"))
852
854
  ProjectBuildBatchConfig.struct_class = Types::ProjectBuildBatchConfig
853
855
 
854
856
  ProjectCache.add_member(:type, Shapes::ShapeRef.new(shape: CacheType, required: true, location_name: "type"))
@@ -1591,6 +1591,7 @@ module Aws::CodeBuild
1591
1591
  # compute_types_allowed: ["NonEmptyString"],
1592
1592
  # },
1593
1593
  # timeout_in_mins: 1,
1594
+ # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
1594
1595
  # },
1595
1596
  # concurrent_build_limit: 1,
1596
1597
  # }
@@ -2877,14 +2878,17 @@ module Aws::CodeBuild
2877
2878
  # @return [String]
2878
2879
  #
2879
2880
  # @!attribute [rw] sort_order
2880
- # The order to list results in. The results are sorted by build
2881
- # number, not the build identifier.
2881
+ # The order to sort the results in. The results are sorted by build
2882
+ # number, not the build identifier. If this is not specified, the
2883
+ # results are sorted in descending order.
2882
2884
  #
2883
2885
  # Valid values include:
2884
2886
  #
2885
- # * `ASCENDING`\: List the build IDs in ascending order by build ID.
2887
+ # * `ASCENDING`\: List the build identifiers in ascending order, by
2888
+ # build number.
2886
2889
  #
2887
- # * `DESCENDING`\: List the build IDs in descending order by build ID.
2890
+ # * `DESCENDING`\: List the build identifiers in descending order, by
2891
+ # build number.
2888
2892
  #
2889
2893
  # If the project has more than 100 builds, setting the sort order will
2890
2894
  # result in an error.
@@ -2911,8 +2915,8 @@ module Aws::CodeBuild
2911
2915
  end
2912
2916
 
2913
2917
  # @!attribute [rw] ids
2914
- # A list of build IDs for the specified build project, with each build
2915
- # ID representing a single build.
2918
+ # A list of build identifiers for the specified build project, with
2919
+ # each build ID representing a single build.
2916
2920
  # @return [Array<String>]
2917
2921
  #
2918
2922
  # @!attribute [rw] next_token
@@ -4124,6 +4128,7 @@ module Aws::CodeBuild
4124
4128
  # compute_types_allowed: ["NonEmptyString"],
4125
4129
  # },
4126
4130
  # timeout_in_mins: 1,
4131
+ # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
4127
4132
  # }
4128
4133
  #
4129
4134
  # @!attribute [rw] service_role
@@ -4145,13 +4150,31 @@ module Aws::CodeBuild
4145
4150
  # build must be completed in.
4146
4151
  # @return [Integer]
4147
4152
  #
4153
+ # @!attribute [rw] batch_report_mode
4154
+ # Specifies how build status reports are sent to the source provider
4155
+ # for the batch build. This property is only used when the source
4156
+ # provider for your project is Bitbucket, GitHub, or GitHub
4157
+ # Enterprise, and your project is configured to report build statuses
4158
+ # to the source provider.
4159
+ #
4160
+ # REPORT\_AGGREGATED\_BATCH
4161
+ #
4162
+ # : (Default) Aggregate all of the build statuses into a single status
4163
+ # report.
4164
+ #
4165
+ # REPORT\_INDIVIDUAL\_BUILDS
4166
+ #
4167
+ # : Send a separate status report for each individual build.
4168
+ # @return [String]
4169
+ #
4148
4170
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ProjectBuildBatchConfig AWS API Documentation
4149
4171
  #
4150
4172
  class ProjectBuildBatchConfig < Struct.new(
4151
4173
  :service_role,
4152
4174
  :combine_artifacts,
4153
4175
  :restrictions,
4154
- :timeout_in_mins)
4176
+ :timeout_in_mins,
4177
+ :batch_report_mode)
4155
4178
  SENSITIVE = []
4156
4179
  include Aws::Structure
4157
4180
  end
@@ -5601,6 +5624,7 @@ module Aws::CodeBuild
5601
5624
  # compute_types_allowed: ["NonEmptyString"],
5602
5625
  # },
5603
5626
  # timeout_in_mins: 1,
5627
+ # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
5604
5628
  # },
5605
5629
  # debug_session_enabled: false,
5606
5630
  # }
@@ -6700,6 +6724,7 @@ module Aws::CodeBuild
6700
6724
  # compute_types_allowed: ["NonEmptyString"],
6701
6725
  # },
6702
6726
  # timeout_in_mins: 1,
6727
+ # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
6703
6728
  # },
6704
6729
  # concurrent_build_limit: 1,
6705
6730
  # }
@@ -6772,7 +6797,7 @@ module Aws::CodeBuild
6772
6797
  # @return [Types::ProjectArtifacts]
6773
6798
  #
6774
6799
  # @!attribute [rw] secondary_artifacts
6775
- # An array of `ProjectSource` objects.
6800
+ # An array of `ProjectArtifact` objects.
6776
6801
  # @return [Array<Types::ProjectArtifacts>]
6777
6802
  #
6778
6803
  # @!attribute [rw] cache
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-codebuild/customizations'
48
48
  # @!group service
49
49
  module Aws::CodeBuild
50
50
 
51
- GEM_VERSION = '1.80.0'
51
+ GEM_VERSION = '1.84.0'
52
52
 
53
53
  end
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.80.0
4
+ version: 1.84.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: 2021-08-30 00:00:00.000000000 Z
11
+ date: 2021-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.119.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="