aws-sdk-codebuild 1.78.0 → 1.82.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: 14f6145b8ebdc94e73cef7159aa3f7b0b4d9b442b73d28af3c5de08f5e6bee90
4
+ data.tar.gz: 0b449defa109edee38412bcdfec2875981c5212992c09ed22f80e62834249ae4
5
5
  SHA512:
6
- metadata.gz: 249d3c289dee53a0c4c7efea1401f51c78f73b161d7a4ffcf0ecde05b9ef6110488063ab7e1e7c5ffef72b39513b9f3f52a79c0f0c3568dd6f4d0442c0ba80f9
7
- data.tar.gz: 06cd691b4dcc8afd01a486f1bd28d4af40081c6098736e31544e74faa5cdbb8cf0ae6c431d48d0eecba12da8c96e336984b5b451f54802705fc171dc00395f2b
6
+ metadata.gz: c9dacc4e3c71927c7c76352885c690d02b345e3bf2878b0dcb30430b738e9740800aa46927a024d74915bf33d50e290b4e84eafb51c57e244543a2f11f557db0
7
+ data.tar.gz: 82c965ea3cdff09df157109aa1381cc8df7ebe6c245932d6af419c8b3ca57f89bad6e8a620bb92757bc351ea41b5bee249317c2a99118ae1263f5ba27bb0dfc3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.82.0 (2021-10-04)
5
+ ------------------
6
+
7
+ * Feature - CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
8
+
9
+ 1.81.0 (2021-09-01)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.80.0 (2021-08-30)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for CodeBuild
18
+
19
+ 1.79.0 (2021-08-18)
20
+ ------------------
21
+
22
+ * 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.
23
+
4
24
  1.78.0 (2021-08-16)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.82.0
@@ -2226,14 +2226,17 @@ module Aws::CodeBuild
2226
2226
  # The name of the CodeBuild project.
2227
2227
  #
2228
2228
  # @option params [String] :sort_order
2229
- # The order to list results in. The results are sorted by build number,
2230
- # not the build identifier.
2229
+ # The order to sort the results in. The results are sorted by build
2230
+ # number, not the build identifier. If this is not specified, the
2231
+ # results are sorted in descending order.
2231
2232
  #
2232
2233
  # Valid values include:
2233
2234
  #
2234
- # * `ASCENDING`\: List the build IDs in ascending order by build ID.
2235
+ # * `ASCENDING`\: List the build identifiers in ascending order, by
2236
+ # build number.
2235
2237
  #
2236
- # * `DESCENDING`\: List the build IDs in descending order by build ID.
2238
+ # * `DESCENDING`\: List the build identifiers in descending order, by
2239
+ # build number.
2237
2240
  #
2238
2241
  # If the project has more than 100 builds, setting the sort order will
2239
2242
  # result in an error.
@@ -4420,7 +4423,7 @@ module Aws::CodeBuild
4420
4423
  # build project.
4421
4424
  #
4422
4425
  # @option params [Array<Types::ProjectArtifacts>] :secondary_artifacts
4423
- # An array of `ProjectSource` objects.
4426
+ # An array of `ProjectArtifact` objects.
4424
4427
  #
4425
4428
  # @option params [Types::ProjectCache] :cache
4426
4429
  # Stores recently used information so that it can be quickly accessed at
@@ -5036,7 +5039,7 @@ module Aws::CodeBuild
5036
5039
  params: params,
5037
5040
  config: config)
5038
5041
  context[:gem_name] = 'aws-sdk-codebuild'
5039
- context[:gem_version] = '1.78.0'
5042
+ context[:gem_version] = '1.82.0'
5040
5043
  Seahorse::Client::Request.new(handlers, context)
5041
5044
  end
5042
5045
 
@@ -938,11 +938,6 @@ module Aws::CodeBuild
938
938
  #
939
939
  # : The build phase is still in progress.
940
940
  #
941
- # QUEUED
942
- #
943
- # : The build has been submitted and is queued behind other submitted
944
- # builds.
945
- #
946
941
  # STOPPED
947
942
  #
948
943
  # : The build phase stopped.
@@ -1051,35 +1046,50 @@ module Aws::CodeBuild
1051
1046
  # @!attribute [rw] phase_type
1052
1047
  # The name of the build phase. Valid values include:
1053
1048
  #
1054
- # * `BUILD`\: Core build activities typically occur in this build
1055
- # phase.
1049
+ # BUILD
1050
+ #
1051
+ # : Core build activities typically occur in this build phase.
1052
+ #
1053
+ # COMPLETED
1054
+ #
1055
+ # : The build has been completed.
1056
+ #
1057
+ # DOWNLOAD\_SOURCE
1058
+ #
1059
+ # : Source code is being downloaded in this build phase.
1060
+ #
1061
+ # FINALIZING
1062
+ #
1063
+ # : The build process is completing in this build phase.
1064
+ #
1065
+ # INSTALL
1066
+ #
1067
+ # : Installation activities typically occur in this build phase.
1068
+ #
1069
+ # POST\_BUILD
1056
1070
  #
