class ManageIQ::API::Client::Identity

Attributes

group[R]
group_href[R]
groups[R]
name[R]
role[R]
role_href[R]
tenant[R]
user_href[R]
userid[R]

Public Class Methods

new(identity_spec) click to toggle source
# File lib/manageiq/api/client/identity.rb, line 15
def initialize(identity_spec)
  @userid      = identity_spec["userid"]
  @name        = identity_spec["name"]
  @user_href   = identity_spec["user_href"]
  @group       = identity_spec["group"]
  @group_href  = identity_spec["group_href"]
  @role        = identity_spec["role"]
  @role_href   = identity_spec["role_href"]
  @tenant      = identity_spec["tenant"]
  @groups      = identity_spec["groups"]
end