Class: SDM::SecretStoreHealth

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

SecretStoreHealth denotes a secret store's health status. Note a secret store is not healthy in terms of a simple boolean, but rather healthy with respect to a particular node or set of nodes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(changed_at: nil, checked_at: nil, error: nil, flags: nil, node_id: nil, reachability: nil, secret_store_id: nil, status: nil) ⇒ SecretStoreHealth

Returns a new instance of SecretStoreHealth.



12314
12315
12316
12317
12318
12319
12320
12321
12322
12323
12324
12325
12326
12327
12328
12329
12330
12331
12332
# File 'lib/models/porcelain.rb', line 12314

def initialize(
  changed_at: nil,
  checked_at: nil,
  error: nil,
  flags: nil,
  node_id: nil,
  reachability: nil,
  secret_store_id: nil,
  status: nil
)
  @changed_at = changed_at == nil ? nil : changed_at
  @checked_at = checked_at == nil ? nil : checked_at
  @error = error == nil ? "" : error
  @flags = flags == nil ? [] : flags
  @node_id = node_id == nil ? "" : node_id
  @reachability = reachability == nil ? "" : reachability
  @secret_store_id = secret_store_id == nil ? "" : secret_store_id
  @status = status == nil ? "" : status
end

Instance Attribute Details

#changed_atObject

The time when the status last changed



12298
12299
12300
# File 'lib/models/porcelain.rb', line 12298

def changed_at
  @changed_at
end

#checked_atObject

The time when the status was last checked by the node



12300
12301
12302
# File 'lib/models/porcelain.rb', line 12300

def checked_at
  @checked_at
end

#errorObject

The error associated with this health check, if it occurred after reachability checks succeeded.



12302
12303
12304
# File 'lib/models/porcelain.rb', line 12302

def error
  @error
end

#flagsObject

Any specific status or error flags associated with this health check.



12304
12305
12306
# File 'lib/models/porcelain.rb', line 12304

def flags
  @flags
end

#node_idObject

Associated node id for this health



12306
12307
12308
# File 'lib/models/porcelain.rb', line 12306

def node_id
  @node_id
end

#reachabilityObject

The error associated with this health check, if it occurred during reachability checks.



12308
12309
12310
# File 'lib/models/porcelain.rb', line 12308

def reachability
  @reachability
end

#secret_store_idObject

Associated secret store for this health



12310
12311
12312
# File 'lib/models/porcelain.rb', line 12310

def secret_store_id
  @secret_store_id
end

#statusObject

The status of the link between the node and secret store



12312
12313
12314
# File 'lib/models/porcelain.rb', line 12312

def status
  @status
end

Instance Method Details

#to_json(options = {}) ⇒ Object



12334
12335
12336
12337
12338
12339
12340
# File 'lib/models/porcelain.rb', line 12334

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