aws-sdk 1.36.2 → 1.37.0

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: 769b7b1a812ce52be6905c25d5456b1a48be83bd
4
- data.tar.gz: d2a9dd864e863b008078ccde0d36e11197c1625e
3
+ metadata.gz: 24737aedc4f179de7c81e85959b82c54d14bfea3
4
+ data.tar.gz: 5e3d96629abc798eba84b45734694dc6ceba21b1
5
5
  SHA512:
6
- metadata.gz: a693b1d3b65489927e0a4243d6de9707a635ae91bdf55e28bf4b4e0939115ff049ef949d32314cc6d2d94b764e47854af95044a37d376e2b39d6499baa7c31a2
7
- data.tar.gz: f18be9607272bf642094d866d459b2ed10f5c05aa0334c7d1781d24b949413e6e1784a712cd1dcbeea8f80042f904b6c425ab9c32978dce5b6fdd05962645591
6
+ metadata.gz: cdc638f8f1d72b886759957fcf30ee0bcc3206f21f7599a73dc5f08fda5df7343930fae1e6fd678979c56bc686d65ab88b0eb25c888e2382c933930462bce44a
7
+ data.tar.gz: c0e328081ec4aa86ece3a0045f34e5a9d3f897eaba70aa883d8c154a0b4645fea9c91353a8d3ebbd9d07b9b1ad24322fc0c79614fae26d227df40c83439b8721
@@ -319,6 +319,12 @@
319
319
  :type: :boolean
320
320
  EmitInterval:
321
321
  :type: :integer
322
+ ConnectionDraining:
323
+ :children:
324
+ Enabled:
325
+ :type: :boolean
326
+ Timeout:
327
+ :type: :integer
322
328
  - :name: DescribeLoadBalancerPolicies
323
329
  :method: :describe_load_balancer_policies
324
330
  :inputs:
@@ -569,6 +575,13 @@
569
575
  - :integer
570
576
  S3BucketPrefix:
571
577
  - :string
578
+ ConnectionDraining:
579
+ - :structure:
580
+ Enabled:
581
+ - :boolean
582
+ - :required
583
+ Timeout:
584
+ - :integer
572
585
  - :required
573
586
  :outputs:
574
587
  :children:
@@ -587,6 +600,12 @@
587
600
  :type: :boolean
588
601
  EmitInterval:
589
602
  :type: :integer
603
+ ConnectionDraining:
604
+ :children:
605
+ Enabled:
606
+ :type: :boolean
607
+ Timeout:
608
+ :type: :integer
590
609
  - :name: RegisterInstancesWithLoadBalancer
591
610
  :method: :register_instances_with_load_balancer
592
611
  :inputs:
@@ -1,4 +1,4 @@
1
- # Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
1
+ # Copyright 2011-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License"). You
4
4
  # may not use this file except in compliance with the License. A copy of
@@ -85,6 +85,8 @@
85
85
  - :string
86
86
  UseCustomCookbooks:
87
87
  - :boolean
88
+ UseOpsworksSecurityGroups:
89
+ - :boolean
88
90
  CustomCookbooksSource:
89
91
  - :structure:
90
92
  Type:
@@ -232,6 +234,8 @@
232
234
  - :string
233
235
  InstallUpdatesOnBoot:
234
236
  - :boolean
237
+ EbsOptimized:
238
+ - :boolean
235
239
  :outputs:
236
240
  InstanceId:
237
241
  :sym: :instance_id
@@ -279,6 +283,10 @@
279
283
  Size:
280
284
  - :integer
281
285
  - :required
286
+ VolumeType:
287
+ - :string
288
+ Iops:
289
+ - :integer
282
290
  EnableAutoHealing:
283
291
  - :boolean
284
292
  AutoAssignElasticIps:
@@ -304,6 +312,8 @@
304
312
  - :string
305
313
  InstallUpdatesOnBoot:
306
314
  - :boolean
315
+ UseEbsOptimizedInstances:
316
+ - :boolean
307
317
  :outputs:
308
318
  LayerId:
309
319
  :sym: :layer_id
@@ -349,6 +359,8 @@
349
359
  - :string
350
360
  UseCustomCookbooks:
351
361
  - :boolean
362
+ UseOpsworksSecurityGroups:
363
+ - :boolean
352
364
  CustomCookbooksSource:
353
365
  - :structure:
354
366
  Type:
@@ -796,6 +808,9 @@
796
808
  InstallUpdatesOnBoot:
797
809
  :sym: :install_updates_on_boot
798
810
  :type: :boolean
811
+ EbsOptimized:
812
+ :sym: :ebs_optimized
813
+ :type: :boolean
799
814
  - :name: DescribeLayers
800
815
  :method: :describe_layers
801
816
  :inputs:
@@ -858,6 +873,12 @@
858
873
  Size:
859
874
  :sym: :size
860
875
  :type: :integer
