Class: SDM::CyberarkConjurStore

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

Overview

CyberarkConjurStore is currently unstable, and its API may change, or it may be removed, without a major version bump.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(appurl: nil, id: nil, name: nil, tags: nil) ⇒ CyberarkConjurStore

Returns a new instance of CyberarkConjurStore.



2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
# File 'lib/models/porcelain.rb', line 2104

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

Instance Attribute Details

#appurlObject

Returns the value of attribute appurl.



2096
2097
2098
# File 'lib/models/porcelain.rb', line 2096

def appurl
  @appurl
end

#idObject

Unique identifier of the SecretStore.



2098
2099
2100
# File 'lib/models/porcelain.rb', line 2098

def id
  @id
end

#nameObject

Unique human-readable name of the SecretStore.



2100
2101
2102
# File 'lib/models/porcelain.rb', line 2100

def name
  @name
end

#tagsObject

Tags is a map of key, value pairs.



2102
2103
2104
# File 'lib/models/porcelain.rb', line 2102

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



2116
2117
2118
2119
2120
2121
2122
# File 'lib/models/porcelain.rb', line 2116

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