Class: SDM::AuroraPostgres

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, tags: nil, hostname: nil, username: nil, password: nil, database: nil, port_override: nil, port: nil, override_database: nil) ⇒ AuroraPostgres

Returns a new instance of AuroraPostgres.



3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
# File 'lib/models/porcelain.rb', line 3032

def initialize(
  id: nil,
  name: nil,
  healthy: nil,
  tags: 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 tags != nil
    @tags = tags
  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.



3024
3025
3026
# File 'lib/models/porcelain.rb', line 3024

def database
  @database
end

#healthyObject

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



3014
3015
3016
# File 'lib/models/porcelain.rb', line 3014

def healthy
  @healthy
end

#hostnameObject

Returns the value of attribute hostname.



3018
3019
3020
# File 'lib/models/porcelain.rb', line 3018

def hostname
  @hostname
end

#idObject

Unique identifier of the Resource.



3010
3011
3012
# File 'lib/models/porcelain.rb', line 3010

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



3012
3013
3014
# File 'lib/models/porcelain.rb', line 3012

def name
  @name
end

#override_databaseObject

Returns the value of attribute override_database.



3030
3031
3032
# File 'lib/models/porcelain.rb', line 3030

def override_database
  @override_database
end

#passwordObject

Returns the value of attribute password.



3022
3023
3024
# File 'lib/models/porcelain.rb', line 3022

def password
  @password
end

#portObject

Returns the value of attribute port.



3028
3029
3030
# File 'lib/models/porcelain.rb', line 3028

def port
  @port
end

#port_overrideObject

Returns the value of attribute port_override.



3026
3027
3028
# File 'lib/models/porcelain.rb', line 3026

def port_override
  @port_override
end

#tagsObject

Tags is a map of key, value pairs.



3016
3017
3018
# File 'lib/models/porcelain.rb', line 3016

def tags
  @tags
end

#usernameObject

Returns the value of attribute username.



3020
3021
3022
# File 'lib/models/porcelain.rb', line 3020

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



3080
3081
3082
3083
3084
3085
3086
# File 'lib/models/porcelain.rb', line 3080

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