class Azure::ServiceFabric::V6_4_0_36::Models::DeployedApplicationHealthStateChunk
Represents the health state chunk of a deployed application, which contains the node where the application is deployed, the aggregated health state and any deployed service packages that respect the chunk query description filters.
Attributes
deployed_service_package_health_state_chunks[RW]
@return [DeployedServicePackageHealthStateChunkList] The list of deployed service package health state chunks belonging to the deployed application that respect the filters in the cluster health chunk query description.
node_name[RW]
@return [String] The name of node where the application is deployed.
Public Class Methods
mapper()
click to toggle source
Mapper for DeployedApplicationHealthStateChunk
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.4.0.36/generated/azure_service_fabric/models/deployed_application_health_state_chunk.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeployedApplicationHealthStateChunk', type: { name: 'Composite', class_name: 'DeployedApplicationHealthStateChunk', model_properties: { health_state: { client_side_validation: true, required: false, serialized_name: 'HealthState', type: { name: 'String' } }, node_name: { client_side_validation: true, required: false, serialized_name: 'NodeName', type: { name: 'String' } }, deployed_service_package_health_state_chunks: { client_side_validation: true, required: false, serialized_name: 'DeployedServicePackageHealthStateChunks', type: { name: 'Composite', class_name: 'DeployedServicePackageHealthStateChunkList' } } } } } end