Class: SDM::AccessRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

AccessRequests are requests for access to a resource that may match a Workflow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(account_id: nil, grant_id: nil, id: nil, reason: nil, resource_id: nil, start_from: nil, status: nil, status_at: nil, valid_until: nil, workflow_id: nil) ⇒ AccessRequest

Returns a new instance of AccessRequest.



725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
# File 'lib/models/porcelain.rb', line 725

def initialize(
  account_id: nil,
  grant_id: nil,
  id: nil,
  reason: nil,
  resource_id: nil,
  start_from: nil,
  status: nil,
  status_at: nil,
  valid_until: nil,
  workflow_id: nil
)
  @account_id =  == nil ? "" : 
  @grant_id = grant_id == nil ? "" : grant_id
  @id = id == nil ? "" : id
  @reason = reason == nil ? "" : reason
  @resource_id = resource_id == nil ? "" : resource_id
  @start_from = start_from == nil ? nil : start_from
  @status = status == nil ? "" : status
  @status_at = status_at == nil ? nil : status_at
  @valid_until = valid_until == nil ? nil : valid_until
  @workflow_id = workflow_id == nil ? "" : workflow_id
end

Instance Attribute Details

#account_idObject

The account that initiated the request.



704
705
706
# File 'lib/models/porcelain.rb', line 704

def 
  @account_id
end

#grant_idObject

The account grant created, if it exists.



706
707
708
# File 'lib/models/porcelain.rb', line 706

def grant_id
  @grant_id
end

#idObject

The access request id.



708
709
710
# File 'lib/models/porcelain.rb', line 708

def id
  @id
end

#reasonObject

The reason the access was requested.



710
711
712
# File 'lib/models/porcelain.rb', line 710

def reason
  @reason
end

#resource_idObject

The resource id.



712
713
714
# File 'lib/models/porcelain.rb', line 712

def resource_id
  @resource_id
end

#start_fromObject

The timestamp when the requested access will be granted. If this field is not specified it will default to the current time.



715
716
717
# File 'lib/models/porcelain.rb', line 715

def start_from
  @start_from
end

#statusObject

The status of the access request.



717
718
719
# File 'lib/models/porcelain.rb', line 717

def status
  @status
end

#status_atObject

The timestamp when the status changed.



719
720
721
# File 'lib/models/porcelain.rb', line 719

def status_at
  @status_at
end

#valid_untilObject

The timestamp when the requested access will expire.



721
722
723
# File 'lib/models/porcelain.rb', line 721

def valid_until
  @valid_until
end

#workflow_idObject

The workflow the request bound to.



723
724
725
# File 'lib/models/porcelain.rb', line 723

def workflow_id
  @workflow_id
end

Instance Method Details

#to_json(options = {}) ⇒ Object



749
750
751
752
753
754
755
# File 'lib/models/porcelain.rb', line 749

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end