aws-sdk-core 2.9.2 → 2.9.3

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: 8fa61173abbacfaa5c27ff73fec9b3d36066d241
4
- data.tar.gz: 962f85a09bb28d89010fe7bcf0fdc7f596d3b186
3
+ metadata.gz: 2ba294e85f5b74be3e29543e69ebfb32e3ef1895
4
+ data.tar.gz: a2905b84d03c57e56a72fb71d22ac0cb96e6c337
5
5
  SHA512:
6
- metadata.gz: 62ee3e001c17132bbf139fe4add7d06418453bed79396ed671afe6e1bdd1259fa6573eb35ae96c914305fac6c568ca93fb27c26ac9039abaaeb8d1fc5ff2cb9f
7
- data.tar.gz: 67faa203f0e9580c5d330f39e37a14a633bb4eb04f5508d3b9c16f03e5e8d5c222530ceb10f531ade6b4d60fb287d16949c0da9c88ece45fbb64dfcfc42881d1
6
+ metadata.gz: e07e62a67ae56172908fafa39f1d1da15c8a7239640fdfca0b9e42031164b6c3845379cf66db67de465376330fdc2b0b8a56ae9881a560d28dc0d41686040319
7
+ data.tar.gz: ad478ef95ba6d427e57ef93fa22f0ce629020be164c9fcf8c4bf05320f46ca92b1928a45de30c7e589f1d16d76c4461b66c697f563d1541c3b0fa8d429f3b8b9
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "version":"2.0",
3
3
  "metadata":{
4
- "uid":"monitoring-2010-08-01",
5
4
  "apiVersion":"2010-08-01",
6
5
  "endpointPrefix":"monitoring",
7
6
  "protocol":"query",
8
7
  "serviceAbbreviation":"CloudWatch",
9
8
  "serviceFullName":"Amazon CloudWatch",
10
9
  "signatureVersion":"v4",
10
+ "uid":"monitoring-2010-08-01",
11
11
  "xmlNamespace":"http://monitoring.amazonaws.com/doc/2010-08-01/"
12
12
  },
13
13
  "operations":{
@@ -368,6 +368,11 @@
368
368
  "max":255,
369
369
  "min":1
370
370
  },
371
+ "EvaluateLowSampleCountPercentile":{
372
+ "type":"string",
373
+ "max":255,
374
+ "min":1
375
+ },
371
376
  "EvaluationPeriods":{
372
377
  "type":"integer",
373
378
  "min":1
@@ -563,7 +568,9 @@
563
568
  "Unit":{"shape":"StandardUnit"},
564
569
  "EvaluationPeriods":{"shape":"EvaluationPeriods"},
565
570
  "Threshold":{"shape":"Threshold"},
566
- "ComparisonOperator":{"shape":"ComparisonOperator"}
571
+ "ComparisonOperator":{"shape":"ComparisonOperator"},
572
+ "TreatMissingData":{"shape":"TreatMissingData"},
573
+ "EvaluateLowSampleCountPercentile":{"shape":"EvaluateLowSampleCountPercentile"}
567
574
  },
568
575
  "xmlOrder":[
569
576
  "AlarmName",
@@ -587,7 +594,9 @@
587
594
  "EvaluationPeriods",
588
595
  "Threshold",
589
596
  "ComparisonOperator",
590
- "ExtendedStatistic"
597
+ "ExtendedStatistic",
598
+ "TreatMissingData",
599
+ "EvaluateLowSampleCountPercentile"
591
600
  ]
592
601
  },
593
602
  "MetricAlarms":{
@@ -674,7 +683,9 @@
674
683
  "Unit":{"shape":"StandardUnit"},
675
684
  "EvaluationPeriods":{"shape":"EvaluationPeriods"},
676
685
  "Threshold":{"shape":"Threshold"},
677
- "ComparisonOperator":{"shape":"ComparisonOperator"}
686
+ "ComparisonOperator":{"shape":"ComparisonOperator"},
687
+ "TreatMissingData":{"shape":"TreatMissingData"},
688
+ "EvaluateLowSampleCountPercentile":{"shape":"EvaluateLowSampleCountPercentile"}
678
689
  }
679
690
  },
680
691
  "PutMetricDataInput":{
@@ -806,6 +817,11 @@
806
817
  "min":1
807
818
  },
808
819
  "Threshold":{"type":"double"},
809
- "Timestamp":{"type":"timestamp"}
820
+ "Timestamp":{"type":"timestamp"},
821
+ "TreatMissingData":{
822
+ "type":"string",
823
+ "max":255,
824
+ "min":1
825
+ }
810
826
  }
811
827
  }
@@ -2,14 +2,14 @@
2
2
  "pagination": {
3
3
  "DescribeAlarmHistory": {
4
4
  "input_token": "NextToken",
5
- "output_token": "NextToken",
6
5
  "limit_key": "MaxRecords",
6
+ "output_token": "NextToken",
7
7
  "result_key": "AlarmHistoryItems"
8
8
  },
9
9
  "DescribeAlarms": {
10
10
  "input_token": "NextToken",
11
- "output_token": "NextToken",
12
11
  "limit_key": "MaxRecords",
12
+ "output_token": "NextToken",
13
13
  "result_key": "MetricAlarms"
14
14
  },
15
15
  "DescribeAlarmsForMetric": {
@@ -21,4 +21,4 @@
21
21
  "result_key": "Metrics"
22
22
  }
23
23
  }
24
- }
24
+ }
@@ -157,10 +157,9 @@ module Aws
157
157
  def structure(ref, values)
158
158
  shape = ref.shape
159
159
  if values.is_a?(Struct)
160
- values.members.each do |key|
161
- values[key] = translate(shape.member(key), values[key])
160
+ values.members.each.with_object(values.class.new) do |key, st|
161
+ st[key] = translate(shape.member(key), values[key])
162
162
  end
163
- values
164
163
  elsif values.is_a?(Hash)
165
164
  values.each.with_object({}) do |(key, value), hash|
166
165
  hash[key] = translate(shape.member(key), value)
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.9.2'
2
+ VERSION = '2.9.3'
3
3
  end
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: 2.9.2
4
+ version: 2.9.3
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: 2017-04-03 00:00:00.000000000 Z
11
+ date: 2017-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath