1. Packages
  2. Azure Native
  3. API Docs
  4. storagecache
  5. AutoExportJob
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.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.storagecache.AutoExportJob

Explore with Pulumi AI

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.3.0 published on Monday, Apr 28, 2025 by Pulumi

    An auto export 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 2024-07-01.

    Example Usage

    autoExportJobs_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var autoExportJob = new AzureNative.StorageCache.AutoExportJob("autoExportJob", new()
        {
            AmlFilesystemName = "fs1",
            AutoExportJobName = "job1",
            AutoExportPrefixes = new[]
            {
                "/",
            },
            Location = "eastus",
            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.NewAutoExportJob(ctx, "autoExportJob", &storagecache.AutoExportJobArgs{
    			AmlFilesystemName: pulumi.String("fs1"),
    			AutoExportJobName: pulumi.String("job1"),
    			AutoExportPrefixes: pulumi.StringArray{
    				pulumi.String("/"),
    			},
    			Location:          pulumi.String("eastus"),
    			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.AutoExportJob;
    import com.pulumi.azurenative.storagecache.AutoExportJobArgs;
    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 autoExportJob = new AutoExportJob("autoExportJob", AutoExportJobArgs.builder()
                .amlFilesystemName("fs1")
                .autoExportJobName("job1")
                .autoExportPrefixes("/")
                .location("eastus")
                .resourceGroupName("scgroup")
                .tags(Map.of("Dept", "ContosoAds"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const autoExportJob = new azure_native.storagecache.AutoExportJob("autoExportJob", {
        amlFilesystemName: "fs1",
        autoExportJobName: "job1",
        autoExportPrefixes: ["/"],
        location: "eastus",
        resourceGroupName: "scgroup",
        tags: {
            Dept: "ContosoAds",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    auto_export_job = azure_native.storagecache.AutoExportJob("autoExportJob",
        aml_filesystem_name="fs1",
        auto_export_job_name="job1",
        auto_export_prefixes=["/"],
        location="eastus",
        resource_group_name="scgroup",
        tags={
            "Dept": "ContosoAds",
        })
    
    resources:
      autoExportJob:
        type: azure-native:storagecache:AutoExportJob
        properties:
          amlFilesystemName: fs1
          autoExportJobName: job1
          autoExportPrefixes:
            - /
          location: eastus
          resourceGroupName: scgroup
          tags:
            Dept: ContosoAds
    

    Create AutoExportJob Resource

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

    Constructor syntax

    new AutoExportJob(name: string, args: AutoExportJobArgs, opts?: CustomResourceOptions);
    @overload
    def AutoExportJob(resource_name: str,
                      args: AutoExportJobArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def AutoExportJob(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      aml_filesystem_name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      admin_status: Optional[Union[str, AutoExportJobAdminStatus]] = None,
                      auto_export_job_name: Optional[str] = None,
                      auto_export_prefixes: Optional[Sequence[str]] = None,
                      location: Optional[str] = None,
                      state: Optional[Union[str, AutoExportStatusType]] = None,
                      tags: Optional[Mapping[str, str]] = None)
    func NewAutoExportJob(ctx *Context, name string, args AutoExportJobArgs, opts ...ResourceOption) (*AutoExportJob, error)
    public AutoExportJob(string name, AutoExportJobArgs args, CustomResourceOptions? opts = null)
    public AutoExportJob(String name, AutoExportJobArgs args)
    public AutoExportJob(String name, AutoExportJobArgs args, CustomResourceOptions options)
    
    type: azure-native:storagecache:AutoExportJob
    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 AutoExportJobArgs
    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 AutoExportJobArgs
    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 AutoExportJobArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutoExportJobArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutoExportJobArgs
    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 autoExportJobResource = new AzureNative.StorageCache.AutoExportJob("autoExportJobResource", new()
    {
        AmlFilesystemName = "string",
        ResourceGroupName = "string",
        AdminStatus = "string",
        AutoExportJobName = "string",
        AutoExportPrefixes = new[]
        {
            "string",
        },
        Location = "string",
        State = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := storagecache.NewAutoExportJob(ctx, "autoExportJobResource", &storagecache.AutoExportJobArgs{
    	AmlFilesystemName: pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	AdminStatus:       pulumi.String("string"),
    	AutoExportJobName: pulumi.String("string"),
    	AutoExportPrefixes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	State:    pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var autoExportJobResource = new AutoExportJob("autoExportJobResource", AutoExportJobArgs.builder()
        .amlFilesystemName("string")
        .resourceGroupName("string")
        .adminStatus("string")
        .autoExportJobName("string")
        .autoExportPrefixes("string")
        .location("string")
        .state("string")
        .tags(Map.of("string", "string"))
        .build());
    
    auto_export_job_resource = azure_native.storagecache.AutoExportJob("autoExportJobResource",
        aml_filesystem_name="string",
        resource_group_name="string",
        admin_status="string",
        auto_export_job_name="string",
        auto_export_prefixes=["string"],
        location="string",
        state="string",
        tags={
            "string": "string",
        })
    
    const autoExportJobResource = new azure_native.storagecache.AutoExportJob("autoExportJobResource", {
        amlFilesystemName: "string",
        resourceGroupName: "string",
        adminStatus: "string",
        autoExportJobName: "string",
        autoExportPrefixes: ["string"],
        location: "string",
        state: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:storagecache:AutoExportJob
    properties:
        adminStatus: string
        amlFilesystemName: string
        autoExportJobName: string
        autoExportPrefixes:
            - string
        location: string
        resourceGroupName: string
        state: string
        tags:
            string: string
    

    AutoExportJob 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 AutoExportJob 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.AutoExportJobAdminStatus
    The administrative status of the auto export job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto export job. By default it is set to 'Enable'.
    AutoExportJobName string
    Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    AutoExportPrefixes List<string>
    An array of blob paths/prefixes that get auto exported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths for now is 1.
    Location string
    The geo-location where the resource lives
    State string | Pulumi.AzureNative.StorageCache.AutoExportStatusType
    The operational state of auto export. InProgress indicates the export is running. Disabling indicates the user has requested to disable the export but the disabling is still in progress. Disabled indicates auto export has been disabled. DisableFailed indicates the disabling has failed. Failed means the export was unable to continue, due to a fatal 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 | AutoExportJobAdminStatus
    The administrative status of the auto export job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto export job. By default it is set to 'Enable'.
    AutoExportJobName string
    Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    AutoExportPrefixes []string
    An array of blob paths/prefixes that get auto exported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths for now is 1.
    Location string
    The geo-location where the resource lives
    State string | AutoExportStatusType
    The operational state of auto export. InProgress indicates the export is running. Disabling indicates the user has requested to disable the export but the disabling is still in progress. Disabled indicates auto export has been disabled. DisableFailed indicates the disabling has failed. Failed means the export was unable to continue, due to a fatal 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 | AutoExportJobAdminStatus
    The administrative status of the auto export job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto export job. By default it is set to 'Enable'.
    autoExportJobName String
    Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    autoExportPrefixes List<String>
    An array of blob paths/prefixes that get auto exported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths for now is 1.
    location String
    The geo-location where the resource lives
    state String | AutoExportStatusType
    The operational state of auto export. InProgress indicates the export is running. Disabling indicates the user has requested to disable the export but the disabling is still in progress. Disabled indicates auto export has been disabled. DisableFailed indicates the disabling has failed. Failed means the export was unable to continue, due to a fatal 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 | AutoExportJobAdminStatus
    The administrative status of the auto export job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto export job. By default it is set to 'Enable'.
    autoExportJobName string
    Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    autoExportPrefixes string[]
    An array of blob paths/prefixes that get auto exported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths for now is 1.
    location string
    The geo-location where the resource lives
    state string | AutoExportStatusType
    The operational state of auto export. InProgress indicates the export is running. Disabling indicates the user has requested to disable the export but the disabling is still in progress. Disabled indicates auto export has been disabled. DisableFailed indicates the disabling has failed. Failed means the export was unable to continue, due to a fatal 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 | AutoExportJobAdminStatus
    The administrative status of the auto export job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto export job. By default it is set to 'Enable'.
    auto_export_job_name str
    Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    auto_export_prefixes Sequence[str]
    An array of blob paths/prefixes that get auto exported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths for now is 1.
    location str
    The geo-location where the resource lives
    state str | AutoExportStatusType
    The operational state of auto export. InProgress indicates the export is running. Disabling indicates the user has requested to disable the export but the disabling is still in progress. Disabled indicates auto export has been disabled. DisableFailed indicates the disabling has failed. Failed means the export was unable to continue, due to a fatal 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 export job. Possible values: 'Enable', 'Disable'. Passing in a value of 'Disable' will disable the current active auto export job. By default it is set to 'Enable'.
    autoExportJobName String
    Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
    autoExportPrefixes List<String>
    An array of blob paths/prefixes that get auto exported to the cluster namespace. It has '/' as the default value. Number of maximum allowed paths for now is 1.
    location String
    The geo-location where the resource lives
    state String | "InProgress" | "Disabling" | "Disabled" | "DisableFailed" | "Failed"
    The operational state of auto export. InProgress indicates the export is running. Disabling indicates the user has requested to disable the export but the disabling is still in progress. Disabled indicates auto export has been disabled. DisableFailed indicates the disabling has failed. Failed means the export was unable to continue, due to a fatal error.
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    CurrentIterationFilesDiscovered double
    Files discovered for export in current iteration. It may increase while more export items are found.
    CurrentIterationFilesExported double
    Files that have been exported in current iteration.
    CurrentIterationFilesFailed double
    Files failed to export in current iteration.
    CurrentIterationMiBDiscovered double
    Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
    CurrentIterationMiBExported double
    Data (in MiB) that have been exported in current iteration.
    ExportIterationCount int
    Number of iterations completed since the start of the export.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastCompletionTimeUTC string
    The time (in UTC) of the last completed auto export job.
    LastStartedTimeUTC string
    The time (in UTC) the latest auto export job started.
    LastSuccessfulIterationCompletionTimeUTC string
    Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
    Name string
    The name of the resource
    ProvisioningState string
    ARM provisioning state.
    StatusCode string
    Server-defined status code for auto export job.
    StatusMessage string
    Server-defined status message for auto export job.
    SystemData Pulumi.AzureNative.StorageCache.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TotalFilesExported double
    Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    TotalFilesFailed double
    Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
    TotalMiBExported double
    Total data (in MiB) exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    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.
    CurrentIterationFilesDiscovered float64
    Files discovered for export in current iteration. It may increase while more export items are found.
    CurrentIterationFilesExported float64
    Files that have been exported in current iteration.
    CurrentIterationFilesFailed float64
    Files failed to export in current iteration.
    CurrentIterationMiBDiscovered float64
    Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
    CurrentIterationMiBExported float64
    Data (in MiB) that have been exported in current iteration.
    ExportIterationCount int
    Number of iterations completed since the start of the export.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastCompletionTimeUTC string
    The time (in UTC) of the last completed auto export job.
    LastStartedTimeUTC string
    The time (in UTC) the latest auto export job started.
    LastSuccessfulIterationCompletionTimeUTC string
    Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
    Name string
    The name of the resource
    ProvisioningState string
    ARM provisioning state.
    StatusCode string
    Server-defined status code for auto export job.
    StatusMessage string
    Server-defined status message for auto export job.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TotalFilesExported float64
    Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    TotalFilesFailed float64
    Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
    TotalMiBExported float64
    Total data (in MiB) exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    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.
    currentIterationFilesDiscovered Double
    Files discovered for export in current iteration. It may increase while more export items are found.
    currentIterationFilesExported Double
    Files that have been exported in current iteration.
    currentIterationFilesFailed Double
    Files failed to export in current iteration.
    currentIterationMiBDiscovered Double
    Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
    currentIterationMiBExported Double
    Data (in MiB) that have been exported in current iteration.
    exportIterationCount Integer
    Number of iterations completed since the start of the export.
    id String
    The provider-assigned unique ID for this managed resource.
    lastCompletionTimeUTC String
    The time (in UTC) of the last completed auto export job.
    lastStartedTimeUTC String
    The time (in UTC) the latest auto export job started.
    lastSuccessfulIterationCompletionTimeUTC String
    Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
    name String
    The name of the resource
    provisioningState String
    ARM provisioning state.
    statusCode String
    Server-defined status code for auto export job.
    statusMessage String
    Server-defined status message for auto export job.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalFilesExported Double
    Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    totalFilesFailed Double
    Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
    totalMiBExported Double
    Total data (in MiB) exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    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.
    currentIterationFilesDiscovered number
    Files discovered for export in current iteration. It may increase while more export items are found.
    currentIterationFilesExported number
    Files that have been exported in current iteration.
    currentIterationFilesFailed number
    Files failed to export in current iteration.
    currentIterationMiBDiscovered number
    Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
    currentIterationMiBExported number
    Data (in MiB) that have been exported in current iteration.
    exportIterationCount number
    Number of iterations completed since the start of the export.
    id string
    The provider-assigned unique ID for this managed resource.
    lastCompletionTimeUTC string
    The time (in UTC) of the last completed auto export job.
    lastStartedTimeUTC string
    The time (in UTC) the latest auto export job started.
    lastSuccessfulIterationCompletionTimeUTC string
    Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
    name string
    The name of the resource
    provisioningState string
    ARM provisioning state.
    statusCode string
    Server-defined status code for auto export job.
    statusMessage string
    Server-defined status message for auto export job.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalFilesExported number
    Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    totalFilesFailed number
    Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
    totalMiBExported number
    Total data (in MiB) exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    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.
    current_iteration_files_discovered float
    Files discovered for export in current iteration. It may increase while more export items are found.
    current_iteration_files_exported float
    Files that have been exported in current iteration.
    current_iteration_files_failed float
    Files failed to export in current iteration.
    current_iteration_mi_b_discovered float
    Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
    current_iteration_mi_b_exported float
    Data (in MiB) that have been exported in current iteration.
    export_iteration_count int
    Number of iterations completed since the start of the export.
    id str
    The provider-assigned unique ID for this managed resource.
    last_completion_time_utc str
    The time (in UTC) of the last completed auto export job.
    last_started_time_utc str
    The time (in UTC) the latest auto export job started.
    last_successful_iteration_completion_time_utc str
    Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
    name str
    The name of the resource
    provisioning_state str
    ARM provisioning state.
    status_code str
    Server-defined status code for auto export job.
    status_message str
    Server-defined status message for auto export job.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    total_files_exported float
    Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    total_files_failed float
    Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
    total_mi_b_exported float
    Total data (in MiB) exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    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.
    currentIterationFilesDiscovered Number
    Files discovered for export in current iteration. It may increase while more export items are found.
    currentIterationFilesExported Number
    Files that have been exported in current iteration.
    currentIterationFilesFailed Number
    Files failed to export in current iteration.
    currentIterationMiBDiscovered Number
    Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
    currentIterationMiBExported Number
    Data (in MiB) that have been exported in current iteration.
    exportIterationCount Number
    Number of iterations completed since the start of the export.
    id String
    The provider-assigned unique ID for this managed resource.
    lastCompletionTimeUTC String
    The time (in UTC) of the last completed auto export job.
    lastStartedTimeUTC String
    The time (in UTC) the latest auto export job started.
    lastSuccessfulIterationCompletionTimeUTC String
    Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
    name String
    The name of the resource
    provisioningState String
    ARM provisioning state.
    statusCode String
    Server-defined status code for auto export job.
    statusMessage String
    Server-defined status message for auto export job.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    totalFilesExported Number
    Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    totalFilesFailed Number
    Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
    totalMiBExported Number
    Total data (in MiB) exported since the start of the export. This is accumulative, some files may be counted repeatedly.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AutoExportJobAdminStatus, AutoExportJobAdminStatusArgs

    Enable
    Enable
    Disable
    Disable
    AutoExportJobAdminStatusEnable
    Enable
    AutoExportJobAdminStatusDisable
    Disable
    Enable
    Enable
    Disable
    Disable
    Enable
    Enable
    Disable
    Disable
    ENABLE
    Enable
    DISABLE
    Disable
    "Enable"
    Enable
    "Disable"
    Disable

    AutoExportStatusType, AutoExportStatusTypeArgs

    InProgress
    InProgress
    Disabling
    Disabling
    Disabled
    Disabled
    DisableFailed
    DisableFailed
    Failed
    Failed
    AutoExportStatusTypeInProgress
    InProgress
    AutoExportStatusTypeDisabling
    Disabling
    AutoExportStatusTypeDisabled
    Disabled
    AutoExportStatusTypeDisableFailed
    DisableFailed
    AutoExportStatusTypeFailed
    Failed
    InProgress
    InProgress
    Disabling
    Disabling
    Disabled
    Disabled
    DisableFailed
    DisableFailed
    Failed
    Failed
    InProgress
    InProgress
    Disabling
    Disabling
    Disabled
    Disabled
    DisableFailed
    DisableFailed
    Failed
    Failed
    IN_PROGRESS
    InProgress
    DISABLING
    Disabling
    DISABLED
    Disabled
    DISABLE_FAILED
    DisableFailed
    FAILED
    Failed
    "InProgress"
    InProgress
    "Disabling"
    Disabling
    "Disabled"
    Disabled
    "DisableFailed"
    DisableFailed
    "Failed"
    Failed

    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:AutoExportJob job1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageCache/amlFilesystems/{amlFilesystemName}/autoExportJobs/{autoExportJobName} 
    

    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.3.0 published on Monday, Apr 28, 2025 by Pulumi