class Azure::ServiceFabric::V6_5_0_36::Models::DeployedApplicationHealth
Information about the health of an application deployed on a Service Fabric node.
Attributes
deployed_service_package_health_states[RW]
@return [Array<DeployedServicePackageHealthState>] Deployed service package health states for the current deployed application as found in the health store.
name[RW]
@return [String] Name of the application deployed on the node whose health information is described by this object.
node_name[RW]
@return [String] Name of the node where this application is deployed.
Public Class Methods
mapper()
click to toggle source
Mapper for DeployedApplicationHealth
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.5.0.36/generated/azure_service_fabric/models/deployed_application_health.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeployedApplicationHealth', type: { name: 'Composite', class_name: 'DeployedApplicationHealth', model_properties: { aggregated_health_state: { client_side_validation: true, required: false, serialized_name: 'AggregatedHealthState', type: { name: 'String' } }, health_events: { client_side_validation: true, required: false, serialized_name: 'HealthEvents', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'HealthEventElementType', type: { name: 'Composite', class_name: 'HealthEvent' } } } }, unhealthy_evaluations: { client_side_validation: true, required: false, serialized_name: 'UnhealthyEvaluations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'HealthEvaluationWrapperElementType', type: { name: 'Composite', class_name: 'HealthEvaluationWrapper' } } } }, health_statistics: { client_side_validation: true, required: false, serialized_name: 'HealthStatistics', type: { name: 'Composite', class_name: 'HealthStatistics' } }, name: { client_side_validation: true, required: false, serialized_name: 'Name', type: { name: 'String' } }, node_name: { client_side_validation: true, required: false, serialized_name: 'NodeName', type: { name: 'String' } }, deployed_service_package_health_states: { client_side_validation: true, required: false, serialized_name: 'DeployedServicePackageHealthStates', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DeployedServicePackageHealthStateElementType', type: { name: 'Composite', class_name: 'DeployedServicePackageHealthState' } } } } } } } end