aws-sdk-codebuild 1.58.0 → 1.63.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
  SHA256:
3
- metadata.gz: 729333bfac85b05ea5734fd0d0e9a6fa52469c6b6ccf75ccc97b2c071e2b06ac
4
- data.tar.gz: f0db41fc103f8f5088395bc2fc0381e5e7cf53005170c2bc719428bae994e5f3
3
+ metadata.gz: b05ca1d8cdcff6f53d141a91d1ae8b24605e48dd48ae86e6102781095720b228
4
+ data.tar.gz: 03b9d11de810d2d54e8267e2a79316d0d3fe5eda2af636fe995fc33df3874f44
5
5
  SHA512:
6
- metadata.gz: 99f8fc25219e8f0144ef7291ead0139fe3de4fcfd7194ad1f4f2b8f8a1dd1409d5dbe9d327873421bc7f297b260001428a4a64fd62208a62fc151d9115f87be0
7
- data.tar.gz: 61048885f420258c7f26d3b4de1b0116fef3ef6242b63a35d880b78673b6e7caf69d052a0730dc36726a9d15a9e09f82e4e55b17c8e9ea68986ea423be9e65c5
6
+ metadata.gz: bd00067c20430f6e42913626d1a9548f5aeb8f48473c0a24c1ae9efc0d1b4500bee584d1bd0dfd19b40ac0d19d7b10d2c8796d4e04aa42637ed64b40cfaff6fc
7
+ data.tar.gz: e4d9901eb4c5855a38816389bb6711fd5b34b25d3c8917eae83a42c9f1999be2a90419b83dd62b8dd90199b89d5e17971488e99eb50ca2a640997497abe0cf1d
@@ -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.58.0'
51
+ GEM_VERSION = '1.63.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
@@ -1252,7 +1267,8 @@ module Aws::CodeBuild
1252
1267
  # </note>
1253
1268
  #
1254
1269
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
1255
- # if available, the CMK's alias (using the format `alias/alias-name `).
1270
+ # if available, the CMK's alias (using the format
1271
+ # `alias/<alias-name>`).
1256
1272
  #
1257
1273
  # @option params [Array<Types::Tag>] :tags
1258
1274
  # A list of tag key and value pairs associated with this build project.
@@ -1800,20 +1816,26 @@ module Aws::CodeBuild
1800
1816
  req.send_request(options)
1801
1817
  end
1802
1818
 
1803
- # `DeleteReportGroup`\: Deletes a report group. Before you delete a
1804
- # report group, you must delete its reports. Use
1805
- # [ListReportsForReportGroup][1] to get the reports in a report group.
1806
- # Use [DeleteReport][2] to delete the reports. If you call
1807
- # `DeleteReportGroup` for a report group that contains one or more
1808
- # reports, an exception is thrown.
1819
+ # Deletes a report group. Before you delete a report group, you must
1820
+ # delete its reports.
1809
1821
  #
1822
+ # @option params [required, String] :arn
1823
+ # The ARN of the report group to delete.
1810
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.
1811
1828
  #
1812
- # [1]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_ListReportsForReportGroup.html
1813
- # [2]: https://docs.aws.amazon.com/codebuild/latest/APIReference/API_DeleteReport.html
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.
1814
1834
  #
1815
- # @option params [required, String] :arn
1816
- # The ARN of the report group to delete.
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
1817
1839
  #
1818
1840
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1819
1841
  #
@@ -1821,6 +1843,7 @@ module Aws::CodeBuild
1821
1843
  #
1822
1844
  # resp = client.delete_report_group({
1823
1845
  # arn: "NonEmptyString", # required
1846
+ # delete_reports: false,
1824
1847
  # })
1825
1848
  #
1826
1849
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/DeleteReportGroup AWS API Documentation
@@ -2021,6 +2044,7 @@ module Aws::CodeBuild
2021
2044
  # max_results: 1,
2022
2045
  # filter: {
2023
2046
  # status: "String",
2047
+ # keyword: "String",
2024
2048
  # },
2025
2049
  # })
2026
2050
  #
@@ -3329,7 +3353,8 @@ module Aws::CodeBuild
3329
3353
  # </note>
3330
3354
  #
3331
3355
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
3332
- # if available, the CMK's alias (using the format `alias/alias-name `).
3356
+ # if available, the CMK's alias (using the format
3357
+ # `alias/<alias-name>`).
3333
3358
  #
3334
3359
  # @option params [String] :idempotency_token
3335
3360
  # A unique, case sensitive identifier you provide to ensure the
@@ -3787,7 +3812,8 @@ module Aws::CodeBuild
3787
3812
  # </note>
