1. Packages
  2. Azure Native
  3. API Docs
  4. storagecache
  5. ImportJob
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.44.1 published on Thursday, Jun 6, 2024 by Pulumi

azure-native.storagecache.ImportJob

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.44.1 published on Thursday, Jun 6, 2024 by Pulumi

    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 Azure REST API version: 2024-03-01.

    Example Usage

    importJobs_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var importJob = new AzureNative.StorageCache.ImportJob("importJob", new()
        {
            AmlFilesystemName = "fs1",
            ConflictResolutionMode = AzureNative.StorageCache.ConflictResolutionMode.OverwriteAlways,
            ImportJobName = "job1",
            ImportPrefixes = new[]
            {
                "/",
            },
            Location = "eastus",
            MaximumErrors = 0,
            ResourceGroupName = "scgroup",
            Tags = 
            {
                { "Dept", "ContosoAds" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/storagecache/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := storagecache.NewImportJob(ctx, "importJob", &storagecache.ImportJobArgs{
    			AmlFilesystemName:      pulumi.String("fs1"),
    			ConflictResolutionMode: pulumi.String(storagecache.ConflictResolutionModeOverwriteAlways),
    			ImportJobName:          pulumi.String("job1"),
    			ImportPrefixes: pulumi.StringArray{
    				pulumi.String("/"),
    			},
    			Location:          pulumi.String("eastus"),
    			MaximumErrors:     pulumi.Int(0),
    			ResourceGroupName: pulumi.String("scgroup"),
    			Tags: pulumi.StringMap{
    				"Dept": pulumi.String("ContosoAds"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.storagecache.ImportJob;
    import com.pulumi.azurenative.storagecache.ImportJobArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var importJob = new ImportJob("importJob", ImportJobArgs.builder()
                .amlFilesystemName("fs1")
                .conflictResolutionMode("OverwriteAlways")
                .importJobName("job1")
                .importPrefixes("/")
                .location("eastus")
                .maximumErrors(0)
                .resourceGroupName("scgroup")
                .tags(Map.of("Dept", "ContosoAds"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    import_job = azure_native.storagecache.ImportJob("importJob",
        aml_filesystem_name="fs1",
        conflict_resolution_mode=azure_native.storagecache.ConflictResolutionMode.OVERWRITE_ALWAYS,
        import_job_name="job1",
        import_prefixes=["/"],
        location="eastus",
        maximum_errors=0,
        resource_group_name="scgroup",
        tags={
            "Dept": "ContosoAds",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const importJob = new azure_native.storagecache.ImportJob("importJob", {
        amlFilesystemName: "fs1",
        conflictResolutionMode: azure_native.storagecache.ConflictResolutionMode.OverwriteAlways,
        importJobName: "job1",
        importPrefixes: ["/"],
        location: "eastus",
        maximumErrors: 0,
        resourceGroupName: "scgroup",
        tags: {
            Dept: "ContosoAds",
        },
    });
    
    resources:
      importJob:
        type: azure-native:storagecache:ImportJob
        properties:
          amlFilesystemName: fs1
          conflictResolutionMode: OverwriteAlways
          importJobName: job1
          importPrefixes:
            - /
          location: eastus
          maximumErrors: 0
          resourceGroupName: scgroup
          tags:
            Dept: ContosoAds
    

    Create ImportJob Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ImportJob(name: string, args: ImportJobArgs, opts?: CustomResourceOptions);
    @overload
    def ImportJob(resource_name: str,
                  args: ImportJobArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ImportJob(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  aml_filesystem_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  conflict_resolution_mode: Optional[Union[str, ConflictResolutionMode]] = None,
                  import_job_name: Optional[str] = None,
                  import_prefixes: Optional[Sequence[str]] = None,
                  location: Optional[str] = None,
                  maximum_errors: Optional[int] = None,
                  tags: Optional[Mapping[str, str]] = None)
    func NewImportJob(ctx *Context, name string, args ImportJobArgs, opts ...ResourceOption) (*ImportJob, error)
    public ImportJob(string name, ImportJobArgs args, CustomResourceOptions? opts = null)
    public ImportJob(String name, ImportJobArgs args)
    public ImportJob(String name, ImportJobArgs args, CustomResourceOptions options)
    
    type: azure-native:storagecache:ImportJob
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ImportJobArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ImportJobArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ImportJobArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ImportJobArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ImportJobArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var importJobResource = new AzureNative.StorageCache.ImportJob("importJobResource", new()
    {
        AmlFilesystemName = "string",
        ResourceGroupName = "string",
        ConflictResolutionMode = "string",
        ImportJobName = "string",
        ImportPrefixes = new[]
        {
            "string",
        },
        Location = "string",
        MaximumErrors = 0,
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := storagecache.NewImportJob(ctx, "importJobResource", &storagecache.ImportJobArgs{
    AmlFilesystemName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ConflictResolutionMode: pulumi.String("string"),
    ImportJobName: pulumi.String("string"),
    ImportPrefixes: pulumi.StringArray{
    pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    MaximumErrors: pulumi.Int(0),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var importJobResource = new ImportJob("importJobResource", ImportJobArgs.builder()
        .amlFilesystemName("string")
        .resourceGroupName("string")
        .conflictResolutionMode("string")
        .importJobName("string")
        .importPrefixes("string")
        .location("string")
        .maximumErrors(0)
        .tags(Map.of("string", "string"))
        .build());
    
    import_job_resource = azure_native.storagecache.ImportJob("importJobResource",
        aml_filesystem_name="string",
        resource_group_name="string",
        conflict_resolution_mode="string",
        import_job_name="string",
        import_prefixes=["string"],
        location="string",
        maximum_errors=0,
        tags={
            "string": "string",
        })
    
    const importJobResource = new azure_native.storagecache.ImportJob("importJobResource", {
        amlFilesystemName: "string",
        resourceGroupName: "string",
        conflictResolutionMode: "string",
        importJobName: "string",
        importPrefixes: ["string"],
        location: "string",
        maximumErrors: 0,
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:storagecache:ImportJob
    properties:
        amlFilesystemName: string
        conflictResolutionMode: string
        importJobName: string
        importPrefixes:
            - string
        location: string
        maximumErrors: 0
        resourceGroupName: string
        tags:
            string: string
    

    ImportJob Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ImportJob resource accepts the following input properties:

    AmlFilesystemName string
    Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ConflictResolutionMode string | Pulumi.AzureNative.StorageCache.ConflictResolutionMode
    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.
    ImportJobName string
    Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    ImportPrefixes List<string>
    An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
    Location string
    The geo-location where the resource lives
    MaximumErrors int
    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.
    Tags Dictionary<string, string>
    Resource tags.
    AmlFilesystemName string
    Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ConflictResolutionMode string | ConflictResolutionMode
    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.
    ImportJobName string
    Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    ImportPrefixes []string
    An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
    Location string
    The geo-location where the resource lives
    MaximumErrors int
    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.
    Tags map[string]string
    Resource tags.
    amlFilesystemName String
    Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    conflictResolutionMode String | ConflictResolutionMode
    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.
    importJobName String
    Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    importPrefixes List<String>
    An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
    location String
    The geo-location where the resource lives
    maximumErrors Integer
    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.
    tags Map<String,String>
    Resource tags.
    amlFilesystemName string
    Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    conflictResolutionMode string | ConflictResolutionMode
    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.
    importJobName string
    Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    importPrefixes string[]
    An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
    location string
    The geo-location where the resource lives
    maximumErrors number
    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.
    tags {[key: string]: string}
    Resource tags.
    aml_filesystem_name str
    Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    conflict_resolution_mode str | ConflictResolutionMode
    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.
    import_job_name str
    Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    import_prefixes Sequence[str]
    An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
    location str
    The geo-location where the resource lives
    maximum_errors int
    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.
    tags Mapping[str, str]
    Resource tags.
    amlFilesystemName String
    Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    conflictResolutionMode String | "Fail" | "Skip" | "OverwriteIfDirty" | "OverwriteAlways"
    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.
    importJobName String
    Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    importPrefixes List<String>
    An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
    location String
    The geo-location where the resource lives
    maximumErrors Number
    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.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ImportJob resource produces the following output properties:

    BlobsImportedPerSecond double
    A recent and frequently updated rate of total files, directories, and symlinks imported per second.
    BlobsWalkedPerSecond double
    A recent and frequently updated rate of blobs walked per second.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastCompletionTime string
    The time of the last completed archive operation
    LastStartedTime string
    The time the latest archive operation started
    Name string
    The name of the resource
    ProvisioningState string
    ARM provisioning state.
    State string
    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.
    StatusMessage string
    The status message of the import job.
    SystemData Pulumi.AzureNative.StorageCache.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TotalBlobsImported double
    The total blobs that have been imported since import began.
    TotalBlobsWalked double
    The total blob objects walked.
    TotalConflicts int
    Number of conflicts in the import job.
    TotalErrors int
    Number of errors in the import job.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    BlobsImportedPerSecond float64
    A recent and frequently updated rate of total files, directories, and symlinks imported per second.
    BlobsWalkedPerSecond float64
    A recent and frequently updated rate of blobs walked per second.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastCompletionTime string
    The time of the last completed archive operation
    LastStartedTime string
    The time the latest archive operation started
    Name string
    The name of the resource
    ProvisioningState string
    ARM provisioning state.
    State string
    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.
    StatusMessage string
    The status message of the import job.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TotalBlobsImported float64
    The total blobs that have been imported since import began.
    TotalBlobsWalked float64
    The total blob objects walked.
    TotalConflicts int
    Number of conflicts in the import job.
    TotalErrors int
    Number of errors in the import job.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    blobsImportedPerSecond Double
    A recent and frequently updated rate of total files, directories, and symlinks imported per second.
    blobsWalkedPerSecond Double
    A recent and frequently updated rate of blobs walked per second.
    id String
    The provider-assigned unique ID for this managed resource.
    lastCompletionTime String
    The time of the last completed archive operation
    lastStartedTime String
    The time the latest archive operation started
    name String
    The name of the resource
    provisioningState String
    ARM provisioning state.
    state String
    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.
    statusMessage String
    The status message of the import job.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalBlobsImported Double
    The total blobs that have been imported since import began.
    totalBlobsWalked Double
    The total blob objects walked.
    totalConflicts Integer
    Number of conflicts in the import job.
    totalErrors Integer
    Number of errors in the import job.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    blobsImportedPerSecond number
    A recent and frequently updated rate of total files, directories, and symlinks imported per second.
    blobsWalkedPerSecond number
    A recent and frequently updated rate of blobs walked per second.
    id string
    The provider-assigned unique ID for this managed resource.
    lastCompletionTime string
    The time of the last completed archive operation
    lastStartedTime string
    The time the latest archive operation started
    name string
    The name of the resource
    provisioningState string
    ARM provisioning state.
    state string
    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.
    statusMessage string
    The status message of the import job.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalBlobsImported number
    The total blobs that have been imported since import began.
    totalBlobsWalked number
    The total blob objects walked.
    totalConflicts number
    Number of conflicts in the import job.
    totalErrors number
    Number of errors in the import job.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    blobs_imported_per_second float
    A recent and frequently updated rate of total files, directories, and symlinks imported per second.
    blobs_walked_per_second float
    A recent and frequently updated rate of blobs walked per second.
    id str
    The provider-assigned unique ID for this managed resource.
    last_completion_time str
    The time of the last completed archive operation
    last_started_time str
    The time the latest archive operation started
    name str
    The name of the resource
    provisioning_state str
    ARM provisioning state.
    state str
    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.
    status_message str
    The status message of the import job.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    total_blobs_imported float
    The total blobs that have been imported since import began.
    total_blobs_walked float
    The total blob objects walked.
    total_conflicts int
    Number of conflicts in the import job.
    total_errors int
    Number of errors in the import job.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    blobsImportedPerSecond Number
    A recent and frequently updated rate of total files, directories, and symlinks imported per second.
    blobsWalkedPerSecond Number
    A recent and frequently updated rate of blobs walked per second.
    id String
    The provider-assigned unique ID for this managed resource.
    lastCompletionTime String
    The time of the last completed archive operation
    lastStartedTime String
    The time the latest archive operation started
    name String
    The name of the resource
    provisioningState String
    ARM provisioning state.
    state String
    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.
    statusMessage String
    The status message of the import job.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalBlobsImported Number
    The total blobs that have been imported since import began.
    totalBlobsWalked Number
    The total blob objects walked.
    totalConflicts Number
    Number of conflicts in the import job.
    totalErrors Number
    Number of errors in the import job.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ConflictResolutionMode, ConflictResolutionModeArgs

    Fail
    Fail
    Skip
    Skip
    OverwriteIfDirty
    OverwriteIfDirty
    OverwriteAlways
    OverwriteAlways
    ConflictResolutionModeFail
    Fail
    ConflictResolutionModeSkip
    Skip
    ConflictResolutionModeOverwriteIfDirty
    OverwriteIfDirty
    ConflictResolutionModeOverwriteAlways
    OverwriteAlways
    Fail
    Fail
    Skip
    Skip
    OverwriteIfDirty
    OverwriteIfDirty
    OverwriteAlways
    OverwriteAlways
    Fail
    Fail
    Skip
    Skip
    OverwriteIfDirty
    OverwriteIfDirty
    OverwriteAlways
    OverwriteAlways
    FAIL
    Fail
    SKIP
    Skip
    OVERWRITE_IF_DIRTY
    OverwriteIfDirty
    OVERWRITE_ALWAYS
    OverwriteAlways
    "Fail"
    Fail
    "Skip"
    Skip
    "OverwriteIfDirty"
    OverwriteIfDirty
    "OverwriteAlways"
    OverwriteAlways

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:storagecache:ImportJob job1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageCache/amlFilesystems/{amlFilesystemName}/importJobs/{importJobName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.44.1 published on Thursday, Jun 6, 2024 by Pulumi