Class: Azure::ServiceFabric::V6_4_0_36::Models::DeployedApplicationHealthState
- Inherits:
-
EntityHealthState
- Object
- EntityHealthState
- Azure::ServiceFabric::V6_4_0_36::Models::DeployedApplicationHealthState
- Includes:
- MsRestAzure
- Defined in:
- lib/6.4.0.36/generated/azure_service_fabric/models/deployed_application_health_state.rb
Overview
Represents the health state of a deployed application, which contains the entity identifier and the aggregated health state.
Instance Attribute Summary collapse
-
#application_name ⇒ String
URI scheme.
-
#node_name ⇒ String
deployed.
Attributes inherited from EntityHealthState
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DeployedApplicationHealthState class as Ruby Hash.
Instance Attribute Details
#application_name ⇒ String
URI scheme.
22 23 24 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/deployed_application_health_state.rb', line 22 def application_name @application_name end |
#node_name ⇒ String
deployed.
18 19 20 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/deployed_application_health_state.rb', line 18 def node_name @node_name end |
Class Method Details
.mapper ⇒ Object
Mapper for DeployedApplicationHealthState class as Ruby Hash. This will be used for serialization/deserialization.
29 30 31 32 33 34 35 36 37 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 |
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/deployed_application_health_state.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeployedApplicationHealthState', type: { name: 'Composite', class_name: 'DeployedApplicationHealthState', 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' } } } } } end |