Class: SDM::Token

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

Overview

A Token is an account providing tokenized access for automation or integration use. Tokens include admin tokens, API keys, and SCIM tokens.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(account_type: nil, deadline: nil, duration: nil, id: nil, name: nil, permissions: nil, rekeyed: nil, suspended: nil, tags: nil) ⇒ Token

Returns a new instance of Token.



11978
11979
11980
11981
11982
11983
11984
11985
11986
11987
11988
11989
11990
11991
11992
11993
11994
11995
11996
11997
11998
# File 'lib/models/porcelain.rb', line 11978

def initialize(
  account_type: nil,
  deadline: nil,
  duration: nil,
  id: nil,
  name: nil,
  permissions: nil,
  rekeyed: nil,
  suspended: nil,
  tags: nil
)
  @account_type =  == nil ? "" : 
  @deadline = deadline == nil ? nil : deadline
  @duration = duration == nil ? nil : duration
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @permissions = permissions == nil ? [] : permissions
  @rekeyed = rekeyed == nil ? nil : rekeyed
  @suspended = suspended == nil ? false : suspended
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end

Instance Attribute Details

#account_typeObject

Corresponds to the type of token, e.g. api or admin-token.



11960
11961
11962
# File 'lib/models/porcelain.rb', line 11960

def 
  @account_type
end

#deadlineObject

The timestamp when the Token will expire.



11962
11963
11964
# File 'lib/models/porcelain.rb', line 11962

def deadline
  @deadline
end

#durationObject

Duration from token creation to expiration.



11964
11965
11966
# File 'lib/models/porcelain.rb', line 11964

def duration
  @duration
end

#idObject

Unique identifier of the Token.



11966
11967
11968
# File 'lib/models/porcelain.rb', line 11966

def id
  @id
end

#nameObject

Unique human-readable name of the Token.



11968
11969
11970
# File 'lib/models/porcelain.rb', line 11968

def name
  @name
end

#permissionsObject

Permissions assigned to the token, e.g. role:create.



11970
11971
11972
# File 'lib/models/porcelain.rb', line 11970

def permissions
  @permissions
end

#rekeyedObject

The timestamp when the Token was last rekeyed.



11972
11973
11974
# File 'lib/models/porcelain.rb', line 11972

def rekeyed
  @rekeyed
end

#suspendedObject

Reserved for future use. Always false for tokens.



11974
11975
11976
# File 'lib/models/porcelain.rb', line 11974

def suspended
  @suspended
end

#tagsObject

Tags is a map of key, value pairs.



11976
11977
11978
# File 'lib/models/porcelain.rb', line 11976

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



12000
12001
12002
12003
12004
12005
12006
# File 'lib/models/porcelain.rb', line 12000

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