class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::ExportStatus

The details of the export status.

Attributes

end_time[RW]

@return [DateTime] The date and time when the export ended.

run_step_result_id[RW]

@return [String] The run step result Id.

service_id[RW]

@return The id of the service for whom the export status is being reported.

service_member_id[RW]

@return The server Id for whom the export status is being reported.

Private Class Methods

mapper() click to toggle source

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

# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/export_status.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExportStatus',
    type: {
      name: 'Composite',
      class_name: 'ExportStatus',
      model_properties: {
        service_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'serviceId',
          type: {
            name: 'String'
          }
        },
        service_member_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'serviceMemberId',
          type: {
            name: 'String'
          }
        },
        end_time: {
          client_side_validation: true,
          required: false,
          serialized_name: 'endTime',
          type: {
            name: 'DateTime'
          }
        },
        run_step_result_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'runStepResultId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end