class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::AvailableRpOperation

An operation that is available in this resource provider

Attributes

display[RW]

@return [AvailableRpOperationDisplayInfo] Display properties of the operation

is_data_action[RW]

@return [String] Whether this operation is a data action

name[RW]

@return [String] Operation name

origin[RW]

@return [String] Operation origin

service_specification[RW]

@return [OperationMetaServiceSpecification] Operation service specification

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/available_rp_operation.rb, line 37
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AvailableRpOperation',
    type: {
      name: 'Composite',
      class_name: 'AvailableRpOperation',
      model_properties: {
        display: {
          client_side_validation: true,
          required: false,
          serialized_name: 'display',
          type: {
            name: 'Composite',
            class_name: 'AvailableRpOperationDisplayInfo'
          }
        },
        is_data_action: {
          client_side_validation: true,
          required: false,
          serialized_name: 'isDataAction',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        service_specification: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.serviceSpecification',
          type: {
            name: 'Composite',
            class_name: 'OperationMetaServiceSpecification'
          }
        },
        origin: {
          client_side_validation: true,
          required: false,
          serialized_name: 'origin',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end