Interface AsyncExportURLResult

Represents a compute download URL request promise result.

This value is used with ExportJobInterface.asyncGetDownloadURL.


AsyncJobs

interface AsyncExportURLResult {
    reason: AsyncResultReason;
    value?: string;
}

Properties

Properties

The reason for the end of the promise.

value?: string

The returned value of the promise. Undefined if the call failed.