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.



11983
11984
11985
11986
11987
11988
11989
11990
11991
11992
11993
# File 'lib/models/porcelain.rb', line 11983

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.



11975
11976
11977
# File 'lib/models/porcelain.rb', line 11975

def description
  @description
end

#idObject

Unique identifier of the Policy.



11977
11978
11979
# File 'lib/models/porcelain.rb', line 11977

def id
  @id
end

#nameObject

Unique human-readable name of the Policy.



11979
11980
11981
# File 'lib/models/porcelain.rb', line 11979

def name
  @name
end

#policyObject

The content of the Policy, in Cedar policy language.



11981
11982
11983
# File 'lib/models/porcelain.rb', line 11981

def policy
  @policy
end

Instance Method Details

#to_json(options = {}) ⇒ Object



11995
11996
11997
11998
11999
12000
12001
# File 'lib/models/porcelain.rb', line 11995

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