Class: SDM::AWS
- Inherits:
-
Object
- Object
- SDM::AWS
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#access_key ⇒ Object
Returns the value of attribute access_key.
-
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
-
#healthcheck_region ⇒ Object
Returns the value of attribute healthcheck_region.
-
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
-
#id ⇒ Object
Unique identifier of the Resource.
-
#name ⇒ Object
Unique human-readable name of the Resource.
-
#role_arn ⇒ Object
Returns the value of attribute role_arn.
-
#role_external_id ⇒ Object
Returns the value of attribute role_external_id.
-
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
-
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
Instance Method Summary collapse
-
#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
constructor
A new instance of AWS.
- #to_json(options = {}) ⇒ Object
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.
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 |
# File 'lib/models/porcelain.rb', line 445 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 ) if access_key != nil @access_key = access_key end if egress_filter != nil @egress_filter = egress_filter end if healthcheck_region != nil @healthcheck_region = healthcheck_region end if healthy != nil @healthy = healthy end if id != nil @id = id end if name != nil @name = name end if role_arn != nil @role_arn = role_arn end if role_external_id != nil @role_external_id = role_external_id end if secret_access_key != nil @secret_access_key = secret_access_key end if secret_store_id != nil @secret_store_id = secret_store_id end if != nil @tags = end end |
Instance Attribute Details
#access_key ⇒ Object
Returns the value of attribute access_key.
423 424 425 |
# File 'lib/models/porcelain.rb', line 423 def access_key @access_key end |
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
425 426 427 |
# File 'lib/models/porcelain.rb', line 425 def egress_filter @egress_filter end |
#healthcheck_region ⇒ Object
Returns the value of attribute healthcheck_region.
427 428 429 |
# File 'lib/models/porcelain.rb', line 427 def healthcheck_region @healthcheck_region end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
429 430 431 |
# File 'lib/models/porcelain.rb', line 429 def healthy @healthy end |
#id ⇒ Object
Unique identifier of the Resource.
431 432 433 |
# File 'lib/models/porcelain.rb', line 431 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
433 434 435 |
# File 'lib/models/porcelain.rb', line 433 def name @name end |
#role_arn ⇒ Object
Returns the value of attribute role_arn.
435 436 437 |
# File 'lib/models/porcelain.rb', line 435 def role_arn @role_arn end |
#role_external_id ⇒ Object
Returns the value of attribute role_external_id.
437 438 439 |
# File 'lib/models/porcelain.rb', line 437 def role_external_id @role_external_id end |
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
439 440 441 |
# File 'lib/models/porcelain.rb', line 439 def secret_access_key @secret_access_key end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
441 442 443 |
# File 'lib/models/porcelain.rb', line 441 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
443 444 445 |
# File 'lib/models/porcelain.rb', line 443 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
493 494 495 496 497 498 499 |
# File 'lib/models/porcelain.rb', line 493 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |