aws-sdk-core 3.105.0 → 3.107.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/VERSION +1 -1
- data/lib/aws-sdk-core/shared_config.rb +1 -0
- data/lib/aws-sdk-sso.rb +6 -3
- data/lib/aws-sdk-sso/client.rb +1 -1
- data/lib/aws-sdk-sts.rb +2 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- data/lib/seahorse/client/plugins/h2.rb +4 -1
- data/lib/seahorse/client/plugins/net_http.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d1947f118cb9fb3ae23c3e5fb51454c34d3c12bd619fc4cd2d4ecb60f0a4b31
|
4
|
+
data.tar.gz: c0eec064c19eb08e1ae8d641fd9bcfcba4fc3c6676294209268a5b66578ef4bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d20011f32bb555def30a1911330b722c7ed016f4d8a8d397460cb2cc9b0f069214d5984076966ad9dad18e1eb180b139ea35bacc69fc030bebde64c883df29cf
|
7
|
+
data.tar.gz: ff3975dc97b11ca149576348128938bf93751d5e13ad86558d3dc78d06696ced46e4d7f56f4b33246bd9820600d296f8205b7eb7456c9583f271ffdedf9ba363
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.107.0
|
data/lib/aws-sdk-sso.rb
CHANGED
@@ -7,8 +7,11 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
-
|
11
|
-
|
10
|
+
|
11
|
+
unless Module.const_defined?(:Aws)
|
12
|
+
require 'aws-sdk-core'
|
13
|
+
require 'aws-sigv4'
|
14
|
+
end
|
12
15
|
|
13
16
|
require_relative 'aws-sdk-sso/types'
|
14
17
|
require_relative 'aws-sdk-sso/client_api'
|
@@ -47,6 +50,6 @@ require_relative 'aws-sdk-sso/customizations'
|
|
47
50
|
# @!group service
|
48
51
|
module Aws::SSO
|
49
52
|
|
50
|
-
GEM_VERSION = '3.
|
53
|
+
GEM_VERSION = '3.107.0'
|
51
54
|
|
52
55
|
end
|
data/lib/aws-sdk-sso/client.rb
CHANGED
data/lib/aws-sdk-sts.rb
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
10
|
|
11
|
+
|
11
12
|
require_relative 'aws-sdk-sts/types'
|
12
13
|
require_relative 'aws-sdk-sts/client_api'
|
13
14
|
require_relative 'aws-sdk-sts/client'
|
@@ -45,6 +46,6 @@ require_relative 'aws-sdk-sts/customizations'
|
|
45
46
|
# @!group service
|
46
47
|
module Aws::STS
|
47
48
|
|
48
|
-
GEM_VERSION = '3.
|
49
|
+
GEM_VERSION = '3.107.0'
|
49
50
|
|
50
51
|
end
|
data/lib/aws-sdk-sts/client.rb
CHANGED
@@ -2204,7 +2204,7 @@ module Aws::STS
|
|
2204
2204
|
params: params,
|
2205
2205
|
config: config)
|
2206
2206
|
context[:gem_name] = 'aws-sdk-core'
|
2207
|
-
context[:gem_version] = '3.
|
2207
|
+
context[:gem_version] = '3.107.0'
|
2208
2208
|
Seahorse::Client::Request.new(handlers, context)
|
2209
2209
|
end
|
2210
2210
|
|
@@ -28,11 +28,14 @@ Defaults to `true`, raises errors if exist when #wait or #join! is called upon a
|
|
28
28
|
DOCS
|
29
29
|
|
30
30
|
# SSL Context
|
31
|
-
option(:ssl_ca_bundle, default: nil, doc_type: String, docstring: <<-DOCS)
|
31
|
+
option(:ssl_ca_bundle, default: nil, doc_type: String, docstring: <<-DOCS) do |cfg|
|
32
32
|
Full path to the SSL certificate authority bundle file that should be used when
|
33
33
|
verifying peer certificates. If you do not pass `:ssl_ca_directory` or `:ssl_ca_bundle`
|
34
34
|
the system default will be used if available.
|
35
35
|
DOCS
|
36
|
+
ENV['AWS_CA_BUNDLE'] ||
|
37
|
+
Aws.shared_config.ca_bundle(profile: cfg.profile) if cfg.respond_to?(:profile)
|
38
|
+
end
|
36
39
|
|
37
40
|
option(:ssl_ca_directory, default: nil, doc_type: String, docstring: <<-DOCS)
|
38
41
|
Full path of the directory that contains the unbundled SSL certificate authority
|
@@ -21,7 +21,10 @@ module Seahorse
|
|
21
21
|
|
22
22
|
option(:ssl_verify_peer, default: true, doc_type: 'Boolean', docstring: '')
|
23
23
|
|
24
|
-
option(:ssl_ca_bundle,
|
24
|
+
option(:ssl_ca_bundle, doc_type: String, docstring: '') do |cfg|
|
25
|
+
ENV['AWS_CA_BUNDLE'] ||
|
26
|
+
Aws.shared_config.ca_bundle(profile: cfg.profile) if cfg.respond_to?(:profile)
|
27
|
+
end
|
25
28
|
|
26
29
|
option(:ssl_ca_directory, default: nil, doc_type: String, docstring: '')
|
27
30
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.107.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-
|
11
|
+
date: 2020-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|