azure-native.storagecache.ImportJob
Explore with Pulumi AI
An import job instance. Follows Azure Resource Manager standards: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/resource-api-reference.md Azure REST API version: 2024-03-01.
Example Usage
importJobs_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var importJob = new AzureNative.StorageCache.ImportJob("importJob", new()
{
AmlFilesystemName = "fs1",
ConflictResolutionMode = AzureNative.StorageCache.ConflictResolutionMode.OverwriteAlways,
ImportJobName = "job1",
ImportPrefixes = new[]
{
"/",
},
Location = "eastus",
MaximumErrors = 0,
ResourceGroupName = "scgroup",
Tags =
{
{ "Dept", "ContosoAds" },
},
});
});
package main
import (
storagecache "github.com/pulumi/pulumi-azure-native-sdk/storagecache/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storagecache.NewImportJob(ctx, "importJob", &storagecache.ImportJobArgs{
AmlFilesystemName: pulumi.String("fs1"),
ConflictResolutionMode: pulumi.String(storagecache.ConflictResolutionModeOverwriteAlways),
ImportJobName: pulumi.String("job1"),
ImportPrefixes: pulumi.StringArray{
pulumi.String("/"),
},
Location: pulumi.String("eastus"),
MaximumErrors: pulumi.Int(0),
ResourceGroupName: pulumi.String("scgroup"),
Tags: pulumi.StringMap{
"Dept": pulumi.String("ContosoAds"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storagecache.ImportJob;
import com.pulumi.azurenative.storagecache.ImportJobArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var importJob = new ImportJob("importJob", ImportJobArgs.builder()
.amlFilesystemName("fs1")
.conflictResolutionMode("OverwriteAlways")
.importJobName("job1")
.importPrefixes("/")
.location("eastus")
.maximumErrors(0)
.resourceGroupName("scgroup")
.tags(Map.of("Dept", "ContosoAds"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
import_job = azure_native.storagecache.ImportJob("importJob",
aml_filesystem_name="fs1",
conflict_resolution_mode=azure_native.storagecache.ConflictResolutionMode.OVERWRITE_ALWAYS,
import_job_name="job1",
import_prefixes=["/"],
location="eastus",
maximum_errors=0,
resource_group_name="scgroup",
tags={
"Dept": "ContosoAds",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const importJob = new azure_native.storagecache.ImportJob("importJob", {
amlFilesystemName: "fs1",
conflictResolutionMode: azure_native.storagecache.ConflictResolutionMode.OverwriteAlways,
importJobName: "job1",
importPrefixes: ["/"],
location: "eastus",
maximumErrors: 0,
resourceGroupName: "scgroup",
tags: {
Dept: "ContosoAds",
},
});
resources:
importJob:
type: azure-native:storagecache:ImportJob
properties:
amlFilesystemName: fs1
conflictResolutionMode: OverwriteAlways
importJobName: job1
importPrefixes:
- /
location: eastus
maximumErrors: 0
resourceGroupName: scgroup
tags:
Dept: ContosoAds
Create ImportJob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ImportJob(name: string, args: ImportJobArgs, opts?: CustomResourceOptions);
@overload
def ImportJob(resource_name: str,
args: ImportJobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ImportJob(resource_name: str,
opts: Optional[ResourceOptions] = None,
aml_filesystem_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
conflict_resolution_mode: Optional[Union[str, ConflictResolutionMode]] = None,
import_job_name: Optional[str] = None,
import_prefixes: Optional[Sequence[str]] = None,
location: Optional[str] = None,
maximum_errors: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None)
func NewImportJob(ctx *Context, name string, args ImportJobArgs, opts ...ResourceOption) (*ImportJob, error)
public ImportJob(string name, ImportJobArgs args, CustomResourceOptions? opts = null)
public ImportJob(String name, ImportJobArgs args)
public ImportJob(String name, ImportJobArgs args, CustomResourceOptions options)
type: azure-native:storagecache:ImportJob
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ImportJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ImportJobArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ImportJobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImportJobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImportJobArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var importJobResource = new AzureNative.StorageCache.ImportJob("importJobResource", new()
{
AmlFilesystemName = "string",
ResourceGroupName = "string",
ConflictResolutionMode = "string",
ImportJobName = "string",
ImportPrefixes = new[]
{
"string",
},
Location = "string",
MaximumErrors = 0,
Tags =
{
{ "string", "string" },
},
});
example, err := storagecache.NewImportJob(ctx, "importJobResource", &storagecache.ImportJobArgs{
AmlFilesystemName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ConflictResolutionMode: pulumi.String("string"),
ImportJobName: pulumi.String("string"),
ImportPrefixes: pulumi.StringArray{
pulumi.String("string"),
},
Location: pulumi.String("string"),
MaximumErrors: pulumi.Int(0),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var importJobResource = new ImportJob("importJobResource", ImportJobArgs.builder()
.amlFilesystemName("string")
.resourceGroupName("string")
.conflictResolutionMode("string")
.importJobName("string")
.importPrefixes("string")
.location("string")
.maximumErrors(0)
.tags(Map.of("string", "string"))
.build());
import_job_resource = azure_native.storagecache.ImportJob("importJobResource",
aml_filesystem_name="string",
resource_group_name="string",
conflict_resolution_mode="string",
import_job_name="string",
import_prefixes=["string"],
location="string",
maximum_errors=0,
tags={
"string": "string",
})
const importJobResource = new azure_native.storagecache.ImportJob("importJobResource", {
amlFilesystemName: "string",
resourceGroupName: "string",
conflictResolutionMode: "string",
importJobName: "string",
importPrefixes: ["string"],
location: "string",
maximumErrors: 0,
tags: {
string: "string",
},
});
type: azure-native:storagecache:ImportJob
properties:
amlFilesystemName: string
conflictResolutionMode: string
importJobName: string
importPrefixes:
- string
location: string
maximumErrors: 0
resourceGroupName: string
tags:
string: string
ImportJob Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ImportJob resource accepts the following input properties:
- 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.
- Conflict
Resolution string | Pulumi.Mode Azure Native. Storage Cache. Conflict Resolution Mode - How the import job will handle conflicts. For example, if the import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or was not previously imported. OverwriteAlways extends OverwriteIfDirty to include releasing files that had been restored but were not dirty. Please reference https://learn.microsoft.com/en-us/azure/azure-managed-lustre/ for a thorough explanation of these resolution modes.
- Import
Job stringName - Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- Import
Prefixes List<string> - An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
- Location string
- The geo-location where the resource lives
- Maximum
Errors int - Total non-conflict oriented errors the import job will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately and is the default.
- 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.
- Conflict
Resolution string | ConflictMode Resolution Mode - How the import job will handle conflicts. For example, if the import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or was not previously imported. OverwriteAlways extends OverwriteIfDirty to include releasing files that had been restored but were not dirty. Please reference https://learn.microsoft.com/en-us/azure/azure-managed-lustre/ for a thorough explanation of these resolution modes.
- Import
Job stringName - Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- Import
Prefixes []string - An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
- Location string
- The geo-location where the resource lives
- Maximum
Errors int - Total non-conflict oriented errors the import job will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately and is the default.
- 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.
- conflict
Resolution String | ConflictMode Resolution Mode - How the import job will handle conflicts. For example, if the import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or was not previously imported. OverwriteAlways extends OverwriteIfDirty to include releasing files that had been restored but were not dirty. Please reference https://learn.microsoft.com/en-us/azure/azure-managed-lustre/ for a thorough explanation of these resolution modes.
- import
Job StringName - Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- import
Prefixes List<String> - An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
- location String
- The geo-location where the resource lives
- maximum
Errors Integer - Total non-conflict oriented errors the import job will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately and is the default.
- 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.
- conflict
Resolution string | ConflictMode Resolution Mode - How the import job will handle conflicts. For example, if the import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or was not previously imported. OverwriteAlways extends OverwriteIfDirty to include releasing files that had been restored but were not dirty. Please reference https://learn.microsoft.com/en-us/azure/azure-managed-lustre/ for a thorough explanation of these resolution modes.
- import
Job stringName - Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- import
Prefixes string[] - An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
- location string
- The geo-location where the resource lives
- maximum
Errors number - Total non-conflict oriented errors the import job will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately and is the default.
- {[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.
- conflict_
resolution_ str | Conflictmode Resolution Mode - How the import job will handle conflicts. For example, if the import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or was not previously imported. OverwriteAlways extends OverwriteIfDirty to include releasing files that had been restored but were not dirty. Please reference https://learn.microsoft.com/en-us/azure/azure-managed-lustre/ for a thorough explanation of these resolution modes.
- import_
job_ strname - Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- import_
prefixes Sequence[str] - An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
- location str
- The geo-location where the resource lives
- maximum_
errors int - Total non-conflict oriented errors the import job will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately and is the default.
- 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.
- conflict
Resolution String | "Fail" | "Skip" | "OverwriteMode If Dirty" | "Overwrite Always" - How the import job will handle conflicts. For example, if the import job is trying to bring in a directory, but a file is at that path, how it handles it. Fail indicates that the import job should stop immediately and not do anything with the conflict. Skip indicates that it should pass over the conflict. OverwriteIfDirty causes the import job to delete and re-import the file or directory if it is a conflicting type, is dirty, or was not previously imported. OverwriteAlways extends OverwriteIfDirty to include releasing files that had been restored but were not dirty. Please reference https://learn.microsoft.com/en-us/azure/azure-managed-lustre/ for a thorough explanation of these resolution modes.
- import
Job StringName - Name for the import job. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
- import
Prefixes List<String> - An array of blob paths/prefixes that get imported into the cluster namespace. It has '/' as the default value.
- location String
- The geo-location where the resource lives
- maximum
Errors Number - Total non-conflict oriented errors the import job will tolerate before exiting with failure. -1 means infinite. 0 means exit immediately and is the default.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ImportJob resource produces the following output properties:
- Blobs
Imported doublePer Second - A recent and frequently updated rate of total files, directories, and symlinks imported per second.
- Blobs
Walked doublePer Second - A recent and frequently updated rate of blobs walked per second.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Completion stringTime - The time of the last completed archive operation
- Last
Started stringTime - The time the latest archive operation started
- Name string
- The name of the resource
- Provisioning
State string - ARM provisioning state.
- State string
- The state of the import job. InProgress indicates the import is still running. Canceled indicates it has been canceled by the user. Completed indicates import finished, successfully importing all discovered blobs into the Lustre namespace. CompletedPartial indicates the import finished but some blobs either were found to be conflicting and could not be imported or other errors were encountered. Failed means the import was unable to complete due to a fatal error.
- Status
Message string - The status message of the import job.
- System
Data Pulumi.Azure Native. Storage Cache. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Blobs doubleImported - The total blobs that have been imported since import began.
- Total
Blobs doubleWalked - The total blob objects walked.
- Total
Conflicts int - Number of conflicts in the import job.
- Total
Errors int - Number of errors in the import job.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Blobs
Imported float64Per Second - A recent and frequently updated rate of total files, directories, and symlinks imported per second.
- Blobs
Walked float64Per Second - A recent and frequently updated rate of blobs walked per second.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Completion stringTime - The time of the last completed archive operation
- Last
Started stringTime - The time the latest archive operation started
- Name string
- The name of the resource
- Provisioning
State string - ARM provisioning state.
- State string
- The state of the import job. InProgress indicates the import is still running. Canceled indicates it has been canceled by the user. Completed indicates import finished, successfully importing all discovered blobs into the Lustre namespace. CompletedPartial indicates the import finished but some blobs either were found to be conflicting and could not be imported or other errors were encountered. Failed means the import was unable to complete due to a fatal error.
- Status
Message string - The status message of the import job.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Total
Blobs float64Imported - The total blobs that have been imported since import began.
- Total
Blobs float64Walked - The total blob objects walked.
- Total
Conflicts int - Number of conflicts in the import job.
- Total
Errors int - Number of errors in the import job.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blobs
Imported DoublePer Second - A recent and frequently updated rate of total files, directories, and symlinks imported per second.
- blobs
Walked DoublePer Second - A recent and frequently updated rate of blobs walked per second.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Completion StringTime - The time of the last completed archive operation
- last
Started StringTime - The time the latest archive operation started
- name String
- The name of the resource
- provisioning
State String - ARM provisioning state.
- state String
- The state of the import job. InProgress indicates the import is still running. Canceled indicates it has been canceled by the user. Completed indicates import finished, successfully importing all discovered blobs into the Lustre namespace. CompletedPartial indicates the import finished but some blobs either were found to be conflicting and could not be imported or other errors were encountered. Failed means the import was unable to complete due to a fatal error.
- status
Message String - The status message of the import job.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Blobs DoubleImported - The total blobs that have been imported since import began.
- total
Blobs DoubleWalked - The total blob objects walked.
- total
Conflicts Integer - Number of conflicts in the import job.
- total
Errors Integer - Number of errors in the import job.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blobs
Imported numberPer Second - A recent and frequently updated rate of total files, directories, and symlinks imported per second.
- blobs
Walked numberPer Second - A recent and frequently updated rate of blobs walked per second.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Completion stringTime - The time of the last completed archive operation
- last
Started stringTime - The time the latest archive operation started
- name string
- The name of the resource
- provisioning
State string - ARM provisioning state.
- state string
- The state of the import job. InProgress indicates the import is still running. Canceled indicates it has been canceled by the user. Completed indicates import finished, successfully importing all discovered blobs into the Lustre namespace. CompletedPartial indicates the import finished but some blobs either were found to be conflicting and could not be imported or other errors were encountered. Failed means the import was unable to complete due to a fatal error.
- status
Message string - The status message of the import job.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Blobs numberImported - The total blobs that have been imported since import began.
- total
Blobs numberWalked - The total blob objects walked.
- total
Conflicts number - Number of conflicts in the import job.
- total
Errors number - Number of errors in the import job.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blobs_
imported_ floatper_ second - A recent and frequently updated rate of total files, directories, and symlinks imported per second.
- blobs_
walked_ floatper_ second - A recent and frequently updated rate of blobs walked per second.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
completion_ strtime - The time of the last completed archive operation
- last_
started_ strtime - The time the latest archive operation started
- name str
- The name of the resource
- provisioning_
state str - ARM provisioning state.
- state str
- The state of the import job. InProgress indicates the import is still running. Canceled indicates it has been canceled by the user. Completed indicates import finished, successfully importing all discovered blobs into the Lustre namespace. CompletedPartial indicates the import finished but some blobs either were found to be conflicting and could not be imported or other errors were encountered. Failed means the import was unable to complete due to a fatal error.
- status_
message str - The status message of the import job.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total_
blobs_ floatimported - The total blobs that have been imported since import began.
- total_
blobs_ floatwalked - The total blob objects walked.
- total_
conflicts int - Number of conflicts in the import job.
- total_
errors int - Number of errors in the import job.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blobs
Imported NumberPer Second - A recent and frequently updated rate of total files, directories, and symlinks imported per second.
- blobs
Walked NumberPer Second - A recent and frequently updated rate of blobs walked per second.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Completion StringTime - The time of the last completed archive operation
- last
Started StringTime - The time the latest archive operation started
- name String
- The name of the resource
- provisioning
State String - ARM provisioning state.
- state String
- The state of the import job. InProgress indicates the import is still running. Canceled indicates it has been canceled by the user. Completed indicates import finished, successfully importing all discovered blobs into the Lustre namespace. CompletedPartial indicates the import finished but some blobs either were found to be conflicting and could not be imported or other errors were encountered. Failed means the import was unable to complete due to a fatal error.
- status
Message String - The status message of the import job.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- total
Blobs NumberImported - The total blobs that have been imported since import began.
- total
Blobs NumberWalked - The total blob objects walked.
- total
Conflicts Number - Number of conflicts in the import job.
- total
Errors Number - Number of errors in the import job.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ConflictResolutionMode, ConflictResolutionModeArgs
- Fail
- Fail
- Skip
- Skip
- Overwrite
If Dirty - OverwriteIfDirty
- Overwrite
Always - OverwriteAlways
- Conflict
Resolution Mode Fail - Fail
- Conflict
Resolution Mode Skip - Skip
- Conflict
Resolution Mode Overwrite If Dirty - OverwriteIfDirty
- Conflict
Resolution Mode Overwrite Always - OverwriteAlways
- Fail
- Fail
- Skip
- Skip
- Overwrite
If Dirty - OverwriteIfDirty
- Overwrite
Always - OverwriteAlways
- Fail
- Fail
- Skip
- Skip
- Overwrite
If Dirty - OverwriteIfDirty
- Overwrite
Always - OverwriteAlways
- FAIL
- Fail
- SKIP
- Skip
- OVERWRITE_IF_DIRTY
- OverwriteIfDirty
- OVERWRITE_ALWAYS
- OverwriteAlways
- "Fail"
- Fail
- "Skip"
- Skip
- "Overwrite
If Dirty" - OverwriteIfDirty
- "Overwrite
Always" - OverwriteAlways
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:ImportJob job1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageCache/amlFilesystems/{amlFilesystemName}/importJobs/{importJobName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0