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.
10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 |
# File 'lib/models/porcelain.rb', line 10950 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.
10942 10943 10944 |
# File 'lib/models/porcelain.rb', line 10942 def description @description end |
#id ⇒ Object
Unique identifier of the Policy.
10944 10945 10946 |
# File 'lib/models/porcelain.rb', line 10944 def id @id end |
#name ⇒ Object
Unique human-readable name of the Policy.
10946 10947 10948 |
# File 'lib/models/porcelain.rb', line 10946 def name @name end |
#policy ⇒ Object
The content of the Policy, in Cedar policy language.
10948 10949 10950 |
# File 'lib/models/porcelain.rb', line 10948 def policy @policy end |
Instance Method Details
#to_json(options = {}) ⇒ Object
10962 10963 10964 10965 10966 10967 10968 |
# File 'lib/models/porcelain.rb', line 10962 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 |