Class: SDM::Policy

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

Overview

Policy is a collection of one or more statements that enforce fine-grained access control for the users of an organization.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(description: nil, id: nil, name: nil, policy: nil) ⇒ Policy



10603
10604
10605
10606
10607
10608
10609
10610
10611
10612
10613
# File 'lib/models/porcelain.rb', line 10603

def initialize(
  description: nil,
  id: nil,
  name: nil,
  policy: nil
)
  @description = description == nil ? "" : description
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @policy = policy == nil ? "" : policy
end

Instance Attribute Details

#descriptionObject

Optional description of the Policy.



10595
10596
10597
# File 'lib/models/porcelain.rb', line 10595

def description
  @description
end

#idObject

Unique identifier of the Policy.



10597
10598
10599
# File 'lib/models/porcelain.rb', line 10597

def id
  @id
end

#nameObject

Unique human-readable name of the Policy.



10599
10600
10601
# File 'lib/models/porcelain.rb', line 10599

def name
  @name
end

#policyObject

The content of the Policy, in Cedar policy language.



10601
10602
10603
# File 'lib/models/porcelain.rb', line 10601

def policy
  @policy
end

Instance Method Details

#to_json(options = {}) ⇒ Object



10615
10616
10617
10618
10619
10620
10621
# File 'lib/models/porcelain.rb', line 10615

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