5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
|
# File 'lib/models/porcelain.rb', line 5355
def initialize(
id: nil,
name: nil,
healthy: nil,
tags: nil,
secret_store_id: nil,
egress_filter: nil,
hostname: nil,
username: nil,
password: nil,
database: nil,
port_override: nil,
schema: nil,
port: nil,
override_database: nil
)
if id != nil
@id = id
end
if name != nil
@name = name
end
if healthy != nil
@healthy = healthy
end
if tags != nil
@tags = tags
end
if secret_store_id != nil
@secret_store_id = secret_store_id
end
if egress_filter != nil
@egress_filter = egress_filter
end
if hostname != nil
@hostname = hostname
end
if username != nil
@username = username
end
if password != nil
@password = password
end
if database != nil
@database = database
end
if port_override != nil
@port_override = port_override
end
if schema != nil
@schema = schema
end
if port != nil
@port = port
end
if override_database != nil
@override_database = override_database
end
end
|