aws-sdk-core 2.7.7 → 2.7.8

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: 9a1aeef30b752593987840619467ffe13a6c05fa
4
- data.tar.gz: 8b5ae8273189f34b3d414ada119c3a1d78cb0afe
3
+ metadata.gz: 9887c3d3e4d74178cdfb73428d044f0559368058
4
+ data.tar.gz: 7c5738fcc60caebfa3429093d7e1f7b1f0540801
5
5
  SHA512:
6
- metadata.gz: 3ae20a9d797d62740cd163c026ca815524f7f3fdbe1cd10671a7ca8c48ddfa22aaaa19553f5c500cf5475e8142859836315c380d6b73515a7df9a002038b6476
7
- data.tar.gz: 005103c85232b3d4f89bd44a0793cc7ba660d1ffb2ab27bfd58c887aa056354a244e021f3258f4790d3bc4e2dbb9098b8a74916dc3d54f2c04cb4b1ac3f4442e
6
+ metadata.gz: 660035beeb6e97020ed747cc35e7a1f27277f4d2f762caf0e814cc3ff69674d89917ad8a35f3d3f4feb5992abdbf3b895c6381a00fd73ea338582404a00d0207
7
+ data.tar.gz: bd53ff5d5ccf39933f61c8b0603e0054276c503f9e8b05965939ec6853db3c74fe909fc4a8f19772f841f46423ed80b68885be9eabcdb7f8f18bca129140b62b
@@ -1248,6 +1248,15 @@
1248
1248
  "input":{"shape":"DescribeVolumesRequest"},
1249
1249
  "output":{"shape":"DescribeVolumesResult"}
1250
1250
  },
1251
+ "DescribeVolumesModifications":{
1252
+ "name":"DescribeVolumesModifications",
1253
+ "http":{
1254
+ "method":"POST",
1255
+ "requestUri":"/"
1256
+ },
1257
+ "input":{"shape":"DescribeVolumesModificationsRequest"},
1258
+ "output":{"shape":"DescribeVolumesModificationsResult"}
1259
+ },
1251
1260
  "DescribeVpcAttribute":{
1252
1261
  "name":"DescribeVpcAttribute",
1253
1262
  "http":{
@@ -1656,6 +1665,15 @@
1656
1665
  },
1657
1666
  "input":{"shape":"ModifySubnetAttributeRequest"}
1658
1667
  },
1668
+ "ModifyVolume":{
1669
+ "name":"ModifyVolume",
1670
+ "http":{
1671
+ "method":"POST",
1672
+ "requestUri":"/"
1673
+ },
1674
+ "input":{"shape":"ModifyVolumeRequest"},
1675
+ "output":{"shape":"ModifyVolumeResult"}
1676
+ },
1659
1677
  "ModifyVolumeAttribute":{
1660
1678
  "name":"ModifyVolumeAttribute",
1661
1679
  "http":{
@@ -6303,6 +6321,35 @@
6303
6321
  }
6304
6322
  }
6305
6323
  },
6324
+ "DescribeVolumesModificationsRequest":{
6325
+ "type":"structure",
6326
+ "members":{
6327
+ "DryRun":{"shape":"Boolean"},
6328
+ "VolumeIds":{
6329
+ "shape":"VolumeIdStringList",
6330
+ "locationName":"VolumeId"
6331
+ },
6332
+ "Filters":{
6333
+ "shape":"FilterList",
6334
+ "locationName":"Filter"
6335
+ },
6336
+ "NextToken":{"shape":"String"},
6337
+ "MaxResults":{"shape":"Integer"}
6338
+ }
6339
+ },
6340
+ "DescribeVolumesModificationsResult":{
6341
+ "type":"structure",
6342
+ "members":{
6343
+ "VolumesModifications":{
6344
+ "shape":"VolumeModificationList",
6345
+ "locationName":"volumeModificationSet"
6346
+ },
6347
+ "NextToken":{
6348
+ "shape":"String",
6349
+ "locationName":"nextToken"
6350
+ }
6351
+ }
6352
+ },
6306
6353
  "DescribeVolumesRequest":{
6307
6354
  "type":"structure",
6308
6355
  "members":{
@@ -10029,6 +10076,26 @@
10029
10076
  "AutoEnableIO":{"shape":"AttributeBooleanValue"}
10030
10077
  }
10031
10078
  },
10079
+ "ModifyVolumeRequest":{
10080
+ "type":"structure",
10081
+ "required":["VolumeId"],
10082
+ "members":{
10083
+ "DryRun":{"shape":"Boolean"},
10084
+ "VolumeId":{"shape":"String"},
10085
+ "Size":{"shape":"Integer"},
10086
+ "VolumeType":{"shape":"VolumeType"},
10087
+ "Iops":{"shape":"Integer"}
10088
+ }
10089
+ },
10090
+ "ModifyVolumeResult":{
10091
+ "type":"structure",
10092
+ "members":{
10093
+ "VolumeModification":{
10094
+ "shape":"VolumeModification",
10095
+ "locationName":"volumeModification"
10096
+ }
10097
+ }
10098
+ },
10032
10099
  "ModifyVpcAttributeRequest":{
10033
10100
  "type":"structure",
10034
10101
  "required":["VpcId"],
@@ -14575,6 +14642,75 @@
14575
14642
  "locationName":"item"
14576
14643
  }
14577
14644
  },
14645
+ "VolumeModification":{
14646
+ "type":"structure",
14647
+ "members":{
14648
+ "VolumeId":{
14649
+ "shape":"String",
14650
+ "locationName":"volumeId"
14651
+ },
14652
+ "ModificationState":{
14653
+ "shape":"VolumeModificationState",
14654
+ "locationName":"modificationState"
14655
+ },
14656
+ "StatusMessage":{
14657
+ "shape":"String",
14658
+ "locationName":"statusMessage"
14659
+ },
14660
+ "TargetSize":{
14661
+ "shape":"Integer",
14662
+ "locationName":"targetSize"
14663
+ },
14664
+ "TargetIops":{
14665
+ "shape":"Integer",
14666
+ "locationName":"targetIops"
14667
+ },
14668
+ "TargetVolumeType":{
14669
+ "shape":"VolumeType",
14670
+ "locationName":"targetVolumeType"
14671
+ },
14672
+ "OriginalSize":{
14673
+ "shape":"Integer",
14674
+ "locationName":"originalSize"
14675
+ },
14676
+ "OriginalIops":{
14677
+ "shape":"Integer",
14678
+ "locationName":"originalIops"
14679
+ },
14680
+ "OriginalVolumeType":{
14681
+ "shape":"VolumeType",
14682
+ "locationName":"originalVolumeType"
14683
+ },
14684
+ "Progress":{
14685
+ "shape":"Long",
14686
+ "locationName":"progress"
14687
+ },
14688
+ "StartTime":{
14689
+ "shape":"DateTime",
14690
+ "locationName":"startTime"
14691
+ },
14692
+ "EndTime":{
14693
+ "shape":"DateTime",
14694
+ "locationName":"endTime"
14695
+ }
14696
+ }
14697
+ },
14698
+ "VolumeModificationList":{
14699
+ "type":"list",
14700
+ "member":{
14701
+ "shape":"VolumeModification",
14702
+ "locationName":"item"
14703
+ }
14704
+ },
14705
+ "VolumeModificationState":{
14706
+ "type":"string",
14707
+ "enum":[
14708
+ "modifying",
14709
+ "optimizing",
14710
+ "completed",
14711
+ "failed"
14712
+ ]
14713
+ },
14578
14714
  "VolumeState":{
14579
14715
  "type":"string",
14580
14716
  "enum":[
@@ -45,6 +45,12 @@
45
45
  "DescribeKeyPairs": {
46
46
  "result_key": "KeyPairs"
47
47
  },
48
+ "DescribeNatGateways": {
49
+ "input_token": "NextToken",
50
+ "limit_key": "MaxResults",
51
+ "output_token": "NextToken",
52
+ "result_key": "NatGateways"
53
+ },
48
54
  "DescribeNetworkAcls": {
49
55
  "result_key": "NetworkAcls"
50
56
  },
@@ -588,6 +588,24 @@
588
588
  "state": "retry"
589
589
  }
590
590
  ]
591
+ },
592
+ "VpcPeeringConnectionDeleted": {
593
+ "delay": 15,
594
+ "operation": "DescribeVpcPeeringConnections",
595
+ "maxAttempts": 40,
596
+ "acceptors": [
597
+ {
598
+ "expected": "deleted",
599
+ "matcher": "pathAll",
600
+ "state": "success",
601
+ "argument": "VpcPeeringConnections[].Status.Code"
602
+ },
603
+ {
604
+ "matcher": "error",
605
+ "expected": "InvalidVpcPeeringConnectionID.NotFound",
606
+ "state": "success"
607
+ }
608
+ ]
591
609
  }
592
610
  }
593
611
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.7.7'
2
+ VERSION = '2.7.8'
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.7.7
4
+ version: 2.7.8
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-02-10 00:00:00.000000000 Z
11
+ date: 2017-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath