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.



5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
# File 'lib/models/porcelain.rb', line 5808

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