Class: Azure::TimeSeriesInsights::Mgmt::V2017_11_15::Models::OperationDisplay
- Inherits:
-
Object
- Object
- Azure::TimeSeriesInsights::Mgmt::V2017_11_15::Models::OperationDisplay
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/operation_display.rb
Overview
Contains the localized display information for this particular operation / action.
Instance Attribute Summary collapse
-
#description ⇒ String
The localized friendly description for the operation.
-
#operation ⇒ String
The localized friendly name for the operation.
-
#provider ⇒ String
name.
-
#resource ⇒ String
related to this action/operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationDisplay class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns The localized friendly description for the operation.
28 29 30 |
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/operation_display.rb', line 28 def description @description end |
#operation ⇒ String
Returns The localized friendly name for the operation.
25 26 27 |
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/operation_display.rb', line 25 def operation @operation end |
#provider ⇒ String
name.
18 19 20 |
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/operation_display.rb', line 18 def provider @provider end |
#resource ⇒ String
related to this action/operation.
22 23 24 |
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/operation_display.rb', line 22 def resource @resource end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationDisplay 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 75 76 77 78 79 80 81 82 83 |
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/operation_display.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Operation_display', type: { name: 'Composite', class_name: 'OperationDisplay', model_properties: { provider: { client_side_validation: true, required: false, read_only: true, serialized_name: 'provider', type: { name: 'String' } }, resource: { client_side_validation: true, required: false, read_only: true, serialized_name: 'resource', type: { name: 'String' } }, operation: { client_side_validation: true, required: false, read_only: true, serialized_name: 'operation', type: { name: 'String' } }, description: { client_side_validation: true, required: false, read_only: true, serialized_name: 'description', type: { name: 'String' } } } } } end |