aws-sdk-core 3.20.0 → 3.20.1
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/xml/parser/frame.rb +5 -5
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.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: 1c2f9c0a10e37f0825ee235772c9b6d11176ae4a
|
|
4
|
+
data.tar.gz: 5328756ca2bdf5cc6eae167a818f69fec1657fcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc3b5205351473d4aa425bff273732f8446eeca115f3d9d59cd990414219d524bc7da937bdec9a6a2fd44c41b213f87ed925e0da73fa93c59c2296aa94bac980
|
|
7
|
+
data.tar.gz: fe3398796b6713d5cb5275ad35b91766917497808b9f6e2a4d3404b02083da838da6d3732d505160cd862abd0d389045dae8577b22b0015b2527697a8e6910ff
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.20.
|
|
1
|
+
3.20.1
|
|
@@ -24,9 +24,9 @@ module Aws
|
|
|
24
24
|
|
|
25
25
|
def frame_class(ref)
|
|
26
26
|
klass = FRAME_CLASSES[ref.shape.class]
|
|
27
|
-
if ListFrame == klass && ref.shape.flattened
|
|
27
|
+
if ListFrame == klass && (ref.shape.flattened || ref["flattened"])
|
|
28
28
|
FlatListFrame
|
|
29
|
-
elsif MapFrame == klass && ref.shape.flattened
|
|
29
|
+
elsif MapFrame == klass && (ref.shape.flattened || ref["flattened"])
|
|
30
30
|
MapEntryFrame
|
|
31
31
|
else
|
|
32
32
|
klass
|
|
@@ -120,15 +120,15 @@ module Aws
|
|
|
120
120
|
end
|
|
121
121
|
|
|
122
122
|
def xml_name(ref)
|
|
123
|
-
if flattened_list?(ref
|
|
123
|
+
if flattened_list?(ref)
|
|
124
124
|
ref.shape.member.location_name || ref.location_name
|
|
125
125
|
else
|
|
126
126
|
ref.location_name
|
|
127
127
|
end
|
|
128
128
|
end
|
|
129
129
|
|
|
130
|
-
def flattened_list?(
|
|
131
|
-
ListShape === shape && shape.flattened
|
|
130
|
+
def flattened_list?(ref)
|
|
131
|
+
ListShape === ref.shape && (ref.shape.flattened || ref["flattened"])
|
|
132
132
|
end
|
|
133
133
|
|
|
134
134
|
end
|
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
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.20.
|
|
4
|
+
version: 3.20.1
|
|
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-04-
|
|
11
|
+
date: 2018-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|