Class: Azure::ARM::Storage::Models::OperationDisplay
- Inherits:
-
Object
- Object
- Azure::ARM::Storage::Models::OperationDisplay
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_storage/models/operation_display.rb
Overview
Display metadata associated with the operation.
Instance Attribute Summary collapse
-
#operation ⇒ String
Type of operation: get, read, delete, etc.
-
#provider ⇒ String
Service provider: Microsoft Storage.
-
#resource ⇒ String
Resource on which the operation is performed etc.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationDisplay class as Ruby Hash.
Instance Attribute Details
#operation ⇒ String
Returns Type of operation: get, read, delete, etc.
23 24 25 |
# File 'lib/generated/azure_mgmt_storage/models/operation_display.rb', line 23 def operation @operation end |
#provider ⇒ String
Returns Service provider: Microsoft Storage.
17 18 19 |
# File 'lib/generated/azure_mgmt_storage/models/operation_display.rb', line 17 def provider @provider end |
#resource ⇒ String
Returns Resource on which the operation is performed etc.
20 21 22 |
# File 'lib/generated/azure_mgmt_storage/models/operation_display.rb', line 20 def resource @resource end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationDisplay class as Ruby Hash. This will be used for serialization/deserialization.
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 57 58 59 60 61 62 |
# File 'lib/generated/azure_mgmt_storage/models/operation_display.rb', line 30 def self.mapper() { required: false, serialized_name: 'Operation_display', type: { name: 'Composite', class_name: 'OperationDisplay', model_properties: { provider: { required: false, serialized_name: 'provider', type: { name: 'String' } }, resource: { required: false, serialized_name: 'resource', type: { name: 'String' } }, operation: { required: false, serialized_name: 'operation', type: { name: 'String' } } } } } end |