Sha256: 0b8a672d551483e36312fcf85a838e7995c56b09d19a7f16f70b37a0747cfbae
Contents?: true
Size: 587 Bytes
Versions: 20
Compression:
Stored size: 587 Bytes
Contents
module Fog module OpenStack class DNS class V1 class Real def list_domains(options = {}) request( :expects => 200, :method => 'GET', :path => 'domains', :query => options ) end end class Mock def list_domains(_options = {}) response = Excon::Response.new response.status = 200 response.body = {'domains' => data[:domains]} response end end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems