Class: Fog::Compute::Ecloud::AdminOrganization
- Inherits:
-
Ecloud::Model
- Object
- Model
- Ecloud::Model
- Fog::Compute::Ecloud::AdminOrganization
- Defined in:
- lib/fog/compute/ecloud/models/admin_organization.rb
Instance Attribute Summary
Attributes inherited from Ecloud::Model
Instance Method Summary collapse
- #authentication_levels ⇒ Object
- #id ⇒ Object
- #login_banner ⇒ Object
- #organization ⇒ Object
- #password_complexity_rules ⇒ Object
- #reload ⇒ Object
- #ssh_keys ⇒ Object
Methods inherited from Ecloud::Model
Instance Method Details
#authentication_levels ⇒ Object
25 26 27 |
# File 'lib/fog/compute/ecloud/models/admin_organization.rb', line 25 def authentication_levels @authentication_levels = Fog::Compute::Ecloud::AuthenticationLevels.new(:service => service, :href => "#{service.base_path}/admin/organizations/#{organization.id}/authenticationLevels") end |
#id ⇒ Object
29 30 31 |
# File 'lib/fog/compute/ecloud/models/admin_organization.rb', line 29 def id href.scan(/\d+/)[0] end |
#login_banner ⇒ Object
21 22 23 |
# File 'lib/fog/compute/ecloud/models/admin_organization.rb', line 21 def @login_banner = Fog::Compute::Ecloud::LoginBanner.new(:service => service, :href => "#{service.base_path}/admin/organizations/#{organization.id}/loginBanner") end |
#organization ⇒ Object
33 34 35 36 37 38 39 |
# File 'lib/fog/compute/ecloud/models/admin_organization.rb', line 33 def organization @organization ||= begin reload unless other_links organization_link = other_links.find{|l| l[:type] == "application/vnd.tmrk.cloud.organization"} self.service.organizations.new(organization_link) end end |
#password_complexity_rules ⇒ Object
17 18 19 |
# File 'lib/fog/compute/ecloud/models/admin_organization.rb', line 17 def password_complexity_rules @password_complexity_rules = Fog::Compute::Ecloud::PasswordComplexityRules.new(:service => service, :href => "#{service.base_path}/admin/organizations/#{organization.id}/passwordComplexityRules") end |
#reload ⇒ Object
41 42 43 44 |
# File 'lib/fog/compute/ecloud/models/admin_organization.rb', line 41 def reload @organization = nil super end |