Class: Azure::ServiceFabric::V6_5_0_36::Models::NodeDeactivateStartedEvent
- Inherits:
-
NodeEvent
- Object
- FabricEvent
- NodeEvent
- Azure::ServiceFabric::V6_5_0_36::Models::NodeDeactivateStartedEvent
- Includes:
- MsRestAzure
- Defined in:
- lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivate_started_event.rb
Overview
Node Deactivate Started event.
Instance Attribute Summary collapse
-
#batch_id ⇒ String
Batch Id.
-
#deactivate_intent ⇒ String
Describes deactivate intent.
-
#Kind ⇒ Object
Returns the value of attribute Kind.
-
#node_instance ⇒ Integer
Id of Node instance.
Attributes inherited from NodeEvent
Attributes inherited from FabricEvent
#category, #event_instance_id, #has_correlated_events, #time_stamp
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NodeDeactivateStartedEvent class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ NodeDeactivateStartedEvent
constructor
A new instance of NodeDeactivateStartedEvent.
Constructor Details
#initialize ⇒ NodeDeactivateStartedEvent
Returns a new instance of NodeDeactivateStartedEvent.
16 17 18 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivate_started_event.rb', line 16 def initialize @Kind = "NodeDeactivateStarted" end |
Instance Attribute Details
#batch_id ⇒ String
Returns Batch Id.
26 27 28 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivate_started_event.rb', line 26 def batch_id @batch_id end |
#deactivate_intent ⇒ String
Returns Describes deactivate intent.
29 30 31 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivate_started_event.rb', line 29 def deactivate_intent @deactivate_intent end |
#Kind ⇒ Object
Returns the value of attribute Kind.
20 21 22 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivate_started_event.rb', line 20 def Kind @Kind end |
#node_instance ⇒ Integer
Returns Id of Node instance.
23 24 25 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivate_started_event.rb', line 23 def node_instance @node_instance end |
Class Method Details
.mapper ⇒ Object
Mapper for NodeDeactivateStartedEvent class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivate_started_event.rb', line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NodeDeactivateStarted', type: { name: 'Composite', class_name: 'NodeDeactivateStartedEvent', model_properties: { event_instance_id: { client_side_validation: true, required: true, serialized_name: 'EventInstanceId', type: { name: 'String' } }, category: { client_side_validation: true, required: false, serialized_name: 'Category', type: { name: 'String' } }, time_stamp: { client_side_validation: true, required: true, serialized_name: 'TimeStamp', type: { name: 'DateTime' } }, has_correlated_events: { client_side_validation: true, required: false, serialized_name: 'HasCorrelatedEvents', type: { name: 'Boolean' } }, Kind: { client_side_validation: true, required: true, serialized_name: 'Kind', type: { name: 'String' } }, node_name: { client_side_validation: true, required: true, serialized_name: 'NodeName', type: { name: 'String' } }, node_instance: { client_side_validation: true, required: true, serialized_name: 'NodeInstance', type: { name: 'Number' } }, batch_id: { client_side_validation: true, required: true, serialized_name: 'BatchId', type: { name: 'String' } }, deactivate_intent: { client_side_validation: true, required: true, serialized_name: 'DeactivateIntent', type: { name: 'String' } } } } } end |