Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 2.29 KB

File metadata and controls

30 lines (24 loc) · 2.29 KB

IntersightClient::ConvergedinfraHealthCheckExecution

Properties

Name Type Description Notes
class_id String The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to 'convergedinfra.HealthCheckExecution']
object_type String The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to 'convergedinfra.HealthCheckExecution']
error String Error details of a health check execution failure. [optional][readonly]
result String Health check execution result. * `Unknown` - Indicates that the health check results could not be determined. * `Pass` - Indicates that the health check has passed. * `Fail` - Indicates that the health check has failed. * `Warning` - Indicates that the health check completed with a warning. * `NotApplicable` - Indicates that the health check is either unsupported, or not applicable for the pod. [optional][readonly][default to 'Unknown']
status String Status of the health check execution. * `Unknown` - Indicates that the health heck execution status is unknown. This mostly happens in case where health check could not be performed due to connectivity issues. * `Succeeded` - Indicates that the health check execution has succeeded. * `Failed` - Indicates that the health check execution has failed. * `Timedout` - Indicates that the health check execution timed out before completion. [optional][readonly][default to 'Unknown']
summary String A brief summary of health check results. [optional][readonly]
health_check_definition ConvergedinfraHealthCheckDefinitionRelationship [optional]

Example

require 'intersight_client'

instance = IntersightClient::ConvergedinfraHealthCheckExecution.new(
  class_id: null,
  object_type: null,
  error: null,
  result: null,
  status: null,
  summary: null,
  health_check_definition: null
)