class Azure::ServiceFabric::V6_4_0_36::Models::DeployedServicePackageHealthStateChunk
Represents the health state chunk of a deployed service package, which contains the service manifest name and the service package aggregated health state.
Attributes
service_manifest_name[RW]
@return [String] The name of the service manifest.
service_package_activation_id[RW]
@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()
click to toggle source
Mapper for DeployedServicePackageHealthStateChunk
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.4.0.36/generated/azure_service_fabric/models/deployed_service_package_health_state_chunk.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeployedServicePackageHealthStateChunk', type: { name: 'Composite', class_name: 'DeployedServicePackageHealthStateChunk', model_properties: { health_state: { client_side_validation: true, required: false, serialized_name: 'HealthState', 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