Class: SDM::VaultTokenStore

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, name: nil, namespace: nil, server_address: nil, tags: nil) ⇒ VaultTokenStore

Returns a new instance of VaultTokenStore.



8444
8445
8446
8447
8448
8449
8450
8451
8452
8453
8454
8455
8456
# File 'lib/models/porcelain.rb', line 8444

def initialize(
  id: nil,
  name: nil,
  namespace: nil,
  server_address: nil,
  tags: nil
)
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @namespace = namespace == nil ? "" : namespace
  @server_address = server_address == nil ? "" : server_address
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end

Instance Attribute Details

#idObject

Unique identifier of the SecretStore.



8434
8435
8436
# File 'lib/models/porcelain.rb', line 8434

def id
  @id
end

#nameObject

Unique human-readable name of the SecretStore.



8436
8437
8438
# File 'lib/models/porcelain.rb', line 8436

def name
  @name
end

#namespaceObject

Returns the value of attribute namespace.



8438
8439
8440
# File 'lib/models/porcelain.rb', line 8438

def namespace
  @namespace
end

#server_addressObject

Returns the value of attribute server_address.



8440
8441
8442
# File 'lib/models/porcelain.rb', line 8440

def server_address
  @server_address
end

#tagsObject

Tags is a map of key, value pairs.



8442
8443
8444
# File 'lib/models/porcelain.rb', line 8442

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



8458
8459
8460
8461
8462
8463
8464
# File 'lib/models/porcelain.rb', line 8458

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