Class: SDM::RemoteIdentity

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

Overview

RemoteIdentities define the username to be used for a specific account when connecting to a remote resource using that group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(account_id: nil, id: nil, remote_identity_group_id: nil, username: nil) ⇒ RemoteIdentity

Returns a new instance of RemoteIdentity.



5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
# File 'lib/models/porcelain.rb', line 5022

def initialize(
  account_id: nil,
  id: nil,
  remote_identity_group_id: nil,
  username: nil
)
  @account_id =  == nil ? "" : 
  @id = id == nil ? "" : id
  @remote_identity_group_id = remote_identity_group_id == nil ? "" : remote_identity_group_id
  @username = username == nil ? "" : username
end

Instance Attribute Details

#account_idObject

The account for this remote identity.



5014
5015
5016
# File 'lib/models/porcelain.rb', line 5014

def 
  @account_id
end

#idObject

Unique identifier of the RemoteIdentity.



5016
5017
5018
# File 'lib/models/porcelain.rb', line 5016

def id
  @id
end

#remote_identity_group_idObject

The remote identity group.



5018
5019
5020
# File 'lib/models/porcelain.rb', line 5018

def remote_identity_group_id
  @remote_identity_group_id
end

#usernameObject

The username to be used as the remote identity for this account.



5020
5021
5022
# File 'lib/models/porcelain.rb', line 5020

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



5034
5035
5036
5037
5038
5039
5040
# File 'lib/models/porcelain.rb', line 5034

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