Method: SDM::CyberarkPAMStore#initialize

Defined in:
lib/models/porcelain.rb

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

Returns a new instance of CyberarkPAMStore.



3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
# File 'lib/models/porcelain.rb', line 3325

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