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.



9163
9164
9165
9166
9167
9168
9169
9170
9171
9172
9173
# File 'lib/models/porcelain.rb', line 9163

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.



9155
9156
9157
# File 'lib/models/porcelain.rb', line 9155

def description
  @description
end

#idObject

Unique identifier of the Policy.



9157
9158
9159
# File 'lib/models/porcelain.rb', line 9157

def id
  @id
end

#nameObject

Unique human-readable name of the Policy.



9159
9160
9161
# File 'lib/models/porcelain.rb', line 9159

def name
  @name
end

#policyObject

The content of the Policy, in Cedar policy language.



9161
9162
9163
# File 'lib/models/porcelain.rb', line 9161

def policy
  @policy
end

Instance Method Details

#to_json(options = {}) ⇒ Object



9175
9176
9177
9178
9179
9180
9181
# File 'lib/models/porcelain.rb', line 9175

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