aws-sdk-codebuild 1.39.0 → 1.40.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
  SHA1:
3
- metadata.gz: a8e90ce671de3578dbd41b04c2bdab2563dc2769
4
- data.tar.gz: b20e68124ff5b5e88aa53d34c89c3ea8b2f4bfc7
3
+ metadata.gz: 3da932b4104bf7df1a94c0741dddd0990ce6763c
4
+ data.tar.gz: 0efaedbd24cfcb5713ac10d23df8f9916e89e8ef
5
5
  SHA512:
6
- metadata.gz: e15d8b74e7d31cdc9a36f39af8a4fd6467ea032d8e36f7d4f5e5d3a6644d7a4dc17b8b6a67038afa926e21f44486e5e1b489092e93399267dc4b4e8461eb3f60
7
- data.tar.gz: 7bd584bdc35022c4585aabc0efead0f6d90f4240dff4f4f9a9f476df330545775261d15178c213c401d46991c75cdea0c14af81a4d2c9d34949d8be41cfb4de0
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.39.0'
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 be used to build Docker images,
2023
- # and the specified build environment image is not provided by AWS
2024
- # CodeBuild with Docker support. Otherwise, all associated builds that
2025
- # attempt to interact with the Docker daemon fail. You must also start
2026
- # the Docker daemon so that builds can interact with it. One way to do
2027
- # this is to initialize the Docker daemon during the install phase of
2028
- # your build spec by running the following build commands. (Do not run
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
  #
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-codebuild/customizations'
42
42
  # @service
43
43
  module Aws::CodeBuild
44
44
 
45
- GEM_VERSION = '1.39.0'
45
+ GEM_VERSION = '1.40.0'
46
46
 
47
47
  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.39.0
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-07-25 00:00:00.000000000 Z
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