876
+ VolumeType:
877
+ :sym: :volume_type
878
+ :type: :string
879
+ Iops:
880
+ :sym: :iops
881
+ :type: :integer
861
882
  EnableAutoHealing:
862
883
  :sym: :enable_auto_healing
863
884
  :type: :boolean
@@ -911,6 +932,9 @@
911
932
  InstallUpdatesOnBoot:
912
933
  :sym: :install_updates_on_boot
913
934
  :type: :boolean
935
+ UseEbsOptimizedInstances:
936
+ :sym: :use_ebs_optimized_instances
937
+ :type: :boolean
914
938
  - :name: DescribeLoadBasedAutoScaling
915
939
  :method: :describe_load_based_auto_scaling
916
940
  :inputs:
@@ -1063,6 +1087,12 @@
1063
1087
  CreatedAt:
1064
1088
  :sym: :created_at
1065
1089
  :type: :string
1090
+ VolumeType:
1091
+ :sym: :volume_type
1092
+ :type: :string
1093
+ Iops:
1094
+ :sym: :iops
1095
+ :type: :integer
1066
1096
  - :name: DescribeServiceErrors
1067
1097
  :method: :describe_service_errors
1068
1098
  :inputs:
@@ -1113,6 +1143,9 @@
1113
1143
  Name:
1114
1144
  :sym: :name
1115
1145
  :type: :string
1146
+ Arn:
1147
+ :sym: :arn
1148
+ :type: :string
1116
1149
  LayersCount:
1117
1150
  :sym: :layers_count
1118
1151
  :type: :integer
@@ -1129,6 +1162,9 @@
1129
1162
  ConnectionLost:
1130
1163
  :sym: :connection_lost
1131
1164
  :type: :integer
1165
+ Online:
1166
+ :sym: :online
1167
+ :type: :integer
1132
1168
  Pending:
1133
1169
  :sym: :pending
1134
1170
  :type: :integer
@@ -1153,6 +1189,9 @@
1153
1189
  Stopped:
1154
1190
  :sym: :stopped
1155
1191
  :type: :integer
1192
+ Stopping:
1193
+ :sym: :stopping
1194
+ :type: :integer
1156
1195
  Terminated:
1157
1196
  :sym: :terminated
1158
1197
  :type: :integer
@@ -1176,6 +1215,9 @@
1176
1215
  Name:
1177
1216
  :sym: :name
1178
1217
  :type: :string
1218
+ Arn:
1219
+ :sym: :arn
1220
+ :type: :string
1179
1221
  Region:
1180
1222
  :sym: :region
1181
1223
  :type: :string
@@ -1222,6 +1264,9 @@
1222
1264
  UseCustomCookbooks:
1223
1265
  :sym: :use_custom_cookbooks
1224
1266
  :type: :boolean
1267
+ UseOpsworksSecurityGroups:
1268
+ :sym: :use_opsworks_security_groups
1269
+ :type: :boolean
1225
1270
  CustomCookbooksSource:
1226
1271
  :sym: :custom_cookbooks_source
1227
1272
  :type: :hash
@@ -1390,6 +1435,12 @@
1390
1435
  AvailabilityZone:
1391
1436
  :sym: :availability_zone
1392
1437
  :type: :string
1438
+ VolumeType:
1439
+ :sym: :volume_type
1440
+ :type: :string
1441
+ Iops:
1442
+ :sym: :iops
1443
+ :type: :integer
1393
1444
  - :name: DetachElasticLoadBalancer
1394
1445
  :method: :detach_elastic_load_balancer
1395
1446
  :inputs:
@@ -1712,6 +1763,10 @@
1712
1763
  Size:
1713
1764
  - :integer
1714
1765
  - :required
1766
+ VolumeType:
1767
+ - :string
1768
+ Iops:
1769
+ - :integer
1715
1770
  EnableAutoHealing:
1716
1771
  - :boolean
1717
1772
  AutoAssignElasticIps:
@@ -1737,6 +1792,8 @@
1737
1792
  - :string
1738
1793
  InstallUpdatesOnBoot:
1739
1794
  - :boolean
1795
+ UseEbsOptimizedInstances:
1796
+ - :boolean
1740
1797
  :outputs: {}
1741
1798
  - :name: UpdateMyUserProfile
1742
1799
  :method: :update_my_user_profile
@@ -1798,6 +1855,8 @@
1798
1855
  - :string
1799
1856
  DefaultRootDeviceType:
1800
1857
  - :string
1858
+ UseOpsworksSecurityGroups:
1859
+ - :boolean
1801
1860
  :outputs: {}
1802
1861
  - :name: UpdateUserProfile
1803
1862
  :method: :update_user_profile
@@ -13,5 +13,5 @@
13
13
 
14
14
  module AWS
15
15
  # Current version of the AWS SDK for Ruby
16
- VERSION = '1.36.2'
16
+ VERSION = '1.37.0'
17
17
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.36.2
4
+ version: 1.37.0
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: 2014-03-19 00:00:00.000000000 Z
11
+ date: 2014-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: uuidtools