azure-native.storagecache.AutoExportJob
Explore with Pulumi AI
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:
- Aml
Filesystem stringName - Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Admin
Status string | Pulumi.Azure Native. Storage Cache. Auto Export Job Admin Status - 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 stringJob Name - Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- Auto
Export List<string>Prefixes - 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.
Azure Native. Storage Cache. Auto Export Status Type - 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.
- Dictionary<string, string>
- Resource tags.
- Aml
Filesystem stringName - Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Admin
Status string | AutoExport Job Admin Status - 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 stringJob Name - Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- Auto
Export []stringPrefixes - 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 | Auto
Export Status Type - 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.
- map[string]string
- Resource tags.
- aml
Filesystem StringName - Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- admin
Status String | AutoExport Job Admin Status - 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 StringJob Name - Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- auto
Export List<String>Prefixes - 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 | Auto
Export Status Type - 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.
- Map<String,String>
- Resource tags.
- aml
Filesystem stringName - Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- admin
Status string | AutoExport Job Admin Status - 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 stringJob Name - Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- auto
Export string[]Prefixes - 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 | Auto
Export Status Type - 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.
- {[key: string]: string}
- Resource tags.
- aml_
filesystem_ strname - Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- admin_
status str | AutoExport Job Admin Status - 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_ strjob_ name - Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- auto_
export_ Sequence[str]prefixes - 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 | Auto
Export Status Type - 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.
- Mapping[str, str]
- Resource tags.
- aml
Filesystem StringName - Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- admin
Status 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'.
- auto
Export StringJob Name - Name for the auto export job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- auto
Export List<String>Prefixes - 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 | "In
Progress" | "Disabling" | "Disabled" | "Disable Failed" | "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.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AutoExportJob resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Current
Iteration doubleFiles Discovered - Files discovered for export in current iteration. It may increase while more export items are found.
- Current
Iteration doubleFiles Exported - Files that have been exported in current iteration.
- Current
Iteration doubleFiles Failed - Files failed to export in current iteration.
- Current
Iteration doubleMi BDiscovered - Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
- Current
Iteration doubleMi BExported - Data (in MiB) that have been exported in current iteration.
- Export
Iteration intCount - Number of iterations completed since the start of the export.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Completion stringTime UTC - The time (in UTC) of the last completed auto export job.
- Last
Started stringTime UTC - The time (in UTC) the latest auto export job started.
- Last
Successful stringIteration Completion Time UTC - Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
- Name string
- The name of the resource
- Provisioning
State string - ARM provisioning state.
- Status
Code string - Server-defined status code for auto export job.
- Status
Message string - Server-defined status message for auto export job.
- System
Data Pulumi.Azure Native. Storage Cache. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Files doubleExported - Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
- Total
Files doubleFailed - Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
- Total
Mi doubleBExported - 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 stringVersion - The Azure API version of the resource.
- Current
Iteration float64Files Discovered - Files discovered for export in current iteration. It may increase while more export items are found.
- Current
Iteration float64Files Exported - Files that have been exported in current iteration.
- Current
Iteration float64Files Failed - Files failed to export in current iteration.
- Current
Iteration float64Mi BDiscovered - Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
- Current
Iteration float64Mi BExported - Data (in MiB) that have been exported in current iteration.
- Export
Iteration intCount - Number of iterations completed since the start of the export.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Completion stringTime UTC - The time (in UTC) of the last completed auto export job.
- Last
Started stringTime UTC - The time (in UTC) the latest auto export job started.
- Last
Successful stringIteration Completion Time UTC - Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
- Name string
- The name of the resource
- Provisioning
State string - ARM provisioning state.
- Status
Code string - Server-defined status code for auto export job.
- Status
Message string - Server-defined status message for auto export job.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Files float64Exported - Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
- Total
Files float64Failed - Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
- Total
Mi float64BExported - 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 StringVersion - The Azure API version of the resource.
- current
Iteration DoubleFiles Discovered - Files discovered for export in current iteration. It may increase while more export items are found.
- current
Iteration DoubleFiles Exported - Files that have been exported in current iteration.
- current
Iteration DoubleFiles Failed - Files failed to export in current iteration.
- current
Iteration DoubleMi BDiscovered - Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
- current
Iteration DoubleMi BExported - Data (in MiB) that have been exported in current iteration.
- export
Iteration IntegerCount - Number of iterations completed since the start of the export.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Completion StringTime UTC - The time (in UTC) of the last completed auto export job.
- last
Started StringTime UTC - The time (in UTC) the latest auto export job started.
- last
Successful StringIteration Completion Time UTC - Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
- name String
- The name of the resource
- provisioning
State String - ARM provisioning state.
- status
Code String - Server-defined status code for auto export job.
- status
Message String - Server-defined status message for auto export job.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Files DoubleExported - Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
- total
Files DoubleFailed - Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
- total
Mi DoubleBExported - 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 stringVersion - The Azure API version of the resource.
- current
Iteration numberFiles Discovered - Files discovered for export in current iteration. It may increase while more export items are found.
- current
Iteration numberFiles Exported - Files that have been exported in current iteration.
- current
Iteration numberFiles Failed - Files failed to export in current iteration.
- current
Iteration numberMi BDiscovered - Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
- current
Iteration numberMi BExported - Data (in MiB) that have been exported in current iteration.
- export
Iteration numberCount - Number of iterations completed since the start of the export.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Completion stringTime UTC - The time (in UTC) of the last completed auto export job.
- last
Started stringTime UTC - The time (in UTC) the latest auto export job started.
- last
Successful stringIteration Completion Time UTC - Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
- name string
- The name of the resource
- provisioning
State string - ARM provisioning state.
- status
Code string - Server-defined status code for auto export job.
- status
Message string - Server-defined status message for auto export job.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Files numberExported - Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
- total
Files numberFailed - Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
- total
Mi numberBExported - 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_ strversion - The Azure API version of the resource.
- current_
iteration_ floatfiles_ discovered - Files discovered for export in current iteration. It may increase while more export items are found.
- current_
iteration_ floatfiles_ exported - Files that have been exported in current iteration.
- current_
iteration_ floatfiles_ failed - Files failed to export in current iteration.
- current_
iteration_ floatmi_ b_ discovered - Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
- current_
iteration_ floatmi_ b_ exported - Data (in MiB) that have been exported in current iteration.
- export_
iteration_ intcount - Number of iterations completed since the start of the export.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
completion_ strtime_ utc - The time (in UTC) of the last completed auto export job.
- last_
started_ strtime_ utc - The time (in UTC) the latest auto export job started.
- last_
successful_ striteration_ completion_ time_ utc - 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 SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total_
files_ floatexported - Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
- total_
files_ floatfailed - Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
- total_
mi_ floatb_ exported - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- current
Iteration NumberFiles Discovered - Files discovered for export in current iteration. It may increase while more export items are found.
- current
Iteration NumberFiles Exported - Files that have been exported in current iteration.
- current
Iteration NumberFiles Failed - Files failed to export in current iteration.
- current
Iteration NumberMi BDiscovered - Data (in MiB) discovered for export in current iteration. It may increase while more export items are found.
- current
Iteration NumberMi BExported - Data (in MiB) that have been exported in current iteration.
- export
Iteration NumberCount - Number of iterations completed since the start of the export.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Completion StringTime UTC - The time (in UTC) of the last completed auto export job.
- last
Started StringTime UTC - The time (in UTC) the latest auto export job started.
- last
Successful StringIteration Completion Time UTC - Time (in UTC) of the last successfully completed export iteration. Look at logging container for details.
- name String
- The name of the resource
- provisioning
State String - ARM provisioning state.
- status
Code String - Server-defined status code for auto export job.
- status
Message String - Server-defined status message for auto export job.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Files NumberExported - Total files exported since the start of the export. This is accumulative, some files may be counted repeatedly.
- total
Files NumberFailed - Total files failed to be export since the last successfully completed iteration. This is accumulative, some files may be counted repeatedly.
- total
Mi NumberBExported - 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
- Auto
Export Job Admin Status Enable - Enable
- Auto
Export Job Admin Status Disable - Disable
- Enable
- Enable
- Disable
- Disable
- Enable
- Enable
- Disable
- Disable
- ENABLE
- Enable
- DISABLE
- Disable
- "Enable"
- Enable
- "Disable"
- Disable
AutoExportStatusType, AutoExportStatusTypeArgs
- In
Progress - InProgress
- Disabling
- Disabling
- Disabled
- Disabled
- Disable
Failed - DisableFailed
- Failed
- Failed
- Auto
Export Status Type In Progress - InProgress
- Auto
Export Status Type Disabling - Disabling
- Auto
Export Status Type Disabled - Disabled
- Auto
Export Status Type Disable Failed - DisableFailed
- Auto
Export Status Type Failed - Failed
- In
Progress - InProgress
- Disabling
- Disabling
- Disabled
- Disabled
- Disable
Failed - DisableFailed
- Failed
- Failed
- In
Progress - InProgress
- Disabling
- Disabling
- Disabled
- Disabled
- Disable
Failed - DisableFailed
- Failed
- Failed
- IN_PROGRESS
- InProgress
- DISABLING
- Disabling
- DISABLED
- Disabled
- DISABLE_FAILED
- DisableFailed
- FAILED
- Failed
- "In
Progress" - InProgress
- "Disabling"
- Disabling
- "Disabled"
- Disabled
- "Disable
Failed" - DisableFailed
- "Failed"
- Failed
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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