aws-sdk-core 2.2.16 → 2.2.17
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7388d5eef045a84e5f0add63a9e49bdb7b6e8746
|
4
|
+
data.tar.gz: 298e91fb28faf036547c0a4f3760cde914014c7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7a007841e654c046516dc34fcb2d902325a30c0c16d13f7d09f50d1f337d78a569330aae91c17b4242912740c443b1b39b48da782fccec8f5ab50fca70bea98
|
7
|
+
data.tar.gz: 9a3519978b2f15fbaf5d5b9a3e9bbe1a9a88300593ed1013c2d021cf8cc6b3b969952a87ce3c7a67b9ae053ee464688fbb6552d5259c9a7b0b614b13debd53d0
|
@@ -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,
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.
|
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
|
+
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.
|
466
|
+
rubygems_version: 2.4.5
|
467
467
|
signing_key:
|
468
468
|
specification_version: 4
|
469
469
|
summary: AWS SDK for Ruby - Core
|