aws-sdk-codebuild 1.39.0 → 1.40.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/client.rb +7 -1
- data/lib/aws-sdk-codebuild/client_api.rb +2 -0
- data/lib/aws-sdk-codebuild/types.rb +16 -10
- data/lib/aws-sdk-codebuild.rb +1 -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: 3da932b4104bf7df1a94c0741dddd0990ce6763c
|
4
|
+
data.tar.gz: 0efaedbd24cfcb5713ac10d23df8f9916e89e8ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce13325d93ae2651e20a3c06eb02d8f1bf844ac08e48f2ff78e7943317d219d753efacd5c2eafbe679712f30e498f7930f893ae1fffff91e04e3a527455a0c34
|
7
|
+
data.tar.gz: ffc583799582065022e47b909d3e8732b00c75011c65cc71c59dc1d3ad09d9e94c479aac0f2aa87d479d4a85f2fbca48f2e34ed01f1acdedd84f91e3a4f3a51f
|
@@ -1326,6 +1326,11 @@ module Aws::CodeBuild
|
|
1326
1326
|
# supported by the API and must be created using the AWS CodeBuild
|
1327
1327
|
# console.
|
1328
1328
|
#
|
1329
|
+
# @option params [Boolean] :should_overwrite
|
1330
|
+
# Set to `false` to prevent overwriting the repository source
|
1331
|
+
# credentials. Set to `true` to overwrite the repository source
|
1332
|
+
# credentials. The default value is `true`.
|
1333
|
+
#
|
1329
1334
|
# @return [Types::ImportSourceCredentialsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1330
1335
|
#
|
1331
1336
|
# * {Types::ImportSourceCredentialsOutput#arn #arn} => String
|
@@ -1337,6 +1342,7 @@ module Aws::CodeBuild
|
|
1337
1342
|
# token: "SensitiveNonEmptyString", # required
|
1338
1343
|
# server_type: "GITHUB", # required, accepts GITHUB, BITBUCKET, GITHUB_ENTERPRISE
|
1339
1344
|
# auth_type: "OAUTH", # required, accepts OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN
|
1345
|
+
# should_overwrite: false,
|
1340
1346
|
# })
|
1341
1347
|
#
|
1342
1348
|
# @example Response structure
|
@@ -2516,7 +2522,7 @@ module Aws::CodeBuild
|
|
2516
2522
|
params: params,
|
2517
2523
|
config: config)
|
2518
2524
|
context[:gem_name] = 'aws-sdk-codebuild'
|
2519
|
-
context[:gem_version] = '1.
|
2525
|
+
context[:gem_version] = '1.40.0'
|
2520
2526
|
Seahorse::Client::Request.new(handlers, context)
|
2521
2527
|
end
|
2522
2528
|
|
@@ -313,6 +313,7 @@ module Aws::CodeBuild
|
|
313
313
|
ImportSourceCredentialsInput.add_member(:token, Shapes::ShapeRef.new(shape: SensitiveNonEmptyString, required: true, location_name: "token"))
|
314
314
|
ImportSourceCredentialsInput.add_member(:server_type, Shapes::ShapeRef.new(shape: ServerType, required: true, location_name: "serverType"))
|
315
315
|
ImportSourceCredentialsInput.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, required: true, location_name: "authType"))
|
316
|
+
ImportSourceCredentialsInput.add_member(:should_overwrite, Shapes::ShapeRef.new(shape: WrapperBoolean, location_name: "shouldOverwrite"))
|
316
317
|
ImportSourceCredentialsInput.struct_class = Types::ImportSourceCredentialsInput
|
317
318
|
|
318
319
|
ImportSourceCredentialsOutput.add_member(:arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "arn"))
|
@@ -687,6 +688,7 @@ module Aws::CodeBuild
|
|
687
688
|
o.output = Shapes::ShapeRef.new(shape: ImportSourceCredentialsOutput)
|
688
689
|
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
689
690
|
o.errors << Shapes::ShapeRef.new(shape: AccountLimitExceededException)
|
691
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
690
692
|
end)
|
691
693
|
|
692
694
|
api.add_operation(:invalidate_project_cache, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1098,6 +1098,7 @@ module Aws::CodeBuild
|
|
1098
1098
|
# token: "SensitiveNonEmptyString", # required
|
1099
1099
|
# server_type: "GITHUB", # required, accepts GITHUB, BITBUCKET, GITHUB_ENTERPRISE
|
1100
1100
|
# auth_type: "OAUTH", # required, accepts OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN
|
1101
|
+
# should_overwrite: false,
|
1101
1102
|
# }
|
1102
1103
|
#
|
1103
1104
|
# @!attribute [rw] username
|
@@ -1122,13 +1123,20 @@ module Aws::CodeBuild
|
|
1122
1123
|
# console.
|
1123
1124
|
# @return [String]
|
1124
1125
|
#
|
1126
|
+
# @!attribute [rw] should_overwrite
|
1127
|
+
# Set to `false` to prevent overwriting the repository source
|
1128
|
+
# credentials. Set to `true` to overwrite the repository source
|
1129
|
+
# credentials. The default value is `true`.
|
1130
|
+
# @return [Boolean]
|
1131
|
+
#
|
1125
1132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ImportSourceCredentialsInput AWS API Documentation
|
1126
1133
|
#
|
1127
1134
|
class ImportSourceCredentialsInput < Struct.new(
|
1128
1135
|
:username,
|
1129
1136
|
:token,
|
1130
1137
|
:server_type,
|
1131
|
-
:auth_type
|
1138
|
+
:auth_type,
|
1139
|
+
:should_overwrite)
|
1132
1140
|
include Aws::Structure
|
1133
1141
|
end
|
1134
1142
|
|
@@ -2019,15 +2027,13 @@ module Aws::CodeBuild
|
|
2019
2027
|
#
|
2020
2028
|
# @!attribute [rw] privileged_mode
|
2021
2029
|
# Enables running the Docker daemon inside a Docker container. Set to
|
2022
|
-
# true only if the build project is
|
2023
|
-
#
|
2024
|
-
#
|
2025
|
-
#
|
2026
|
-
# the Docker daemon
|
2027
|
-
#
|
2028
|
-
#
|
2029
|
-
# these commands if the specified build environment image is provided
|
2030
|
-
# by AWS CodeBuild with Docker support.)
|
2030
|
+
# true only if the build project is used to build Docker images.
|
2031
|
+
# Otherwise, a build that attempts to interact with the Docker daemon
|
2032
|
+
# fails.
|
2033
|
+
#
|
2034
|
+
# You can initialize the Docker daemon during the install phase of
|
2035
|
+
# your build by adding one of the following sets of commands to the
|
2036
|
+
# install phase of your buildspec file:
|
2031
2037
|
#
|
2032
2038
|
# If the operating system's base image is Ubuntu Linux:
|
2033
2039
|
#
|
data/lib/aws-sdk-codebuild.rb
CHANGED
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.40.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: 2019-
|
11
|
+
date: 2019-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|