mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
RDS Snapshot format corrected
This commit is contained in:
parent
9f8ef535d7
commit
12e5618a91
1 changed files with 4 additions and 3 deletions
|
@ -138,7 +138,7 @@ class AWS
|
|||
|
||||
SNAPSHOT = {
|
||||
'AllocatedStorage' => Integer,
|
||||
'AvailabilityZone' => String,
|
||||
'AvailabilityZone' => Fog::Nullable::String,
|
||||
'DBInstanceIdentifier' => String,
|
||||
'DBSnapshotIdentifier' => String,
|
||||
'EngineVersion' => String,
|
||||
|
@ -146,10 +146,11 @@ class AWS
|
|||
'InstanceCreateTime' => Time,
|
||||
'Iops' => Fog::Nullable::Integer,
|
||||
'MasterUsername' => String,
|
||||
'Port' => Integer,
|
||||
'Port' => Fog::Nullable::Integer,
|
||||
'SnapshotCreateTime' => Fog::Nullable::Time,
|
||||
'Status' => String,
|
||||
'SnapshotType' => String
|
||||
'SnapshotType' => String,
|
||||
'StorageType' => String,
|
||||
}
|
||||
|
||||
INSTANCE = {
|
||||
|
|
Loading…
Reference in a new issue