Sha256: ce6baab590559a7f5936e7c88aaed7ce321de51025243da53059867b221dfb11
Contents?: true
Size: 505 Bytes
Versions: 4
Compression:
Stored size: 505 Bytes
Contents
module Fog module ContainerInfra class HuaweiCloud class Real def delete_cluster(uuid_or_name) request( :expects => [204], :method => 'DELETE', :path => "clusters/#{uuid_or_name}" ) end end class Mock def delete_cluster(_uuid_or_name) response = Excon::Response.new response.status = 204 response.body = {} response end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems