Sha256: e2e9503cdd7b204c8685ba9edb1f016b0212157a9750d1a1e8b0119a0a56f01c
Contents?: true
Size: 882 Bytes
Versions: 11
Compression:
Stored size: 882 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
11 entries across 11 versions & 3 rubygems