A request to import data from a remote source control system.

interface GitImportRequest {
    _links?: any;
    detailedStatus?: GitImportStatusDetail;
    importRequestId?: number;
    parameters?: GitImportRequestParameters;
    repository?: GitRepository;
    status?: GitAsyncOperationStatus;
    url?: string;
}

Properties

_links?: any

Links to related resources.

detailedStatus?: GitImportStatusDetail

Detailed status of the import, including the current step and an error message, if applicable.

importRequestId?: number

The unique identifier for this import request.

Parameters for creating the import request.

repository?: GitRepository

The target repository for this import.

Current status of the import.

url?: string

A link back to this import request resource.