Class: SDM::DelineaStore
- Inherits:
-
Object
- Object
- SDM::DelineaStore
- 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.
-
#server_url ⇒ Object
The URL of the Delinea instance.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
-
#tenant_name ⇒ Object
The tenant name to target.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil, server_url: nil, tags: nil, tenant_name: nil) ⇒ DelineaStore
constructor
A new instance of DelineaStore.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, server_url: nil, tags: nil, tenant_name: nil) ⇒ DelineaStore
Returns a new instance of DelineaStore.
4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 |
# File 'lib/models/porcelain.rb', line 4848 def initialize( id: nil, name: nil, server_url: nil, tags: nil, tenant_name: nil ) @id = id == nil ? "" : id @name = name == nil ? "" : name @server_url = server_url == nil ? "" : server_url @tags = == nil ? SDM::() : @tenant_name = tenant_name == nil ? "" : tenant_name end |
Instance Attribute Details
#id ⇒ Object
Unique identifier of the SecretStore.
4838 4839 4840 |
# File 'lib/models/porcelain.rb', line 4838 def id @id end |
#name ⇒ Object
Unique human-readable name of the SecretStore.
4840 4841 4842 |
# File 'lib/models/porcelain.rb', line 4840 def name @name end |
#server_url ⇒ Object
The URL of the Delinea instance
4842 4843 4844 |
# File 'lib/models/porcelain.rb', line 4842 def server_url @server_url end |
#tags ⇒ Object
Tags is a map of key, value pairs.
4844 4845 4846 |
# File 'lib/models/porcelain.rb', line 4844 def @tags end |
#tenant_name ⇒ Object
The tenant name to target
4846 4847 4848 |
# File 'lib/models/porcelain.rb', line 4846 def tenant_name @tenant_name end |
Instance Method Details
#to_json(options = {}) ⇒ Object
4862 4863 4864 4865 4866 4867 4868 |
# File 'lib/models/porcelain.rb', line 4862 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 |