Sha256: ea65cbe730cd7bb1302aa4e8b1894ec69fe6a165cf97ac9ecbaa7c52a1fec0b2
Contents?: true
Size: 902 Bytes
Versions: 44
Compression:
Stored size: 902 Bytes
Contents
module Fog module Linode class Compute class Real # Get available stack scripts # # ==== Parameters # * options<~Hash>: # * distributionId<~Integer>: Limit the results to Stackscripts that can be applied to this distribution id # * distributionVendor<~String>: Debian, Ubuntu, Fedora, etc. # * keywords<~String>: Search terms # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def avail_stackscripts(options={}) request( :expects => 200, :method => 'GET', :query => { :api_action => 'avail.stackscripts' }.merge!(options) ) end end class Mock def avail_stackscripts(options={}) Fog::Mock.not_implemented end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems