aws-sdk-codebuild 1.46.0 → 1.47.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 +4 -4
- data/lib/aws-sdk-codebuild.rb +1 -1
- data/lib/aws-sdk-codebuild/client.rb +15 -1
- data/lib/aws-sdk-codebuild/client_api.rb +1 -0
- data/lib/aws-sdk-codebuild/types.rb +19 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ea7ffcf595373fa73a6e7ad144499ca0736dc32
|
|
4
|
+
data.tar.gz: 6d8598d5d56615dcf41c2d2c578f83a5fae15bdc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6ccfc7462954c915924d5bccf6eef460f2a1149c30441f4af426884f2f708ce3030595d539056b0e8ea9f5cd1ef8091094677a0abced2e0fe4ce4685ff0d003
|
|
7
|
+
data.tar.gz: de7b6baa1b9224645b78b0cbbe8cefe72dc8bfb97e5deecdc0b219af2ad6a2ba019a3ca12c869db33c2c2c6252a0f11597a4a6381fc17fe6c2f4cf2d47e482fb
|
data/lib/aws-sdk-codebuild.rb
CHANGED
|
@@ -2395,6 +2395,19 @@ module Aws::CodeBuild
|
|
|
2395
2395
|
# The number of minutes a build is allowed to be queued before it times
|
|
2396
2396
|
# out.
|
|
2397
2397
|
#
|
|
2398
|
+
# @option params [String] :encryption_key_override
|
|
2399
|
+
# The AWS Key Management Service (AWS KMS) customer master key (CMK)
|
|
2400
|
+
# that overrides the one specified in the build project. The CMK key
|
|
2401
|
+
# encrypts the build output artifacts.
|
|
2402
|
+
#
|
|
2403
|
+
# <note markdown="1"> You can use a cross-account KMS key to encrypt the build output
|
|
2404
|
+
# artifacts if your service role has permission to that key.
|
|
2405
|
+
#
|
|
2406
|
+
# </note>
|
|
2407
|
+
#
|
|
2408
|
+
# You can specify either the Amazon Resource Name (ARN) of the CMK or,
|
|
2409
|
+
# if available, the CMK's alias (using the format `alias/alias-name `).
|
|
2410
|
+
#
|
|
2398
2411
|
# @option params [String] :idempotency_token
|
|
2399
2412
|
# A unique, case sensitive identifier you provide to ensure the
|
|
2400
2413
|
# idempotency of the StartBuild request. The token is included in the
|
|
@@ -2514,6 +2527,7 @@ module Aws::CodeBuild
|
|
|
2514
2527
|
# privileged_mode_override: false,
|
|
2515
2528
|
# timeout_in_minutes_override: 1,
|
|
2516
2529
|
# queued_timeout_in_minutes_override: 1,
|
|
2530
|
+
# encryption_key_override: "NonEmptyString",
|
|
2517
2531
|
# idempotency_token: "String",
|
|
2518
2532
|
# logs_config_override: {
|
|
2519
2533
|
# cloud_watch_logs: {
|
|
@@ -3267,7 +3281,7 @@ module Aws::CodeBuild
|
|
|
3267
3281
|
params: params,
|
|
3268
3282
|
config: config)
|
|
3269
3283
|
context[:gem_name] = 'aws-sdk-codebuild'
|
|
3270
|
-
context[:gem_version] = '1.
|
|
3284
|
+
context[:gem_version] = '1.47.0'
|
|
3271
3285
|
Seahorse::Client::Request.new(handlers, context)
|
|
3272
3286
|
end
|
|
3273
3287
|
|
|
@@ -737,6 +737,7 @@ module Aws::CodeBuild
|
|
|
737
737
|
StartBuildInput.add_member(:privileged_mode_override, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "privilegedModeOverride"))
|
|
738
738
|
StartBuildInput.add_member(:timeout_in_minutes_override, Shapes::ShapeRef.new(shape: TimeOut, location_name: "timeoutInMinutesOverride"))
|
|
739
739
|
StartBuildInput.add_member(:queued_timeout_in_minutes_override, Shapes::ShapeRef.new(shape: TimeOut, location_name: "queuedTimeoutInMinutesOverride"))
|
|
740
|
+
StartBuildInput.add_member(:encryption_key_override, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "encryptionKeyOverride"))
|
|
740
741
|
StartBuildInput.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: String, location_name: "idempotencyToken"))
|
|
741
742
|
StartBuildInput.add_member(:logs_config_override, Shapes::ShapeRef.new(shape: LogsConfig, location_name: "logsConfigOverride"))
|
|
742
743
|
StartBuildInput.add_member(:registry_credential_override, Shapes::ShapeRef.new(shape: RegistryCredential, location_name: "registryCredentialOverride"))
|
|
@@ -1332,7 +1332,8 @@ module Aws::CodeBuild
|
|
|
1332
1332
|
# * `PARAMETER_STORE`\: An environment variable stored in Amazon EC2
|
|
1333
1333
|
# Systems Manager Parameter Store.
|
|
1334
1334
|
#
|
|
1335
|
-
# * `PLAINTEXT`\: An environment variable in plain text format.
|
|
1335
|
+
# * `PLAINTEXT`\: An environment variable in plain text format. This
|
|
1336
|
+
# is the default value.
|
|
1336
1337
|
#
|
|
1337
1338
|
# * `SECRETS_MANAGER`\: An environment variable stored in AWS Secrets
|
|
1338
1339
|
# Manager.
|
|
@@ -3591,6 +3592,7 @@ module Aws::CodeBuild
|
|
|
3591
3592
|
# privileged_mode_override: false,
|
|
3592
3593
|
# timeout_in_minutes_override: 1,
|
|
3593
3594
|
# queued_timeout_in_minutes_override: 1,
|
|
3595
|
+
# encryption_key_override: "NonEmptyString",
|
|
3594
3596
|
# idempotency_token: "String",
|
|
3595
3597
|
# logs_config_override: {
|
|
3596
3598
|
# cloud_watch_logs: {
|
|
@@ -3771,6 +3773,21 @@ module Aws::CodeBuild
|
|
|
3771
3773
|
# times out.
|
|
3772
3774
|
# @return [Integer]
|
|
3773
3775
|
#
|
|
3776
|
+
# @!attribute [rw] encryption_key_override
|
|
3777
|
+
# The AWS Key Management Service (AWS KMS) customer master key (CMK)
|
|
3778
|
+
# that overrides the one specified in the build project. The CMK key
|
|
3779
|
+
# encrypts the build output artifacts.
|
|
3780
|
+
#
|
|
3781
|
+
# <note markdown="1"> You can use a cross-account KMS key to encrypt the build output
|
|
3782
|
+
# artifacts if your service role has permission to that key.
|
|
3783
|
+
#
|
|
3784
|
+
# </note>
|
|
3785
|
+
#
|
|
3786
|
+
# You can specify either the Amazon Resource Name (ARN) of the CMK or,
|
|
3787
|
+
# if available, the CMK's alias (using the format `alias/alias-name
|
|
3788
|
+
# `).
|
|
3789
|
+
# @return [String]
|
|
3790
|
+
#
|
|
3774
3791
|
# @!attribute [rw] idempotency_token
|
|
3775
3792
|
# A unique, case sensitive identifier you provide to ensure the
|
|
3776
3793
|
# idempotency of the StartBuild request. The token is included in the
|
|
@@ -3831,6 +3848,7 @@ module Aws::CodeBuild
|
|
|
3831
3848
|
:privileged_mode_override,
|
|
3832
3849
|
:timeout_in_minutes_override,
|
|
3833
3850
|
:queued_timeout_in_minutes_override,
|
|
3851
|
+
:encryption_key_override,
|
|
3834
3852
|
:idempotency_token,
|
|
3835
3853
|
:logs_config_override,
|
|
3836
3854
|
:registry_credential_override,
|
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.47.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:
|
|
11
|
+
date: 2020-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|