class Azure::Postgresql::Mgmt::V2017_12_01_preview::Models::Operation
REST API operation definition.
Attributes
display[RW]
@return [OperationDisplay] The localized display information for this particular operation or action.
name[RW]
@return [String] The name of the operation being performed on this particular object.
origin[RW]
@return [OperationOrigin] The intended executor of the operation. Possible values include: 'NotSpecified', 'user', 'system'
properties[RW]
@return Additional descriptions for the operation.
Public Class Methods
mapper()
click to toggle source
Mapper for Operation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-12-01-preview/generated/azure_mgmt_postgresql/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, read_only: true, serialized_name: 'name', type: { name: 'String' } }, display: { client_side_validation: true, required: false, read_only: true, serialized_name: 'display', type: { name: 'Composite', class_name: 'OperationDisplay' } }, origin: { client_side_validation: true, required: false, read_only: true, serialized_name: 'origin', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } } } } } end