aws-sdk-codebuild 1.78.0 → 1.79.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: ef796e3aee183ce381eea961c87933a20c1fd2c3488680a7ef2846a263e5b807
4
- data.tar.gz: 9c041544a6d2f50c4ae2d91e80f785e202e8a45f81945a84426bf13cc102820e
3
+ metadata.gz: '08ccc54bd15287de1c7c446bea0cadf2813d34762c80a23bc7cf93736c5c3c77'
4
+ data.tar.gz: 1cc689b57a924ab45d9a6f1918a5724f59bac553ad472f27f83e86e5aa7da475
5
5
  SHA512:
6
- metadata.gz: 249d3c289dee53a0c4c7efea1401f51c78f73b161d7a4ffcf0ecde05b9ef6110488063ab7e1e7c5ffef72b39513b9f3f52a79c0f0c3568dd6f4d0442c0ba80f9
7
- data.tar.gz: 06cd691b4dcc8afd01a486f1bd28d4af40081c6098736e31544e74faa5cdbb8cf0ae6c431d48d0eecba12da8c96e336984b5b451f54802705fc171dc00395f2b
6
+ metadata.gz: 91f068add5d8af198dac9d9498855499905571d203e2eaa45f0c7d869631a33b83f573507ccdf1cd291d3f55b9cea0d2384bc3901ad5c6324436706754c13d82
7
+ data.tar.gz: 690a46de4e836670ba7620c24048001e64939992745e1629f37c3e18a87f0d4a1f5b2de3c4027fdb90543265d46256c2b5286161c12ab0694cad4ebf967b8ebb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2021-08-18)
5
+ ------------------
6
+
7
+ * Feature - CodeBuild now allows you to make the build results for your build projects available to the public without requiring access to an AWS account.
8
+
4
9
  1.78.0 (2021-08-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.79.0
@@ -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.78.0'
51
+ GEM_VERSION = '1.79.0'
52
52
 
53
53
  end
@@ -497,7 +497,6 @@ module Aws::CodeBuild
497
497
  # resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed #=> Array
498
498
  # resp.build_batches[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
499
499
  # resp.build_batches[0].build_batch_config.timeout_in_mins #=> Integer
500
- # resp.build_batches[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
501
500
  # resp.build_batches[0].build_groups #=> Array
502
501
  # resp.build_batches[0].build_groups[0].identifier #=> String
503
502
  # resp.build_batches[0].build_groups[0].depends_on #=> Array
@@ -822,7 +821,6 @@ module Aws::CodeBuild
822
821
  # resp.projects[0].build_batch_config.restrictions.compute_types_allowed #=> Array
823
822
  # resp.projects[0].build_batch_config.restrictions.compute_types_allowed[0] #=> String
824
823
  # resp.projects[0].build_batch_config.timeout_in_mins #=> Integer
825
- # resp.projects[0].build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
826
824
  # resp.projects[0].concurrent_build_limit #=> Integer
827
825
  # resp.projects[0].project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
828
826
  # resp.projects[0].public_project_alias #=> String
@@ -1225,7 +1223,6 @@ module Aws::CodeBuild
1225
1223
  # compute_types_allowed: ["NonEmptyString"],
1226
1224
  # },
1227
1225
  # timeout_in_mins: 1,
1228
- # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
1229
1226
  # },
1230
1227
  # concurrent_build_limit: 1,
1231
1228
  # })
@@ -1347,7 +1344,6 @@ module Aws::CodeBuild
1347
1344
  # resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
1348
1345
  # resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
1349
1346
  # resp.project.build_batch_config.timeout_in_mins #=> Integer
1350
- # resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
1351
1347
  # resp.project.concurrent_build_limit #=> Integer
1352
1348
  # resp.project.project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
1353
1349
  # resp.project.public_project_alias #=> String
@@ -3039,7 +3035,6 @@ module Aws::CodeBuild
3039
3035
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
3040
3036
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
3041
3037
  # resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
3042
- # resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
3043
3038
  # resp.build_batch.build_groups #=> Array
3044
3039
  # resp.build_batch.build_groups[0].identifier #=> String
3045
3040
  # resp.build_batch.build_groups[0].depends_on #=> Array
@@ -3898,7 +3893,6 @@ module Aws::CodeBuild
3898
3893
  # compute_types_allowed: ["NonEmptyString"],
3899
3894
  # },
3900
3895
  # timeout_in_mins: 1,
3901
- # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
3902
3896
  # },
3903
3897
  # debug_session_enabled: false,
3904
3898
  # })
@@ -4013,7 +4007,6 @@ module Aws::CodeBuild
4013
4007
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
4014
4008
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
4015
4009
  # resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
4016
- # resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
4017
4010
  # resp.build_batch.build_groups #=> Array
4018
4011
  # resp.build_batch.build_groups[0].identifier #=> String
4019
4012
  # resp.build_batch.build_groups[0].depends_on #=> Array
@@ -4321,7 +4314,6 @@ module Aws::CodeBuild
4321
4314
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed #=> Array
4322
4315
  # resp.build_batch.build_batch_config.restrictions.compute_types_allowed[0] #=> String
4323
4316
  # resp.build_batch.build_batch_config.timeout_in_mins #=> Integer
4324
- # resp.build_batch.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
4325
4317
  # resp.build_batch.build_groups #=> Array
4326
4318
  # resp.build_batch.build_groups[0].identifier #=> String
4327
4319
  # resp.build_batch.build_groups[0].depends_on #=> Array
@@ -4648,7 +4640,6 @@ module Aws::CodeBuild
4648
4640
  # compute_types_allowed: ["NonEmptyString"],
4649
4641
  # },
4650
4642
  # timeout_in_mins: 1,
4651
- # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
4652
4643
  # },
4653
4644
  # concurrent_build_limit: 1,
4654
4645
  # })
@@ -4770,7 +4761,6 @@ module Aws::CodeBuild
4770
4761
  # resp.project.build_batch_config.restrictions.compute_types_allowed #=> Array
4771
4762
  # resp.project.build_batch_config.restrictions.compute_types_allowed[0] #=> String
4772
4763
  # resp.project.build_batch_config.timeout_in_mins #=> Integer
4773
- # resp.project.build_batch_config.batch_report_mode #=> String, one of "REPORT_INDIVIDUAL_BUILDS", "REPORT_AGGREGATED_BATCH"
4774
4764
  # resp.project.concurrent_build_limit #=> Integer
4775
4765
  # resp.project.project_visibility #=> String, one of "PUBLIC_READ", "PRIVATE"
4776
4766
  # resp.project.public_project_alias #=> String
@@ -5036,7 +5026,7 @@ module Aws::CodeBuild
5036
5026
  params: params,
5037
5027
  config: config)
5038
5028
  context[:gem_name] = 'aws-sdk-codebuild'
5039
- context[:gem_version] = '1.78.0'
5029
+ context[:gem_version] = '1.79.0'
5040
5030
  Seahorse::Client::Request.new(handlers, context)
5041
5031
  end
5042
5032
 
@@ -30,7 +30,6 @@ 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')
34
33
  BatchRestrictions = Shapes::StructureShape.new(name: 'BatchRestrictions')
35
34
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
36
35
  BucketOwnerAccess = Shapes::StringShape.new(name: 'BucketOwnerAccess')
@@ -850,7 +849,6 @@ module Aws::CodeBuild
850
849
  ProjectBuildBatchConfig.add_member(:combine_artifacts, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "combineArtifacts"))
851
850
  ProjectBuildBatchConfig.add_member(:restrictions, Shapes::ShapeRef.new(shape: BatchRestrictions, location_name: "restrictions"))
852
851
  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"))
854
852
  ProjectBuildBatchConfig.struct_class = Types::ProjectBuildBatchConfig
855
853
 
856
854
  ProjectCache.add_member(:type, Shapes::ShapeRef.new(shape: CacheType, required: true, location_name: "type"))
@@ -1586,7 +1586,6 @@ module Aws::CodeBuild
1586
1586
  # compute_types_allowed: ["NonEmptyString"],
