aws-sdk-codebuild 1.63.0 → 1.64.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-codebuild.rb +1 -1
- data/lib/aws-sdk-codebuild/client.rb +6 -2
- data/lib/aws-sdk-codebuild/client_api.rb +2 -0
- data/lib/aws-sdk-codebuild/types.rb +43 -27
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f971452803a557301b1c25d60fa2a48bbe5ebf0b0a49a6bc6fa5d58e5fd811b
|
4
|
+
data.tar.gz: d00952a6b7a2fb8bdd475dde9e657083007783a8c4114b78d5f29bb75f00f013
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '058e570397c8aa2a452aa4f948ff0b70540619de4b63a8748af1898c52d9cac6333919108fcbcb2a67c122af15d932cfde598ebd501c61d99719c2dce8d4391f'
|
7
|
+
data.tar.gz: bba7c6b6d4c8ec9715d1d502b6f590e1a0a8e1162dfbcab0d01c2d1a595f1d4d9d5f02237db07d4b918d3dabfcfbd3bceacb8ddfa6f87b7e7783624b8d556903
|
data/lib/aws-sdk-codebuild.rb
CHANGED
@@ -1110,6 +1110,7 @@ module Aws::CodeBuild
|
|
1110
1110
|
# resp.report_groups[0].tags #=> Array
|
1111
1111
|
# resp.report_groups[0].tags[0].key #=> String
|
1112
1112
|
# resp.report_groups[0].tags[0].value #=> String
|
1113
|
+
# resp.report_groups[0].status #=> String, one of "ACTIVE", "DELETING"
|
1113
1114
|
# resp.report_groups_not_found #=> Array
|
1114
1115
|
# resp.report_groups_not_found[0] #=> String
|
1115
1116
|
#
|
@@ -1638,6 +1639,7 @@ module Aws::CodeBuild
|
|
1638
1639
|
# resp.report_group.tags #=> Array
|
1639
1640
|
# resp.report_group.tags[0].key #=> String
|
1640
1641
|
# resp.report_group.tags[0].value #=> String
|
1642
|
+
# resp.report_group.status #=> String, one of "ACTIVE", "DELETING"
|
1641
1643
|
#
|
1642
1644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateReportGroup AWS API Documentation
|
1643
1645
|
#
|
@@ -3009,7 +3011,8 @@ module Aws::CodeBuild
|
|
3009
3011
|
req.send_request(options)
|
3010
3012
|
end
|
3011
3013
|
|
3012
|
-
# Restarts a batch build.
|
3014
|
+
# Restarts a failed batch build. Only batch builds that have failed can
|
3015
|
+
# be retried.
|
3013
3016
|
#
|
3014
3017
|
# @option params [String] :id
|
3015
3018
|
# Specifies the identifier of the batch build to restart.
|
@@ -4884,6 +4887,7 @@ module Aws::CodeBuild
|
|
4884
4887
|
# resp.report_group.tags #=> Array
|
4885
4888
|
# resp.report_group.tags[0].key #=> String
|
4886
4889
|
# resp.report_group.tags[0].value #=> String
|
4890
|
+
# resp.report_group.status #=> String, one of "ACTIVE", "DELETING"
|
4887
4891
|
#
|
4888
4892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateReportGroup AWS API Documentation
|
4889
4893
|
#
|
@@ -4985,7 +4989,7 @@ module Aws::CodeBuild
|
|
4985
4989
|
params: params,
|
4986
4990
|
config: config)
|
4987
4991
|
context[:gem_name] = 'aws-sdk-codebuild'
|
4988
|
-
context[:gem_version] = '1.
|
4992
|
+
context[:gem_version] = '1.64.0'
|
4989
4993
|
Seahorse::Client::Request.new(handlers, context)
|
4990
4994
|
end
|
4991
4995
|
|
@@ -187,6 +187,7 @@ module Aws::CodeBuild
|
|
187
187
|
ReportGroupArns = Shapes::ListShape.new(name: 'ReportGroupArns')
|
188
188
|
ReportGroupName = Shapes::StringShape.new(name: 'ReportGroupName')
|
189
189
|
ReportGroupSortByType = Shapes::StringShape.new(name: 'ReportGroupSortByType')
|
190
|
+
ReportGroupStatusType = Shapes::StringShape.new(name: 'ReportGroupStatusType')
|
190
191
|
ReportGroups = Shapes::ListShape.new(name: 'ReportGroups')
|
191
192
|
ReportPackagingType = Shapes::StringShape.new(name: 'ReportPackagingType')
|
192
193
|
ReportStatusCounts = Shapes::MapShape.new(name: 'ReportStatusCounts')
|
@@ -914,6 +915,7 @@ module Aws::CodeBuild
|
|
914
915
|
ReportGroup.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "created"))
|
915
916
|
ReportGroup.add_member(:last_modified, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModified"))
|
916
917
|
ReportGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
918
|
+
ReportGroup.add_member(:status, Shapes::ShapeRef.new(shape: ReportGroupStatusType, location_name: "status"))
|
917
919
|
ReportGroup.struct_class = Types::ReportGroup
|
918
920
|
|
919
921
|
ReportGroupArns.member = Shapes::ShapeRef.new(shape: NonEmptyString)
|
@@ -3911,21 +3911,28 @@ module Aws::CodeBuild
|
|
3911
3911
|
# @return [String]
|
3912
3912
|
#
|
3913
3913
|
# @!attribute [rw] modes
|
3914
|
-
#
|
3915
|
-
# more local cache modes at the same time.
|
3916
|
-
#
|
3917
|
-
#
|
3918
|
-
#
|
3919
|
-
#
|
3920
|
-
#
|
3921
|
-
#
|
3922
|
-
#
|
3923
|
-
#
|
3924
|
-
#
|
3925
|
-
#
|
3926
|
-
#
|
3927
|
-
#
|
3928
|
-
#
|
3914
|
+
# An array of strings that specify the local cache modes. You can use
|
3915
|
+
# one or more local cache modes at the same time. This is only used
|
3916
|
+
# for `LOCAL` cache types.
|
3917
|
+
#
|
3918
|
+
# Possible values are:
|
3919
|
+
#
|
3920
|
+
# LOCAL\_SOURCE\_CACHE
|
3921
|
+
#
|
3922
|
+
# : Caches Git metadata for primary and secondary sources. After the
|
3923
|
+
# cache is created, subsequent builds pull only the change between
|
3924
|
+
# commits. This mode is a good choice for projects with a clean
|
3925
|
+
# working directory and a source that is a large Git repository. If
|
3926
|
+
# you choose this option and your project does not use a Git
|
3927
|
+
# repository (GitHub, GitHub Enterprise, or Bitbucket), the option
|
3928
|
+
# is ignored.
|
3929
|
+
#
|
3930
|
+
# LOCAL\_DOCKER\_LAYER\_CACHE
|
3931
|
+
#
|
3932
|
+
# : Caches existing Docker layers. This mode is a good choice for
|
3933
|
+
# projects that build or pull large Docker images. It can prevent
|
3934
|
+
# the performance issues caused by pulling large Docker images down
|
3935
|
+
# from the network.
|
3929
3936
|
#
|
3930
3937
|
# <note markdown="1"> * You can use a Docker layer cache in the Linux environment only.
|
3931
3938
|
#
|
@@ -3936,12 +3943,12 @@ module Aws::CodeBuild
|
|
3936
3943
|
# Docker layer cache.
|
3937
3944
|
#
|
3938
3945
|
# </note>
|
3939
|
-
# ^
|
3940
3946
|
#
|
3941
|
-
#
|
3942
|
-
#
|
3943
|
-
#
|
3944
|
-
#
|
3947
|
+
# LOCAL\_CUSTOM\_CACHE
|
3948
|
+
#
|
3949
|
+
# : Caches directories you specify in the buildspec file. This mode is
|
3950
|
+
# a good choice if your build scenario is not suited to one of the
|
3951
|
+
# other three local cache modes. If you use a custom cache:
|
3945
3952
|
#
|
3946
3953
|
# * Only directories can be specified for caching. You cannot
|
3947
3954
|
# specify individual files.
|
@@ -4017,9 +4024,7 @@ module Aws::CodeBuild
|
|
4017
4024
|
#
|
4018
4025
|
# * For an image tag: `<registry>/<repository>:<tag>`. For example, in
|
4019
4026
|
# the Docker repository that CodeBuild uses to manage its Docker
|
4020
|
-
# images, this would be `aws/codebuild/standard:4.0`.
|
4021
|
-
# latest version of this image, this would be
|
4022
|
-
# `aws/codebuild/standard:latest`.
|
4027
|
+
# images, this would be `aws/codebuild/standard:4.0`.
|
4023
4028
|
#
|
4024
4029
|
# * For an image digest: `<registry>/<repository>@<digest>`. For
|
4025
4030
|
# example, to specify an image with the digest
|
@@ -4097,7 +4102,14 @@ module Aws::CodeBuild
|
|
4097
4102
|
# @return [Boolean]
|
4098
4103
|
#
|
4099
4104
|
# @!attribute [rw] certificate
|
4100
|
-
# The
|
4105
|
+
# The ARN of the Amazon Simple Storage Service (Amazon S3) bucket,
|
4106
|
+
# path prefix, and object key that contains the PEM-encoded
|
4107
|
+
# certificate for the build project. For more information, see
|
4108
|
+
# [certificate][1] in the *AWS CodeBuild User Guide*.
|
4109
|
+
#
|
4110
|
+
#
|
4111
|
+
#
|
4112
|
+
# [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/create-project-cli.html#cli.environment.certificate
|
4101
4113
|
# @return [String]
|
4102
4114
|
#
|
4103
4115
|
# @!attribute [rw] registry_credential
|
@@ -4181,8 +4193,8 @@ module Aws::CodeBuild
|
|
4181
4193
|
# The name used to access a file system created by Amazon EFS.
|
4182
4194
|
# CodeBuild creates an environment variable by appending the
|
4183
4195
|
# `identifier` in all capital letters to `CODEBUILD_`. For example, if
|
4184
|
-
# you specify `
|
4185
|
-
# create named `
|
4196
|
+
# you specify `my_efs` for `identifier`, a new environment variable is
|
4197
|
+
# create named `CODEBUILD_MY_EFS`.
|
4186
4198
|
#
|
4187
4199
|
# The `identifier` is used to mount your file system.
|
4188
4200
|
# @return [String]
|
@@ -4724,6 +4736,9 @@ module Aws::CodeBuild
|
|
4724
4736
|
# CodeBuild report group tags.
|
4725
4737
|
# @return [Array<Types::Tag>]
|
4726
4738
|
#
|
4739
|
+
# @!attribute [rw] status
|
4740
|
+
# @return [String]
|
4741
|
+
#
|
4727
4742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ReportGroup AWS API Documentation
|
4728
4743
|
#
|
4729
4744
|
class ReportGroup < Struct.new(
|
@@ -4733,7 +4748,8 @@ module Aws::CodeBuild
|
|
4733
4748
|
:export_config,
|
4734
4749
|
:created,
|
4735
4750
|
:last_modified,
|
4736
|
-
:tags
|
4751
|
+
:tags,
|
4752
|
+
:status)
|
4737
4753
|
SENSITIVE = []
|
4738
4754
|
include Aws::Structure
|
4739
4755
|
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.
|
4
|
+
version: 1.64.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: 2020-
|
11
|
+
date: 2020-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|