aws-sdk-core 2.1.17 → 2.1.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba406be26a620160356c92241a1ebf969f90ce98
4
- data.tar.gz: 2641be70ea483a512a683211ed041e6254e2028a
3
+ metadata.gz: a833c3103b7fcbfef9a54799eef6ff0e5e1e9d0e
4
+ data.tar.gz: 59ab4f667d7d6260e87385021f44f1aa0efb9501
5
5
  SHA512:
6
- metadata.gz: bae43aa1f7775f0c2b700b0174c76b5dea52245060dc521c8fa68b4c3c9a694c94b02e67fa37f64baff25478e6392227d4110fa82e07a23302fac833113b0caf
7
- data.tar.gz: a23d147632caf9814c95f81732454bb4a161bf30e1cee264af9d1509a05f6f687a68642c376677cd3221b1f86a1a19ba1f9fecf2ffbb148bb58909ee2a511da7
6
+ metadata.gz: 5c8c1c9e37aed29a444c7e98f9559cf6812780fe84587353b5d303877beb49010f546e109a789acdb679f04142b302451829e38cefb2c976ffd8bc87877f82aa
7
+ data.tar.gz: a1907c754e06a4b4caa6e5abda147ab08f61cb7b3e0a33e8d71ac8eab62ee8ffb4daab0f03f1778949d0819e87f0db78ff57ae1353b930d92e69ae94152095b9
@@ -7959,7 +7959,7 @@
7959
7959
  },
7960
7960
  "ImageId":{"shape":"String"},
7961
7961
  "Attribute":{"shape":"String"},
7962
- "OperationType":{"shape":"String"},
7962
+ "OperationType":{"shape":"OperationType"},
7963
7963
  "UserIds":{
7964
7964
  "shape":"UserIdStringList",
7965
7965
  "locationName":"UserId"
@@ -8110,7 +8110,7 @@
8110
8110
  },
8111
8111
  "SnapshotId":{"shape":"String"},
8112
8112
  "Attribute":{"shape":"SnapshotAttributeName"},
8113
- "OperationType":{"shape":"String"},
8113
+ "OperationType":{"shape":"OperationType"},
8114
8114
  "UserIds":{
8115
8115
  "shape":"UserIdStringList",
8116
8116
  "locationName":"UserId"
@@ -8598,6 +8598,13 @@
8598
8598
  "All Upfront"
8599
8599
  ]
8600
8600
  },
8601
+ "OperationType":{
8602
+ "type":"string",
8603
+ "enum":[
8604
+ "add",
8605
+ "remove"
8606
+ ]
8607
+ },
8601
8608
  "OwnerStringList":{
8602
8609
  "type":"list",
8603
8610
  "member":{
@@ -10502,6 +10509,14 @@
10502
10509
  "EbsOptimized":{
10503
10510
  "shape":"Boolean",
10504
10511
  "locationName":"ebsOptimized"
10512
+ },
10513
+ "WeightedCapacity":{
10514
+ "shape":"Double",
10515
+ "locationName":"weightedCapacity"
10516
+ },
10517
+ "SpotPrice":{
10518
+ "shape":"String",
10519
+ "locationName":"spotPrice"
10505
10520
  }
10506
10521
  }
10507
10522
  },
@@ -1344,6 +1344,16 @@
1344
1344
  }
1345
1345
  ],
1346
1346
  "shape": "InstanceNetworkInterfaceAssociation",
1347
+ "load": {
1348
+ "request": {
1349
+ "operation": "DescribeNetworkInterfaces",
1350
+ "params": [
1351
+ { "target": "Filters[0].Name", "source": "string", "value": "association.association-id" },
1352
+ { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
1353
+ ]
1354
+ },
1355
+ "path": "NetworkInterfaces[0].Association"
1356
+ },
1347
1357
  "actions": {
1348
1358
  "Delete": {
1349
1359
  "request": {
@@ -14,6 +14,24 @@
14
14
  }
15
15
  ]
16
16
  },
17
+ "InstanceDeregistered": {
18
+ "delay": 15,
19
+ "operation": "DescribeInstanceHealth",
20
+ "maxAttempts": 40,
21
+ "acceptors": [
22
+ {
23
+ "expected": "OutOfService",
24
+ "matcher": "pathAll",
25
+ "state": "success",
26
+ "argument": "InstanceStates[].State"
27
+ },
28
+ {
29
+ "matcher": "error",
30
+ "expected": "InvalidInstance",
31
+ "state": "success"
32
+ }
33
+ ]
34
+ },
17
35
  "AnyInstanceInService": {
18
36
  "delay": 15,
19
37
  "operation": "DescribeInstanceHealth",
@@ -90,7 +90,7 @@ module Aws
90
90
  when MapShape
91
91
  "Hash<String,#{output_type(ref.shape.value, link)}>"
92
92
  when BlobShape
93
- ref[:streaming] ? 'IO,File' : 'String'
93
+ ref[:streaming] ? 'IO' : 'String'
94
94
  when BooleanShape then 'Boolean'
95
95
  when FloatShape then 'Float'
96
96
  when IntegerShape then 'Integer'
@@ -62,8 +62,7 @@ module Aws
62
62
 
63
63
  def networking?
64
64
  @error.is_a?(Seahorse::Client::NetworkingError) ||
65
- NETWORKING_ERRORS.include?(@name) ||
66
- @http_status_code == 0
65
+ NETWORKING_ERRORS.include?(@name)
67
66
  end
68
67
 
69
68
  def server?
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.1.17'
2
+ VERSION = '2.1.18'
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.1.17
4
+ version: 2.1.18
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: 2015-08-27 00:00:00.000000000 Z
11
+ date: 2015-08-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath