Sha256: d668ee2910d56a9d5315792a8352d2df22b8d7b7e6a1e2d80b48858266d7cf38
Contents?: true
Size: 848 Bytes
Versions: 9
Compression:
Stored size: 848 Bytes
Contents
module Fog module GoGrid class Compute class Real # List passwords # # ==== Parameters # * options<~Hash>: # * 'datacenter'<~String> - datacenter to limit results to # * 'isSandbox'<~String> - If true only returns Image Sandbox servers, in ['false', 'true'] # * 'num_items'<~Integer> - Number of items to return # * 'page'<~Integer> - Page index for paginated results # * 'server.type'<~String> - server type to limit results to # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO: docs def support_password_list(options={}) request( :path => 'support/password/list', :query => options ) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems