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.
4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 |
# File 'lib/models/porcelain.rb', line 4197 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.
4187 4188 4189 |
# File 'lib/models/porcelain.rb', line 4187 def id @id end |
#name ⇒ Object
Unique human-readable name of the SecretStore.
4189 4190 4191 |
# File 'lib/models/porcelain.rb', line 4189 def name @name end |
#server_url ⇒ Object
The URL of the Delinea instance
4191 4192 4193 |
# File 'lib/models/porcelain.rb', line 4191 def server_url @server_url end |
#tags ⇒ Object
Tags is a map of key, value pairs.
4193 4194 4195 |
# File 'lib/models/porcelain.rb', line 4193 def @tags end |
#tenant_name ⇒ Object
The tenant name to target
4195 4196 4197 |
# File 'lib/models/porcelain.rb', line 4195 def tenant_name @tenant_name end |
Instance Method Details
#to_json(options = {}) ⇒ Object
4211 4212 4213 4214 4215 4216 4217 |
# File 'lib/models/porcelain.rb', line 4211 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 |