Class: SDM::Kubernetes
- Inherits:
-
Object
- Object
- SDM::Kubernetes
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#certificate_authority ⇒ Object
Returns the value of attribute certificate_authority.
-
#client_certificate ⇒ Object
Returns the value of attribute client_certificate.
-
#client_key ⇒ Object
Returns the value of attribute client_key.
-
#healthcheck_namespace ⇒ Object
Returns the value of attribute healthcheck_namespace.
-
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
-
#hostname ⇒ Object
Returns the value of attribute hostname.
-
#id ⇒ Object
Unique identifier of the Resource.
-
#name ⇒ Object
Unique human-readable name of the Resource.
-
#port ⇒ Object
Returns the value of attribute port.
-
#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(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, hostname: nil, port: nil, certificate_authority: nil, client_certificate: nil, client_key: nil, healthcheck_namespace: nil) ⇒ Kubernetes
constructor
A new instance of Kubernetes.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, hostname: nil, port: nil, certificate_authority: nil, client_certificate: nil, client_key: nil, healthcheck_namespace: nil) ⇒ Kubernetes
Returns a new instance of Kubernetes.
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 |
# File 'lib/models/porcelain.rb', line 1695 def initialize( id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, hostname: nil, port: nil, certificate_authority: nil, client_certificate: nil, client_key: nil, healthcheck_namespace: nil ) if id != nil @id = id end if name != nil @name = name end if healthy != nil @healthy = healthy end if != nil @tags = end if secret_store_id != nil @secret_store_id = secret_store_id end if hostname != nil @hostname = hostname end if port != nil @port = port end if != nil @certificate_authority = end if client_certificate != nil @client_certificate = client_certificate end if client_key != nil @client_key = client_key end if healthcheck_namespace != nil @healthcheck_namespace = healthcheck_namespace end end |
Instance Attribute Details
#certificate_authority ⇒ Object
Returns the value of attribute certificate_authority.
1687 1688 1689 |
# File 'lib/models/porcelain.rb', line 1687 def @certificate_authority end |
#client_certificate ⇒ Object
Returns the value of attribute client_certificate.
1689 1690 1691 |
# File 'lib/models/porcelain.rb', line 1689 def client_certificate @client_certificate end |
#client_key ⇒ Object
Returns the value of attribute client_key.
1691 1692 1693 |
# File 'lib/models/porcelain.rb', line 1691 def client_key @client_key end |
#healthcheck_namespace ⇒ Object
Returns the value of attribute healthcheck_namespace.
1693 1694 1695 |
# File 'lib/models/porcelain.rb', line 1693 def healthcheck_namespace @healthcheck_namespace end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
1677 1678 1679 |
# File 'lib/models/porcelain.rb', line 1677 def healthy @healthy end |
#hostname ⇒ Object
Returns the value of attribute hostname.
1683 1684 1685 |
# File 'lib/models/porcelain.rb', line 1683 def hostname @hostname end |
#id ⇒ Object
Unique identifier of the Resource.
1673 1674 1675 |
# File 'lib/models/porcelain.rb', line 1673 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
1675 1676 1677 |
# File 'lib/models/porcelain.rb', line 1675 def name @name end |
#port ⇒ Object
Returns the value of attribute port.
1685 1686 1687 |
# File 'lib/models/porcelain.rb', line 1685 def port @port end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
1681 1682 1683 |
# File 'lib/models/porcelain.rb', line 1681 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
1679 1680 1681 |
# File 'lib/models/porcelain.rb', line 1679 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1743 1744 1745 1746 1747 1748 1749 |
# File 'lib/models/porcelain.rb', line 1743 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 |