[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, 'size' => size,
'snapshotId' => snapshot_id, 'snapshotId' => snapshot_id,
'status' => 'creating', 'status' => 'creating',
'tagSet' => {},
'volumeId' => volume_id 'volumeId' => volume_id
} }
@data[:volumes][volume_id] = data @data[:volumes][volume_id] = data

View File

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