Class: SDM::Role

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

A Role is a collection of access grants, and typically corresponds to a team, Active Directory OU, or other organizational unit. Users are granted access to resources by assigning them to roles.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, name: nil, composite: nil, tags: nil) ⇒ Role

Returns a new instance of Role.



6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
# File 'lib/models/porcelain.rb', line 6635

def initialize(
  id: nil,
  name: nil,
  composite: nil,
  tags: nil
)
  if id != nil
    @id = id
  end
  if name != nil
    @name = name
  end
  if composite != nil
    @composite = composite
  end
  if tags != nil
    @tags = tags
  end
end

Instance Attribute Details

#compositeObject

True if the Role is a composite role.



6631
6632
6633
# File 'lib/models/porcelain.rb', line 6631

def composite
  @composite
end

#idObject

Unique identifier of the Role.



6627
6628
6629
# File 'lib/models/porcelain.rb', line 6627

def id
  @id
end

#nameObject

Unique human-readable name of the Role.



6629
6630
6631
# File 'lib/models/porcelain.rb', line 6629

def name
  @name
end

#tagsObject

Tags is a map of key, value pairs.



6633
6634
6635
# File 'lib/models/porcelain.rb', line 6633

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



6655
6656
6657
6658
6659
6660
6661
# File 'lib/models/porcelain.rb', line 6655

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end