mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
:size should be a number in GB, not an instance size (e.g. "t1.micro")
This commit is contained in:
parent
9ea5432fde
commit
9d65d9544d
1 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,7 @@ module Fog
|
|||
model Fog::AWS::Compute::Volume
|
||||
|
||||
# Used to create a volume. There are 3 arguments and availability_zone and size are required. You can generate a new key_pair as follows:
|
||||
# AWS.volumes.create(:availability_zone => 'us-east-1a', :size => 't1.micro')
|
||||
# AWS.volumes.create(:availability_zone => 'us-east-1a', :size => 10)
|
||||
#
|
||||
# ==== Returns
|
||||
#
|
||||
|
@ -25,7 +25,7 @@ module Fog
|
|||
# delete_on_termination=nil,
|
||||
# device=nil,
|
||||
# server_id=nil,
|
||||
# size="t1.micro",
|
||||
# size=10,
|
||||
# snapshot_id=nil,
|
||||
# state="creating",
|
||||
# tags=nil
|
||||
|
@ -53,7 +53,7 @@ module Fog
|
|||
# delete_on_termination=nil,
|
||||
# device=nil,
|
||||
# server_id=nil,
|
||||
# size="t1.micro",
|
||||
# size=10,
|
||||
# snapshot_id=nil,
|
||||
# state="creating",
|
||||
# tags=nil
|
||||
|
@ -93,7 +93,7 @@ module Fog
|
|||
# delete_on_termination=nil,
|
||||
# device=nil,
|
||||
# server_id=nil,
|
||||
# size="t1.micro",
|
||||
# size=10,
|
||||
# snapshot_id=nil,
|
||||
# state="available",
|
||||
# tags={}
|
||||
|
|
Loading…
Add table
Reference in a new issue