3788
3813
  #
3789
3814
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
3790
- # if available, the CMK's alias (using the format `alias/alias-name `).
3815
+ # if available, the CMK's alias (using the format
3816
+ # `alias/<alias-name>`).
3791
3817
  #
3792
3818
  # @option params [String] :idempotency_token
3793
3819
  # A unique, case sensitive identifier you provide to ensure the
@@ -4489,7 +4515,8 @@ module Aws::CodeBuild
4489
4515
  # </note>
4490
4516
  #
4491
4517
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
4492
- # if available, the CMK's alias (using the format `alias/alias-name `).
4518
+ # if available, the CMK's alias (using the format
4519
+ # `alias/<alias-name>`).
4493
4520
  #
4494
4521
  # @option params [Array<Types::Tag>] :tags
4495
4522
  # An updated list of tag key and value pairs associated with this build
@@ -4958,7 +4985,7 @@ module Aws::CodeBuild
4958
4985
  params: params,
4959
4986
  config: config)
4960
4987
  context[:gem_name] = 'aws-sdk-codebuild'
4961
- context[:gem_version] = '1.58.0'
4988
+ context[:gem_version] = '1.63.0'
4962
4989
  Seahorse::Client::Request.new(handlers, context)
4963
4990
  end
4964
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)
@@ -457,8 +457,8 @@ module Aws::CodeBuild
457
457
  # </note>
458
458
  #
459
459
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
460
- # if available, the CMK's alias (using the format `alias/alias-name
461
- # `).
460
+ # if available, the CMK's alias (using the format
461
+ # `alias/<alias-name>`).
462
462
  # @return [String]
463
463
  #
464
464
  # @!attribute [rw] exported_environment_variables
@@ -737,8 +737,8 @@ module Aws::CodeBuild
737
737
  # </note>
738
738
  #
739
739
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
740
- # if available, the CMK's alias (using the format `alias/alias-name
741
- # `).
740
+ # if available, the CMK's alias (using the format
741
+ # `alias/<alias-name>`).
742
742
  # @return [String]
743
743
  #
744
744
  # @!attribute [rw] build_batch_number
@@ -1624,8 +1624,8 @@ module Aws::CodeBuild
1624
1624
  # </note>
1625
1625
  #
1626
1626
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
1627
- # if available, the CMK's alias (using the format `alias/alias-name
1628
- # `).
1627
+ # if available, the CMK's alias (using the format
1628
+ # `alias/<alias-name>`).
1629
1629
  # @return [String]
1630
1630
  #
1631
1631
  # @!attribute [rw] tags
@@ -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
@@ -3534,8 +3553,8 @@ module Aws::CodeBuild
3534
3553
  # </note>
3535
3554
  #
3536
3555
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
3537
- # if available, the CMK's alias (using the format `alias/alias-name
3538
- # `).
3556
+ # if available, the CMK's alias (using the format
3557
+ # `alias/<alias-name>`).
3539
3558
  # @return [String]
3540
3559
  #
3541
3560
  # @!attribute [rw] tags
@@ -3704,7 +3723,7 @@ module Aws::CodeBuild
3704
3723
  #
3705
3724
  # For example, if `path` is set to `MyArtifacts`, `namespaceType` is
3706
3725
  # set to `BUILD_ID`, and `name` is set to `MyArtifact.zip`, the output
3707
- # artifact is stored in `MyArtifacts/build-ID/MyArtifact.zip`.
3726
+ # artifact is stored in `MyArtifacts/<build-ID>/MyArtifact.zip`.
3708
3727
  # @return [String]
3709
3728
  #
3710
3729
  # @!attribute [rw] name
@@ -3726,7 +3745,7 @@ module Aws::CodeBuild
3726
3745
  #
3727
3746
  # * If `path` is set to `MyArtifacts`, `namespaceType` is set to
3728
3747
  # `BUILD_ID`, and `name` is set to `MyArtifact.zip`, then the output
3729
- # artifact is stored in `MyArtifacts/build-ID/MyArtifact.zip`.
3748
+ # artifact is stored in `MyArtifacts/<build-ID>/MyArtifact.zip`.
3730
3749
  #
3731
3750
  # * If `path` is empty, `namespaceType` is set to `NONE`, and `name`
3732
3751
  # is set to "`/`", the output artifact is stored in the root of
@@ -3734,7 +3753,7 @@ module Aws::CodeBuild
3734
3753
  #
3735
3754
  # * If `path` is set to `MyArtifacts`, `namespaceType` is set to
3736
3755
  # `BUILD_ID`, and `name` is set to "`/`", the output artifact is
