Class: SDM::Oracle

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, secret_store_id: nil, hostname: nil, username: nil, password: nil, database: nil, port: nil, port_override: nil, tls_required: nil) ⇒ Oracle

Returns a new instance of Oracle.



3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
# File 'lib/models/porcelain.rb', line 3155

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

Instance Attribute Details

#databaseObject

Returns the value of attribute database.



3147
3148
3149
# File 'lib/models/porcelain.rb', line 3147

def database
  @database
end

#healthyObject

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



3135
3136
3137
# File 'lib/models/porcelain.rb', line 3135

def healthy
  @healthy
end

#hostnameObject

Returns the value of attribute hostname.



3141
3142
3143
# File 'lib/models/porcelain.rb', line 3141

def hostname
  @hostname
end

#idObject

Unique identifier of the Resource.



3131
3132
3133
# File 'lib/models/porcelain.rb', line 3131

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



3133
3134
3135
# File 'lib/models/porcelain.rb', line 3133

def name
  @name
end

#passwordObject

Returns the value of attribute password.



3145
3146
3147
# File 'lib/models/porcelain.rb', line 3145

def password
  @password
end

#portObject

Returns the value of attribute port.



3149
3150
3151
# File 'lib/models/porcelain.rb', line 3149

def port
  @port
end

#port_overrideObject

Returns the value of attribute port_override.



3151
3152
3153
# File 'lib/models/porcelain.rb', line 3151

def port_override
  @port_override
end

#secret_store_idObject

ID of the secret store containing credentials for this resource, if any.



3139
3140
3141
# File 'lib/models/porcelain.rb', line 3139

def secret_store_id
  @secret_store_id
end

#tagsObject

Tags is a map of key, value pairs.



3137
3138
3139
# File 'lib/models/porcelain.rb', line 3137

def tags
  @tags
end

#tls_requiredObject

Returns the value of attribute tls_required.



3153
3154
3155
# File 'lib/models/porcelain.rb', line 3153

def tls_required
  @tls_required
end

#usernameObject

Returns the value of attribute username.



3143
3144
3145
# File 'lib/models/porcelain.rb', line 3143

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



3207
3208
3209
3210
3211
3212
3213
# File 'lib/models/porcelain.rb', line 3207

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