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.
8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 |
# File 'lib/models/porcelain.rb', line 8066 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.
8058 8059 8060 |
# File 'lib/models/porcelain.rb', line 8058 def description @description end |
#id ⇒ Object
Unique identifier of the Policy.
8060 8061 8062 |
# File 'lib/models/porcelain.rb', line 8060 def id @id end |
#name ⇒ Object
Unique human-readable name of the Policy.
8062 8063 8064 |
# File 'lib/models/porcelain.rb', line 8062 def name @name end |
#policy ⇒ Object
The content of the Policy, in Cedar policy language.
8064 8065 8066 |
# File 'lib/models/porcelain.rb', line 8064 def policy @policy end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8078 8079 8080 8081 8082 8083 8084 |
# File 'lib/models/porcelain.rb', line 8078 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 |