mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
40 lines
1.5 KiB
Ruby
40 lines
1.5 KiB
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class Ecloud
|
||
|
class AdminOrganization < Fog::Ecloud::Model
|
||
|
identity :href
|
||
|
|
||
|
attribute :name, :aliases => :Name
|
||
|
attribute :type, :aliases => :Type
|
||
|
attribute :other_links, :aliases => :Links
|
||
|
attribute :multifactor_summary, :aliases => :MultifactorSummary
|
||
|
attribute :support_access, :aliases => :SupportAccess
|
||
|
|
||
|
def ssh_keys
|
||
|
@ssh_keys = Fog::Compute::Ecloud::SshKeys.new(:connection => connection, :href => "/cloudapi/ecloud/admin/sshKeys/organizations/#{org_id}")
|
||
|
end
|
||
|
|
||
|
def password_complexity_rules
|
||
|
@password_complexity_rules = Fog::Compute::Ecloud::PasswordComplexityRules.new(:connection => connection, :href => "/cloudapi/ecloud/admin/organizations/#{org_id}/passwordComplexityRules")
|
||
|
end
|
||
|
|
||
|
def login_banner
|
||
|
@login_banner = Fog::Compute::Ecloud::LoginBanner.new(:connection => connection, :href => "/cloudapi/ecloud/admin/organizations/#{org_id}/loginBanner")
|
||
|
end
|
||
|
|
||
|
def authentication_levels
|
||
|
@authentication_levels = Fog::Compute::Ecloud::AuthenticationLevels.new(:connection => connection, :href => "/cloudapi/ecloud/admin/organizations/#{org_id}/authenticationLevels")
|
||
|
end
|
||
|
|
||
|
def id
|
||
|
href.scan(/\d+/)[0]
|
||
|
end
|
||
|
|
||
|
def org_id
|
||
|
other_links[:Link].detect { |l| l[:type] == "application/vnd.tmrk.cloud.organization" }[:href].scan(/\d+/)[0]
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|