class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::OperationMetaServiceSpecification

What is this?

Attributes

log_specifications[RW]

@return [Array<OperationMetaLogSpecification>] Service log specifications

metric_specifications[RW]

@return [Array<OperationMetaMetricSpecification>] Service metric specifications

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/operation_meta_service_specification.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'OperationMetaServiceSpecification',
    type: {
      name: 'Composite',
      class_name: 'OperationMetaServiceSpecification',
      model_properties: {
        metric_specifications: {
          client_side_validation: true,
          required: false,
          serialized_name: 'metricSpecifications',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'OperationMetaMetricSpecificationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'OperationMetaMetricSpecification'
                }
            }
          }
        },
        log_specifications: {
          client_side_validation: true,
          required: false,
          serialized_name: 'logSpecifications',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'OperationMetaLogSpecificationElementType',
                type: {
                  name: 'Composite',
                  class_name: 'OperationMetaLogSpecification'
                }
            }
          }
        }
      }
    }
  }
end