class Azure::Network::Mgmt::V2018_04_01::Models::OperationDisplay

Display metadata associated with the operation.

Attributes

description[RW]

@return [String] Description of the operation.

operation[RW]

@return [String] Type of the operation: get, read, delete, etc.

provider[RW]

@return [String] Service provider: Microsoft Network.

resource[RW]

@return [String] Resource on which the operation is performed.

Public Class Methods

mapper() click to toggle source

Mapper for OperationDisplay class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-04-01/generated/azure_mgmt_network/models/operation_display.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Operation_display',
    type: {
      name: 'Composite',
      class_name: 'OperationDisplay',
      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