Sha256: 503feff65907baf5d105b747fcc688af32b91724fb16aa18e9484352a9cbd69a
Contents?: true
Size: 697 Bytes
Versions: 20
Compression:
Stored size: 697 Bytes
Contents
module Fog module OpenStack class Volume module Real def list_zones(options = {}) request( :expects => 200, :method => 'GET', :path => 'os-availability-zone.json', :query => options ) end end module Mock def list_zones(_options = {}) Excon::Response.new( :body => { "availabilityZoneInfo" => [ { "zoneState" => {"available" => true}, "zoneName" => "nova" } ] }, :status => 200 ) end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems