Class: SDM::ResourceHealthcheckRequest
- Inherits:
-
Object
- Object
- SDM::ResourceHealthcheckRequest
- Defined in:
- lib/models/porcelain.rb
Overview
ResourceHealthcheckRequest specifies requesting a healthcheck for a given resource by ID.
Instance Attribute Summary collapse
-
#id ⇒ Object
The unique identifier of the Resource to healthcheck.
Instance Method Summary collapse
-
#initialize(id: nil) ⇒ ResourceHealthcheckRequest
constructor
A new instance of ResourceHealthcheckRequest.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil) ⇒ ResourceHealthcheckRequest
Returns a new instance of ResourceHealthcheckRequest.
10414 10415 10416 10417 10418 |
# File 'lib/models/porcelain.rb', line 10414 def initialize( id: nil ) @id = id == nil ? "" : id end |
Instance Attribute Details
#id ⇒ Object
The unique identifier of the Resource to healthcheck.
10412 10413 10414 |
# File 'lib/models/porcelain.rb', line 10412 def id @id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
10420 10421 10422 10423 10424 10425 10426 |
# File 'lib/models/porcelain.rb', line 10420 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 |