Class: Azure::Signalr::Mgmt::V2020_05_01::Models::Operation
- Inherits:
-
Object
- Object
- Azure::Signalr::Mgmt::V2020_05_01::Models::Operation
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-05-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.
-
#is_data_action ⇒ Boolean
rbac).
-
#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
Returns The object that describes the operation.
24 25 26 |
# File 'lib/2020-05-01/generated/azure_mgmt_signalr/models/operation.rb', line 24 def display @display end |
#is_data_action ⇒ Boolean
rbac)
21 22 23 |
# File 'lib/2020-05-01/generated/azure_mgmt_signalr/models/operation.rb', line 21 def is_data_action @is_data_action end |
#name ⇒ String
provider/resource/operation
17 18 19 |
# File 'lib/2020-05-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.
29 30 31 |
# File 'lib/2020-05-01/generated/azure_mgmt_signalr/models/operation.rb', line 29 def origin @origin end |
#properties ⇒ OperationProperties
Returns Extra properties for the operation.
32 33 34 |
# File 'lib/2020-05-01/generated/azure_mgmt_signalr/models/operation.rb', line 32 def properties @properties end |
Class Method Details
.mapper ⇒ Object
Mapper for Operation class as Ruby Hash. This will be used for serialization/deserialization.
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 82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/2020-05-01/generated/azure_mgmt_signalr/models/operation.rb', line 39 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' } }, is_data_action: { client_side_validation: true, required: false, serialized_name: 'isDataAction', type: { name: 'Boolean' } }, 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 |