Class: Azure::ServiceFabric::V6_4_0_36::Models::RestartPartitionResult

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

Overview

Represents information about an operation in a terminal state (Completed or Faulted).

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#error_codeInteger

OperationState is Faulted, this is an error code indicating the reason.

Returns:

  • (Integer)

    If OperationState is Completed, this is 0. If



18
19
20
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/restart_partition_result.rb', line 18

def error_code
  @error_code
end

#selected_partitionSelectedPartition

partition that the user-induced operation acted upon.

Returns:



22
23
24
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/restart_partition_result.rb', line 22

def selected_partition
  @selected_partition
end

Class Method Details

.mapperObject

Mapper for RestartPartitionResult 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
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/restart_partition_result.rb', line 29

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RestartPartitionResult',
    type: {
      name: 'Composite',
      class_name: 'RestartPartitionResult',
      model_properties: {
        error_code: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ErrorCode',
          type: {
            name: 'Number'
          }
        },
        selected_partition: {
          client_side_validation: true,
          required: false,
          serialized_name: 'SelectedPartition',
          type: {
            name: 'Composite',
            class_name: 'SelectedPartition'
          }
        }
      }
    }
  }
end