BatchMigrateResourcesOperationMetadata

Runtime operation information for MigrationService.BatchMigrateResources.

Fields
genericMetadata object (GenericOperationMetadata)

The common part of the operation metadata.

partialResults[] object (PartialResult)

Partial results that reflect the latest migration operation progress.

JSON representation
{
  "genericMetadata": {
    object (GenericOperationMetadata)
  },
  "partialResults": [
    {
      object (PartialResult)
    }
  ]
}

PartialResult

Represents a partial result in batch migration operation for one MigrateResourceRequest.

Fields
request object (MigrateResourceRequest)
result Union type
If the resource's migration is ongoing, none of the result will be set. If the resource's migration is finished, either error or one of the migrated resource name will be filled. result can be only one of the following:
error object (Status)

The error result of the migration request in case of failure.

model string

Migrated model resource name.

dataset string

Migrated dataset resource name.

JSON representation
{
  "request": {
    object (MigrateResourceRequest)
  },

  // result
  "error": {
    object (Status)
  },
  "model": string,
  "dataset": string
  // Union type
}