GetImportJobResult

data class GetImportJobResult(val azureApiVersion: String, val blobsImportedPerSecond: Double, val blobsWalkedPerSecond: Double, val conflictResolutionMode: String? = null, val id: String, val importPrefixes: List<String>? = null, val lastCompletionTime: String, val lastStartedTime: String, val location: String, val maximumErrors: Int? = null, val name: String, val provisioningState: String, val state: String, val statusMessage: String, val systemData: SystemDataResponse, val tags: Map<String, String>? = null, val totalBlobsImported: Double, val totalBlobsWalked: Double, val totalConflicts: Int, val totalErrors: Int, val type: String)

An import job instance. Follows Azure Resource Manager standards: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/resource-api-reference.md

Constructors

Link copied to clipboard
constructor(azureApiVersion: String, blobsImportedPerSecond: Double, blobsWalkedPerSecond: Double, conflictResolutionMode: String? = null, id: String, importPrefixes: List<String>? = null, lastCompletionTime: String, lastStartedTime: String, location: String, maximumErrors: Int? = null, name: String, provisioningState: String, state: String, statusMessage: String, systemData: SystemDataResponse, tags: Map<String, String>? = null, totalBlobsImported: Double, totalBlobsWalked: Double, totalConflicts: Int, totalErrors: Int, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Azure API version of the resource.

Link copied to clipboard

A recent and frequently updated rate of total files, directories, and symlinks imported per second.

Link copied to clipboard

A recent and frequently updated rate of blobs walked per second.

Link copied to clipboard

How the import job will handle conflicts. For example, if the import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or was not previously imported. OverwriteAlways extends OverwriteIfDirty to include releasing files that had been restored but were not dirty. Please reference https://learn.microsoft.com/en-us/azure/azure-managed-lustre/ for a thorough explanation of these resolution modes.

Link copied to clipboard
val id: String

Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

Link copied to clipboard
val importPrefixes: List<String>? = null

An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.

Link copied to clipboard

The time of the last completed archive operation

Link copied to clipboard

The time the latest archive operation started

Link copied to clipboard

The geo-location where the resource lives

Link copied to clipboard
val maximumErrors: Int? = null

Total non-conflict oriented errors the import job will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately and is the default.

Link copied to clipboard

The name of the resource

Link copied to clipboard

ARM provisioning state.

Link copied to clipboard

The state of the import job. InProgress indicates the import is still running. Canceled indicates it has been canceled by the user. Completed indicates import finished, successfully importing all discovered blobs into the Lustre namespace. CompletedPartial indicates the import finished but some blobs either were found to be conflicting and could not be imported or other errors were encountered. Failed means the import was unable to complete due to a fatal error.

Link copied to clipboard

The status message of the import job.

Link copied to clipboard

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Link copied to clipboard
val tags: Map<String, String>? = null

Resource tags.

Link copied to clipboard

The total blobs that have been imported since import began.

Link copied to clipboard

The total blob objects walked.

Link copied to clipboard

Number of conflicts in the import job.

Link copied to clipboard

Number of errors in the import job.

Link copied to clipboard

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"