Class: Azure::Network::Mgmt::V2017_03_01::Models::TroubleshootingRecommendedActions

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-03-01/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.



16
17
18
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 16

def action_id
  @action_id
end

#action_textString

Returns Description of recommended actions.

Returns:

  • (String)

    Description of recommended actions.



19
20
21
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 19

def action_text
  @action_text
end

#action_uriString

troubleshooting actions.

Returns:

  • (String)

    The uri linking to a documentation for the recommended



23
24
25
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 23

def action_uri
  @action_uri
end

#action_uri_textString

troubleshooting actions.

Returns:

  • (String)

    The information from the URI for the recommended



27
28
29
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 27

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.



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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 34

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