Class: Azure::ServiceFabric::V6_3_0_9::Models::PartitionHealthEvaluation

Inherits:
HealthEvaluation
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.3.0.9/generated/azure_service_fabric/models/partition_health_evaluation.rb

Overview

Represents health evaluation for a partition, containing information about the data and the algorithm used by health store to evaluate health. The evaluation is returned only when the aggregated health state is either Error or Warning.

Instance Attribute Summary collapse

Attributes inherited from HealthEvaluation

#aggregated_health_state, #description

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePartitionHealthEvaluation

Returns a new instance of PartitionHealthEvaluation.



19
20
21
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/partition_health_evaluation.rb', line 19

def initialize
  @Kind = "Partition"
end

Instance Attribute Details

#KindObject

Returns the value of attribute Kind.



23
24
25
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/partition_health_evaluation.rb', line 23

def Kind
  @Kind
end

#partition_idObject

this object.

Returns:

  • Id of the partition whose health evaluation is described by



27
28
29
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/partition_health_evaluation.rb', line 27

def partition_id
  @partition_id
end

#unhealthy_evaluationsArray<HealthEvaluationWrapper>

that led to the current aggregated health state of the partition. The types of the unhealthy evaluations can be ReplicasHealthEvaluation or EventHealthEvaluation.

Returns:



33
34
35
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/partition_health_evaluation.rb', line 33

def unhealthy_evaluations
  @unhealthy_evaluations
end

Class Method Details

.mapperObject

Mapper for PartitionHealthEvaluation class as Ruby Hash. This will be used for serialization/deserialization.



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/6.3.0.9/generated/azure_service_fabric/models/partition_health_evaluation.rb', line 40

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Partition',
    type: {
      name: 'Composite',
      class_name: 'PartitionHealthEvaluation',
      model_properties: {
        aggregated_health_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'AggregatedHealthState',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Description',
          type: {
            name: 'String'
          }
        },
        Kind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Kind',
          type: {
            name: 'String'
          }
        },
        partition_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'PartitionId',
          type: {
            name: 'String'
          }
        },
        unhealthy_evaluations: {
          client_side_validation: true,
          required: false,
          serialized_name: 'UnhealthyEvaluations',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'HealthEvaluationWrapperElementType',
                type: {
                  name: 'Composite',
                  class_name: 'HealthEvaluationWrapper'
                }
            }
          }
        }
      }
    }
  }
end