mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[aws|compute] add tagSet to describe format
This commit is contained in:
parent
56fa149664
commit
85255145e3
2 changed files with 9 additions and 7 deletions
|
@ -47,6 +47,7 @@ module Fog
|
|||
'size' => size,
|
||||
'snapshotId' => snapshot_id,
|
||||
'status' => 'creating',
|
||||
'tagSet' => {},
|
||||
'volumeId' => volume_id
|
||||
}
|
||||
@data[:volumes][volume_id] = data
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue