Class: SDM::AWS

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(access_key: nil, egress_filter: nil, healthcheck_region: nil, healthy: nil, id: nil, name: nil, role_arn: nil, role_external_id: nil, secret_access_key: nil, secret_store_id: nil, tags: nil) ⇒ AWS

Returns a new instance of AWS.



335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# File 'lib/models/porcelain.rb', line 335

def initialize(
  access_key: nil,
  egress_filter: nil,
  healthcheck_region: nil,
  healthy: nil,
  id: nil,
  name: nil,
  role_arn: nil,
  role_external_id: nil,
  secret_access_key: nil,
  secret_store_id: nil,
  tags: nil
)
  @access_key = access_key == nil ? "" : access_key
  @egress_filter = egress_filter == nil ? "" : egress_filter
  @healthcheck_region = healthcheck_region == nil ? "" : healthcheck_region
  @healthy = healthy == nil ? false : healthy
  @id = id == nil ? "" : id
  @name = name == nil ? "" : name
  @role_arn = role_arn == nil ? "" : role_arn
  @role_external_id = role_external_id == nil ? "" : role_external_id
  @secret_access_key = secret_access_key == nil ? "" : secret_access_key
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end

Instance Attribute Details

#access_keyObject

Returns the value of attribute access_key.



313
314
315
# File 'lib/models/porcelain.rb', line 313

def access_key
  @access_key
end

#egress_filterObject

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



315
316
317
# File 'lib/models/porcelain.rb', line 315

def egress_filter
  @egress_filter
end

#healthcheck_regionObject

Returns the value of attribute healthcheck_region.



317
318
319
# File 'lib/models/porcelain.rb', line 317

def healthcheck_region
  @healthcheck_region
end

#healthyObject

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



319
320
321
# File 'lib/models/porcelain.rb', line 319

def healthy
  @healthy
end

#idObject

Unique identifier of the Resource.



321
322
323
# File 'lib/models/porcelain.rb', line 321

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



323
324
325
# File 'lib/models/porcelain.rb', line 323

def name
  @name
end

#role_arnObject

Returns the value of attribute role_arn.



325
326
327
# File 'lib/models/porcelain.rb', line 325

def role_arn
  @role_arn
end

#role_external_idObject

Returns the value of attribute role_external_id.



327
328
329
# File 'lib/models/porcelain.rb', line 327

def role_external_id
  @role_external_id
end

#secret_access_keyObject

Returns the value of attribute secret_access_key.



329
330
331
# File 'lib/models/porcelain.rb', line 329

def secret_access_key
  @secret_access_key
end

#secret_store_idObject

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



331
332
333
# File 'lib/models/porcelain.rb', line 331

def secret_store_id
  @secret_store_id
end

#tagsObject

Tags is a map of key, value pairs.



333
334
335
# File 'lib/models/porcelain.rb', line 333

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



361
362
363
364
365
366
367
# File 'lib/models/porcelain.rb', line 361

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