1. Packages
  2. Azure Native
  3. API Docs
  4. storagecache
  5. AutoImportJob
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi

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

    Uses Azure REST API version 2025-07-01.

    Example Usage

    autoImportJobs_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var autoImportJob = new AzureNative.StorageCache.AutoImportJob("autoImportJob", new()
        {
            AdminStatus = AzureNative.StorageCache.AdminStatus.Enable,
            AmlFilesystemName = "fs1",
            AutoImportJobName = "autojob1",
            AutoImportPrefixes = new[]
            {
                "/",
            },
            ConflictResolutionMode = AzureNative.StorageCache.ConflictResolutionMode.Skip,
            EnableDeletions = false,
            Location = "eastus",
            MaximumErrors = 0,
            ResourceGroupName = "scgroup",
            Tags = 
            {
                { "Dept", "ContosoAds" },
            },
        });
    
    });
    
    package main
    
    import (
    	storagecache "github.com/pulumi/pulumi-azure-native-sdk/storagecache/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := storagecache.NewAutoImportJob(ctx, "autoImportJob", &storagecache.AutoImportJobArgs{
    			AdminStatus:       pulumi.String(storagecache.AdminStatusEnable),
    			AmlFilesystemName: pulumi.String("fs1"),
    			AutoImportJobName: pulumi.String("autojob1"),
    			AutoImportPrefixes: pulumi.StringArray{
    				pulumi.String("/"),
    			},
    			ConflictResolutionMode: pulumi.String(storagecache.ConflictResolutionModeSkip),
    			EnableDeletions:        pulumi.Bool(false),
    			Location:               pulumi.String("eastus"),
    			MaximumErrors:          pulumi.Float64(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.AutoImportJob;
    import com.pulumi.azurenative.storagecache.AutoImportJobArgs;
    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 autoImportJob = new AutoImportJob("autoImportJob", AutoImportJobArgs.builder()
                .adminStatus("Enable")
                .amlFilesystemName("fs1")
                .autoImportJobName("autojob1")
                .autoImportPrefixes("/")
                .conflictResolutionMode("Skip")
                .enableDeletions(false)
                .location("eastus")
                .maximumErrors(0.0)
                .resourceGroupName("scgroup")
                .tags(Map.of("Dept", "ContosoAds"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const autoImportJob = new azure_native.storagecache.AutoImportJob("autoImportJob", {
        adminStatus: azure_native.storagecache.AdminStatus.Enable,
        amlFilesystemName: "fs1",
        autoImportJobName: "autojob1",
        autoImportPrefixes: ["/"],
        conflictResolutionMode: azure_native.storagecache.ConflictResolutionMode.Skip,
        enableDeletions: false,
        location: "eastus",
        maximumErrors: 0,
        resourceGroupName: "scgroup",
        tags: {
            Dept: "ContosoAds",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    auto_import_job = azure_native.storagecache.AutoImportJob("autoImportJob",
        admin_status=azure_native.storagecache.AdminStatus.ENABLE,
        aml_filesystem_name="fs1",
        auto_import_job_name="autojob1",
        auto_import_prefixes=["/"],
        conflict_resolution_mode=azure_native.storagecache.ConflictResolutionMode.SKIP,
        enable_deletions=False,
        location="eastus",
        maximum_errors=0,
        resource_group_name="scgroup",
        tags={
            "Dept": "ContosoAds",
        })
    
    resources:
      autoImportJob:
        type: azure-native:storagecache:AutoImportJob
        properties:
          adminStatus: Enable
          amlFilesystemName: fs1
          autoImportJobName: autojob1
          autoImportPrefixes:
            - /
          conflictResolutionMode: Skip
          enableDeletions: false
          location: eastus
          maximumErrors: 0
          resourceGroupName: scgroup
          tags:
            Dept: ContosoAds
    

    Create AutoImportJob Resource

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

    Constructor syntax

    new AutoImportJob(name: string, args: AutoImportJobArgs, opts?: CustomResourceOptions);
    @overload
    def AutoImportJob(resource_name: str,
                      args: AutoImportJobArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def AutoImportJob(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      aml_filesystem_name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      admin_status: Optional[Union[str, AdminStatus]] = None,
                      auto_import_job_name: Optional[str] = None,
                      auto_import_prefixes: Optional[Sequence[str]] = None,
                      conflict_resolution_mode: Optional[Union[str, ConflictResolutionMode]] = None,
                      enable_deletions: Optional[bool] = None,
                      location: Optional[str] = None,
                      maximum_errors: Optional[float] = None,
                      tags: Optional[Mapping[str, str]] = None)
    func NewAutoImportJob(ctx *Context, name string, args AutoImportJobArgs, opts ...ResourceOption) (*AutoImportJob, error)
    public AutoImportJob(string name, AutoImportJobArgs args, CustomResourceOptions? opts = null)
    public AutoImportJob(String name, AutoImportJobArgs args)
    public AutoImportJob(String name, AutoImportJobArgs args, CustomResourceOptions options)
    
    type: azure-native:storagecache:AutoImportJob
    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 AutoImportJobArgs
    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 AutoImportJobArgs
    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 AutoImportJobArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutoImportJobArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutoImportJobArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var autoImportJobResource = new AzureNative.StorageCache.AutoImportJob("autoImportJobResource", new()
    {
        AmlFilesystemName = "string",
        ResourceGroupName = "string",
        AdminStatus = "string",
        AutoImportJobName = "string",
        AutoImportPrefixes = new[]
        {
            "string",
        },
        ConflictResolutionMode = "string",
        EnableDeletions = false,
        Location = "string",
        MaximumErrors = 0,
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := storagecache.NewAutoImportJob(ctx, "autoImportJobResource", &storagecache.AutoImportJobArgs{
    	AmlFilesystemName: pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	AdminStatus:       pulumi.String("string"),
    	AutoImportJobName: pulumi.String("string"),
    	AutoImportPrefixes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ConflictResolutionMode: pulumi.String("string"),
    	EnableDeletions:        pulumi.Bool(false),
    	Location:               pulumi.String("string"),
    	MaximumErrors:          pulumi.Float64(0),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var autoImportJobResource = new AutoImportJob("autoImportJobResource", AutoImportJobArgs.builder()
        .amlFilesystemName("string")
        .resourceGroupName("string")
        .adminStatus("string")
        .autoImportJobName("string")
        .autoImportPrefixes("string")
        .conflictResolutionMode("string")
        .enableDeletions(false)
        .location("string")
        .maximumErrors(0.0)
        .tags(Map.of("string", "string"))
        .build());
    
    auto_import_job_resource = azure_native.storagecache.AutoImportJob("autoImportJobResource",
        aml_filesystem_name="string",
        resource_group_name="string",
        admin_status="string",
        auto_import_job_name="string",
        auto_import_prefixes=["string"],
        conflict_resolution_mode="string",
        enable_deletions=False,
        location="string",
        maximum_errors=0,
        tags={
            "string": "string",
        })
    
    const autoImportJobResource = new azure_native.storagecache.AutoImportJob("autoImportJobResource", {
        amlFilesystemName: "string",
        resourceGroupName: "string",
        adminStatus: "string",
        autoImportJobName: "string",
        autoImportPrefixes: ["string"],
        conflictResolutionMode: "string",
        enableDeletions: false,
        location: "string",
        maximumErrors: 0,
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:storagecache:AutoImportJob
    properties:
        adminStatus: string
        amlFilesystemName: string
        autoImportJobName: string
        autoImportPrefixes:
            - string
        conflictResolutionMode: string
        enableDeletions: false
        location: string
        maximumErrors: 0
        resourceGroupName: string
        tags:
            string: string
    

    AutoImportJob Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AutoImportJob 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.
    AdminStatus string | Pulumi.AzureNative.StorageCache.AdminStatus
    The administrative status of the auto import job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto import job. By default it is set to 'Enable'.
    AutoImportJobName string
    Name for the auto import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    AutoImportPrefixes List<string>
    An array of blob paths/prefixes that get auto imported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths is 100.
    ConflictResolutionMode string | Pulumi.AzureNative.StorageCache.ConflictResolutionMode
    How the auto import job will handle conflicts. For example, if the auto import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the auto import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the auto import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or is currently released. 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/blob-integration#conflict-resolution-mode for a thorough explanation of these resolution modes.
    EnableDeletions bool
    Whether or not to enable deletions during auto import. This only affects overwrite-dirty.
    Location string
    The geo-location where the resource lives
    MaximumErrors double
    Total non-conflict-oriented errors (e.g., OS errors) Import will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately on any error.
    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.
    AdminStatus string | AdminStatus
    The administrative status of the auto import job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto import job. By default it is set to 'Enable'.
    AutoImportJobName string
    Name for the auto import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    AutoImportPrefixes []string
    An array of blob paths/prefixes that get auto imported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths is 100.
    ConflictResolutionMode string | ConflictResolutionMode
    How the auto import job will handle conflicts. For example, if the auto import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the auto import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the auto import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or is currently released. 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/blob-integration#conflict-resolution-mode for a thorough explanation of these resolution modes.
    EnableDeletions bool
    Whether or not to enable deletions during auto import. This only affects overwrite-dirty.
    Location string
    The geo-location where the resource lives
    MaximumErrors float64
    Total non-conflict-oriented errors (e.g., OS errors) Import will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately on any error.
    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.
    adminStatus String | AdminStatus
    The administrative status of the auto import job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto import job. By default it is set to 'Enable'.
    autoImportJobName String
    Name for the auto import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    autoImportPrefixes List<String>
    An array of blob paths/prefixes that get auto imported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths is 100.
    conflictResolutionMode String | ConflictResolutionMode
    How the auto import job will handle conflicts. For example, if the auto import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the auto import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the auto import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or is currently released. 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/blob-integration#conflict-resolution-mode for a thorough explanation of these resolution modes.
    enableDeletions Boolean
    Whether or not to enable deletions during auto import. This only affects overwrite-dirty.
    location String
    The geo-location where the resource lives
    maximumErrors Double
    Total non-conflict-oriented errors (e.g., OS errors) Import will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately on any error.
    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.
    adminStatus string | AdminStatus
    The administrative status of the auto import job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto import job. By default it is set to 'Enable'.
    autoImportJobName string
    Name for the auto import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    autoImportPrefixes string[]
    An array of blob paths/prefixes that get auto imported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths is 100.
    conflictResolutionMode string | ConflictResolutionMode
    How the auto import job will handle conflicts. For example, if the auto import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the auto import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the auto import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or is currently released. 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/blob-integration#conflict-resolution-mode for a thorough explanation of these resolution modes.
    enableDeletions boolean
    Whether or not to enable deletions during auto import. This only affects overwrite-dirty.
    location string
    The geo-location where the resource lives
    maximumErrors number
    Total non-conflict-oriented errors (e.g., OS errors) Import will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately on any error.
    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.
    admin_status str | AdminStatus
    The administrative status of the auto import job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto import job. By default it is set to 'Enable'.
    auto_import_job_name str
    Name for the auto import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    auto_import_prefixes Sequence[str]
    An array of blob paths/prefixes that get auto imported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths is 100.
    conflict_resolution_mode str | ConflictResolutionMode
    How the auto import job will handle conflicts. For example, if the auto import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the auto import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the auto import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or is currently released. 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/blob-integration#conflict-resolution-mode for a thorough explanation of these resolution modes.
    enable_deletions bool
    Whether or not to enable deletions during auto import. This only affects overwrite-dirty.
    location str
    The geo-location where the resource lives
    maximum_errors float
    Total non-conflict-oriented errors (e.g., OS errors) Import will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately on any error.
    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.
    adminStatus String | "Enable" | "Disable"
    The administrative status of the auto import job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto import job. By default it is set to 'Enable'.
    autoImportJobName String
    Name for the auto import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    autoImportPrefixes List<String>
    An array of blob paths/prefixes that get auto imported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths is 100.
    conflictResolutionMode String | "Fail" | "Skip" | "OverwriteIfDirty" | "OverwriteAlways"
    How the auto import job will handle conflicts. For example, if the auto import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the auto import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the auto import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or is currently released. 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/blob-integration#conflict-resolution-mode for a thorough explanation of these resolution modes.
    enableDeletions Boolean
    Whether or not to enable deletions during auto import. This only affects overwrite-dirty.
    location String
    The geo-location where the resource lives
    maximumErrors Number
    Total non-conflict-oriented errors (e.g., OS errors) Import will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately on any error.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    BlobSyncEvents Pulumi.AzureNative.StorageCache.Outputs.AutoImportJobResponseBlobSyncEvents
    The storage account blob change feed status of the auto import job.
    Id string
    The provider-assigned unique ID for this managed resource.
    ImportedDirectories double
    Number of directories imported during full scan.
    ImportedFiles double
    Number of files imported during full scan.
    ImportedSymlinks double
    Number of symlinks imported during full scan.
    LastCompletionTimeUTC string
    The time (in UTC) of the last completed auto import job.
    LastStartedTimeUTC string
    The time (in UTC) the latest auto import job started.
    Name string
    The name of the resource
    PreexistingDirectories double
    Number of preexisting directories during full scan.
    PreexistingFiles double
    Number of preexisting files during full scan.
    PreexistingSymlinks double
    Number of preexisting symlinks during full scan.
    ProvisioningState string
    ARM provisioning state.
    RateOfBlobImport double
    Rate of blob import during full scan.
    RateOfBlobWalk double
    Rate of blobs walked during full scan.
    ScanEndTime string
    Date and time of when the full scan ended.
    ScanStartTime string
    Date and time of when the currently running full scan began.
    State string
    The state of the auto import operation.
    StatusCode string
    Server-defined status code for auto import job.
    StatusMessage string
    Server-defined status message for auto import job.
    SystemData Pulumi.AzureNative.StorageCache.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TotalBlobsImported double
    Total number of blobs imported during full scan.
    TotalBlobsWalked double
    Total number of blobs walked during full scan.
    TotalConflicts double
    Total conflicts encountered during full scan.
    TotalErrors double
    Total errors encountered during full scan.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    BlobSyncEvents AutoImportJobResponseBlobSyncEvents
    The storage account blob change feed status of the auto import job.
    Id string
    The provider-assigned unique ID for this managed resource.
    ImportedDirectories float64
    Number of directories imported during full scan.
    ImportedFiles float64
    Number of files imported during full scan.
    ImportedSymlinks float64
    Number of symlinks imported during full scan.
    LastCompletionTimeUTC string
    The time (in UTC) of the last completed auto import job.
    LastStartedTimeUTC string
    The time (in UTC) the latest auto import job started.
    Name string
    The name of the resource
    PreexistingDirectories float64
    Number of preexisting directories during full scan.
    PreexistingFiles float64
    Number of preexisting files during full scan.
    PreexistingSymlinks float64
    Number of preexisting symlinks during full scan.
    ProvisioningState string
    ARM provisioning state.
    RateOfBlobImport float64
    Rate of blob import during full scan.
    RateOfBlobWalk float64
    Rate of blobs walked during full scan.
    ScanEndTime string
    Date and time of when the full scan ended.
    ScanStartTime string
    Date and time of when the currently running full scan began.
    State string
    The state of the auto import operation.
    StatusCode string
    Server-defined status code for auto import job.
    StatusMessage string
    Server-defined status message for auto import job.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TotalBlobsImported float64
    Total number of blobs imported during full scan.
    TotalBlobsWalked float64
    Total number of blobs walked during full scan.
    TotalConflicts float64
    Total conflicts encountered during full scan.
    TotalErrors float64
    Total errors encountered during full scan.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    blobSyncEvents AutoImportJobResponseBlobSyncEvents
    The storage account blob change feed status of the auto import job.
    id String
    The provider-assigned unique ID for this managed resource.
    importedDirectories Double
    Number of directories imported during full scan.
    importedFiles Double
    Number of files imported during full scan.
    importedSymlinks Double
    Number of symlinks imported during full scan.
    lastCompletionTimeUTC String
    The time (in UTC) of the last completed auto import job.
    lastStartedTimeUTC String
    The time (in UTC) the latest auto import job started.
    name String
    The name of the resource
    preexistingDirectories Double
    Number of preexisting directories during full scan.
    preexistingFiles Double
    Number of preexisting files during full scan.
    preexistingSymlinks Double
    Number of preexisting symlinks during full scan.
    provisioningState String
    ARM provisioning state.
    rateOfBlobImport Double
    Rate of blob import during full scan.
    rateOfBlobWalk Double
    Rate of blobs walked during full scan.
    scanEndTime String
    Date and time of when the full scan ended.
    scanStartTime String
    Date and time of when the currently running full scan began.
    state String
    The state of the auto import operation.
    statusCode String
    Server-defined status code for auto import job.
    statusMessage String
    Server-defined status message for auto import job.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalBlobsImported Double
    Total number of blobs imported during full scan.
    totalBlobsWalked Double
    Total number of blobs walked during full scan.
    totalConflicts Double
    Total conflicts encountered during full scan.
    totalErrors Double
    Total errors encountered during full scan.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    blobSyncEvents AutoImportJobResponseBlobSyncEvents
    The storage account blob change feed status of the auto import job.
    id string
    The provider-assigned unique ID for this managed resource.
    importedDirectories number
    Number of directories imported during full scan.
    importedFiles number
    Number of files imported during full scan.
    importedSymlinks number
    Number of symlinks imported during full scan.
    lastCompletionTimeUTC string
    The time (in UTC) of the last completed auto import job.
    lastStartedTimeUTC string
    The time (in UTC) the latest auto import job started.
    name string
    The name of the resource
    preexistingDirectories number
    Number of preexisting directories during full scan.
    preexistingFiles number
    Number of preexisting files during full scan.
    preexistingSymlinks number
    Number of preexisting symlinks during full scan.
    provisioningState string
    ARM provisioning state.
    rateOfBlobImport number
    Rate of blob import during full scan.
    rateOfBlobWalk number
    Rate of blobs walked during full scan.
    scanEndTime string
    Date and time of when the full scan ended.
    scanStartTime string
    Date and time of when the currently running full scan began.
    state string
    The state of the auto import operation.
    statusCode string
    Server-defined status code for auto import job.
    statusMessage string
    Server-defined status message for auto import job.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalBlobsImported number
    Total number of blobs imported during full scan.
    totalBlobsWalked number
    Total number of blobs walked during full scan.
    totalConflicts number
    Total conflicts encountered during full scan.
    totalErrors number
    Total errors encountered during full scan.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    blob_sync_events AutoImportJobResponseBlobSyncEvents
    The storage account blob change feed status of the auto import job.
    id str
    The provider-assigned unique ID for this managed resource.
    imported_directories float
    Number of directories imported during full scan.
    imported_files float
    Number of files imported during full scan.
    imported_symlinks float
    Number of symlinks imported during full scan.
    last_completion_time_utc str
    The time (in UTC) of the last completed auto import job.
    last_started_time_utc str
    The time (in UTC) the latest auto import job started.
    name str
    The name of the resource
    preexisting_directories float
    Number of preexisting directories during full scan.
    preexisting_files float
    Number of preexisting files during full scan.
    preexisting_symlinks float
    Number of preexisting symlinks during full scan.
    provisioning_state str
    ARM provisioning state.
    rate_of_blob_import float
    Rate of blob import during full scan.
    rate_of_blob_walk float
    Rate of blobs walked during full scan.
    scan_end_time str
    Date and time of when the full scan ended.
    scan_start_time str
    Date and time of when the currently running full scan began.
    state str
    The state of the auto import operation.
    status_code str
    Server-defined status code for auto import job.
    status_message str
    Server-defined status message for auto import job.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    total_blobs_imported float
    Total number of blobs imported during full scan.
    total_blobs_walked float
    Total number of blobs walked during full scan.
    total_conflicts float
    Total conflicts encountered during full scan.
    total_errors float
    Total errors encountered during full scan.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    blobSyncEvents Property Map
    The storage account blob change feed status of the auto import job.
    id String
    The provider-assigned unique ID for this managed resource.
    importedDirectories Number
    Number of directories imported during full scan.
    importedFiles Number
    Number of files imported during full scan.
    importedSymlinks Number
    Number of symlinks imported during full scan.
    lastCompletionTimeUTC String
    The time (in UTC) of the last completed auto import job.
    lastStartedTimeUTC String
    The time (in UTC) the latest auto import job started.
    name String
    The name of the resource
    preexistingDirectories Number
    Number of preexisting directories during full scan.
    preexistingFiles Number
    Number of preexisting files during full scan.
    preexistingSymlinks Number
    Number of preexisting symlinks during full scan.
    provisioningState String
    ARM provisioning state.
    rateOfBlobImport Number
    Rate of blob import during full scan.
    rateOfBlobWalk Number
    Rate of blobs walked during full scan.
    scanEndTime String
    Date and time of when the full scan ended.
    scanStartTime String
    Date and time of when the currently running full scan began.
    state String
    The state of the auto import operation.
    statusCode String
    Server-defined status code for auto import job.
    statusMessage String
    Server-defined status message for auto import job.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalBlobsImported Number
    Total number of blobs imported during full scan.
    totalBlobsWalked Number
    Total number of blobs walked during full scan.
    totalConflicts Number
    Total conflicts encountered during full scan.
    totalErrors Number
    Total errors encountered during full scan.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AdminStatus, AdminStatusArgs

    Enable
    Enable
    Disable
    Disable
    AdminStatusEnable
    Enable
    AdminStatusDisable
    Disable
    Enable
    Enable
    Disable
    Disable
    Enable
    Enable
    Disable
    Disable
    ENABLE
    Enable
    DISABLE
    Disable
    "Enable"
    Enable
    "Disable"
    Disable

    AutoImportJobResponseBlobSyncEvents, AutoImportJobResponseBlobSyncEventsArgs

    The storage account blob change feed status of the auto import job.
    Deletions double
    Number of deletions during auto import.
    ImportedDirectories double
    Number of directories imported during auto import.
    ImportedFiles double
    Number of files imported during auto import.
    ImportedSymlinks double
    Number of symlinks imported during auto import.
    LastChangeFeedEventConsumedTime string
    Date and time of the last Change Feed event consumed.
    LastTimeFullySynchronized string
    Date and time when last fully synchronized.
    PreexistingDirectories double
    Number of preexisting directories during auto import.
    PreexistingFiles double
    Number of preexisting files during auto import.
    PreexistingSymlinks double
    Number of preexisting symlinks during auto import.
    RateOfBlobImport double
    Rate of blob import per second during auto import.
    TotalBlobsImported double
    Total number of blobs imported during auto import.
    TotalConflicts double
    Total conflicts encountered during auto import.
    TotalErrors double
    Total errors encountered during auto import.
    Deletions float64
    Number of deletions during auto import.
    ImportedDirectories float64
    Number of directories imported during auto import.
    ImportedFiles float64
    Number of files imported during auto import.
    ImportedSymlinks float64
    Number of symlinks imported during auto import.
    LastChangeFeedEventConsumedTime string
    Date and time of the last Change Feed event consumed.
    LastTimeFullySynchronized string
    Date and time when last fully synchronized.
    PreexistingDirectories float64
    Number of preexisting directories during auto import.
    PreexistingFiles float64
    Number of preexisting files during auto import.
    PreexistingSymlinks float64
    Number of preexisting symlinks during auto import.
    RateOfBlobImport float64
    Rate of blob import per second during auto import.
    TotalBlobsImported float64
    Total number of blobs imported during auto import.
    TotalConflicts float64
    Total conflicts encountered during auto import.
    TotalErrors float64
    Total errors encountered during auto import.
    deletions Double
    Number of deletions during auto import.
    importedDirectories Double
    Number of directories imported during auto import.
    importedFiles Double
    Number of files imported during auto import.
    importedSymlinks Double
    Number of symlinks imported during auto import.
    lastChangeFeedEventConsumedTime String
    Date and time of the last Change Feed event consumed.
    lastTimeFullySynchronized String
    Date and time when last fully synchronized.
    preexistingDirectories Double
    Number of preexisting directories during auto import.
    preexistingFiles Double
    Number of preexisting files during auto import.
    preexistingSymlinks Double
    Number of preexisting symlinks during auto import.
    rateOfBlobImport Double
    Rate of blob import per second during auto import.
    totalBlobsImported Double
    Total number of blobs imported during auto import.
    totalConflicts Double
    Total conflicts encountered during auto import.
    totalErrors Double
    Total errors encountered during auto import.
    deletions number
    Number of deletions during auto import.
    importedDirectories number
    Number of directories imported during auto import.
    importedFiles number
    Number of files imported during auto import.
    importedSymlinks number
    Number of symlinks imported during auto import.
    lastChangeFeedEventConsumedTime string
    Date and time of the last Change Feed event consumed.
    lastTimeFullySynchronized string
    Date and time when last fully synchronized.
    preexistingDirectories number
    Number of preexisting directories during auto import.
    preexistingFiles number
    Number of preexisting files during auto import.
    preexistingSymlinks number
    Number of preexisting symlinks during auto import.
    rateOfBlobImport number
    Rate of blob import per second during auto import.
    totalBlobsImported number
    Total number of blobs imported during auto import.
    totalConflicts number
    Total conflicts encountered during auto import.
    totalErrors number
    Total errors encountered during auto import.
    deletions float
    Number of deletions during auto import.
    imported_directories float
    Number of directories imported during auto import.
    imported_files float
    Number of files imported during auto import.
    imported_symlinks float
    Number of symlinks imported during auto import.
    last_change_feed_event_consumed_time str
    Date and time of the last Change Feed event consumed.
    last_time_fully_synchronized str
    Date and time when last fully synchronized.
    preexisting_directories float
    Number of preexisting directories during auto import.
    preexisting_files float
    Number of preexisting files during auto import.
    preexisting_symlinks float
    Number of preexisting symlinks during auto import.
    rate_of_blob_import float
    Rate of blob import per second during auto import.
    total_blobs_imported float
    Total number of blobs imported during auto import.
    total_conflicts float
    Total conflicts encountered during auto import.
    total_errors float
    Total errors encountered during auto import.
    deletions Number
    Number of deletions during auto import.
    importedDirectories Number
    Number of directories imported during auto import.
    importedFiles Number
    Number of files imported during auto import.
    importedSymlinks Number
    Number of symlinks imported during auto import.
    lastChangeFeedEventConsumedTime String
    Date and time of the last Change Feed event consumed.
    lastTimeFullySynchronized String
    Date and time when last fully synchronized.
    preexistingDirectories Number
    Number of preexisting directories during auto import.
    preexistingFiles Number
    Number of preexisting files during auto import.
    preexistingSymlinks Number
    Number of preexisting symlinks during auto import.
    rateOfBlobImport Number
    Rate of blob import per second during auto import.
    totalBlobsImported Number
    Total number of blobs imported during auto import.
    totalConflicts Number
    Total conflicts encountered during auto import.
    totalErrors Number
    Total errors encountered during auto import.

    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

    Metadata pertaining to creation and last modification of 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.
    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:AutoImportJob autojob1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageCache/amlFilesystems/{amlFilesystemName}/autoImportJobs/{autoImportJobName} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate