class Azure::Synapse::Mgmt::V2019_06_01_preview::Models::SsisObjectMetadataStatusResponse

The status of the operation.

Attributes

error[RW]

@return [String] The operation error message.

name[RW]

@return [String] The operation name.

properties[RW]

@return [String] The operation properties.

status[RW]

@return [String] The status of the operation.

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-06-01-preview/generated/azure_mgmt_synapse/models/ssis_object_metadata_status_response.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SsisObjectMetadataStatusResponse',
    type: {
      name: 'Composite',
      class_name: 'SsisObjectMetadataStatusResponse',
      model_properties: {
        status: {
          client_side_validation: true,
          required: false,
          serialized_name: 'status',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'String'
          }
        },
        error: {
          client_side_validation: true,
          required: false,
          serialized_name: 'error',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end