Class: SDM::Policy
- Inherits:
-
Object
- Object
- SDM::Policy
- 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
-
#description ⇒ Object
Optional description of the Policy.
-
#id ⇒ Object
Unique identifier of the Policy.
-
#name ⇒ Object
Unique human-readable name of the Policy.
-
#policy ⇒ Object
The content of the Policy, in Cedar policy language.
Instance Method Summary collapse
-
#initialize(description: nil, id: nil, name: nil, policy: nil) ⇒ Policy
constructor
A new instance of Policy.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(description: nil, id: nil, name: nil, policy: nil) ⇒ Policy
Returns a new instance of Policy.
12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 |
# File 'lib/models/porcelain.rb', line 12098 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
#description ⇒ Object
Optional description of the Policy.
12090 12091 12092 |
# File 'lib/models/porcelain.rb', line 12090 def description @description end |
#id ⇒ Object
Unique identifier of the Policy.
12092 12093 12094 |
# File 'lib/models/porcelain.rb', line 12092 def id @id end |
#name ⇒ Object
Unique human-readable name of the Policy.
12094 12095 12096 |
# File 'lib/models/porcelain.rb', line 12094 def name @name end |
#policy ⇒ Object
The content of the Policy, in Cedar policy language.
12096 12097 12098 |
# File 'lib/models/porcelain.rb', line 12096 def policy @policy end |
Instance Method Details
#to_json(options = {}) ⇒ Object
12110 12111 12112 12113 12114 12115 12116 |
# File 'lib/models/porcelain.rb', line 12110 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |