Class: Fog::Compute::Ecloud::AdminOrganization
Instance Attribute Summary
#loaded
Attributes inherited from Model
#collection, #connection
Instance Method Summary
collapse
#load_unless_loaded!, #reload
Methods inherited from Model
#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for
#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#authentication_levels ⇒ Object
25
26
27
|
# File 'lib/fog/ecloud/models/compute/admin_organization.rb', line 25
def authentication_levels
@authentication_levels = Fog::Compute::Ecloud::AuthenticationLevels.new(:connection => connection, :href => "/cloudapi/ecloud/admin/organizations/#{org_id}/authenticationLevels")
end
|
#id ⇒ Object
29
30
31
|
# File 'lib/fog/ecloud/models/compute/admin_organization.rb', line 29
def id
href.scan(/\d+/)[0]
end
|
#login_banner ⇒ Object
21
22
23
|
# File 'lib/fog/ecloud/models/compute/admin_organization.rb', line 21
def login_banner
@login_banner = Fog::Compute::Ecloud::LoginBanner.new(:connection => connection, :href => "/cloudapi/ecloud/admin/organizations/#{org_id}/loginBanner")
end
|
#org_id ⇒ Object
33
34
35
|
# File 'lib/fog/ecloud/models/compute/admin_organization.rb', line 33
def org_id
other_links[:Link].detect { |l| l[:type] == "application/vnd.tmrk.cloud.organization" }[:href].scan(/\d+/)[0]
end
|
#password_complexity_rules ⇒ Object
17
18
19
|
# File 'lib/fog/ecloud/models/compute/admin_organization.rb', line 17
def password_complexity_rules
@password_complexity_rules = Fog::Compute::Ecloud::PasswordComplexityRules.new(:connection => connection, :href => "/cloudapi/ecloud/admin/organizations/#{org_id}/passwordComplexityRules")
end
|
#ssh_keys ⇒ Object
13
14
15
|
# File 'lib/fog/ecloud/models/compute/admin_organization.rb', line 13
def ssh_keys
@ssh_keys = Fog::Compute::Ecloud::SshKeys.new(:connection => connection, :href => "/cloudapi/ecloud/admin/sshKeys/organizations/#{org_id}")
end
|