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, bind_interface: nil, egress_filter: nil, healthcheck_region: nil, healthy: nil, id: nil, name: nil, port_override: nil, role_arn: nil, role_external_id: nil, secret_access_key: nil, secret_store_id: nil, subdomain: nil, tags: nil) ⇒ AWS

Returns a new instance of AWS.



419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
# File 'lib/models/porcelain.rb', line 419

def initialize(
  access_key: nil,
  bind_interface: nil,
  egress_filter: nil,
  healthcheck_region: nil,
  healthy: nil,
  id: nil,
  name: nil,
  port_override: nil,
  role_arn: nil,
  role_external_id: nil,
  secret_access_key: nil,
  secret_store_id: nil,
  subdomain: nil,
  tags: nil
)
  @access_key = access_key == nil ? "" : access_key
  @bind_interface = bind_interface == nil ? "" : bind_interface
  @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
  @port_override = port_override == nil ? 0 : port_override
  @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
  @subdomain = subdomain == nil ? "" : subdomain
  @tags = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
end

Instance Attribute Details

#access_keyObject

Returns the value of attribute access_key.



391
392
393
# File 'lib/models/porcelain.rb', line 391

def access_key
  @access_key
end

#bind_interfaceObject

Bind interface



393
394
395
# File 'lib/models/porcelain.rb', line 393

def bind_interface
  @bind_interface
end

#egress_filterObject

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



395
396
397
# File 'lib/models/porcelain.rb', line 395

def egress_filter
  @egress_filter
end

#healthcheck_regionObject

Returns the value of attribute healthcheck_region.



397
398
399
# File 'lib/models/porcelain.rb', line 397

def healthcheck_region
  @healthcheck_region
end

#healthyObject

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



399
400
401
# File 'lib/models/porcelain.rb', line 399

def healthy
  @healthy
end

#idObject

Unique identifier of the Resource.



401
402
403
# File 'lib/models/porcelain.rb', line 401

def id
  @id
end

#nameObject

Unique human-readable name of the Resource.



403
404
405
# File 'lib/models/porcelain.rb', line 403

def name
  @name
end

#port_overrideObject

Returns the value of attribute port_override.



405
406
407
# File 'lib/models/porcelain.rb', line 405

def port_override
  @port_override
end

#role_arnObject

Returns the value of attribute role_arn.



407
408
409
# File 'lib/models/porcelain.rb', line 407

def role_arn
  @role_arn
end

#role_external_idObject

Returns the value of attribute role_external_id.



409
410
411
# File 'lib/models/porcelain.rb', line 409

def role_external_id
  @role_external_id
end

#secret_access_keyObject

Returns the value of attribute secret_access_key.



411
412
413
# File 'lib/models/porcelain.rb', line 411

def secret_access_key
  @secret_access_key
end

#secret_store_idObject

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



413
414
415
# File 'lib/models/porcelain.rb', line 413

def secret_store_id
  @secret_store_id
end

#subdomainObject

Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network)



415
416
417
# File 'lib/models/porcelain.rb', line 415

def subdomain
  @subdomain
end

#tagsObject

Tags is a map of key, value pairs.



417
418
419
# File 'lib/models/porcelain.rb', line 417

def tags
  @tags
end

Instance Method Details

#to_json(options = {}) ⇒ Object



451
452
453
454
455
456
457
# File 'lib/models/porcelain.rb', line 451

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