Class: Azure::ARM::Network::Models::TroubleshootingRecommendedActions

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb

Overview

Recommended actions based on discovered issues.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#action_idString

Returns ID of the recommended action.

Returns:

  • (String)

    ID of the recommended action.



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

def action_id
  @action_id
end

#action_textString

Returns Description of recommended actions.

Returns:

  • (String)

    Description of recommended actions.



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

def action_text
  @action_text
end

#action_uriString

troubleshooting actions.

Returns:

  • (String)

    The uri linking to a documentation for the recommended



24
25
26
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 24

def action_uri
  @action_uri
end

#action_uri_textString

troubleshooting actions.

Returns:

  • (String)

    The information from the URI for the recommended



28
29
30
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 28

def action_uri_text
  @action_uri_text
end

Class Method Details

.mapperObject

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



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

def self.mapper()
  {
    required: false,
    serialized_name: 'TroubleshootingRecommendedActions',
    type: {
      name: 'Composite',
      class_name: 'TroubleshootingRecommendedActions',
      model_properties: {
        action_id: {
          required: false,
          serialized_name: 'actionId',
          type: {
            name: 'String'
          }
        },
        action_text: {
          required: false,
          serialized_name: 'actionText',
          type: {
            name: 'String'
          }
        },
        action_uri: {
          required: false,
          serialized_name: 'actionUri',
          type: {
            name: 'String'
          }
        },
        action_uri_text: {
          required: false,
          serialized_name: 'actionUriText',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end