Class: Azure::Network::Mgmt::V2018_06_01::Models::TroubleshootingDetails

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-06-01/generated/azure_mgmt_network/models/troubleshooting_details.rb

Overview

Information gained from troubleshooting of specified resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#detailString

Returns Details on troubleshooting results.

Returns:

  • (String)

    Details on troubleshooting results.



25
26
27
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 25

def detail
  @detail
end

#idString

Returns The id of the get troubleshoot operation.

Returns:

  • (String)

    The id of the get troubleshoot operation.



16
17
18
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 16

def id
  @id
end

#reason_typeString

Returns Reason type of failure.

Returns:

  • (String)

    Reason type of failure.



19
20
21
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 19

def reason_type
  @reason_type
end

actions.

Returns:



29
30
31
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 29

def recommended_actions
  @recommended_actions
end

#summaryString

Returns A summary of troubleshooting.

Returns:

  • (String)

    A summary of troubleshooting.



22
23
24
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 22

def summary
  @summary
end

Class Method Details

.mapperObject

Mapper for TroubleshootingDetails 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
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 36

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'TroubleshootingDetails',
    type: {
      name: 'Composite',
      class_name: 'TroubleshootingDetails',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        reason_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'reasonType',
          type: {
            name: 'String'
          }
        },
        summary: {
          client_side_validation: true,
          required: false,
          serialized_name: 'summary',
          type: {
            name: 'String'
          }
        },
        detail: {
          client_side_validation: true,
          required: false,
          serialized_name: 'detail',
          type: {
            name: 'String'
          }
        },
        recommended_actions: {
          client_side_validation: true,
          required: false,
          serialized_name: 'recommendedActions',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'TroubleshootingRecommendedActionsElementType',
                type: {
                  name: 'Composite',
                  class_name: 'TroubleshootingRecommendedActions'
                }
            }
          }
        }
      }
    }
  }
end