Class: SDM::Postgres

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id: nil, name: nil, healthy: nil, hostname: nil, username: nil, password: nil, database: nil, port_override: nil, port: nil, override_database: nil) ⇒ Postgres

Returns a new instance of Postgres.



2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
# File 'lib/models/porcelain.rb', line 2640

def initialize(
  id: nil,
  name: nil,
  healthy: nil,
  hostname: nil,
  username: nil,
  password: nil,
  database: nil,
  port_override: 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 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 port != nil
    @port = port
  end
  if override_database != nil
    @override_database = override_database
  end
end

Instance Attribute Details

#databaseObject

Returns the value of attribute database.



2632
2633
2634
# File 'lib/models/porcelain.rb', line 2632

def database
  @database
end

#healthyObject

True if the datasource is reachable and the credentials are valid.



2624
2625
2626
# File 'lib/models/porcelain.rb', line 2624

def healthy
  @healthy
end

#hostnameObject

Returns the value of attribute hostname.



2626
2627
2628
# File 'lib/models/porcelain.rb', line 2626

def hostname
  @hostname
end

#idObject

Unique identifier of the Resource.



2620
2621
2622
# File 'lib/models/porcelain.rb', line 2620

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



2622
2623
2624
# File 'lib/models/porcelain.rb', line 2622

def name
  @name
end

#override_databaseObject

Returns the value of attribute override_database.



2638
2639
2640
# File 'lib/models/porcelain.rb', line 2638

def override_database
  @override_database
end

#passwordObject

Returns the value of attribute password.



2630
2631
2632
# File 'lib/models/porcelain.rb', line 2630

def password
  @password
end

#portObject

Returns the value of attribute port.



2636
2637
2638
# File 'lib/models/porcelain.rb', line 2636

def port
  @port
end

#port_overrideObject

Returns the value of attribute port_override.



2634
2635
2636
# File 'lib/models/porcelain.rb', line 2634

def port_override
  @port_override
end

#usernameObject

Returns the value of attribute username.



2628
2629
2630
# File 'lib/models/porcelain.rb', line 2628

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



2684
2685
2686
2687
2688
2689
2690
# File 'lib/models/porcelain.rb', line 2684

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end