Sha256: 66470af258586c7c54ad74ff83fa85c34f0cfba45b9d35cb3bdaa129b310a419
Contents?: true
Size: 1.35 KB
Versions: 96
Compression:
Stored size: 1.35 KB
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve settings for this organization. # # Organization settings are divided into categories. This request # retrieves all categories of organization settings. # # @param [String] id Object identitifier of the organization. # @return [Excon:Response] # * body<~Hash>: # * :href<~String> - The URI of the entity. # * :type<~String> - The MIME type of the entity. # * :OrgGeneralSettings<~Hash>: # * :VAppLeaseSettings<~Hash>: # * :VAppTemplateLeaseSettings<~Hash>: # * :OrgLdapSettings<~Hash>: # * :OrgEmailSettings<~Hash>: # * :OrgPasswordPolicySettings<~Hash>: # * :OrgOperationLimitsSettings<~Hash>: # * :OrgFederationSettings<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-OrgSettings.html # @since vCloud API version 0.9 def get_org_settings(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "admin/org/#{id}/settings" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems