Class: Azure::Advisor::Mgmt::V2017_03_31::Models::OperationDisplayInfo
- Inherits:
-
Object
- Object
- Azure::Advisor::Mgmt::V2017_03_31::Models::OperationDisplayInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-03-31/generated/azure_mgmt_advisor/models/operation_display_info.rb
Overview
The operation supported by Advisor.
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the operation.
-
#operation ⇒ String
permission level.
-
#provider ⇒ String
Service provider: Microsoft Advisor.
-
#resource ⇒ String
Resource on which the operation is performed.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationDisplayInfo class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns The description of the operation.
16 17 18 |
# File 'lib/2017-03-31/generated/azure_mgmt_advisor/models/operation_display_info.rb', line 16 def description @description end |
#operation ⇒ String
permission level.
20 21 22 |
# File 'lib/2017-03-31/generated/azure_mgmt_advisor/models/operation_display_info.rb', line 20 def operation @operation end |
#provider ⇒ String
Returns Service provider: Microsoft Advisor.
23 24 25 |
# File 'lib/2017-03-31/generated/azure_mgmt_advisor/models/operation_display_info.rb', line 23 def provider @provider end |
#resource ⇒ String
Returns Resource on which the operation is performed.
26 27 28 |
# File 'lib/2017-03-31/generated/azure_mgmt_advisor/models/operation_display_info.rb', line 26 def resource @resource end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationDisplayInfo class as Ruby Hash. This will be used for serialization/deserialization.
33 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 74 75 76 77 |
# File 'lib/2017-03-31/generated/azure_mgmt_advisor/models/operation_display_info.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationDisplayInfo', type: { name: 'Composite', class_name: 'OperationDisplayInfo', model_properties: { description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } }, operation: { client_side_validation: true, required: false, serialized_name: 'operation', type: { name: 'String' } }, provider: { client_side_validation: true, required: false, serialized_name: 'provider', type: { name: 'String' } }, resource: { client_side_validation: true, required: false, serialized_name: 'resource', type: { name: 'String' } } } } } end |