aws-sdk-codebuild 1.59.0 → 1.64.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc900c83b5ae9e5ff77171b050095d93e9c3e466f9443ae4ab500344dd9e7b42
4
- data.tar.gz: 9e43f554dc49763d60e918897ba287a6e8a75afbf7cdc4a400d28d702703d558
3
+ metadata.gz: 9f971452803a557301b1c25d60fa2a48bbe5ebf0b0a49a6bc6fa5d58e5fd811b
4
+ data.tar.gz: d00952a6b7a2fb8bdd475dde9e657083007783a8c4114b78d5f29bb75f00f013
5
5
  SHA512:
6
- metadata.gz: 87c88b1b3a1a9b5a3867bdc6a6868b6db4f66a62b94079bede2ca5f1bdcbfe6f9ff790f5da0bbb8d9ad3aa54dc17fb07dcdea4cc096ce5aff8a507f3ef4348d4
7
- data.tar.gz: 247a1671fb049d4599ea0b88c83bb3ebd437b7ff284a99671c26fa23440820b6d4ab79afba8dc036edbd4f2e084595fdbaabd14050ef6fcca35cb558bf7071f6
6
+ metadata.gz: '058e570397c8aa2a452aa4f948ff0b70540619de4b63a8748af1898c52d9cac6333919108fcbcb2a67c122af15d932cfde598ebd501c61d99719c2dce8d4391f'
7
+ data.tar.gz: bba7c6b6d4c8ec9715d1d502b6f590e1a0a8e1162dfbcab0d01c2d1a595f1d4d9d5f02237db07d4b918d3dabfcfbd3bceacb8ddfa6f87b7e7783624b8d556903
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-codebuild/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::CodeBuild
49
50
 
50
- GEM_VERSION = '1.59.0'
51
+ GEM_VERSION = '1.64.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::CodeBuild
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::CodeBuild
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -1095,6 +1110,7 @@ module Aws::CodeBuild
1095
1110
  # resp.report_groups[0].tags #=> Array
1096
1111
  # resp.report_groups[0].tags[0].key #=> String
1097
1112
  # resp.report_groups[0].tags[0].value #=> String
1113
+ # resp.report_groups[0].status #=> String, one of "ACTIVE", "DELETING"
1098
1114
  # resp.report_groups_not_found #=> Array
1099
1115
  # resp.report_groups_not_found[0] #=> String
1100
1116
  #
@@ -1623,6 +1639,7 @@ module Aws::CodeBuild
1623
1639
  # resp.report_group.tags #=> Array
1624
1640
  # resp.report_group.tags[0].key #=> String
1625
1641
  # resp.report_group.tags[0].value #=> String
1642
+ # resp.report_group.status #=> String, one of "ACTIVE", "DELETING"
1626
1643
  #
1627
1644
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/CreateReportGroup AWS API Documentation
1628
1645
  #
@@ -1801,20 +1818,26 @@ module Aws::CodeBuild
1801
1818
  req.send_request(options)
1802
1819
  end
1803
1820
 
1804
- # `DeleteReportGroup`\: Deletes a report group. Before you delete a
1805
- # report group, you must delete its reports. Use
1806
- # [ListReportsForReportGroup][1] to get the reports in a report group.
1807
- # Use [DeleteReport][2] to delete the reports. If you call
1808
- # `DeleteReportGroup` for a report group that contains one or more
1809
- # reports, an exception is thrown.
1821
+ # Deletes a report group. Before you delete a report group, you must
1822
+ # delete its reports.
1810
1823
  #
1824
+ # @option params [required, String] :arn
1825
+ # The ARN of the report group to delete.
1811
1826
  #
1827
+ # @option params [Boolean] :delete_reports
1828
+ # If `true`, deletes any reports that belong to a report group before
1829
+ # deleting the report group.
1812
1830
  #
1813
- # [1]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html
1814
- # [2]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html
1831
+ # If `false`, you must delete any reports in the report group. Use
1832
+ # [ListReportsForReportGroup][1] to get the reports in a report group.
1833
+ # Use [DeleteReport][2] to delete the reports. If you call
1834
+ # `DeleteReportGroup` for a report group that contains one or more
1835
+ # reports, an exception is thrown.
1815
1836
  #
1816
- # @option params [required, String] :arn
1817
- # The ARN of the report group to delete.
1837
+ #
1838
+ #
1839
+ # [1]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html
1840
+ # [2]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html
1818
1841
  #
1819
1842
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1820
1843
  #
@@ -1822,6 +1845,7 @@ module Aws::CodeBuild
1822
1845
  #
1823
1846
  # resp = client.delete_report_group({
1824
1847
  # arn: "NonEmptyString", # required
1848
+ # delete_reports: false,
1825
1849
  # })
1826
1850
  #
1827
1851
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteReportGroup AWS API Documentation
@@ -2022,6 +2046,7 @@ module Aws::CodeBuild
2022
2046
  # max_results: 1,
2023
2047
  # filter: {
2024
2048
  # status: "String",
2049
+ # keyword: "String",
2025
2050
  # },
