class Azure::Migrate::Mgmt::V2018_02_02::Models::Operation
A REST API operation supported by the provider.
Attributes
display[RW]
@return [OperationDisplay] Displayable properties of the operation.
name[RW]
@return [String] Name of the operation.
origin[RW]
@return [String] Origin of 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/2018-02-02/generated/azure_mgmt_migrate/models/operation.rb, line 29 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, 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' } } } } } end