Sha256: 5a6311984b83e2d6895ca46a48b8bacfa759d1d39c5d796236913422198656ee
Contents?: true
Size: 589 Bytes
Versions: 4
Compression:
Stored size: 589 Bytes
Contents
module Fog module DNS class HuaweiCloud 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
4 entries across 4 versions & 1 rubygems