aws-sdk-core 2.2.16 → 2.2.17

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: b2423e93a5eeb76b05d1f94e0df07565b1863475
4
- data.tar.gz: 3272880ba910a692b1d624befde7b558f9b115f5
3
+ metadata.gz: 7388d5eef045a84e5f0add63a9e49bdb7b6e8746
4
+ data.tar.gz: 298e91fb28faf036547c0a4f3760cde914014c7f
5
5
  SHA512:
6
- metadata.gz: 4b12c9530d85ddfc0196da6fc71e16482f1b6c08949fc27cfcfe032efcaa5c7e8643dfd9140cfd70cf7fbcf9a41c23e5f8c851263107eab51fb538bdc67196c0
7
- data.tar.gz: e115b74adcfa2ed6b91d77f962ba573564fe0e3fe9267ab0f2094c21aeccc7abc7cd6b33e4791d7a189730867ac3b30738f0605ff7918ba85e91517ad20f9b3a
6
+ metadata.gz: f7a007841e654c046516dc34fcb2d902325a30c0c16d13f7d09f50d1f337d78a569330aae91c17b4242912740c443b1b39b48da782fccec8f5ab50fca70bea98
7
+ data.tar.gz: 9a3519978b2f15fbaf5d5b9a3e9bbe1a9a88300593ed1013c2d021cf8cc6b3b969952a87ce3c7a67b9ae053ee464688fbb6552d5259c9a7b0b614b13debd53d0
@@ -1204,7 +1204,7 @@
1204
1204
  "ResourceTypes":{
1205
1205
  "type":"list",
1206
1206
  "member":{"shape":"StringWithCharLimit256"},
1207
- "max":100,
1207
+ "max":20,
1208
1208
  "min":0
1209
1209
  },
1210
1210
  "Scope":{
@@ -298,6 +298,7 @@
298
298
  "member":{"shape":"Application"}
299
299
  },
300
300
  "Boolean":{"type":"boolean"},
301
+ "BooleanObject":{"type":"boolean"},
301
302
  "BootstrapActionConfig":{
302
303
  "type":"structure",
303
304
  "required":[
@@ -484,6 +485,47 @@
484
485
  "type":"list",
485
486
  "member":{"shape":"InstanceId"}
486
487
  },
488
+ "EbsBlockDevice":{
489
+ "type":"structure",
490
+ "members":{
491
+ "VolumeSpecification":{"shape":"VolumeSpecification"},
492
+ "Device":{"shape":"String"}
493
+ }
494
+ },
495
+ "EbsBlockDeviceConfig":{
496
+ "type":"structure",
497
+ "required":["VolumeSpecification"],
498
+ "members":{
499
+ "VolumeSpecification":{"shape":"VolumeSpecification"},
500
+ "VolumesPerInstance":{"shape":"Integer"}
501
+ }
502
+ },
503
+ "EbsBlockDeviceConfigList":{
504
+ "type":"list",
505
+ "member":{"shape":"EbsBlockDeviceConfig"}
506
+ },
507
+ "EbsBlockDeviceList":{
508
+ "type":"list",
509
+ "member":{"shape":"EbsBlockDevice"}
510
+ },
511
+ "EbsConfiguration":{
512
+ "type":"structure",
513
+ "members":{
514
+ "EbsBlockDeviceConfigs":{"shape":"EbsBlockDeviceConfigList"},
515
+ "EbsOptimized":{"shape":"BooleanObject"}
516
+ }
517
+ },
518
+ "EbsVolume":{
519
+ "type":"structure",
520
+ "members":{
521
+ "Device":{"shape":"String"},
522
+ "VolumeId":{"shape":"String"}
523
+ }
524
+ },
525
+ "EbsVolumeList":{
526
+ "type":"list",
527
+ "member":{"shape":"EbsVolume"}
528
+ },
487
529
  "Ec2InstanceAttributes":{
488
530
  "type":"structure",
489
531
  "members":{
@@ -532,7 +574,9 @@
532
574
  "PublicIpAddress":{"shape":"String"},
533
575
  "PrivateDnsName":{"shape":"String"},
534
576
  "PrivateIpAddress":{"shape":"String"},
535
- "Status":{"shape":"InstanceStatus"}
577
+ "Status":{"shape":"InstanceStatus"},
578
+ "InstanceGroupId":{"shape":"String"},
579
+ "EbsVolumes":{"shape":"EbsVolumeList"}
536
580
  }
537
581
  },
538
582
  "InstanceGroup":{
@@ -547,7 +591,9 @@
547
591
  "RequestedInstanceCount":{"shape":"Integer"},
548
592
  "RunningInstanceCount":{"shape":"Integer"},
549
593
  "Status":{"shape":"InstanceGroupStatus"},
550
- "Configurations":{"shape":"ConfigurationList"}
594
+ "Configurations":{"shape":"ConfigurationList"},
595
+ "EbsBlockDevices":{"shape":"EbsBlockDeviceList"},
596
+ "EbsOptimized":{"shape":"BooleanObject"}
551
597
  }
552
598
  },
553
599
  "InstanceGroupConfig":{
@@ -564,7 +610,8 @@
564
610
  "BidPrice":{"shape":"XmlStringMaxLen256"},
565
611
  "InstanceType":{"shape":"InstanceType"},
566
612
  "InstanceCount":{"shape":"Integer"},
567
- "Configurations":{"shape":"ConfigurationList"}
613
+ "Configurations":{"shape":"ConfigurationList"},
614
+ "EbsConfiguration":{"shape":"EbsConfiguration"}
568
615
  }
569
616
  },
570
617
  "InstanceGroupConfigList":{
@@ -1236,6 +1283,18 @@
1236
1283
  "JobFlowIds":{"shape":"XmlStringList"}
1237
1284
  }
1238
1285
  },
1286
+ "VolumeSpecification":{
1287
+ "type":"structure",
1288
+ "required":[
1289
+ "VolumeType",
1290
+ "SizeInGB"
1291
+ ],
1292
+ "members":{
1293
+ "VolumeType":{"shape":"String"},
1294
+ "Iops":{"shape":"Integer"},
1295
+ "SizeInGB":{"shape":"Integer"}
1296
+ }
1297
+ },
1239
1298
  "XmlString":{
1240
1299
  "type":"string",
1241
1300
  "max":10280,
@@ -1582,6 +1582,7 @@
1582
1582
  "members":{
1583
1583
  "SourceDBSnapshotIdentifier":{"shape":"String"},
1584
1584
  "TargetDBSnapshotIdentifier":{"shape":"String"},
1585
+ "KmsKeyId":{"shape":"String"},
1585
1586
  "Tags":{"shape":"TagList"},
1586
1587
  "CopyTags":{"shape":"BooleanOptional"}
1587
1588
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.2.16'
2
+ VERSION = '2.2.17'
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.2.16
4
+ version: 2.2.17
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: 2016-02-11 00:00:00.000000000 Z
11
+ date: 2016-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -463,7 +463,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
463
463
  version: '0'
464
464
  requirements: []
465
465
  rubyforge_project:
466
- rubygems_version: 2.4.8
466
+ rubygems_version: 2.4.5
467
467
  signing_key:
468
468
  specification_version: 4
469
469
  summary: AWS SDK for Ruby - Core