class Azure::ContainerInstance::Mgmt::V2019_12_01::Models::Operation
Attributes
display[RW]
@return [OperationDisplay] The display information of the operation.
name[RW]
@return [String] The name of the operation.
origin[RW]
@return [ContainerInstanceOperationsOrigin] The intended executor of the operation. Possible values include: 'User', 'System'
properties[RW]
@return The additional properties.
Public Class Methods
mapper()
click to toggle source
Mapper for Operation
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-12-01/generated/azure_mgmt_container_instance/models/operation.rb, line 33 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: true, serialized_name: 'name', type: { name: 'String' } }, display: { client_side_validation: true, required: true, serialized_name: 'display', type: { name: 'Composite', class_name: 'OperationDisplay' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Object' } }, origin: { client_side_validation: true, required: false, serialized_name: 'origin', type: { name: 'String' } } } } } end