Class: Azure::ARM::StreamAnalytics::Models::OperationDisplay
- Inherits:
-
Object
- Object
- Azure::ARM::StreamAnalytics::Models::OperationDisplay
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_stream_analytics/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.
29 30 31 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation_display.rb', line 29 def description @description end |
#operation ⇒ String
Returns The localized friendly name for the operation.
26 27 28 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation_display.rb', line 26 def operation @operation end |
#provider ⇒ String
name.
19 20 21 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation_display.rb', line 19 def provider @provider end |
#resource ⇒ String
related to this action/operation.
23 24 25 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation_display.rb', line 23 def resource @resource end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationDisplay class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_stream_analytics/models/operation_display.rb', line 36 def self.mapper() { required: false, serialized_name: 'Operation_display', type: { name: 'Composite', class_name: 'OperationDisplay', model_properties: { provider: { required: false, read_only: true, serialized_name: 'provider', type: { name: 'String' } }, resource: { required: false, read_only: true, serialized_name: 'resource', type: { name: 'String' } }, operation: { required: false, read_only: true, serialized_name: 'operation', type: { name: 'String' } }, description: { required: false, read_only: true, serialized_name: 'description', type: { name: 'String' } } } } } end |