Class: SDM::MongoLegacyReplicaset

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, egress_filter: nil, hostname: nil, auth_database: nil, port_override: nil, username: nil, password: nil, port: nil, replica_set: nil, connect_to_replica: nil, tls_required: nil) ⇒ MongoLegacyReplicaset

Returns a new instance of MongoLegacyReplicaset.



3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
# File 'lib/models/porcelain.rb', line 3221

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

Instance Attribute Details

#auth_databaseObject

Returns the value of attribute auth_database.



3205
3206
3207
# File 'lib/models/porcelain.rb', line 3205

def auth_database
  @auth_database
end

#connect_to_replicaObject

Returns the value of attribute connect_to_replica.



3217
3218
3219
# File 'lib/models/porcelain.rb', line 3217

def connect_to_replica
  @connect_to_replica
end

#egress_filterObject

A filter applied to the routing logic to pin datasource to nodes.



3201
3202
3203
# File 'lib/models/porcelain.rb', line 3201

def egress_filter
  @egress_filter
end

#healthyObject

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



3195
3196
3197
# File 'lib/models/porcelain.rb', line 3195

def healthy
  @healthy
end

#hostnameObject

Returns the value of attribute hostname.



3203
3204
3205
# File 'lib/models/porcelain.rb', line 3203

def hostname
  @hostname
end

#idObject

Unique identifier of the Resource.



3191
3192
3193
# File 'lib/models/porcelain.rb', line 3191

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



3193
3194
3195
# File 'lib/models/porcelain.rb', line 3193

def name
  @name
end

#passwordObject

Returns the value of attribute password.



3211
3212
3213
# File 'lib/models/porcelain.rb', line 3211

def password
  @password
end

#portObject

Returns the value of attribute port.



3213
3214
3215
# File 'lib/models/porcelain.rb', line 3213

def port
  @port
end

#port_overrideObject

Returns the value of attribute port_override.



3207
3208
3209
# File 'lib/models/porcelain.rb', line 3207

def port_override
  @port_override
end

#replica_setObject

Returns the value of attribute replica_set.



3215
3216
3217
# File 'lib/models/porcelain.rb', line 3215

def replica_set
  @replica_set
end

#secret_store_idObject

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



3199
3200
3201
# File 'lib/models/porcelain.rb', line 3199

def secret_store_id
  @secret_store_id
end

#tagsObject

Tags is a map of key, value pairs.



3197
3198
3199
# File 'lib/models/porcelain.rb', line 3197

def tags
  @tags
end

#tls_requiredObject

Returns the value of attribute tls_required.



3219
3220
3221
# File 'lib/models/porcelain.rb', line 3219

def tls_required
  @tls_required
end

#usernameObject

Returns the value of attribute username.



3209
3210
3211
# File 'lib/models/porcelain.rb', line 3209

def username
  @username
end

Instance Method Details

#to_json(options = {}) ⇒ Object



3285
3286
3287
3288
3289
3290
3291
# File 'lib/models/porcelain.rb', line 3285

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