class Azure::ServiceFabric::V6_5_0_36::Models::EntityKindHealthStateCount
Represents health state count for entities of the specified entity kind.
Attributes
entity_kind[RW]
@return [EntityKind] The entity kind for which health states are evaluated. Possible values include: 'Invalid', 'Node', 'Partition', 'Service', 'Application', 'Replica', 'DeployedApplication', 'DeployedServicePackage', 'Cluster'
health_state_count[RW]
@return [HealthStateCount] The health state count for the entities of the specified kind.
Public Class Methods
mapper()
click to toggle source
Mapper for EntityKindHealthStateCount
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.5.0.36/generated/azure_service_fabric/models/entity_kind_health_state_count.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EntityKindHealthStateCount', type: { name: 'Composite', class_name: 'EntityKindHealthStateCount', model_properties: { entity_kind: { client_side_validation: true, required: false, serialized_name: 'EntityKind', type: { name: 'String' } }, health_state_count: { client_side_validation: true, required: false, serialized_name: 'HealthStateCount', type: { name: 'Composite', class_name: 'HealthStateCount' } } } } } end