Sha256: 7c44ba4307f0c22e7d665f0fbaed8e3712d2050afe40b7c76e1a8a3e4cfe6f27
Contents?: true
Size: 529 Bytes
Versions: 33
Compression:
Stored size: 529 Bytes
Contents
module Fog module ContainerInfra class OpenStack 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
33 entries across 31 versions & 3 rubygems