1
0
Fork 0
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:
Jack Thomas 2016-07-13 11:21:52 +01:00
parent 9f8ef535d7
commit 12e5618a91

View file

@ -138,7 +138,7 @@ class AWS
SNAPSHOT = { SNAPSHOT = {
'AllocatedStorage' => Integer, 'AllocatedStorage' => Integer,
'AvailabilityZone' => String, 'AvailabilityZone' => Fog::Nullable::String,
'DBInstanceIdentifier' => String, 'DBInstanceIdentifier' => String,
'DBSnapshotIdentifier' => String, 'DBSnapshotIdentifier' => String,
'EngineVersion' => String, 'EngineVersion' => String,
@ -146,10 +146,11 @@ class AWS
'InstanceCreateTime' => Time, 'InstanceCreateTime' => Time,
'Iops' => Fog::Nullable::Integer, 'Iops' => Fog::Nullable::Integer,
'MasterUsername' => String, 'MasterUsername' => String,
'Port' => Integer, 'Port' => Fog::Nullable::Integer,
'SnapshotCreateTime' => Fog::Nullable::Time, 'SnapshotCreateTime' => Fog::Nullable::Time,
'Status' => String, 'Status' => String,
'SnapshotType' => String 'SnapshotType' => String,
'StorageType' => String,
} }
INSTANCE = { INSTANCE = {