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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3d14739f3a405e0c6777cfd43de929dd2a6721f8
4
- data.tar.gz: ea2c845f1454dd1661e641662e1abc2a8f84b6ba
3
+ metadata.gz: 1c2f9c0a10e37f0825ee235772c9b6d11176ae4a
4
+ data.tar.gz: 5328756ca2bdf5cc6eae167a818f69fec1657fcf
5
5
  SHA512:
6
- metadata.gz: 7104cf84857661f6fb1f39fa90e6e45b40023283074d926ebad797246fc7988ac84c168b539841a777851e8fe8d123a8cd7854d37e9b7e18170e726a1ba10315
7
- data.tar.gz: bb045b5868ada2a3eb90e2ab2dc77b9b54b17191b2dffcbe5361aa3e5be88b3d1342f8c03e0cdfbdd3bddf88edb475e28bc1253acf81944eede9833b1018b29e
6
+ metadata.gz: cc3b5205351473d4aa425bff273732f8446eeca115f3d9d59cd990414219d524bc7da937bdec9a6a2fd44c41b213f87ed925e0da73fa93c59c2296aa94bac980
7
+ data.tar.gz: fe3398796b6713d5cb5275ad35b91766917497808b9f6e2a4d3404b02083da838da6d3732d505160cd862abd0d389045dae8577b22b0015b2527697a8e6910ff
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.20.0
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.shape)
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?(shape)
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
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.20.0'
43
+ GEM_VERSION = '3.20.1'
44
44
 
45
45
  end
@@ -1475,7 +1475,7 @@ module Aws::STS
1475
1475
  params: params,
1476
1476
  config: config)
1477
1477
  context[:gem_name] = 'aws-sdk-core'
1478
- context[:gem_version] = '3.20.0'
1478
+ context[:gem_version] = '3.20.1'
1479
1479
  Seahorse::Client::Request.new(handlers, context)
1480
1480
  end
1481
1481
 
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.0
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-23 00:00:00.000000000 Z
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath