aws-sdk-codebuild 1.77.0 → 1.81.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codebuild/client.rb +1 -1
- data/lib/aws-sdk-codebuild/types.rb +38 -31
- data/lib/aws-sdk-codebuild.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92b4c9435d00b91897d1bf55bd817559daa383231086f2ffc5e41321bae4a6b8
|
|
4
|
+
data.tar.gz: 16b497f7197c5948e538d77ea9e546b0757f8fa832de46077175e43fc182c04c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ecf33e29685946c5f234fb2aca1dfe9244418df844ac22592c2a955e31151dbcc83f2fd49c268778ed0736cfd12b837b281eb2d98de91803d9863a1313aafa5
|
|
7
|
+
data.tar.gz: 18cda7c40a220757370adc4dab769bff68467d04d6adbb807a63eeb444614e79f5417b7737e2e02ab0b79f7c4814dfac23bd8d7d9fa9a45521d61b7c35b8b23e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.81.0 (2021-09-01)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.80.0 (2021-08-30)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Documentation updates for CodeBuild
|
|
13
|
+
|
|
14
|
+
1.79.0 (2021-08-18)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* 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.
|
|
18
|
+
|
|
19
|
+
1.78.0 (2021-08-16)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
|
|
23
|
+
|
|
4
24
|
1.77.0 (2021-08-11)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.81.0
|
|
@@ -5026,7 +5026,7 @@ module Aws::CodeBuild
|
|
|
5026
5026
|
params: params,
|
|
5027
5027
|
config: config)
|
|
5028
5028
|
context[:gem_name] = 'aws-sdk-codebuild'
|
|
5029
|
-
context[:gem_version] = '1.
|
|
5029
|
+
context[:gem_version] = '1.81.0'
|
|
5030
5030
|
Seahorse::Client::Request.new(handlers, context)
|
|
5031
5031
|
end
|
|
5032
5032
|
|
|
@@ -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
|
-
#
|
|
1055
|
-
#
|
|
1049
|
+
# BUILD
|
|
1050
|
+
#
|
|
1051
|
+
# : Core build activities typically occur in this build phase.
|
|
1052
|
+
#
|
|
1053
|
+
# COMPLETED
|
|
1056
1054
|
#
|
|
1057
|
-
#
|
|
1055
|
+
# : The build has been completed.
|
|
1058
1056
|
#
|
|
1059
|
-
#
|
|
1060
|
-
# phase.
|
|
1057
|
+
# DOWNLOAD\_SOURCE
|
|
1061
1058
|
#
|
|
1062
|
-
#
|
|
1063
|
-
# phase.
|
|
1059
|
+
# : Source code is being downloaded in this build phase.
|
|
1064
1060
|
#
|
|
1065
|
-
#
|
|
1066
|
-
# phase.
|
|
1061
|
+
# FINALIZING
|
|
1067
1062
|
#
|
|
1068
|
-
#
|
|
1069
|
-
# phase.
|
|
1063
|
+
# : The build process is completing in this build phase.
|
|
1070
1064
|
#
|
|
1071
|
-
#
|
|
1072
|
-
# phase.
|
|
1065
|
+
# INSTALL
|
|
1073
1066
|
#
|
|
1074
|
-
#
|
|
1067
|
+
# : Installation activities typically occur in this build phase.
|
|
1075
1068
|
#
|
|
1076
|
-
#
|
|
1077
|
-
# submitted builds.
|
|
1069
|
+
# POST\_BUILD
|
|
1078
1070
|
#
|
|
1079
|
-
#
|
|
1071
|
+
# : Post-build activities typically occur in this build phase.
|
|
1080
1072
|
#
|
|
1081
|
-
#
|
|
1082
|
-
#
|
|
1073
|
+
# PRE\_BUILD
|
|
1074
|
+
#
|
|
1075
|
+
# : Pre-build activities typically occur in this build phase.
|
|
1076
|
+
#
|
|
1077
|
+
# PROVISIONING
|
|
1078
|
+
#
|
|
1079
|
+
# : The build environment is being set up.
|
|
1080
|
+
#
|
|
1081
|
+
# QUEUED
|
|
1082
|
+
#
|
|
1083
|
+
# : The build has been submitted and is queued behind other submitted
|
|
1084
|
+
# builds.
|
|
1085
|
+
#
|
|
1086
|
+
# SUBMITTED
|
|
1087
|
+
#
|
|
1088
|
+
# : The build has been submitted.
|
|
1089
|
+
#
|
|
1090
|
+
# UPLOAD\_ARTIFACTS
|
|
1091
|
+
#
|
|
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.
|
|
@@ -4667,10 +4672,12 @@ module Aws::CodeBuild
|
|
|
4667
4672
|
# cannot be updated. For more information, see [Source provider
|
|
4668
4673
|
# access][1] in the *CodeBuild User Guide*.
|
|
4669
4674
|
#
|
|
4670
|
-
#
|
|
4675
|
+
# The status of a build triggered by a webhook is always reported to
|
|
4671
4676
|
# your source provider.
|
|
4672
4677
|
#
|
|
4673
|
-
#
|
|
4678
|
+
# If your project's builds are triggered by a webhook, you must push
|
|
4679
|
+
# a new commit to the repo for a change to this property to take
|
|
4680
|
+
# effect.
|
|
4674
4681
|
#
|
|
4675
4682
|
#
|
|
4676
4683
|
#
|
data/lib/aws-sdk-codebuild.rb
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.81.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-
|
|
11
|
+
date: 2021-09-01 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.
|
|
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.
|
|
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: '
|
|
79
|
+
version: '2.3'
|
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
requirements:
|
|
82
82
|
- - ">="
|