Class: SDM::AmazonEKS
- Inherits:
-
Object
- Object
- SDM::AmazonEKS
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#access_key ⇒ Object
Returns the value of attribute access_key.
-
#certificate_authority ⇒ Object
Returns the value of attribute certificate_authority.
-
#cluster_name ⇒ Object
Returns the value of attribute cluster_name.
-
#endpoint ⇒ Object
Returns the value of attribute endpoint.
-
#healthcheck_namespace ⇒ Object
Returns the value of attribute healthcheck_namespace.
-
#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.
-
#region ⇒ Object
Returns the value of attribute region.
-
#role_arn ⇒ Object
Returns the value of attribute role_arn.
-
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil, healthy: nil, tags: nil, endpoint: nil, access_key: nil, secret_access_key: nil, certificate_authority: nil, region: nil, cluster_name: nil, role_arn: nil, healthcheck_namespace: nil) ⇒ AmazonEKS
constructor
A new instance of AmazonEKS.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, healthy: nil, tags: nil, endpoint: nil, access_key: nil, secret_access_key: nil, certificate_authority: nil, region: nil, cluster_name: nil, role_arn: nil, healthcheck_namespace: nil) ⇒ AmazonEKS
Returns a new instance of AmazonEKS.
1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 |
# File 'lib/models/porcelain.rb', line 1727 def initialize( id: nil, name: nil, healthy: nil, tags: nil, endpoint: nil, access_key: nil, secret_access_key: nil, certificate_authority: nil, region: nil, cluster_name: nil, role_arn: nil, healthcheck_namespace: nil ) if id != nil @id = id end if name != nil @name = name end if healthy != nil @healthy = healthy end if != nil = end if endpoint != nil @endpoint = endpoint end if access_key != nil @access_key = access_key end if secret_access_key != nil @secret_access_key = secret_access_key end if != nil = end if region != nil @region = region end if cluster_name != nil @cluster_name = cluster_name end if role_arn != nil @role_arn = role_arn end if healthcheck_namespace != nil @healthcheck_namespace = healthcheck_namespace end end |
Instance Attribute Details
#access_key ⇒ Object
Returns the value of attribute access_key.
1713 1714 1715 |
# File 'lib/models/porcelain.rb', line 1713 def access_key @access_key end |
#certificate_authority ⇒ Object
Returns the value of attribute certificate_authority.
1717 1718 1719 |
# File 'lib/models/porcelain.rb', line 1717 def end |
#cluster_name ⇒ Object
Returns the value of attribute cluster_name.
1721 1722 1723 |
# File 'lib/models/porcelain.rb', line 1721 def cluster_name @cluster_name end |
#endpoint ⇒ Object
Returns the value of attribute endpoint.
1711 1712 1713 |
# File 'lib/models/porcelain.rb', line 1711 def endpoint @endpoint end |
#healthcheck_namespace ⇒ Object
Returns the value of attribute healthcheck_namespace.
1725 1726 1727 |
# File 'lib/models/porcelain.rb', line 1725 def healthcheck_namespace @healthcheck_namespace end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
1707 1708 1709 |
# File 'lib/models/porcelain.rb', line 1707 def healthy @healthy end |
#id ⇒ Object
Unique identifier of the Resource.
1703 1704 1705 |
# File 'lib/models/porcelain.rb', line 1703 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
1705 1706 1707 |
# File 'lib/models/porcelain.rb', line 1705 def name @name end |
#region ⇒ Object
Returns the value of attribute region.
1719 1720 1721 |
# File 'lib/models/porcelain.rb', line 1719 def region @region end |
#role_arn ⇒ Object
Returns the value of attribute role_arn.
1723 1724 1725 |
# File 'lib/models/porcelain.rb', line 1723 def role_arn @role_arn end |
#secret_access_key ⇒ Object
Returns the value of attribute secret_access_key.
1715 1716 1717 |
# File 'lib/models/porcelain.rb', line 1715 def secret_access_key @secret_access_key end |
#tags ⇒ Object
Tags is a map of key, value pairs.
1709 1710 1711 |
# File 'lib/models/porcelain.rb', line 1709 def end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1779 1780 1781 1782 1783 1784 1785 |
# File 'lib/models/porcelain.rb', line 1779 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 |