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.



2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
# File 'lib/models/porcelain.rb', line 2870

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