Class: Azure::Labservices::Mgmt::V2018_10_15::Models::OperationMetadataDisplay
- Inherits:
-
Object
- Object
- Azure::Labservices::Mgmt::V2018_10_15::Models::OperationMetadataDisplay
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_metadata_display.rb
Overview
The object that describes the operations
Instance Attribute Summary collapse
-
#description ⇒ String
Friendly name of the operation.
-
#operation ⇒ String
etc.
-
#provider ⇒ String
Friendly name of the resource provider.
-
#resource ⇒ String
Resource type on which the operation is performed.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationMetadataDisplay class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns Friendly name of the operation.
26 27 28 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_metadata_display.rb', line 26 def description @description end |
#operation ⇒ String
etc.
23 24 25 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_metadata_display.rb', line 23 def operation @operation end |
#provider ⇒ String
Returns Friendly name of the resource provider.
16 17 18 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_metadata_display.rb', line 16 def provider @provider end |
#resource ⇒ String
Returns Resource type on which the operation is performed.
19 20 21 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/operation_metadata_display.rb', line 19 def resource @resource end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationMetadataDisplay 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/2018-10-15/generated/azure_mgmt_labservices/models/operation_metadata_display.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationMetadataDisplay', type: { name: 'Composite', class_name: 'OperationMetadataDisplay', model_properties: { 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' } }, operation: { client_side_validation: true, required: false, serialized_name: 'operation', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } } } } } end |