Class: Azure::StorageCache::Mgmt::V2019_11_01::Models::ApiOperationDisplay
- Inherits:
-
Object
- Object
- Azure::StorageCache::Mgmt::V2019_11_01::Models::ApiOperationDisplay
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-11-01/generated/azure_mgmt_storagecache/models/api_operation_display.rb
Overview
The object that represents the operation.
Instance Attribute Summary collapse
-
#operation ⇒ String
Operation type: Read, write, delete, etc.
-
#provider ⇒ String
Service provider: Microsoft.StorageCache.
-
#resource ⇒ String
etc.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApiOperationDisplay class as Ruby Hash.
Instance Attribute Details
#operation ⇒ String
16 17 18 |
# File 'lib/2019-11-01/generated/azure_mgmt_storagecache/models/api_operation_display.rb', line 16 def operation @operation end |
#provider ⇒ String
19 20 21 |
# File 'lib/2019-11-01/generated/azure_mgmt_storagecache/models/api_operation_display.rb', line 19 def provider @provider end |
#resource ⇒ String
etc.
23 24 25 |
# File 'lib/2019-11-01/generated/azure_mgmt_storagecache/models/api_operation_display.rb', line 23 def resource @resource end |
Class Method Details
.mapper ⇒ Object
Mapper for ApiOperationDisplay 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 63 64 65 66 |
# File 'lib/2019-11-01/generated/azure_mgmt_storagecache/models/api_operation_display.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApiOperation_display', type: { name: 'Composite', class_name: 'ApiOperationDisplay', model_properties: { 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 |