Class: SDM::VaultTokenStore
- Inherits:
-
Object
- Object
- SDM::VaultTokenStore
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Unique identifier of the SecretStore.
-
#name ⇒ Object
Unique human-readable name of the SecretStore.
-
#namespace ⇒ Object
Returns the value of attribute namespace.
-
#server_address ⇒ Object
Returns the value of attribute server_address.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil, namespace: nil, server_address: nil, tags: nil) ⇒ VaultTokenStore
constructor
A new instance of VaultTokenStore.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, namespace: nil, server_address: nil, tags: nil) ⇒ VaultTokenStore
Returns a new instance of VaultTokenStore.
8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 |
# File 'lib/models/porcelain.rb', line 8439 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 = == nil ? SDM::() : end |
Instance Attribute Details
#id ⇒ Object
Unique identifier of the SecretStore.
8429 8430 8431 |
# File 'lib/models/porcelain.rb', line 8429 def id @id end |
#name ⇒ Object
Unique human-readable name of the SecretStore.
8431 8432 8433 |
# File 'lib/models/porcelain.rb', line 8431 def name @name end |
#namespace ⇒ Object
Returns the value of attribute namespace.
8433 8434 8435 |
# File 'lib/models/porcelain.rb', line 8433 def namespace @namespace end |
#server_address ⇒ Object
Returns the value of attribute server_address.
8435 8436 8437 |
# File 'lib/models/porcelain.rb', line 8435 def server_address @server_address end |
#tags ⇒ Object
Tags is a map of key, value pairs.
8437 8438 8439 |
# File 'lib/models/porcelain.rb', line 8437 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8453 8454 8455 8456 8457 8458 8459 |
# File 'lib/models/porcelain.rb', line 8453 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 |