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.



4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
# File 'lib/models/porcelain.rb', line 4066

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