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
The namespace to make requests within.
-
#server_address ⇒ Object
The URL of the Vault to target.
-
#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.
19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 |
# File 'lib/models/porcelain.rb', line 19185 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.
19175 19176 19177 |
# File 'lib/models/porcelain.rb', line 19175 def id @id end |
#name ⇒ Object
Unique human-readable name of the SecretStore.
19177 19178 19179 |
# File 'lib/models/porcelain.rb', line 19177 def name @name end |
#namespace ⇒ Object
The namespace to make requests within
19179 19180 19181 |
# File 'lib/models/porcelain.rb', line 19179 def namespace @namespace end |
#server_address ⇒ Object
The URL of the Vault to target
19181 19182 19183 |
# File 'lib/models/porcelain.rb', line 19181 def server_address @server_address end |
#tags ⇒ Object
Tags is a map of key, value pairs.
19183 19184 19185 |
# File 'lib/models/porcelain.rb', line 19183 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
19199 19200 19201 19202 19203 19204 19205 |
# File 'lib/models/porcelain.rb', line 19199 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 |