Class: Azure::ServiceFabric::V6_5_0_36::Models::NodeDeactivationTaskId

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivation_task_id.rb

Overview

Identity of the task related to deactivation operation on the node.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString

Returns Value of the task id.

Returns:

  • (String)

    Value of the task id.



16
17
18
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivation_task_id.rb', line 16

def id
  @id
end

#node_deactivation_task_typeNodeDeactivationTaskType

the node deactivation. Following are the possible values. Possible values include: ‘Invalid’, ‘Infrastructure’, ‘Repair’, ‘Client’

Returns:



21
22
23
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivation_task_id.rb', line 21

def node_deactivation_task_type
  @node_deactivation_task_type
end

Class Method Details

.mapperObject

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



28
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
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/node_deactivation_task_id.rb', line 28

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NodeDeactivationTaskId',
    type: {
      name: 'Composite',
      class_name: 'NodeDeactivationTaskId',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Id',
          type: {
            name: 'String'
          }
        },
        node_deactivation_task_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'NodeDeactivationTaskType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end