Sha256: e4d12128d962b5964adfec871b763682fbc53022d1abaf821ea58c23af537c8d
Contents?: true
Size: 1.24 KB
Versions: 13
Compression:
Stored size: 1.24 KB
Contents
# coding: utf-8 module Fog module Volume class SakuraCloud class Real def list_disks(options = {}) request( :headers => { 'Authorization' => "Basic #{@auth_encode}" }, :method => 'GET', :path => "#{Fog::SakuraCloud.build_endpoint(@api_zone)}/disk" ) end end class Mock def list_disks(options = {}) response = Excon::Response.new response.status = 200 response.body = { "Disks" => [ {"Index" => 0, "ID" =>112600053890, "Name" =>"foober1", "Connection" => "virtio", "Availability"=>"available", "SizeMB"=>20480, "Plan"=> {}, "SourceDisk" => nil, "SourceArchive" => {}}, {"Index" => 1, "ID" =>112600053891, "Name" =>"foober2", "Connection" => "virtio", "Availability"=>"available", "SizeMB"=>20480, "Plan"=> {}, "SourceDisk" => nil, "SourceArchive" => {}} ] } response end end end end end
Version data entries
13 entries across 11 versions & 2 rubygems