class Azure::Signalr::Mgmt::V2020_05_01::Models::Operation
REST API operation supported by SignalR
resource provider.
Attributes
display[RW]
@return [OperationDisplay] The object that describes the operation.
is_data_action[RW]
@return [Boolean] If the operation is a data action. (for data plane rbac)
name[RW]
@return [String] Name of the operation with format: {provider}/{resource}/{operation}
origin[RW]
@return [String] Optional. The intended executor of the operation; governs the display of the operation in the RBAC UX and the audit logs UX.
properties[RW]
@return [OperationProperties] Extra properties for the operation.
Private Class Methods
mapper()
click to toggle source
Mapper for Operation
class as Ruby Hash. This will be used for serialization/deserialization.
# 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