Sha256: d7684ba75de5871c91c4cb27b93f1c478b4254b6adb113fb35f82310a09e2fcc
Contents?: true
Size: 846 Bytes
Versions: 43
Compression:
Stored size: 846 Bytes
Contents
module Fog module Compute class GoGrid 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
43 entries across 41 versions & 6 rubygems