aws-sdk-codebuild 1.4.0 → 1.5.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: b5dc9395bfce59aa9a74f8e71bf6ed432bd6918c
4
- data.tar.gz: 4a96f56b17337ea8679726c1d425d6fe47be9a8b
3
+ metadata.gz: 334030287fa3f50e6cede46106b02840d308117d
4
+ data.tar.gz: 9012394261cbfb62a797f27aac264c0bea6a9435
5
5
  SHA512:
6
- metadata.gz: acbcdf842a70f8ec258f57e50d30c27b0f8eb7c7ea37780121de18e851e187d1c7b26dd2f1b19f3459745ad896317e14f14eef20d86f93904f8d97a6ab351f80
7
- data.tar.gz: ba6055dce5f5c9d4289aa9f4a9cbbf9c3e08dd0c713a19c249918c83fea15348544131c21180832d88528ce1a5bd5fe63394b634c287530e261022b9290bcd91
6
+ metadata.gz: 09f9d520a269c83eeb19edb7f8ba8d208264e4925ced6914dd7d1037dad253812ddc06a652f28bae104791f3c35f962c93fa4e076a7645cae87c1d6cbe270999
7
+ data.tar.gz: 3da72013521e75d36d39ef502b1497cd81903d52d07de4a7732c9ed11f8cbe8d39c0f5c4bdc35039d61331347471c37e9e1aee42b4078e8d401bc36be2ee10f1
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codebuild/customizations'
42
42
  # @service
43
43
  module Aws::CodeBuild
44
44
 
45
- GEM_VERSION = '1.4.0'
45
+ GEM_VERSION = '1.5.0'
46
46
 
47
47
  end
@@ -980,6 +980,8 @@ module Aws::CodeBuild
980
980
  # resp.platforms[0].languages[0].images #=> Array
981
981
  # resp.platforms[0].languages[0].images[0].name #=> String
982
982
  # resp.platforms[0].languages[0].images[0].description #=> String
983
+ # resp.platforms[0].languages[0].images[0].versions #=> Array
984
+ # resp.platforms[0].languages[0].images[0].versions[0] #=> String
983
985
  #
984
986
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListCuratedEnvironmentImages AWS API Documentation
985
987
  #
@@ -1447,7 +1449,7 @@ module Aws::CodeBuild
1447
1449
  params: params,
1448
1450
  config: config)
1449
1451
  context[:gem_name] = 'aws-sdk-codebuild'
1450
- context[:gem_version] = '1.4.0'
1452
+ context[:gem_version] = '1.5.0'
1451
1453
  Seahorse::Client::Request.new(handlers, context)
1452
1454
  end
1453
1455
 
@@ -51,6 +51,7 @@ module Aws::CodeBuild
51
51
  EnvironmentVariable = Shapes::StructureShape.new(name: 'EnvironmentVariable')
52
52
  EnvironmentVariableType = Shapes::StringShape.new(name: 'EnvironmentVariableType')
53
53
  EnvironmentVariables = Shapes::ListShape.new(name: 'EnvironmentVariables')
54
+ ImageVersions = Shapes::ListShape.new(name: 'ImageVersions')
54
55
  InvalidInputException = Shapes::StructureShape.new(name: 'InvalidInputException')
55
56
  InvalidateProjectCacheInput = Shapes::StructureShape.new(name: 'InvalidateProjectCacheInput')
56
57
  InvalidateProjectCacheOutput = Shapes::StructureShape.new(name: 'InvalidateProjectCacheOutput')
@@ -211,6 +212,7 @@ module Aws::CodeBuild
211
212
 
212
213
  EnvironmentImage.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
213
214
  EnvironmentImage.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
215
+ EnvironmentImage.add_member(:versions, Shapes::ShapeRef.new(shape: ImageVersions, location_name: "versions"))
214
216
  EnvironmentImage.struct_class = Types::EnvironmentImage
215
217
 
216
218
  EnvironmentImages.member = Shapes::ShapeRef.new(shape: EnvironmentImage)
@@ -234,6 +236,8 @@ module Aws::CodeBuild
234
236
 
235
237
  EnvironmentVariables.member = Shapes::ShapeRef.new(shape: EnvironmentVariable)
236
238
 
239
+ ImageVersions.member = Shapes::ShapeRef.new(shape: String)
240
+
237
241
  InvalidateProjectCacheInput.add_member(:project_name, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "projectName"))
238
242
  InvalidateProjectCacheInput.struct_class = Types::InvalidateProjectCacheInput
239
243
 
@@ -611,11 +611,16 @@ module Aws::CodeBuild
611
611
  # The description of the Docker image.
612
612
  # @return [String]
613
613
  #
614
+ # @!attribute [rw] versions
615
+ # A list of environment image versions.
616
+ # @return [Array<String>]
617
+ #
614
618
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/EnvironmentImage AWS API Documentation
615
619
  #
616
620
  class EnvironmentImage < Struct.new(
617
621
  :name,
618
- :description)
622
+ :description,
623
+ :versions)
619
624
  include Aws::Structure
620
625
  end
621
626
 
@@ -1067,11 +1072,8 @@ module Aws::CodeBuild
1067
1072
  # @return [Types::Webhook]
1068
1073
  #
1069
1074
  # @!attribute [rw] vpc_config
1070
- # If your AWS CodeBuild project accesses resources in an Amazon VPC,
1071
- # you provide this parameter that identifies the VPC ID and the list
1072
- # of security group IDs and subnet IDs. The security groups and
1073
- # subnets must belong to the same VPC. You must provide at least one
1074
- # security group and one subnet ID.
1075
+ # Information about the VPC configuration that AWS CodeBuild will
1076
+ # access.
1075
1077
  # @return [Types::VpcConfig]
1076
1078
  #
1077
1079
  # @!attribute [rw] badge
@@ -1819,11 +1821,8 @@ module Aws::CodeBuild
1819
1821
  include Aws::Structure
1820
1822
  end
1821
1823
 
1822
- # If your AWS CodeBuild project accesses resources in an Amazon VPC, you
1823
- # provide this parameter that identifies the VPC ID and the list of
1824
- # security group IDs and subnet IDs. The security groups and subnets
1825
- # must belong to the same VPC. You must provide at least one security
1826
- # group and one subnet ID.
1824
+ # Information about the VPC configuration that AWS CodeBuild will
1825
+ # access.
1827
1826
  #
1828
1827
  # @note When making an API call, you may pass VpcConfig
1829
1828
  # data as a hash:
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.0
4
+ version: 1.5.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: 2017-11-22 00:00:00.000000000 Z
11
+ date: 2017-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core