class SDM::Kubernetes

Attributes

certificate_authority[RW]
client_certificate[RW]
client_key[RW]
egress_filter[RW]

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

healthcheck_namespace[RW]
healthy[RW]

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

hostname[RW]
id[RW]

Unique identifier of the Resource.

name[RW]

Unique human-readable name of the Resource.

port[RW]
secret_store_id[RW]

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

tags[RW]

Tags is a map of key, value pairs.

Public Class Methods

new( id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, port: nil, certificate_authority: nil, client_certificate: nil, client_key: nil, healthcheck_namespace: nil ) click to toggle source
# File lib/models/porcelain.rb, line 2051
def initialize(
  id: nil,
  name: nil,
  healthy: nil,
  tags: nil,
  secret_store_id: nil,
  egress_filter: 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 tags != nil
    @tags = tags
  end
  if secret_store_id != nil
    @secret_store_id = secret_store_id
  end
  if egress_filter != nil
    @egress_filter = egress_filter
  end
  if hostname != nil
    @hostname = hostname
  end
  if port != nil
    @port = port
  end
  if certificate_authority != nil
    @certificate_authority = 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

Public Instance Methods

to_json(options = {}) click to toggle source
# File lib/models/porcelain.rb, line 2103
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