Class: Azure::ARM::Network::Models::TroubleshootingRecommendedActions
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::TroubleshootingRecommendedActions
- 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
-
#action_id ⇒ String
ID of the recommended action.
-
#action_text ⇒ String
Description of recommended actions.
-
#action_uri ⇒ String
troubleshooting actions.
-
#action_uri_text ⇒ String
troubleshooting actions.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TroubleshootingRecommendedActions class as Ruby Hash.
Instance Attribute Details
#action_id ⇒ String
Returns 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_text ⇒ String
Returns 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_uri ⇒ String
troubleshooting actions.
24 25 26 |
# File 'lib/generated/azure_mgmt_network/models/troubleshooting_recommended_actions.rb', line 24 def action_uri @action_uri end |
#action_uri_text ⇒ String
troubleshooting actions.
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
.mapper ⇒ Object
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 |