1587
1587
  # },
1588
1588
  # timeout_in_mins: 1,
1589
- # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
1590
1589
  # },
1591
1590
  # concurrent_build_limit: 1,
1592
1591
  # }
@@ -4120,7 +4119,6 @@ module Aws::CodeBuild
4120
4119
  # compute_types_allowed: ["NonEmptyString"],
4121
4120
  # },
4122
4121
  # timeout_in_mins: 1,
4123
- # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
4124
4122
  # }
4125
4123
  #
4126
4124
  # @!attribute [rw] service_role
@@ -4142,31 +4140,13 @@ module Aws::CodeBuild
4142
4140
  # build must be completed in.
4143
4141
  # @return [Integer]
4144
4142
  #
4145
- # @!attribute [rw] batch_report_mode
4146
- # Specifies how build status reports are sent to the source provider
4147
- # for the batch build. This property is only used when the source
4148
- # provider for your project is Bitbucket, GitHub, or GitHub
4149
- # Enterprise, and your project is configured to report build statuses
4150
- # to the source provider.
4151
- #
4152
- # REPORT\_AGGREGATED\_BATCH
4153
- #
4154
- # : (Default) Aggregate all of the build statuses into a single status
4155
- # report.
4156
- #
4157
- # REPORT\_INDIVIDUAL\_BUILDS
4158
- #
4159
- # : Send a separate status report for each individual build.
4160
- # @return [String]
4161
- #
4162
4143
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ProjectBuildBatchConfig AWS API Documentation
4163
4144
  #
4164
4145
  class ProjectBuildBatchConfig < Struct.new(
4165
4146
  :service_role,
4166
4147
  :combine_artifacts,
4167
4148
  :restrictions,
4168
- :timeout_in_mins,
4169
- :batch_report_mode)
4149
+ :timeout_in_mins)
4170
4150
  SENSITIVE = []
4171
4151
  include Aws::Structure
4172
4152
  end
@@ -4687,10 +4667,12 @@ module Aws::CodeBuild
4687
4667
  # cannot be updated. For more information, see [Source provider
4688
4668
  # access][1] in the *CodeBuild User Guide*.
4689
4669
  #
4690
- # <note markdown="1"> The status of a build triggered by a webhook is always reported to
4670
+ # The status of a build triggered by a webhook is always reported to
4691
4671
  # your source provider.
4692
4672
  #
4693
- # </note>
4673
+ # If your project's builds are triggered by a webhook, you must push
4674
+ # a new commit to the repo for a change to this property to take
4675
+ # effect.
4694
4676
  #
4695
4677
  #
4696
4678
  #
@@ -5614,7 +5596,6 @@ module Aws::CodeBuild
5614
5596
  # compute_types_allowed: ["NonEmptyString"],
5615
5597
  # },
5616
5598
  # timeout_in_mins: 1,
5617
- # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
5618
5599
  # },
5619
5600
  # debug_session_enabled: false,
5620
5601
  # }
@@ -6714,7 +6695,6 @@ module Aws::CodeBuild
6714
6695
  # compute_types_allowed: ["NonEmptyString"],
6715
6696
  # },
6716
6697
  # timeout_in_mins: 1,
6717
- # batch_report_mode: "REPORT_INDIVIDUAL_BUILDS", # accepts REPORT_INDIVIDUAL_BUILDS, REPORT_AGGREGATED_BATCH
6718
6698
  # },
6719
6699
  # concurrent_build_limit: 1,
6720
6700
  # }
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.78.0
4
+ version: 1.79.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-16 00:00:00.000000000 Z
11
+ date: 2021-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core