2026
2051
  # })
2027
2052
  #
@@ -2986,7 +3011,8 @@ module Aws::CodeBuild
2986
3011
  req.send_request(options)
2987
3012
  end
2988
3013
 
2989
- # Restarts a batch build.
3014
+ # Restarts a failed batch build. Only batch builds that have failed can
3015
+ # be retried.
2990
3016
  #
2991
3017
  # @option params [String] :id
2992
3018
  # Specifies the identifier of the batch build to restart.
@@ -4861,6 +4887,7 @@ module Aws::CodeBuild
4861
4887
  # resp.report_group.tags #=> Array
4862
4888
  # resp.report_group.tags[0].key #=> String
4863
4889
  # resp.report_group.tags[0].value #=> String
4890
+ # resp.report_group.status #=> String, one of "ACTIVE", "DELETING"
4864
4891
  #
4865
4892
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/UpdateReportGroup AWS API Documentation
4866
4893
  #
@@ -4962,7 +4989,7 @@ module Aws::CodeBuild
4962
4989
  params: params,
4963
4990
  config: config)
4964
4991
  context[:gem_name] = 'aws-sdk-codebuild'
4965
- context[:gem_version] = '1.59.0'
4992
+ context[:gem_version] = '1.64.0'
4966
4993
  Seahorse::Client::Request.new(handlers, context)
4967
4994
  end
4968
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')
@@ -523,6 +524,7 @@ module Aws::CodeBuild
523
524
  DeleteProjectOutput.struct_class = Types::DeleteProjectOutput
524
525
 
525
526
  DeleteReportGroupInput.add_member(:arn, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "arn"))
527
+ DeleteReportGroupInput.add_member(:delete_reports, Shapes::ShapeRef.new(shape: Boolean, location_name: "deleteReports"))
526
528
  DeleteReportGroupInput.struct_class = Types::DeleteReportGroupInput
527
529
 
528
530
  DeleteReportGroupOutput.struct_class = Types::DeleteReportGroupOutput
@@ -913,6 +915,7 @@ module Aws::CodeBuild
913
915
  ReportGroup.add_member(:created, Shapes::ShapeRef.new(shape: Timestamp, location_name: "created"))
