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.



4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
# File 'lib/models/porcelain.rb', line 4036

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