Class: SDM::AccessRequestConfig
- Inherits:
-
Object
- Object
- SDM::AccessRequestConfig
- Defined in:
- lib/models/porcelain.rb
Overview
AccessRequestConfig holds the information required to request access to a resource
Instance Attribute Summary collapse
-
#duration ⇒ Object
The time access should end, defaults to the next occurance of 5 pm.
-
#reason ⇒ Object
The reason for access.
-
#resource_id ⇒ Object
The resource for which access is being requested.
-
#start_from ⇒ Object
The time access should start, defaults to now.
Instance Method Summary collapse
-
#initialize(duration: nil, reason: nil, resource_id: nil, start_from: nil) ⇒ AccessRequestConfig
constructor
A new instance of AccessRequestConfig.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(duration: nil, reason: nil, resource_id: nil, start_from: nil) ⇒ AccessRequestConfig
Returns a new instance of AccessRequestConfig.
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 |
# File 'lib/models/porcelain.rb', line 1299 def initialize( duration: nil, reason: nil, resource_id: nil, start_from: nil ) @duration = duration == nil ? "" : duration @reason = reason == nil ? "" : reason @resource_id = resource_id == nil ? "" : resource_id @start_from = start_from == nil ? nil : start_from end |
Instance Attribute Details
#duration ⇒ Object
The time access should end, defaults to the next occurance of 5 pm
1291 1292 1293 |
# File 'lib/models/porcelain.rb', line 1291 def duration @duration end |
#reason ⇒ Object
The reason for access
1293 1294 1295 |
# File 'lib/models/porcelain.rb', line 1293 def reason @reason end |
#resource_id ⇒ Object
The resource for which access is being requested
1295 1296 1297 |
# File 'lib/models/porcelain.rb', line 1295 def resource_id @resource_id end |
#start_from ⇒ Object
The time access should start, defaults to now
1297 1298 1299 |
# File 'lib/models/porcelain.rb', line 1297 def start_from @start_from end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1311 1312 1313 1314 1315 1316 1317 |
# File 'lib/models/porcelain.rb', line 1311 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 |