1057
- # * `COMPLETED`\: The build has been completed.
1071
+ # : Post-build activities typically occur in this build phase.
1058
1072
  #
1059
- # * `DOWNLOAD_SOURCE`\: Source code is being downloaded in this build
1060
- # phase.
1073
+ # PRE\_BUILD
1061
1074
  #
1062
- # * `FINALIZING`\: The build process is completing in this build
1063
- # phase.
1075
+ # : Pre-build activities typically occur in this build phase.
1064
1076
  #
1065
- # * `INSTALL`\: Installation activities typically occur in this build
1066
- # phase.
1077
+ # PROVISIONING
1067
1078
  #
1068
- # * `POST_BUILD`\: Post-build activities typically occur in this build
1069
- # phase.
1079
+ # : The build environment is being set up.
1070
1080
  #
1071
- # * `PRE_BUILD`\: Pre-build activities typically occur in this build
1072
- # phase.
1081
+ # QUEUED
1082
+ #
1083
+ # : The build has been submitted and is queued behind other submitted
1084
+ # builds.
1073
1085
  #
1074
- # * `PROVISIONING`\: The build environment is being set up.
1086
+ # SUBMITTED
1075
1087
  #
1076
- # * `QUEUED`\: The build has been submitted and is queued behind other
1077
- # submitted builds.
1088
+ # : The build has been submitted.
1078
1089
  #
1079
- # * `SUBMITTED`\: The build has been submitted.
1090
+ # UPLOAD\_ARTIFACTS
1080
1091
  #
1081
- # * `UPLOAD_ARTIFACTS`\: Build output artifacts are being uploaded to
1082
- # the output location.
1092
+ # : Build output artifacts are being uploaded to the output location.
1083
1093
  # @return [String]
1084
1094
  #
1085
1095
  # @!attribute [rw] phase_status
@@ -1097,11 +1107,6 @@ module Aws::CodeBuild
1097
1107
  #
1098
1108
  # : The build phase is still in progress.
1099
1109
  #
1100
- # QUEUED
1101
- #
1102
- # : The build has been submitted and is queued behind other submitted
1103
- # builds.
1104
- #
1105
1110
  # STOPPED
1106
1111
  #
1107
1112
  # : The build phase stopped.
@@ -2873,14 +2878,17 @@ module Aws::CodeBuild
2873
2878
  # @return [String]
2874
2879
  #
2875
2880
  # @!attribute [rw] sort_order
2876
- # The order to list results in. The results are sorted by build
2877
- # 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.
2878
2884
  #
2879
2885
  # Valid values include:
2880
2886
  #
2881
- # * `ASCENDING`\: List the build IDs in ascending order by build ID.
2887
+ # * `ASCENDING`\: List the build identifiers in ascending order, by
2888
+ # build number.
2882
2889
  #
2883
- # * `DESCENDING`\: List the build IDs in descending order by build ID.
2890
+ # * `DESCENDING`\: List the build identifiers in descending order, by
2891
+ # build number.
2884
2892
  #
2885
2893
  # If the project has more than 100 builds, setting the sort order will
2886
2894
  # result in an error.
@@ -2907,8 +2915,8 @@ module Aws::CodeBuild
2907
2915
  end
2908
2916
 
2909
2917
  # @!attribute [rw] ids
2910
- # A list of build IDs for the specified build project, with each build
2911
- # 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.
2912
2920
  # @return [Array<String>]
2913
2921
  #
2914
2922
  # @!attribute [rw] next_token
@@ -4687,10 +4695,12 @@ module Aws::CodeBuild
4687
4695
  # cannot be updated. For more information, see [Source provider
4688
4696
  # access][1] in the *CodeBuild User Guide*.
4689
4697
  #
4690
- # <note markdown="1"> The status of a build triggered by a webhook is always reported to
4698
+ # The status of a build triggered by a webhook is always reported to
4691
4699
  # your source provider.
4692
4700
  #
4693
- # </note>
4701
+ # If your project's builds are triggered by a webhook, you must push
4702
+ # a new commit to the repo for a change to this property to take
4703
+ # effect.
4694
4704
  #
4695
4705
  #
4696
4706
  #
@@ -6787,7 +6797,7 @@ module Aws::CodeBuild
6787
6797
  # @return [Types::ProjectArtifacts]
6788
6798
  #
6789
6799
  # @!attribute [rw] secondary_artifacts
6790
- # An array of `ProjectSource` objects.
6800
+ # An array of `ProjectArtifact` objects.
6791
6801
  # @return [Array<Types::ProjectArtifacts>]
6792
6802
  #
6793
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.78.0'
51
+ GEM_VERSION = '1.82.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.78.0
4
+ version: 1.82.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-10-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.120.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.120.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
  - - ">="