Class: Azure::Signalr::Mgmt::V2018_10_01::Models::Operation
- Inherits:
-
Object
- Object
- Azure::Signalr::Mgmt::V2018_10_01::Models::Operation
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-10-01/generated/azure_mgmt_signalr/models/operation.rb
Overview
REST API operation supported by SignalR resource provider.
Instance Attribute Summary collapse
-
#display ⇒ OperationDisplay
The object that describes the operation.
-
#name ⇒ String
provider/resource/operation.
-
#origin ⇒ String
governs the display of the operation in the RBAC UX and the audit logs UX.
-
#properties ⇒ OperationProperties
Extra properties for the operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for Operation class as Ruby Hash.
Instance Attribute Details
#display ⇒ OperationDisplay
20 21 22 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/operation.rb', line 20 def display @display end |
#name ⇒ String
provider/resource/operation
17 18 19 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/operation.rb', line 17 def name @name end |
#origin ⇒ String
governs the display of the operation in the RBAC UX and the audit logs UX.
25 26 27 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/operation.rb', line 25 def origin @origin end |
#properties ⇒ OperationProperties
28 29 30 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/operation.rb', line 28 def properties @properties end |
Class Method Details
.mapper ⇒ Object
Mapper for Operation class as Ruby Hash. This will be used for serialization/deserialization.
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 78 79 80 81 |
# File 'lib/2018-10-01/generated/azure_mgmt_signalr/models/operation.rb', line 35 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, serialized_name: 'name', type: { name: 'String' } }, display: { client_side_validation: true, required: false, serialized_name: 'display', type: { name: 'Composite', class_name: 'OperationDisplay' } }, origin: { client_side_validation: true, required: false, serialized_name: 'origin', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Composite', class_name: 'OperationProperties' } } } } } end |