Sha256: 4423928b7ee75565ea7387a516cc94a774b65b8c39c8a3d3adcaf781a2af2c7e
Contents?: true
Size: 884 Bytes
Versions: 76
Compression:
Stored size: 884 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Registers an existing template into the cloud. # # {CloudStack API Reference}[http://download.cloud.com/releases/3.0.0/api_3.0.0/user/registerTemplate.html] def register_template(options={}) options.merge!( 'command' => 'registerTemplate' ) request(options) end end # Real class Mock def register_template(options={}) mock_template_id = self.data[:images].keys.first registered_template = self.data[:images][mock_template_id] { 'registertemplateresponse' => { 'count' => 1, 'template' => [registered_template] } } end end # Mock end # Cloudstack end # Compute end #Fog
Version data entries
76 entries across 76 versions & 11 rubygems