class Azure::ServiceFabric::V6_3_0_9::Models::ApplicationHealthState
Represents the health state of an application, which contains the application identifier and the aggregated health state.
Attributes
name[RW]
@return [String] The name of the application, including the 'fabric:' URI scheme.
Public Class Methods
mapper()
click to toggle source
Mapper for ApplicationHealthState
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.3.0.9/generated/azure_service_fabric/models/application_health_state.rb, line 25 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationHealthState', type: { name: 'Composite', class_name: 'ApplicationHealthState', model_properties: { aggregated_health_state: { client_side_validation: true, required: false, serialized_name: 'AggregatedHealthState', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'Name', type: { name: 'String' } } } } } end