Class: Azure::ARM::Network::Models::TroubleshootingDetails

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/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.



26
27
28
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 26

def detail
  @detail
end

#idString

Returns The id of the get troubleshoot operation.

Returns:

  • (String)

    The id of the get troubleshoot operation.



17
18
19
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 17

def id
  @id
end

#reason_typeString

Returns Reason type of failure.

Returns:

  • (String)

    Reason type of failure.



20
21
22
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 20

def reason_type
  @reason_type
end

actions.

Returns:



30
31
32
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 30

def recommended_actions
  @recommended_actions
end

#summaryString

Returns A summary of troubleshooting.

Returns:

  • (String)

    A summary of troubleshooting.



23
24
25
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 23

def summary
  @summary
end

Class Method Details

.mapperObject

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



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
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_details.rb', line 37

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