Sha256: 564644cf24103e51fdfcca56b8962f734b8a31ede76f252a529d430adac13908
Contents?: true
Size: 1.08 KB
Versions: 74
Compression:
Stored size: 1.08 KB
Contents
module Fog module Terremark module Shared module Real include Common # Get list of SSH keys for an organization # # ==== Parameters # * organization_id<~Integer> - Id of organization to lookup # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'description'<~String> - Description of organization # * 'links'<~Array> - An array of links to entities in the organization # * 'href'<~String> - location of link # * 'name'<~String> - name of link # * 'rel'<~String> - action to perform # * 'type'<~String> - type of link def get_keys_list(organization_id) response = request( :expects => 200, :method => 'GET', :parser => Fog::Parsers::Terremark::Shared::GetKeysList.new, :path => "api/extensions/v1.6/org/#{organization_id}/keys", :override_path => true ) response end end end end end
Version data entries
74 entries across 74 versions & 11 rubygems