aws-sdk-codebuild 1.18.0 → 1.19.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
  SHA1:
3
- metadata.gz: 1788a131c457b1619c1fa892104dad774841305b
4
- data.tar.gz: be1bc20b2cc10a52cb6e04bda81d8945c1ab548c
3
+ metadata.gz: d39283df7d69b2647bf034485cadad1397708393
4
+ data.tar.gz: f904a438f19673351a51f49c5056b560d5949955
5
5
  SHA512:
6
- metadata.gz: 0533a268c384be16f76e2469fd76a9913a8fb8275a18a695aaa38cbfe2f3b08666dd755a1e5b08fed34e4bc821bd391512bbaf17be171581b573515d0b20d85f
7
- data.tar.gz: 5ddccfeaa6358aec029337295ac58ffdb2e8cec09805debdd2f5e96c4a2cf8489dbf2e828b88711e01bfcffbcb5d6d5157cda0256f72993cb1f06643d68e111c
6
+ metadata.gz: 1c8bee17bb4ae4af5cdde1ae4a1a32b455bc4b44c6bd21208cf11b13d7ba52ff44279528124bfb72aaf8f0c1cabccd652795648922732cc818e115a9cb820b12
7
+ data.tar.gz: eba80d9552326c4d3a424e6d037f1c7053bec413d23510e783252afa46c81d3df35aa50955aeda399a365aca83033499e153cf8e1690467d8dccaf584c459c45
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codebuild/customizations'
42
42
  # @service
43
43
  module Aws::CodeBuild
44
44
 
45
- GEM_VERSION = '1.18.0'
45
+ GEM_VERSION = '1.19.0'
46
46
 
47
47
  end
@@ -498,6 +498,7 @@ module Aws::CodeBuild
498
498
  # resp.builds[0].current_phase #=> String
499
499
  # resp.builds[0].build_status #=> String, one of "SUCCEEDED", "FAILED", "FAULT", "TIMED_OUT", "IN_PROGRESS", "STOPPED"
500
500
  # resp.builds[0].source_version #=> String
501
+ # resp.builds[0].resolved_source_version #=> String
501
502
  # resp.builds[0].project_name #=> String
502
503
  # resp.builds[0].phases #=> Array
503
504
  # resp.builds[0].phases[0].phase_type #=> String, one of "SUBMITTED", "PROVISIONING", "DOWNLOAD_SOURCE", "INSTALL", "PRE_BUILD", "BUILD", "POST_BUILD", "UPLOAD_ARTIFACTS", "FINALIZING", "COMPLETED"
@@ -1497,6 +1498,7 @@ module Aws::CodeBuild
1497
1498
  # resp.build.current_phase #=> String
1498
1499
  # resp.build.build_status #=> String, one of "SUCCEEDED", "FAILED", "FAULT", "TIMED_OUT", "IN_PROGRESS", "STOPPED"
1499
1500
  # resp.build.source_version #=> String
1501
+ # resp.build.resolved_source_version #=> String
1500
1502
  # resp.build.project_name #=> String
1501
1503
  # resp.build.phases #=> Array
1502
1504
  # resp.build.phases[0].phase_type #=> String, one of "SUBMITTED", "PROVISIONING", "DOWNLOAD_SOURCE", "INSTALL", "PRE_BUILD", "BUILD", "POST_BUILD", "UPLOAD_ARTIFACTS", "FINALIZING", "COMPLETED"
@@ -1608,6 +1610,7 @@ module Aws::CodeBuild
1608
1610
  # resp.build.current_phase #=> String
1609
1611
  # resp.build.build_status #=> String, one of "SUCCEEDED", "FAILED", "FAULT", "TIMED_OUT", "IN_PROGRESS", "STOPPED"
1610
1612
  # resp.build.source_version #=> String
1613
+ # resp.build.resolved_source_version #=> String
1611
1614
  # resp.build.project_name #=> String
1612
1615
  # resp.build.phases #=> Array
1613
1616
  # resp.build.phases[0].phase_type #=> String, one of "SUBMITTED", "PROVISIONING", "DOWNLOAD_SOURCE", "INSTALL", "PRE_BUILD", "BUILD", "POST_BUILD", "UPLOAD_ARTIFACTS", "FINALIZING", "COMPLETED"
@@ -2016,7 +2019,7 @@ module Aws::CodeBuild
2016
2019
  params: params,
2017
2020
  config: config)
2018
2021
  context[:gem_name] = 'aws-sdk-codebuild'
2019
- context[:gem_version] = '1.18.0'
2022
+ context[:gem_version] = '1.19.0'
2020
2023
  Seahorse::Client::Request.new(handlers, context)
2021
2024
  end
2022
2025
 
@@ -150,6 +150,7 @@ module Aws::CodeBuild
150
150
  Build.add_member(:current_phase, Shapes::ShapeRef.new(shape: String, location_name: "currentPhase"))
151
151
  Build.add_member(:build_status, Shapes::ShapeRef.new(shape: StatusType, location_name: "buildStatus"))
152
152
  Build.add_member(:source_version, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "sourceVersion"))
153
+ Build.add_member(:resolved_source_version, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "resolvedSourceVersion"))
153
154
  Build.add_member(:project_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "projectName"))
154
155
  Build.add_member(:phases, Shapes::ShapeRef.new(shape: BuildPhases, location_name: "phases"))
155
156
  Build.add_member(:source, Shapes::ShapeRef.new(shape: ProjectSource, location_name: "source"))
@@ -154,6 +154,19 @@ module Aws::CodeBuild
154
154
  # built.
155
155
  # @return [String]
156
156
  #
157
+ # @!attribute [rw] resolved_source_version
158
+ # An identifier for the version of this build's source code.
159
+ #
160
+ # * For AWS CodeCommit, GitHub, GitHub Enterprise, and BitBucket, the
161
+ # commit ID.
162
+ #
163
+ # * For AWS CodePipeline, the source revision provided by AWS
164
+ # CodePipeline.
165
+ #
166
+ # * For Amazon Simple Storage Service (Amazon S3), this does not
167
+ # apply.
168
+ # @return [String]
169
+ #
157
170
  # @!attribute [rw] project_name
158
171
  # The name of the AWS CodeBuild project.
159
172
  # @return [String]
@@ -271,6 +284,7 @@ module Aws::CodeBuild
271
284
  :current_phase,
272
285
  :build_status,
273
286
  :source_version,
287
+ :resolved_source_version,
274
288
  :project_name,
275
289
  :phases,
276
290
  :source,
@@ -1884,7 +1898,7 @@ module Aws::CodeBuild
1884
1898
  # The ARN of an S3 bucket and the path prefix for S3 logs. If your
1885
1899
  # Amazon S3 bucket name is `my-bucket`, and your path prefix is
1886
1900
  # `build-log`, then acceptable formats are `my-bucket/build-log` or
1887
- # `aws:s3:::my-bucket/build-log`.
1901
+ # `arn:aws:s3:::my-bucket/build-log`.
1888
1902
  # @return [String]
1889
1903
  #
1890
1904
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/S3LogsConfig AWS API Documentation
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.18.0
4
+ version: 1.19.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: 2018-09-17 00:00:00.000000000 Z
11
+ date: 2018-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core