3737
- # stored in `MyArtifacts/build-ID `.
3756
+ # stored in `MyArtifacts/<build-ID>`.
3738
3757
  # @return [String]
3739
3758
  #
3740
3759
  # @!attribute [rw] packaging
@@ -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: `registry/repository:tag`. For example, to
4000
- # specify an image with the tag "latest," use
4001
- # `registry/repository:latest`.
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: `registry/repository@digest`. For example, to
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
- # `registry/repository@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf`.
4028
+ # `<registry>/<repository>@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf`.
4008
4029
  # @return [String]
4009
4030
  #
4010
4031
  # @!attribute [rw] compute_type
@@ -4251,17 +4272,16 @@ module Aws::CodeBuild
4251
4272
  # * For source code in an AWS CodeCommit repository, the HTTPS clone
4252
4273
  # URL to the repository that contains the source code and the
4253
4274
  # buildspec file (for example,
4254
- # `https://git-codecommit.region-ID.amazonaws.com/v1/repos/repo-name
4255
- # `).
4275
+ # `https://git-codecommit.<region-ID>.amazonaws.com/v1/repos/<repo-name>`).
4256
4276
  #
4257
4277
  # * For source code in an Amazon Simple Storage Service (Amazon S3)
4258
4278
  # input bucket, one of the following.
4259
4279
  #
4260
4280
  # * The path to the ZIP file that contains the source code (for
4261
- # example, ` bucket-name/path/to/object-name.zip`).
4281
+ # example, `<bucket-name>/<path>/<object-name>.zip`).
4262
4282
  #
4263
4283
  # * The path to the folder that contains the source code (for
4264
- # example, ` bucket-name/path/to/source-code/folder/`).
4284
+ # example, `<bucket-name>/<path-to-source-code>/<folder>/`).
4265
4285
  #
4266
4286
  # * For source code in a GitHub repository, the HTTPS clone URL to the
4267
4287
  # repository that contains the source and the buildspec file. You
@@ -5315,8 +5335,8 @@ module Aws::CodeBuild
5315
5335
  # </note>
5316
5336
  #
5317
5337
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
5318
- # if available, the CMK's alias (using the format `alias/alias-name
5319
- # `).
5338
+ # if available, the CMK's alias (using the format
5339
+ # `alias/<alias-name>`).
5320
5340
  # @return [String]
5321
5341
  #
5322
5342
  # @!attribute [rw] idempotency_token
@@ -5729,8 +5749,8 @@ module Aws::CodeBuild
5729
5749
  # </note>
5730
5750
  #
5731
5751
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
5732
- # if available, the CMK's alias (using the format `alias/alias-name
5733
- # `).
5752
+ # if available, the CMK's alias (using the format
5753
+ # `alias/<alias-name>`).
5734
5754
  # @return [String]
5735
5755
  #
5736
5756
  # @!attribute [rw] idempotency_token
@@ -5978,25 +5998,43 @@ module Aws::CodeBuild
5978
5998
  include Aws::Structure
5979
5999
  end
5980
6000
 
5981
- # 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.
5982
6003
  #
5983
6004
  # @note When making an API call, you may pass TestCaseFilter
5984
6005
  # data as a hash:
5985
6006
  #
5986
6007
  # {
5987
6008
  # status: "String",
6009
+ # keyword: "String",
5988
6010
  # }
5989
6011
  #
5990
6012
  # @!attribute [rw] status
5991
- # The status used to filter test cases. Valid statuses are
5992
- # `SUCCEEDED`, `FAILED`, `ERROR`, `SKIPPED`, and `UNKNOWN`. A
5993
- # `TestCaseFilter` can have one status.
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.
5994
6031
  # @return [String]
5995
6032
  #
5996
6033
  # @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/TestCaseFilter AWS API Documentation
5997
6034
  #
5998
6035
  class TestCaseFilter < Struct.new(
5999
- :status)
6036
+ :status,
6037
+ :keyword)
6000
6038
  SENSITIVE = []
6001
6039
  include Aws::Structure
6002
6040
  end
@@ -6287,8 +6325,8 @@ module Aws::CodeBuild
6287
6325
  # </note>
6288
6326
  #
6289
6327
  # You can specify either the Amazon Resource Name (ARN) of the CMK or,
6290
- # if available, the CMK's alias (using the format `alias/alias-name
6291
- # `).
6328
+ # if available, the CMK's alias (using the format
6329
+ # `alias/<alias-name>`).
6292
6330
  # @return [String]
6293
6331
  #
6294
6332
  # @!attribute [rw] tags
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.58.0
4
+ version: 1.63.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-07-30 00:00:00.000000000 Z
11
+ date: 2020-09-30 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