Sha256: 4cd95b592b20e8998ef71dc647ff5706886c255c5c53bb5879c49690392c6c24
Contents?: true
Size: 824 Bytes
Versions: 16
Compression:
Stored size: 824 Bytes
Contents
module Fog module Linode 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
Version data entries
16 entries across 16 versions & 2 rubygems