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

Returns a new instance of Policy.



10785
10786
10787
10788
10789
10790
10791
10792
10793
10794
10795
# File 'lib/models/porcelain.rb', line 10785

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.



10777
10778
10779
# File 'lib/models/porcelain.rb', line 10777

def description
  @description
end

#idObject

Unique identifier of the Policy.



10779
10780
10781
# File 'lib/models/porcelain.rb', line 10779

def id
  @id
end

#nameObject

Unique human-readable name of the Policy.



10781
10782
10783
# File 'lib/models/porcelain.rb', line 10781

def name
  @name
end

#policyObject

The content of the Policy, in Cedar policy language.



10783
10784
10785
# File 'lib/models/porcelain.rb', line 10783

def policy
  @policy
end

Instance Method Details

#to_json(options = {}) ⇒ Object



10797
10798
10799
10800
10801
10802
10803
# File 'lib/models/porcelain.rb', line 10797

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