Class: Azure::AnalysisServices::Mgmt::V2017_08_01::Models::Operation
- Inherits:
-
Object
- Object
- Azure::AnalysisServices::Mgmt::V2017_08_01::Models::Operation
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-08-01/generated/azure_mgmt_analysis_services/models/operation.rb
Overview
A Consumption REST API operation.
Instance Attribute Summary collapse
-
#display ⇒ OperationDisplay
The object that represents the operation.
-
#name ⇒ String
Operation name: provider/resource/operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Operation class as Ruby Hash.
Instance Attribute Details
#display ⇒ OperationDisplay
Returns The object that represents the operation.
19 20 21 |
# File 'lib/2017-08-01/generated/azure_mgmt_analysis_services/models/operation.rb', line 19 def display @display end |
#name ⇒ String
Returns Operation name: provider/resource/operation.
16 17 18 |
# File 'lib/2017-08-01/generated/azure_mgmt_analysis_services/models/operation.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for Operation class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/2017-08-01/generated/azure_mgmt_analysis_services/models/operation.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Operation', type: { name: 'Composite', class_name: 'Operation', model_properties: { name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, display: { client_side_validation: true, required: false, serialized_name: 'display', type: { name: 'Composite', class_name: 'OperationDisplay' } } } } } end |