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.
10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 |
# File 'lib/models/porcelain.rb', line 10373 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.
10365 10366 10367 |
# File 'lib/models/porcelain.rb', line 10365 def description @description end |
#id ⇒ Object
Unique identifier of the Policy.
10367 10368 10369 |
# File 'lib/models/porcelain.rb', line 10367 def id @id end |
#name ⇒ Object
Unique human-readable name of the Policy.
10369 10370 10371 |
# File 'lib/models/porcelain.rb', line 10369 def name @name end |
#policy ⇒ Object
The content of the Policy, in Cedar policy language.
10371 10372 10373 |
# File 'lib/models/porcelain.rb', line 10371 def policy @policy end |
Instance Method Details
#to_json(options = {}) ⇒ Object
10385 10386 10387 10388 10389 10390 10391 |
# File 'lib/models/porcelain.rb', line 10385 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 |