class Azure::ContainerRegistry::Mgmt::V2017_06_01_preview::Models::OperationDisplayDefinition
The display information for a container registry operation.
Attributes
description[RW]
@return [String] The description for the operation.
operation[RW]
@return [String] The operation that users can perform.
provider[RW]
@return [String] The resource provider name: Microsoft.ContainerRegistry.
resource[RW]
@return [String] The resource on which the operation is performed.
Public Class Methods
mapper()
click to toggle source
Mapper for OperationDisplayDefinition
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-06-01-preview/generated/azure_mgmt_container_registry/models/operation_display_definition.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationDisplayDefinition', type: { name: 'Composite', class_name: 'OperationDisplayDefinition', model_properties: { provider: { client_side_validation: true, required: false, serialized_name: 'provider', type: { name: 'String' } }, resource: { client_side_validation: true, required: false, serialized_name: 'resource', type: { name: 'String' } }, operation: { client_side_validation: true, required: false, serialized_name: 'operation', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } } } } } end