aws-sdk-s3control 1.0.1 → 1.1.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
  SHA1:
3
- metadata.gz: 93857c296761c3b6469c72421b3ee8c26a9e4b44
4
- data.tar.gz: 1066bb628a5e245f07fd968858d2b6d004e73659
3
+ metadata.gz: 2807db9b5855db1a64b02c4f9c26322ca4bc0d24
4
+ data.tar.gz: d5a4cbd2e596d74cdd632c8ac6bc911d65ee673a
5
5
  SHA512:
6
- metadata.gz: 8486ac62eaabf90a339e00df75ab2e1294ba493c1e3bf0939dd3d0be06c99dbfbb8b588e00b5e69360ac76544c60235243d1ce34deb66ccb7175ad3f855e0cfc
7
- data.tar.gz: cdb572b5eae8200c33acfe931a01ee280cf6437767360d9654d74b31a73fd5e02ff6b48cf005dae65509838351921fb8b3db5c365cd1e5a9fb8433f8029a5874
6
+ metadata.gz: ac896ae060458a9147ffde8a90ea7af4bf601b3a0806a7b119e7c44e8ab2098e01dfea7f511a6cd9085ae72d79ec2275a5008bce3bb2e871f0c74994aaab5ea3
7
+ data.tar.gz: dd06076a2780cfd3954336584814a3283f41728d775ecdf3c739930ea8583098baf5ca2e9f09dd1db6f2899424eaecb3afec72592c0465399ac43718f892c7fc
@@ -16,6 +16,7 @@ require 'aws-sdk-core/plugins/retry_errors.rb'
16
16
  require 'aws-sdk-core/plugins/global_configuration.rb'
17
17
  require 'aws-sdk-core/plugins/regional_endpoint.rb'
18
18
  require 'aws-sdk-core/plugins/endpoint_discovery.rb'
19
+ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
19
20
  require 'aws-sdk-core/plugins/response_paging.rb'
20
21
  require 'aws-sdk-core/plugins/stub_responses.rb'
21
22
  require 'aws-sdk-core/plugins/idempotency_token.rb'
@@ -50,6 +51,7 @@ module Aws::S3Control
50
51
  add_plugin(Aws::Plugins::GlobalConfiguration)
51
52
  add_plugin(Aws::Plugins::RegionalEndpoint)
52
53
  add_plugin(Aws::Plugins::EndpointDiscovery)
54
+ add_plugin(Aws::Plugins::EndpointPattern)
53
55
  add_plugin(Aws::Plugins::ResponsePaging)
54
56
  add_plugin(Aws::Plugins::StubResponses)
55
57
  add_plugin(Aws::Plugins::IdempotencyToken)
@@ -130,6 +132,10 @@ module Aws::S3Control
130
132
  # When `true`, an attempt is made to coerce request parameters into
131
133
  # the required types.
132
134
  #
135
+ # @option options [Boolean] :disable_host_prefix_injection (false)
136
+ # Set to true to disable SDK automatically adding host prefix
137
+ # to default service endpoint when available.
138
+ #
133
139
  # @option options [String] :endpoint
134
140
  # The client endpoint is normally constructed from the `:region`
135
141
  # option. You should only configure an `:endpoint` when connecting
@@ -313,7 +319,7 @@ module Aws::S3Control
313
319
  params: params,
314
320
  config: config)
315
321
  context[:gem_name] = 'aws-sdk-s3control'
316
- context[:gem_version] = '1.0.1'
322
+ context[:gem_version] = '1.1.0'
317
323
  Seahorse::Client::Request.new(handlers, context)
318
324
  end
319
325
 
@@ -8,7 +8,9 @@ module Aws
8
8
 
9
9
  class Handler < Seahorse::Client::Handler
10
10
  def call(context)
11
- move_account_id_to_subdomain(context)
11
+ if context.operation.endpoint_pattern.nil?
12
+ move_account_id_to_subdomain(context)
13
+ end
12
14
  @handler.call(context)
13
15
  end
14
16
 
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-s3control/customizations'
42
42
  # @service
43
43
  module Aws::S3Control
44
44
 
45
- GEM_VERSION = '1.0.1'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3control
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.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: 2018-11-16 00:00:00.000000000 Z
11
+ date: 2018-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.37.0
36
+ version: 3.39.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.37.0
46
+ version: 3.39.0
47
47
  description: Official AWS Ruby gem for AWS S3 Control. This gem is part of the AWS
48
48
  SDK for Ruby.
49
49
  email: