class Azure::ServiceFabric::Mgmt::V2017_07_01_preview::Models::AvailableOperationDisplay

Operation supported by Service Fabric resource provider

Attributes

description[RW]

@return [String] Operation description

operation[RW]

@return [String] The operation that can be performed.

provider[RW]

@return [String] The name of the provider.

resource[RW]

@return [String] The resource on which the operation is performed

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/models/available_operation_display.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AvailableOperationDisplay',
    type: {
      name: 'Composite',
      class_name: 'AvailableOperationDisplay',
      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