class Azure::RecoveryServices::Mgmt::V2016_06_01::Models::ClientDiscoveryDisplay

Localized display information of an operation.

Attributes

description[RW]

@return [String] Description of the operation having details of what operation is about.

operation[RW]

@return [String] Operations Name itself.

provider[RW]

@return [String] Name of the provider for display purposes

resource[RW]

@return [String] ResourceType for which this Operation can be performed.

Private Class Methods

mapper() click to toggle source

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

# File lib/2016-06-01/generated/azure_mgmt_recovery_services/models/client_discovery_display.rb, line 34
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ClientDiscoveryDisplay',
    type: {
      name: 'Composite',
      class_name: 'ClientDiscoveryDisplay',
      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