class Azure::ServiceFabric::V6_3_0_9::Models::DeployedServicePackageHealthState
Represents the health state of a deployed service package, containing the entity identifier and the aggregated health state.
Attributes
@return [String] The name of the application, including the 'fabric:' URI scheme.
@return [String] Name of the node on which the service package is deployed.
@return [String] Name of the manifest describing the service package.
@return [String] The ActivationId of a deployed service package. If ServicePackageActivationMode
specified at the time of creating the service is 'SharedProcess' (or if it is not specified, in which case it defaults to 'SharedProcess'), then value of ServicePackageActivationId is always an empty string.
Public Class Methods
Mapper for DeployedServicePackageHealthState
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.3.0.9/generated/azure_service_fabric/models/deployed_service_package_health_state.rb, line 40 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeployedServicePackageHealthState', type: { name: 'Composite', class_name: 'DeployedServicePackageHealthState', model_properties: { aggregated_health_state: { client_side_validation: true, required: false, serialized_name: 'AggregatedHealthState', type: { name: 'String' } }, node_name: { client_side_validation: true, required: false, serialized_name: 'NodeName', type: { name: 'String' } }, application_name: { client_side_validation: true, required: false, serialized_name: 'ApplicationName', type: { name: 'String' } }, service_manifest_name: { client_side_validation: true, required: false, serialized_name: 'ServiceManifestName', type: { name: 'String' } }, service_package_activation_id: { client_side_validation: true, required: false, serialized_name: 'ServicePackageActivationId', type: { name: 'String' } } } } } end