914
916
  ReportGroup.add_member(:last_modified, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastModified"))
915
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"))
916
919
  ReportGroup.struct_class = Types::ReportGroup
917
920
 
918
921
  ReportGroupArns.member = Shapes::ShapeRef.new(shape: NonEmptyString)
@@ -1077,6 +1080,7 @@ module Aws::CodeBuild
1077
1080
  TestCase.struct_class = Types::TestCase
1078
1081
 
1079
1082
  TestCaseFilter.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
1083
+ TestCaseFilter.add_member(:keyword, Shapes::ShapeRef.new(shape: String, location_name: "keyword"))
1080
1084
  TestCaseFilter.struct_class = Types::TestCaseFilter
1081
1085
 
1082
1086
  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 [ parameter store
2315
- # reference-key in the buildspec file][1].
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 [ secrets manager reference-key in the buildspec
2323
- # file][2].
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-build-spec
2328
- # [2]: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html#secrets-manager-build-spec
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
@@ -3892,21 +3911,28 @@ module Aws::CodeBuild
3892
3911
  # @return [String]
3893
3912
  #
3894
3913
  # @!attribute [rw] modes
3895
- # If you use a `LOCAL` cache, the local cache mode. You can use one or
3896
- # more local cache modes at the same time.
3897
- #
3898
- # * `LOCAL_SOURCE_CACHE` mode caches Git metadata for primary and
3899
- # secondary sources. After the cache is created, subsequent builds
3900
- # pull only the change between commits. This mode is a good choice
3901
- # for projects with a clean working directory and a source that is a
3902
- # large Git repository. If you choose this option and your project
3903
- # does not use a Git repository (GitHub, GitHub Enterprise, or
3904
- # Bitbucket), the option is ignored.
3905
- #
3906
- # * `LOCAL_DOCKER_LAYER_CACHE` mode caches existing Docker layers.
3907
- # This mode is a good choice for projects that build or pull large
3908
- # Docker images. It can prevent the performance issues caused by
3909
- # pulling large Docker images down from the network.
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.
3910
3936
  #
3911
3937
  # <note markdown="1"> * You can use a Docker layer cache in the Linux environment only.
3912
3938
  #
@@ -3917,12 +3943,12 @@ module Aws::CodeBuild
3917
3943
  # Docker layer cache.
3918
3944
  #
3919
3945
  # </note>
3920
- # ^
3921
3946
  #
3922
- # * `LOCAL_CUSTOM_CACHE` mode caches directories you specify in the
3923
- # buildspec file. This mode is a good choice if your build scenario
3924
- # is not suited to one of the other three local cache modes. If you
3925
- # use a custom cache:
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:
3926
3952
  #
3927
3953
  # * Only directories can be specified for caching. You cannot
3928
3954
  # specify individual files.
@@ -3996,15 +4022,15 @@ module Aws::CodeBuild
3996
4022
  # The image tag or image digest that identifies the Docker image to
3997
4023
  # use for this build project. Use the following formats:
3998
4024
  #
3999
- # * For an image tag: `registry/repository:tag`. For example, to
4000
- # specify an image with the tag "latest," use
4001
- # `registry/repository:latest`.
4025
+ # * For an image tag: `<registry>/<repository>:<tag>`. For example, in
4026
+ # the Docker repository that CodeBuild uses to manage its Docker
4027
+ # images, this would be `aws/codebuild/standard:4.0`.
4002
4028
  #
4003
- # * For an image digest: `registry/repository@digest`. For example, to
4004
- # specify an image with the digest
4029
+ # * For an image digest: `<registry>/<repository>@<digest>`. For
4030
+ # example, to specify an image with the digest
4005
4031
  # "sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf,"
4006
4032
  # use
4007
- # `registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf`.
4033
+ # `<registry>/<repository>@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf`.
4008
4034
  # @return [String]
4009
4035
  #
4010
4036
  # @!attribute [rw] compute_type
@@ -4076,7 +4102,14 @@ module Aws::CodeBuild
4076
4102
  # @return [Boolean]
4077
4103
  #
4078
4104
  # @!attribute [rw] certificate
4079
- # The certificate to use with this build project.
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
4080
4113
  # @return [String]
4081
4114
  #
4082
4115
  # @!attribute [rw] registry_credential
@@ -4160,8 +4193,8 @@ module Aws::CodeBuild
4160
4193
  # The name used to access a file system created by Amazon EFS.
4161
4194
  # CodeBuild creates an environment variable by appending the
4162
4195
  # `identifier` in all capital letters to `CODEBUILD_`. For example, if
4163
- # you specify `my-efs` for `identifier`, a new environment variable is
4164
- # create named `CODEBUILD_MY-EFS`.
4196
+ # you specify `my_efs` for `identifier`, a new environment variable is
4197
+ # create named `CODEBUILD_MY_EFS`.
4165
4198
  #
4166
4199
  # The `identifier` is used to mount your file system.
4167
4200
  # @return [String]
@@ -4703,6 +4736,9 @@ module Aws::CodeBuild
4703
4736
  # CodeBuild report group tags.
4704
4737
  # @return [Array<Types::Tag>]
4705
4738
  #
4739
+ # @!attribute [rw] status
4740
+ # @return [String]
4741
+ #
4706
4742
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ReportGroup AWS API Documentation
4707
4743
  #
4708
4744
  class ReportGroup < Struct.new(
@@ -4712,7 +4748,8 @@ module Aws::CodeBuild
4712
4748
  :export_config,
4713
4749
  :created,
4714
4750
  :last_modified,
4715
- :tags)
4751
+ :tags,
4752
+ :status)
4716
4753
  SENSITIVE = []
4717
4754
  include Aws::Structure
4718
4755
  end
@@ -5977,25 +6014,43 @@ module Aws::CodeBuild
5977
6014
  include Aws::Structure
5978
6015
  end
5979
6016
 
5980
- # A filter used to return specific types of test cases.
6017
+ # A filter used to return specific types of test cases. In order to pass
6018
+ # the filter, the report must meet all of the filter properties.
5981
6019
  #
5982
6020
  # @note When making an API call, you may pass TestCaseFilter
5983
6021
  # data as a hash:
5984
6022
  #
5985
6023
  # {
5986
6024
  # status: "String",
6025
+ # keyword: "String",
5987
6026
  # }
5988
6027
  #
5989
6028
  # @!attribute [rw] status
5990
- # The status used to filter test cases. Valid statuses are
5991
- # `SUCCEEDED`, `FAILED`, `ERROR`, `SKIPPED`, and `UNKNOWN`. A
5992
- # `TestCaseFilter` can have one status.
6029
+ # The status used to filter test cases. A `TestCaseFilter` can have
6030
+ # one status. Valid values are:
6031
+ #
6032
+ # * `SUCCEEDED`
6033
+ #
6034
+ # * `FAILED`
6035
+ #
6036
+ # * `ERROR`
6037
+ #
6038
+ # * `SKIPPED`
6039
+ #
6040
+ # * `UNKNOWN`
6041
+ # @return [String]
6042
+ #
6043
+ # @!attribute [rw] keyword
6044
+ # A keyword that is used to filter on the `name` or the `prefix` of
6045
+ # the test cases. Only test cases where the keyword is a substring of
6046
+ # the `name` or the `prefix` will be returned.
5993
6047
  # @return [String]
5994
6048
  #
5995
6049
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/TestCaseFilter AWS API Documentation
5996
6050
  #
5997
6051
  class TestCaseFilter < Struct.new(
5998
- :status)
6052
+ :status,
6053
+ :keyword)
5999
6054
  SENSITIVE = []
6000
6055
  include Aws::Structure
6001
6056
  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.59.0
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-08-18 00:00:00.000000000 Z
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
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.99.0
22
+ version: 3.109.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.99.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement