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
8343 8344 8345 8346 8347 |
# File 'lib/models/porcelain.rb', line 8343 def initialize( id: nil ) @id = id == nil ? "" : id end |
Instance Attribute Details
#id ⇒ Object
The unique identifier of the Resource to healthcheck.
8341 8342 8343 |
# File 'lib/models/porcelain.rb', line 8341 def id @id end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8349 8350 8351 8352 8353 8354 8355 |
# File 'lib/models/porcelain.rb', line 8349 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 |