aws-sdk-codebuild 1.60.0 → 1.61.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 +19 -11
- data/lib/aws-sdk-codebuild/client_api.rb +2 -0
- data/lib/aws-sdk-codebuild/types.rb +57 -18
- 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: eca78a903842308103f8e4c59584e54c7f43f8e87d16871dbe2f9936951251ee
|
4
|
+
data.tar.gz: 6d9b2e87e658c5934317058cd03a0c304a690ce136449041c3ff32903da8a23f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56d78d2b5792b27a250bcdb866c9d13774dbddcc44eac38fe6529b362d534cbc1cc3584e80870cf6b21d8754255a4a0c893f03f98202680500f9d88a932d3b03
|
7
|
+
data.tar.gz: 9b7cd92b9e41b162e2aa2d349da44e4e26d8c8459f0ebc39aedc60402e3c22fd0d23655fc4dc0df783cabe6af41277283f4a1e9e904546d743f0632ff9163fdf
|
data/lib/aws-sdk-codebuild.rb
CHANGED
@@ -1816,20 +1816,26 @@ module Aws::CodeBuild
|
|
1816
1816
|
req.send_request(options)
|
1817
1817
|
end
|
1818
1818
|
|
1819
|
-
#
|
1820
|
-
#
|
1821
|
-
# [ListReportsForReportGroup][1] to get the reports in a report group.
|
1822
|
-
# Use [DeleteReport][2] to delete the reports. If you call
|
1823
|
-
# `DeleteReportGroup` for a report group that contains one or more
|
1824
|
-
# reports, an exception is thrown.
|
1819
|
+
# Deletes a report group. Before you delete a report group, you must
|
1820
|
+
# delete its reports.
|
1825
1821
|
#
|
1822
|
+
# @option params [required, String] :arn
|
1823
|
+
# The ARN of the report group to delete.
|
1826
1824
|
#
|
1825
|
+
# @option params [Boolean] :delete_reports
|
1826
|
+
# If `true`, deletes any reports that belong to a report group before
|
1827
|
+
# deleting the report group.
|
1827
1828
|
#
|
1828
|
-
#
|
1829
|
-
#
|
1829
|
+
# If `false`, you must delete any reports in the report group. Use
|
1830
|
+
# [ListReportsForReportGroup][1] to get the reports in a report group.
|
1831
|
+
# Use [DeleteReport][2] to delete the reports. If you call
|
1832
|
+
# `DeleteReportGroup` for a report group that contains one or more
|
1833
|
+
# reports, an exception is thrown.
|
1830
1834
|
#
|
1831
|
-
#
|
1832
|
-
#
|
1835
|
+
#
|
1836
|
+
#
|
1837
|
+
# [1]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html
|
1838
|
+
# [2]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html
|
1833
1839
|
#
|
1834
1840
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1835
1841
|
#
|
@@ -1837,6 +1843,7 @@ module Aws::CodeBuild
|
|
1837
1843
|
#
|
1838
1844
|
# resp = client.delete_report_group({
|
1839
1845
|
# arn: "NonEmptyString", # required
|
1846
|
+
# delete_reports: false,
|
1840
1847
|
# })
|
1841
1848
|
#
|
1842
1849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteReportGroup AWS API Documentation
|
@@ -2037,6 +2044,7 @@ module Aws::CodeBuild
|
|
2037
2044
|
# max_results: 1,
|
2038
2045
|
# filter: {
|
2039
2046
|
# status: "String",
|
2047
|
+
# keyword: "String",
|
2040
2048
|
# },
|
2041
2049
|
# })
|
2042
2050
|
#
|
@@ -4977,7 +4985,7 @@ module Aws::CodeBuild
|
|
4977
4985
|
params: params,
|
4978
4986
|
config: config)
|
4979
4987
|
context[:gem_name] = 'aws-sdk-codebuild'
|
4980
|
-
context[:gem_version] = '1.
|
4988
|
+
context[:gem_version] = '1.61.0'
|
4981
4989
|
Seahorse::Client::Request.new(handlers, context)
|
4982
4990
|
end
|
4983
4991
|
|
@@ -523,6 +523,7 @@ module Aws::CodeBuild
|
|
523
523
|
DeleteProjectOutput.struct_class = Types::DeleteProjectOutput
|
524
524
|
|
525
525
|
DeleteReportGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "arn"))
|
526
|
+
DeleteReportGroupInput.add_member(:delete_reports, Shapes::ShapeRef.new(shape: Boolean, location_name: "deleteReports"))
|
526
527
|
DeleteReportGroupInput.struct_class = Types::DeleteReportGroupInput
|
527
528
|
|
528
529
|
DeleteReportGroupOutput.struct_class = Types::DeleteReportGroupOutput
|
@@ -1077,6 +1078,7 @@ module Aws::CodeBuild
|
|
1077
1078
|
TestCase.struct_class = Types::TestCase
|
1078
1079
|
|
1079
1080
|
TestCaseFilter.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
|
1081
|
+
TestCaseFilter.add_member(:keyword, Shapes::ShapeRef.new(shape: String, location_name: "keyword"))
|
1080
1082
|
TestCaseFilter.struct_class = Types::TestCaseFilter
|
1081
1083
|
|
1082
1084
|
TestCases.member = Shapes::ShapeRef.new(shape: TestCase)
|
@@ -1939,16 +1939,34 @@ module Aws::CodeBuild
|
|
1939
1939
|
#
|
1940
1940
|
# {
|
1941
1941
|
# arn: "NonEmptyString", # required
|
1942
|
+
# delete_reports: false,
|
1942
1943
|
# }
|
1943
1944
|
#
|
1944
1945
|
# @!attribute [rw] arn
|
1945
1946
|
# The ARN of the report group to delete.
|
1946
1947
|
# @return [String]
|
1947
1948
|
#
|
1949
|
+
# @!attribute [rw] delete_reports
|
1950
|
+
# If `true`, deletes any reports that belong to a report group before
|
1951
|
+
# deleting the report group.
|
1952
|
+
#
|
1953
|
+
# If `false`, you must delete any reports in the report group. Use
|
1954
|
+
# [ListReportsForReportGroup][1] to get the reports in a report group.
|
1955
|
+
# Use [DeleteReport][2] to delete the reports. If you call
|
1956
|
+
# `DeleteReportGroup` for a report group that contains one or more
|
1957
|
+
# reports, an exception is thrown.
|
1958
|
+
#
|
1959
|
+
#
|
1960
|
+
#
|
1961
|
+
# [1]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html
|
1962
|
+
# [2]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html
|
1963
|
+
# @return [Boolean]
|
1964
|
+
#
|
1948
1965
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteReportGroupInput AWS API Documentation
|
1949
1966
|
#
|
1950
1967
|
class DeleteReportGroupInput < Struct.new(
|
1951
|
-
:arn
|
1968
|
+
:arn,
|
1969
|
+
:delete_reports)
|
1952
1970
|
SENSITIVE = []
|
1953
1971
|
include Aws::Structure
|
1954
1972
|
end
|
@@ -2152,6 +2170,7 @@ module Aws::CodeBuild
|
|
2152
2170
|
# max_results: 1,
|
2153
2171
|
# filter: {
|
2154
2172
|
# status: "String",
|
2173
|
+
# keyword: "String",
|
2155
2174
|
# },
|
2156
2175
|
# }
|
2157
2176
|
#
|
@@ -2311,21 +2330,21 @@ module Aws::CodeBuild
|
|
2311
2330
|
#
|
2312
2331
|
# * `PARAMETER_STORE`\: An environment variable stored in Amazon EC2
|
2313
2332
|
# Systems Manager Parameter Store. To learn how to specify a
|
2314
|
-
# parameter store environment variable, see [
|
2315
|
-
#
|
2333
|
+
# parameter store environment variable, see [env/parameter-store][1]
|
2334
|
+
# in the *AWS CodeBuild User Guide*.
|
2316
2335
|
#
|
2317
2336
|
# * `PLAINTEXT`\: An environment variable in plain text format. This
|
2318
2337
|
# is the default value.
|
2319
2338
|
#
|
2320
2339
|
# * `SECRETS_MANAGER`\: An environment variable stored in AWS Secrets
|
2321
2340
|
# Manager. To learn how to specify a secrets manager environment
|
2322
|
-
# variable, see [
|
2323
|
-
#
|
2341
|
+
# variable, see [env/secrets-manager][2] in the *AWS CodeBuild User
|
2342
|
+
# Guide*.
|
2324
2343
|
#
|
2325
2344
|
#
|
2326
2345
|
#
|
2327
|
-
# [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#parameter-store
|
2328
|
-
# [2]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#secrets-manager
|
2346
|
+
# [1]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec.env.parameter-store
|
2347
|
+
# [2]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#build-spec.env.secrets-manager
|
2329
2348
|
# @return [String]
|
2330
2349
|
#
|
2331
2350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/EnvironmentVariable AWS API Documentation
|
@@ -3996,15 +4015,17 @@ module Aws::CodeBuild
|
|
3996
4015
|
# The image tag or image digest that identifies the Docker image to
|
3997
4016
|
# use for this build project. Use the following formats:
|
3998
4017
|
#
|
3999
|
-
# * For an image tag:
|
4000
|
-
#
|
4001
|
-
# `
|
4018
|
+
# * For an image tag: `<registry>/<repository>:<tag>`. For example, in
|
4019
|
+
# the Docker repository that CodeBuild uses to manage its Docker
|
4020
|
+
# images, this would be `aws/codebuild/standard:4.0`. To specify the
|
4021
|
+
# latest version of this image, this would be
|
4022
|
+
# `aws/codebuild/standard:latest`.
|
4002
4023
|
#
|
4003
|
-
# * For an image digest:
|
4004
|
-
# specify an image with the digest
|
4024
|
+
# * For an image digest: `<registry>/<repository>@<digest>`. For
|
4025
|
+
# example, to specify an image with the digest
|
4005
4026
|
# "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf,"
|
4006
4027
|
# use
|
4007
|
-
#
|
4028
|
+
# `<registry>/<repository>@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf`.
|
4008
4029
|
# @return [String]
|
4009
4030
|
#
|
4010
4031
|
# @!attribute [rw] compute_type
|
@@ -5977,25 +5998,43 @@ module Aws::CodeBuild
|
|
5977
5998
|
include Aws::Structure
|
5978
5999
|
end
|
5979
6000
|
|
5980
|
-
# A filter used to return specific types of test cases.
|
6001
|
+
# A filter used to return specific types of test cases. In order to pass
|
6002
|
+
# the filter, the report must meet all of the filter properties.
|
5981
6003
|
#
|
5982
6004
|
# @note When making an API call, you may pass TestCaseFilter
|
5983
6005
|
# data as a hash:
|
5984
6006
|
#
|
5985
6007
|
# {
|
5986
6008
|
# status: "String",
|
6009
|
+
# keyword: "String",
|
5987
6010
|
# }
|
5988
6011
|
#
|
5989
6012
|
# @!attribute [rw] status
|
5990
|
-
# The status used to filter test cases.
|
5991
|
-
#
|
5992
|
-
#
|
6013
|
+
# The status used to filter test cases. A `TestCaseFilter` can have
|
6014
|
+
# one status. Valid values are:
|
6015
|
+
#
|
6016
|
+
# * `SUCCEEDED`
|
6017
|
+
#
|
6018
|
+
# * `FAILED`
|
6019
|
+
#
|
6020
|
+
# * `ERROR`
|
6021
|
+
#
|
6022
|
+
# * `SKIPPED`
|
6023
|
+
#
|
6024
|
+
# * `UNKNOWN`
|
6025
|
+
# @return [String]
|
6026
|
+
#
|
6027
|
+
# @!attribute [rw] keyword
|
6028
|
+
# A keyword that is used to filter on the `name` or the `prefix` of
|
6029
|
+
# the test cases. Only test cases where the keyword is a substring of
|
6030
|
+
# the `name` or the `prefix` will be returned.
|
5993
6031
|
# @return [String]
|
5994
6032
|
#
|
5995
6033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/TestCaseFilter AWS API Documentation
|
5996
6034
|
#
|
5997
6035
|
class TestCaseFilter < Struct.new(
|
5998
|
-
:status
|
6036
|
+
:status,
|
6037
|
+
:keyword)
|
5999
6038
|
SENSITIVE = []
|
6000
6039
|
include Aws::Structure
|
6001
6040
|
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.61.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-08
|
11
|
+
date: 2020-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|