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.



8479
8480
8481
8482
8483
8484
8485
8486
8487
8488
8489
# File 'lib/models/porcelain.rb', line 8479

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.



8471
8472
8473
# File 'lib/models/porcelain.rb', line 8471

def description
  @description
end

#idObject

Unique identifier of the Policy.



8473
8474
8475
# File 'lib/models/porcelain.rb', line 8473

def id
  @id
end

#nameObject

Unique human-readable name of the Policy.



8475
8476
8477
# File 'lib/models/porcelain.rb', line 8475

def name
  @name
end

#policyObject

The content of the Policy, in Cedar policy language.



8477
8478
8479
# File 'lib/models/porcelain.rb', line 8477

def policy
  @policy
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8491
8492
8493
8494
8495
8496
8497
# File 'lib/models/porcelain.rb', line 8491

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