Class: Azure::ServiceFabric::V6_5_0_36::Models::StatefulServiceReplicaHealth

Inherits:
ReplicaHealth show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/stateful_service_replica_health.rb

Overview

Represents the health of the stateful service replica. Contains the replica aggregated health state, the health events and the unhealthy evaluations.

Instance Attribute Summary collapse

Attributes inherited from ReplicaHealth

#partition_id

Attributes inherited from EntityHealth

#aggregated_health_state, #health_events, #health_statistics, #unhealthy_evaluations

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeStatefulServiceReplicaHealth

Returns a new instance of StatefulServiceReplicaHealth.



18
19
20
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/stateful_service_replica_health.rb', line 18

def initialize
  @ServiceKind = "Stateful"
end

Instance Attribute Details

#replica_idString

Service Fabric to uniquely identify a replica of a partition. It is unique within a partition and does not change for the lifetime of the replica. If a replica gets dropped and another replica gets created on the same node for the same partition, it will get a different value for the id. Sometimes the id of a stateless service instance is also referred as a replica id.

Returns:

  • (String)

    Id of a stateful service replica. ReplicaId is used by



31
32
33
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/stateful_service_replica_health.rb', line 31

def replica_id
  @replica_id
end

#ServiceKindObject

Returns the value of attribute ServiceKind.



22
23
24
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/stateful_service_replica_health.rb', line 22

def ServiceKind
  @ServiceKind
end

Class Method Details

.mapperObject

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



38
39
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/stateful_service_replica_health.rb', line 38

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Stateful',
    type: {
      name: 'Composite',
      class_name: 'StatefulServiceReplicaHealth',
      model_properties: {
        aggregated_health_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'AggregatedHealthState',
          type: {
            name: 'String'
          }
        },
        health_events: {
          client_side_validation: true,
          required: false,
          serialized_name: 'HealthEvents',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'HealthEventElementType',
                type: {
                  name: 'Composite',
                  class_name: 'HealthEvent'
                }
            }
          }
        },
        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'
                }
            }
          }
        },
        health_statistics: {
          client_side_validation: true,
          required: false,
          serialized_name: 'HealthStatistics',
          type: {
            name: 'Composite',
            class_name: 'HealthStatistics'
          }
        },
        partition_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'PartitionId',
          type: {
            name: 'String'
          }
        },
        ServiceKind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'ServiceKind',
          type: {
            name: 'String'
          }
        },
        replica_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ReplicaId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end