Sha256: 2476b768492404b77f72e7918094f33bbbdb9009dbe2a6a6743d824a7f6391cb
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
# coding: utf-8 module Fog module Volume class SakuraCloud class Real def list_archives(options = {}) request( :headers => { 'Authorization' => "Basic #{@auth_encode}" }, :method => 'GET', :path => "#{Fog::SakuraCloud::SAKURACLOUD_API_ENDPOINT}/archive" ) end end class Mock def list_archives(options = {}) response = Excon::Response.new response.status = 200 response.body = { "Archives" => [ {"Index"=>0, "ID"=>112500514887, "Name"=>"CentOS 5.10 64bit (基本セット)", "Availability"=>"available", "SizeMB"=>20480, "Plan"=>{"ID"=>2, "StorageClass"=>"iscsi1204", "Name"=>"標準プラン"} }, {"Index"=>1, "ID"=>112500571575, "Name"=>"CentOS 6.5 64bit (基本セット)", "Availability"=>"available", "SizeMB"=>102400, "Plan"=>{"ID"=>2, "StorageClass"=>"iscsi1204", "Name"=>"標準プラン"} } ] } response end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-sakuracloud-1.4.0 | lib/fog/sakuracloud/requests/volume/list_archives.rb |
fog-sakuracloud-1.3.3 | lib/fog/sakuracloud/requests/volume/list_archives.rb |