Sha256: a03f0109d85b776a5948fa245337fa1fcd1f128d17604f2b3d1ee2a0e437dfbe
Contents?: true
Size: 530 Bytes
Versions: 20
Compression:
Stored size: 530 Bytes
Contents
module Fog module OpenStack class ContainerInfra class Real def delete_cluster_template(uuid_or_name) request( :expects => [204], :method => 'DELETE', :path => "clustertemplates/#{uuid_or_name}" ) end end class Mock def delete_cluster_template(_uuid_or_name) response = Excon::Response.new response.status = 204 response.body = {} response end end end end end
Version data entries
20 entries across 20 versions & 3 rubygems