Method: SDM::GCPStore#initialize

Defined in:
lib/models/porcelain.rb

#initialize(id: nil, name: nil, projectid: nil, tags: nil) ⇒ GCPStore

Returns a new instance of GCPStore.



4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
# File 'lib/models/porcelain.rb', line 4705

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