[aws|compute] add tagSet to describe format

This commit is contained in:
geemus 2010-11-02 12:21:17 -07:00
parent 56fa149664
commit 85255145e3
2 changed files with 9 additions and 7 deletions

View File

@ -47,6 +47,7 @@ module Fog
'size' => size,
'snapshotId' => snapshot_id,
'status' => 'creating',
'tagSet' => {},
'volumeId' => volume_id
}
@data[:volumes][volume_id] = data

View File

@ -21,13 +21,14 @@ Shindo.tests('AWS::Compute | volume requests', ['aws']) do
@volumes_format = {
'volumeSet' => [{
'availabilityZone' => String,
'attachmentSet' => [],
'createTime' => Time,
'size' => Integer,
'snapshotId' => NilClass,
'status' => String,
'volumeId' => String
'availabilityZone' => String,
'attachmentSet' => [],
'createTime' => Time,
'size' => Integer,
'snapshotId' => NilClass,
'status' => String,
'tagSet' => {},
'volumeId' => String
}],
'requestId' => String
}