azure-native.storagecache.StorageTarget
Explore with Pulumi AI
Type of the Storage Target. Azure REST API version: 2023-05-01. Prior API version in Azure Native 1.x: 2021-03-01.
Other available API versions: 2021-03-01, 2023-11-01-preview, 2024-03-01, 2024-07-01.
Example Usage
StorageTargets_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var storageTarget = new AzureNative.StorageCache.StorageTarget("storageTarget", new()
    {
        CacheName = "sc1",
        Junctions = new[]
        {
            new AzureNative.StorageCache.Inputs.NamespaceJunctionArgs
            {
                NamespacePath = "/path/on/cache",
                NfsAccessPolicy = "default",
                NfsExport = "exp1",
                TargetPath = "/path/on/exp1",
            },
            new AzureNative.StorageCache.Inputs.NamespaceJunctionArgs
            {
                NamespacePath = "/path2/on/cache",
                NfsAccessPolicy = "rootSquash",
                NfsExport = "exp2",
                TargetPath = "/path2/on/exp2",
            },
        },
        Nfs3 = new AzureNative.StorageCache.Inputs.Nfs3TargetArgs
        {
            Target = "10.0.44.44",
            UsageModel = "READ_ONLY",
            VerificationTimer = 30,
        },
        ResourceGroupName = "scgroup",
        StorageTargetName = "st1",
        TargetType = AzureNative.StorageCache.StorageTargetType.Nfs3,
    });
});
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.NewStorageTarget(ctx, "storageTarget", &storagecache.StorageTargetArgs{
			CacheName: pulumi.String("sc1"),
			Junctions: storagecache.NamespaceJunctionArray{
				&storagecache.NamespaceJunctionArgs{
					NamespacePath:   pulumi.String("/path/on/cache"),
					NfsAccessPolicy: pulumi.String("default"),
					NfsExport:       pulumi.String("exp1"),
					TargetPath:      pulumi.String("/path/on/exp1"),
				},
				&storagecache.NamespaceJunctionArgs{
					NamespacePath:   pulumi.String("/path2/on/cache"),
					NfsAccessPolicy: pulumi.String("rootSquash"),
					NfsExport:       pulumi.String("exp2"),
					TargetPath:      pulumi.String("/path2/on/exp2"),
				},
			},
			Nfs3: &storagecache.Nfs3TargetArgs{
				Target:            pulumi.String("10.0.44.44"),
				UsageModel:        pulumi.String("READ_ONLY"),
				VerificationTimer: pulumi.Int(30),
			},
			ResourceGroupName: pulumi.String("scgroup"),
			StorageTargetName: pulumi.String("st1"),
			TargetType:        pulumi.String(storagecache.StorageTargetTypeNfs3),
		})
		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.StorageTarget;
import com.pulumi.azurenative.storagecache.StorageTargetArgs;
import com.pulumi.azurenative.storagecache.inputs.NamespaceJunctionArgs;
import com.pulumi.azurenative.storagecache.inputs.Nfs3TargetArgs;
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 storageTarget = new StorageTarget("storageTarget", StorageTargetArgs.builder()
            .cacheName("sc1")
            .junctions(            
                NamespaceJunctionArgs.builder()
                    .namespacePath("/path/on/cache")
                    .nfsAccessPolicy("default")
                    .nfsExport("exp1")
                    .targetPath("/path/on/exp1")
                    .build(),
                NamespaceJunctionArgs.builder()
                    .namespacePath("/path2/on/cache")
                    .nfsAccessPolicy("rootSquash")
                    .nfsExport("exp2")
                    .targetPath("/path2/on/exp2")
                    .build())
            .nfs3(Nfs3TargetArgs.builder()
                .target("10.0.44.44")
                .usageModel("READ_ONLY")
                .verificationTimer(30)
                .build())
            .resourceGroupName("scgroup")
            .storageTargetName("st1")
            .targetType("nfs3")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const storageTarget = new azure_native.storagecache.StorageTarget("storageTarget", {
    cacheName: "sc1",
    junctions: [
        {
            namespacePath: "/path/on/cache",
            nfsAccessPolicy: "default",
            nfsExport: "exp1",
            targetPath: "/path/on/exp1",
        },
        {
            namespacePath: "/path2/on/cache",
            nfsAccessPolicy: "rootSquash",
            nfsExport: "exp2",
            targetPath: "/path2/on/exp2",
        },
    ],
    nfs3: {
        target: "10.0.44.44",
        usageModel: "READ_ONLY",
        verificationTimer: 30,
    },
    resourceGroupName: "scgroup",
    storageTargetName: "st1",
    targetType: azure_native.storagecache.StorageTargetType.Nfs3,
});
import pulumi
import pulumi_azure_native as azure_native
storage_target = azure_native.storagecache.StorageTarget("storageTarget",
    cache_name="sc1",
    junctions=[
        {
            "namespace_path": "/path/on/cache",
            "nfs_access_policy": "default",
            "nfs_export": "exp1",
            "target_path": "/path/on/exp1",
        },
        {
            "namespace_path": "/path2/on/cache",
            "nfs_access_policy": "rootSquash",
            "nfs_export": "exp2",
            "target_path": "/path2/on/exp2",
        },
    ],
    nfs3={
        "target": "10.0.44.44",
        "usage_model": "READ_ONLY",
        "verification_timer": 30,
    },
    resource_group_name="scgroup",
    storage_target_name="st1",
    target_type=azure_native.storagecache.StorageTargetType.NFS3)
resources:
  storageTarget:
    type: azure-native:storagecache:StorageTarget
    properties:
      cacheName: sc1
      junctions:
        - namespacePath: /path/on/cache
          nfsAccessPolicy: default
          nfsExport: exp1
          targetPath: /path/on/exp1
        - namespacePath: /path2/on/cache
          nfsAccessPolicy: rootSquash
          nfsExport: exp2
          targetPath: /path2/on/exp2
      nfs3:
        target: 10.0.44.44
        usageModel: READ_ONLY
        verificationTimer: 30
      resourceGroupName: scgroup
      storageTargetName: st1
      targetType: nfs3
StorageTargets_CreateOrUpdate_BlobNfs
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var storageTarget = new AzureNative.StorageCache.StorageTarget("storageTarget", new()
    {
        BlobNfs = new AzureNative.StorageCache.Inputs.BlobNfsTargetArgs
        {
            Target = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scgroup/providers/Microsoft.Storage/storageAccounts/blofnfs/blobServices/default/containers/blobnfs",
            UsageModel = "READ_WRITE",
            VerificationTimer = 28800,
            WriteBackTimer = 3600,
        },
        CacheName = "sc1",
        Junctions = new[]
        {
            new AzureNative.StorageCache.Inputs.NamespaceJunctionArgs
            {
                NamespacePath = "/blobnfs",
            },
        },
        ResourceGroupName = "scgroup",
        StorageTargetName = "st1",
        TargetType = AzureNative.StorageCache.StorageTargetType.BlobNfs,
    });
});
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.NewStorageTarget(ctx, "storageTarget", &storagecache.StorageTargetArgs{
			BlobNfs: &storagecache.BlobNfsTargetArgs{
				Target:            pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scgroup/providers/Microsoft.Storage/storageAccounts/blofnfs/blobServices/default/containers/blobnfs"),
				UsageModel:        pulumi.String("READ_WRITE"),
				VerificationTimer: pulumi.Int(28800),
				WriteBackTimer:    pulumi.Int(3600),
			},
			CacheName: pulumi.String("sc1"),
			Junctions: storagecache.NamespaceJunctionArray{
				&storagecache.NamespaceJunctionArgs{
					NamespacePath: pulumi.String("/blobnfs"),
				},
			},
			ResourceGroupName: pulumi.String("scgroup"),
			StorageTargetName: pulumi.String("st1"),
			TargetType:        pulumi.String(storagecache.StorageTargetTypeBlobNfs),
		})
		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.StorageTarget;
import com.pulumi.azurenative.storagecache.StorageTargetArgs;
import com.pulumi.azurenative.storagecache.inputs.BlobNfsTargetArgs;
import com.pulumi.azurenative.storagecache.inputs.NamespaceJunctionArgs;
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 storageTarget = new StorageTarget("storageTarget", StorageTargetArgs.builder()
            .blobNfs(BlobNfsTargetArgs.builder()
                .target("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scgroup/providers/Microsoft.Storage/storageAccounts/blofnfs/blobServices/default/containers/blobnfs")
                .usageModel("READ_WRITE")
                .verificationTimer(28800)
                .writeBackTimer(3600)
                .build())
            .cacheName("sc1")
            .junctions(NamespaceJunctionArgs.builder()
                .namespacePath("/blobnfs")
                .build())
            .resourceGroupName("scgroup")
            .storageTargetName("st1")
            .targetType("blobNfs")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const storageTarget = new azure_native.storagecache.StorageTarget("storageTarget", {
    blobNfs: {
        target: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scgroup/providers/Microsoft.Storage/storageAccounts/blofnfs/blobServices/default/containers/blobnfs",
        usageModel: "READ_WRITE",
        verificationTimer: 28800,
        writeBackTimer: 3600,
    },
    cacheName: "sc1",
    junctions: [{
        namespacePath: "/blobnfs",
    }],
    resourceGroupName: "scgroup",
    storageTargetName: "st1",
    targetType: azure_native.storagecache.StorageTargetType.BlobNfs,
});
import pulumi
import pulumi_azure_native as azure_native
storage_target = azure_native.storagecache.StorageTarget("storageTarget",
    blob_nfs={
        "target": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scgroup/providers/Microsoft.Storage/storageAccounts/blofnfs/blobServices/default/containers/blobnfs",
        "usage_model": "READ_WRITE",
        "verification_timer": 28800,
        "write_back_timer": 3600,
    },
    cache_name="sc1",
    junctions=[{
        "namespace_path": "/blobnfs",
    }],
    resource_group_name="scgroup",
    storage_target_name="st1",
    target_type=azure_native.storagecache.StorageTargetType.BLOB_NFS)
resources:
  storageTarget:
    type: azure-native:storagecache:StorageTarget
    properties:
      blobNfs:
        target: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/scgroup/providers/Microsoft.Storage/storageAccounts/blofnfs/blobServices/default/containers/blobnfs
        usageModel: READ_WRITE
        verificationTimer: 28800
        writeBackTimer: 3600
      cacheName: sc1
      junctions:
        - namespacePath: /blobnfs
      resourceGroupName: scgroup
      storageTargetName: st1
      targetType: blobNfs
StorageTargets_CreateOrUpdate_NoJunctions
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var storageTarget = new AzureNative.StorageCache.StorageTarget("storageTarget", new()
    {
        CacheName = "sc1",
        Nfs3 = new AzureNative.StorageCache.Inputs.Nfs3TargetArgs
        {
            Target = "10.0.44.44",
            UsageModel = "READ_ONLY",
            VerificationTimer = 30,
        },
        ResourceGroupName = "scgroup",
        StorageTargetName = "st1",
        TargetType = AzureNative.StorageCache.StorageTargetType.Nfs3,
    });
});
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.NewStorageTarget(ctx, "storageTarget", &storagecache.StorageTargetArgs{
			CacheName: pulumi.String("sc1"),
			Nfs3: &storagecache.Nfs3TargetArgs{
				Target:            pulumi.String("10.0.44.44"),
				UsageModel:        pulumi.String("READ_ONLY"),
				VerificationTimer: pulumi.Int(30),
			},
			ResourceGroupName: pulumi.String("scgroup"),
			StorageTargetName: pulumi.String("st1"),
			TargetType:        pulumi.String(storagecache.StorageTargetTypeNfs3),
		})
		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.StorageTarget;
import com.pulumi.azurenative.storagecache.StorageTargetArgs;
import com.pulumi.azurenative.storagecache.inputs.Nfs3TargetArgs;
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 storageTarget = new StorageTarget("storageTarget", StorageTargetArgs.builder()
            .cacheName("sc1")
            .nfs3(Nfs3TargetArgs.builder()
                .target("10.0.44.44")
                .usageModel("READ_ONLY")
                .verificationTimer(30)
                .build())
            .resourceGroupName("scgroup")
            .storageTargetName("st1")
            .targetType("nfs3")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const storageTarget = new azure_native.storagecache.StorageTarget("storageTarget", {
    cacheName: "sc1",
    nfs3: {
        target: "10.0.44.44",
        usageModel: "READ_ONLY",
        verificationTimer: 30,
    },
    resourceGroupName: "scgroup",
    storageTargetName: "st1",
    targetType: azure_native.storagecache.StorageTargetType.Nfs3,
});
import pulumi
import pulumi_azure_native as azure_native
storage_target = azure_native.storagecache.StorageTarget("storageTarget",
    cache_name="sc1",
    nfs3={
        "target": "10.0.44.44",
        "usage_model": "READ_ONLY",
        "verification_timer": 30,
    },
    resource_group_name="scgroup",
    storage_target_name="st1",
    target_type=azure_native.storagecache.StorageTargetType.NFS3)
resources:
  storageTarget:
    type: azure-native:storagecache:StorageTarget
    properties:
      cacheName: sc1
      nfs3:
        target: 10.0.44.44
        usageModel: READ_ONLY
        verificationTimer: 30
      resourceGroupName: scgroup
      storageTargetName: st1
      targetType: nfs3
Create StorageTarget Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StorageTarget(name: string, args: StorageTargetArgs, opts?: CustomResourceOptions);@overload
def StorageTarget(resource_name: str,
                  args: StorageTargetArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def StorageTarget(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  cache_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  target_type: Optional[Union[str, StorageTargetType]] = None,
                  blob_nfs: Optional[BlobNfsTargetArgs] = None,
                  clfs: Optional[ClfsTargetArgs] = None,
                  junctions: Optional[Sequence[NamespaceJunctionArgs]] = None,
                  nfs3: Optional[Nfs3TargetArgs] = None,
                  state: Optional[Union[str, OperationalStateType]] = None,
                  storage_target_name: Optional[str] = None,
                  unknown: Optional[UnknownTargetArgs] = None)func NewStorageTarget(ctx *Context, name string, args StorageTargetArgs, opts ...ResourceOption) (*StorageTarget, error)public StorageTarget(string name, StorageTargetArgs args, CustomResourceOptions? opts = null)
public StorageTarget(String name, StorageTargetArgs args)
public StorageTarget(String name, StorageTargetArgs args, CustomResourceOptions options)
type: azure-native:storagecache:StorageTarget
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 StorageTargetArgs
- 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 StorageTargetArgs
- 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 StorageTargetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StorageTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StorageTargetArgs
- 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 storageTargetResource = new AzureNative.StorageCache.StorageTarget("storageTargetResource", new()
{
    CacheName = "string",
    ResourceGroupName = "string",
    TargetType = "string",
    BlobNfs = new AzureNative.StorageCache.Inputs.BlobNfsTargetArgs
    {
        Target = "string",
        UsageModel = "string",
        VerificationTimer = 0,
        WriteBackTimer = 0,
    },
    Clfs = new AzureNative.StorageCache.Inputs.ClfsTargetArgs
    {
        Target = "string",
    },
    Junctions = new[]
    {
        new AzureNative.StorageCache.Inputs.NamespaceJunctionArgs
        {
            NamespacePath = "string",
            NfsAccessPolicy = "string",
            NfsExport = "string",
            TargetPath = "string",
        },
    },
    Nfs3 = new AzureNative.StorageCache.Inputs.Nfs3TargetArgs
    {
        Target = "string",
        UsageModel = "string",
        VerificationTimer = 0,
        WriteBackTimer = 0,
    },
    State = "string",
    StorageTargetName = "string",
    Unknown = new AzureNative.StorageCache.Inputs.UnknownTargetArgs
    {
        Attributes = 
        {
            { "string", "string" },
        },
    },
});
example, err := storagecache.NewStorageTarget(ctx, "storageTargetResource", &storagecache.StorageTargetArgs{
	CacheName:         pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	TargetType:        pulumi.String("string"),
	BlobNfs: &storagecache.BlobNfsTargetArgs{
		Target:            pulumi.String("string"),
		UsageModel:        pulumi.String("string"),
		VerificationTimer: pulumi.Int(0),
		WriteBackTimer:    pulumi.Int(0),
	},
	Clfs: &storagecache.ClfsTargetArgs{
		Target: pulumi.String("string"),
	},
	Junctions: storagecache.NamespaceJunctionArray{
		&storagecache.NamespaceJunctionArgs{
			NamespacePath:   pulumi.String("string"),
			NfsAccessPolicy: pulumi.String("string"),
			NfsExport:       pulumi.String("string"),
			TargetPath:      pulumi.String("string"),
		},
	},
	Nfs3: &storagecache.Nfs3TargetArgs{
		Target:            pulumi.String("string"),
		UsageModel:        pulumi.String("string"),
		VerificationTimer: pulumi.Int(0),
		WriteBackTimer:    pulumi.Int(0),
	},
	State:             pulumi.String("string"),
	StorageTargetName: pulumi.String("string"),
	Unknown: &storagecache.UnknownTargetArgs{
		Attributes: pulumi.StringMap{
			"string": pulumi.String("string"),
		},
	},
})
var storageTargetResource = new StorageTarget("storageTargetResource", StorageTargetArgs.builder()
    .cacheName("string")
    .resourceGroupName("string")
    .targetType("string")
    .blobNfs(BlobNfsTargetArgs.builder()
        .target("string")
        .usageModel("string")
        .verificationTimer(0)
        .writeBackTimer(0)
        .build())
    .clfs(ClfsTargetArgs.builder()
        .target("string")
        .build())
    .junctions(NamespaceJunctionArgs.builder()
        .namespacePath("string")
        .nfsAccessPolicy("string")
        .nfsExport("string")
        .targetPath("string")
        .build())
    .nfs3(Nfs3TargetArgs.builder()
        .target("string")
        .usageModel("string")
        .verificationTimer(0)
        .writeBackTimer(0)
        .build())
    .state("string")
    .storageTargetName("string")
    .unknown(UnknownTargetArgs.builder()
        .attributes(Map.of("string", "string"))
        .build())
    .build());
storage_target_resource = azure_native.storagecache.StorageTarget("storageTargetResource",
    cache_name="string",
    resource_group_name="string",
    target_type="string",
    blob_nfs={
        "target": "string",
        "usage_model": "string",
        "verification_timer": 0,
        "write_back_timer": 0,
    },
    clfs={
        "target": "string",
    },
    junctions=[{
        "namespace_path": "string",
        "nfs_access_policy": "string",
        "nfs_export": "string",
        "target_path": "string",
    }],
    nfs3={
        "target": "string",
        "usage_model": "string",
        "verification_timer": 0,
        "write_back_timer": 0,
    },
    state="string",
    storage_target_name="string",
    unknown={
        "attributes": {
            "string": "string",
        },
    })
const storageTargetResource = new azure_native.storagecache.StorageTarget("storageTargetResource", {
    cacheName: "string",
    resourceGroupName: "string",
    targetType: "string",
    blobNfs: {
        target: "string",
        usageModel: "string",
        verificationTimer: 0,
        writeBackTimer: 0,
    },
    clfs: {
        target: "string",
    },
    junctions: [{
        namespacePath: "string",
        nfsAccessPolicy: "string",
        nfsExport: "string",
        targetPath: "string",
    }],
    nfs3: {
        target: "string",
        usageModel: "string",
        verificationTimer: 0,
        writeBackTimer: 0,
    },
    state: "string",
    storageTargetName: "string",
    unknown: {
        attributes: {
            string: "string",
        },
    },
});
type: azure-native:storagecache:StorageTarget
properties:
    blobNfs:
        target: string
        usageModel: string
        verificationTimer: 0
        writeBackTimer: 0
    cacheName: string
    clfs:
        target: string
    junctions:
        - namespacePath: string
          nfsAccessPolicy: string
          nfsExport: string
          targetPath: string
    nfs3:
        target: string
        usageModel: string
        verificationTimer: 0
        writeBackTimer: 0
    resourceGroupName: string
    state: string
    storageTargetName: string
    targetType: string
    unknown:
        attributes:
            string: string
StorageTarget 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 StorageTarget resource accepts the following input properties:
- CacheName string
- Name of cache. Length of name must not be greater than 80 and chars must be from the [-0-9a-zA-Z_] char class.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- TargetType string | Pulumi.Azure Native. Storage Cache. Storage Target Type 
- Type of the Storage Target.
- BlobNfs Pulumi.Azure Native. Storage Cache. Inputs. Blob Nfs Target 
- Properties when targetType is blobNfs.
- Clfs
Pulumi.Azure Native. Storage Cache. Inputs. Clfs Target 
- Properties when targetType is clfs.
- Junctions
List<Pulumi.Azure Native. Storage Cache. Inputs. Namespace Junction> 
- List of cache namespace junctions to target for namespace associations.
- Nfs3
Pulumi.Azure Native. Storage Cache. Inputs. Nfs3Target 
- Properties when targetType is nfs3.
- State
string | Pulumi.Azure Native. Storage Cache. Operational State Type 
- Storage target operational state.
- StorageTarget stringName 
- Name of Storage Target.
- Unknown
Pulumi.Azure Native. Storage Cache. Inputs. Unknown Target 
- Properties when targetType is unknown.
- CacheName string
- Name of cache. Length of name must not be greater than 80 and chars must be from the [-0-9a-zA-Z_] char class.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- TargetType string | StorageTarget Type 
- Type of the Storage Target.
- BlobNfs BlobNfs Target Args 
- Properties when targetType is blobNfs.
- Clfs
ClfsTarget Args 
- Properties when targetType is clfs.
- Junctions
[]NamespaceJunction Args 
- List of cache namespace junctions to target for namespace associations.
- Nfs3
Nfs3TargetArgs 
- Properties when targetType is nfs3.
- State
string | OperationalState Type 
- Storage target operational state.
- StorageTarget stringName 
- Name of Storage Target.
- Unknown
UnknownTarget Args 
- Properties when targetType is unknown.
- cacheName String
- Name of cache. Length of name must not be greater than 80 and chars must be from the [-0-9a-zA-Z_] char class.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- targetType String | StorageTarget Type 
- Type of the Storage Target.
- blobNfs BlobNfs Target 
- Properties when targetType is blobNfs.
- clfs
ClfsTarget 
- Properties when targetType is clfs.
- junctions
List<NamespaceJunction> 
- List of cache namespace junctions to target for namespace associations.
- nfs3 Nfs3Target
- Properties when targetType is nfs3.
- state
String | OperationalState Type 
- Storage target operational state.
- storageTarget StringName 
- Name of Storage Target.
- unknown
UnknownTarget 
- Properties when targetType is unknown.
- cacheName string
- Name of cache. Length of name must not be greater than 80 and chars must be from the [-0-9a-zA-Z_] char class.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- targetType string | StorageTarget Type 
- Type of the Storage Target.
- blobNfs BlobNfs Target 
- Properties when targetType is blobNfs.
- clfs
ClfsTarget 
- Properties when targetType is clfs.
- junctions
NamespaceJunction[] 
- List of cache namespace junctions to target for namespace associations.
- nfs3 Nfs3Target
- Properties when targetType is nfs3.
- state
string | OperationalState Type 
- Storage target operational state.
- storageTarget stringName 
- Name of Storage Target.
- unknown
UnknownTarget 
- Properties when targetType is unknown.
- cache_name str
- Name of cache. Length of name must not be greater than 80 and chars must be from the [-0-9a-zA-Z_] char class.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- target_type str | StorageTarget Type 
- Type of the Storage Target.
- blob_nfs BlobNfs Target Args 
- Properties when targetType is blobNfs.
- clfs
ClfsTarget Args 
- Properties when targetType is clfs.
- junctions
Sequence[NamespaceJunction Args] 
- List of cache namespace junctions to target for namespace associations.
- nfs3
Nfs3TargetArgs 
- Properties when targetType is nfs3.
- state
str | OperationalState Type 
- Storage target operational state.
- storage_target_ strname 
- Name of Storage Target.
- unknown
UnknownTarget Args 
- Properties when targetType is unknown.
- cacheName String
- Name of cache. Length of name must not be greater than 80 and chars must be from the [-0-9a-zA-Z_] char class.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- targetType String | "nfs3" | "clfs" | "unknown" | "blobNfs" 
- Type of the Storage Target.
- blobNfs Property Map
- Properties when targetType is blobNfs.
- clfs Property Map
- Properties when targetType is clfs.
- junctions List<Property Map>
- List of cache namespace junctions to target for namespace associations.
- nfs3 Property Map
- Properties when targetType is nfs3.
- state String | "Ready" | "Busy" | "Suspended" | "Flushing"
- Storage target operational state.
- storageTarget StringName 
- Name of Storage Target.
- unknown Property Map
- Properties when targetType is unknown.
Outputs
All input properties are implicitly available as output properties. Additionally, the StorageTarget resource produces the following output properties:
- AllocationPercentage int
- The percentage of cache space allocated for this storage target
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- Region name string.
- Name string
- Name of the Storage Target.
- ProvisioningState string
- ARM provisioning state, see https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#provisioningstate-property
- SystemData Pulumi.Azure Native. Storage Cache. Outputs. System Data Response 
- The system meta data relating to this resource.
- Type string
- Type of the Storage Target; Microsoft.StorageCache/Cache/StorageTarget
- AllocationPercentage int
- The percentage of cache space allocated for this storage target
- Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- Region name string.
- Name string
- Name of the Storage Target.
- ProvisioningState string
- ARM provisioning state, see https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#provisioningstate-property
- SystemData SystemData Response 
- The system meta data relating to this resource.
- Type string
- Type of the Storage Target; Microsoft.StorageCache/Cache/StorageTarget
- allocationPercentage Integer
- The percentage of cache space allocated for this storage target
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- Region name string.
- name String
- Name of the Storage Target.
- provisioningState String
- ARM provisioning state, see https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#provisioningstate-property
- systemData SystemData Response 
- The system meta data relating to this resource.
- type String
- Type of the Storage Target; Microsoft.StorageCache/Cache/StorageTarget
- allocationPercentage number
- The percentage of cache space allocated for this storage target
- id string
- The provider-assigned unique ID for this managed resource.
- location string
- Region name string.
- name string
- Name of the Storage Target.
- provisioningState string
- ARM provisioning state, see https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#provisioningstate-property
- systemData SystemData Response 
- The system meta data relating to this resource.
- type string
- Type of the Storage Target; Microsoft.StorageCache/Cache/StorageTarget
- allocation_percentage int
- The percentage of cache space allocated for this storage target
- id str
- The provider-assigned unique ID for this managed resource.
- location str
- Region name string.
- name str
- Name of the Storage Target.
- provisioning_state str
- ARM provisioning state, see https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#provisioningstate-property
- system_data SystemData Response 
- The system meta data relating to this resource.
- type str
- Type of the Storage Target; Microsoft.StorageCache/Cache/StorageTarget
- allocationPercentage Number
- The percentage of cache space allocated for this storage target
- id String
- The provider-assigned unique ID for this managed resource.
- location String
- Region name string.
- name String
- Name of the Storage Target.
- provisioningState String
- ARM provisioning state, see https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/Addendum.md#provisioningstate-property
- systemData Property Map
- The system meta data relating to this resource.
- type String
- Type of the Storage Target; Microsoft.StorageCache/Cache/StorageTarget
Supporting Types
BlobNfsTarget, BlobNfsTargetArgs      
- Target string
- Resource ID of the storage container.
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- Target string
- Resource ID of the storage container.
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- Resource ID of the storage container.
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Integer
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack IntegerTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target string
- Resource ID of the storage container.
- usageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack numberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target str
- Resource ID of the storage container.
- usage_model str
- Identifies the StorageCache usage model to be used for this storage target.
- verification_timer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- write_back_ inttimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- Resource ID of the storage container.
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack NumberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
BlobNfsTargetResponse, BlobNfsTargetResponseArgs        
- Target string
- Resource ID of the storage container.
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- Target string
- Resource ID of the storage container.
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- Resource ID of the storage container.
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Integer
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack IntegerTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target string
- Resource ID of the storage container.
- usageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack numberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target str
- Resource ID of the storage container.
- usage_model str
- Identifies the StorageCache usage model to be used for this storage target.
- verification_timer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- write_back_ inttimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- Resource ID of the storage container.
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack NumberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
ClfsTarget, ClfsTargetArgs    
- Target string
- Resource ID of storage container.
- Target string
- Resource ID of storage container.
- target String
- Resource ID of storage container.
- target string
- Resource ID of storage container.
- target str
- Resource ID of storage container.
- target String
- Resource ID of storage container.
ClfsTargetResponse, ClfsTargetResponseArgs      
- Target string
- Resource ID of storage container.
- Target string
- Resource ID of storage container.
- target String
- Resource ID of storage container.
- target string
- Resource ID of storage container.
- target str
- Resource ID of storage container.
- target String
- Resource ID of storage container.
NamespaceJunction, NamespaceJunctionArgs    
- NamespacePath string
- Namespace path on a cache for a Storage Target.
- NfsAccess stringPolicy 
- Name of the access policy applied to this junction.
- NfsExport string
- NFS export where targetPath exists.
- TargetPath string
- Path in Storage Target to which namespacePath points.
- NamespacePath string
- Namespace path on a cache for a Storage Target.
- NfsAccess stringPolicy 
- Name of the access policy applied to this junction.
- NfsExport string
- NFS export where targetPath exists.
- TargetPath string
- Path in Storage Target to which namespacePath points.
- namespacePath String
- Namespace path on a cache for a Storage Target.
- nfsAccess StringPolicy 
- Name of the access policy applied to this junction.
- nfsExport String
- NFS export where targetPath exists.
- targetPath String
- Path in Storage Target to which namespacePath points.
- namespacePath string
- Namespace path on a cache for a Storage Target.
- nfsAccess stringPolicy 
- Name of the access policy applied to this junction.
- nfsExport string
- NFS export where targetPath exists.
- targetPath string
- Path in Storage Target to which namespacePath points.
- namespace_path str
- Namespace path on a cache for a Storage Target.
- nfs_access_ strpolicy 
- Name of the access policy applied to this junction.
- nfs_export str
- NFS export where targetPath exists.
- target_path str
- Path in Storage Target to which namespacePath points.
- namespacePath String
- Namespace path on a cache for a Storage Target.
- nfsAccess StringPolicy 
- Name of the access policy applied to this junction.
- nfsExport String
- NFS export where targetPath exists.
- targetPath String
- Path in Storage Target to which namespacePath points.
NamespaceJunctionResponse, NamespaceJunctionResponseArgs      
- NamespacePath string
- Namespace path on a cache for a Storage Target.
- NfsAccess stringPolicy 
- Name of the access policy applied to this junction.
- NfsExport string
- NFS export where targetPath exists.
- TargetPath string
- Path in Storage Target to which namespacePath points.
- NamespacePath string
- Namespace path on a cache for a Storage Target.
- NfsAccess stringPolicy 
- Name of the access policy applied to this junction.
- NfsExport string
- NFS export where targetPath exists.
- TargetPath string
- Path in Storage Target to which namespacePath points.
- namespacePath String
- Namespace path on a cache for a Storage Target.
- nfsAccess StringPolicy 
- Name of the access policy applied to this junction.
- nfsExport String
- NFS export where targetPath exists.
- targetPath String
- Path in Storage Target to which namespacePath points.
- namespacePath string
- Namespace path on a cache for a Storage Target.
- nfsAccess stringPolicy 
- Name of the access policy applied to this junction.
- nfsExport string
- NFS export where targetPath exists.
- targetPath string
- Path in Storage Target to which namespacePath points.
- namespace_path str
- Namespace path on a cache for a Storage Target.
- nfs_access_ strpolicy 
- Name of the access policy applied to this junction.
- nfs_export str
- NFS export where targetPath exists.
- target_path str
- Path in Storage Target to which namespacePath points.
- namespacePath String
- Namespace path on a cache for a Storage Target.
- nfsAccess StringPolicy 
- Name of the access policy applied to this junction.
- nfsExport String
- NFS export where targetPath exists.
- targetPath String
- Path in Storage Target to which namespacePath points.
Nfs3Target, Nfs3TargetArgs  
- Target string
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- Target string
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Integer
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack IntegerTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target string
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack numberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target str
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usage_model str
- Identifies the StorageCache usage model to be used for this storage target.
- verification_timer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- write_back_ inttimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack NumberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
Nfs3TargetResponse, Nfs3TargetResponseArgs    
- Target string
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- Target string
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- UsageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- VerificationTimer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- WriteBack intTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Integer
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack IntegerTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target string
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usageModel string
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack numberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target str
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usage_model str
- Identifies the StorageCache usage model to be used for this storage target.
- verification_timer int
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- write_back_ inttimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
- target String
- IP address or host name of an NFSv3 host (e.g., 10.0.44.44).
- usageModel String
- Identifies the StorageCache usage model to be used for this storage target.
- verificationTimer Number
- Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
- writeBack NumberTimer 
- Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
OperationalStateType, OperationalStateTypeArgs      
- Ready
- Ready
- Busy
- Busy
- Suspended
- Suspended
- Flushing
- Flushing
- OperationalState Type Ready 
- Ready
- OperationalState Type Busy 
- Busy
- OperationalState Type Suspended 
- Suspended
- OperationalState Type Flushing 
- Flushing
- Ready
- Ready
- Busy
- Busy
- Suspended
- Suspended
- Flushing
- Flushing
- Ready
- Ready
- Busy
- Busy
- Suspended
- Suspended
- Flushing
- Flushing
- READY
- Ready
- BUSY
- Busy
- SUSPENDED
- Suspended
- FLUSHING
- Flushing
- "Ready"
- Ready
- "Busy"
- Busy
- "Suspended"
- Suspended
- "Flushing"
- Flushing
StorageTargetType, StorageTargetTypeArgs      
- Nfs3
- nfs3
- Clfs
- clfs
- Unknown
- unknown
- BlobNfs 
- blobNfs
- StorageTarget Type Nfs3 
- nfs3
- StorageTarget Type Clfs 
- clfs
- StorageTarget Type Unknown 
- unknown
- StorageTarget Type Blob Nfs 
- blobNfs
- Nfs3
- nfs3
- Clfs
- clfs
- Unknown
- unknown
- BlobNfs 
- blobNfs
- Nfs3
- nfs3
- Clfs
- clfs
- Unknown
- unknown
- BlobNfs 
- blobNfs
- NFS3
- nfs3
- CLFS
- clfs
- UNKNOWN
- unknown
- BLOB_NFS
- blobNfs
- "nfs3"
- nfs3
- "clfs"
- clfs
- "unknown"
- unknown
- "blobNfs" 
- blobNfs
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UnknownTarget, UnknownTargetArgs    
- Attributes Dictionary<string, string>
- Dictionary of string->string pairs containing information about the Storage Target.
- Attributes map[string]string
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes Map<String,String>
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes {[key: string]: string}
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes Mapping[str, str]
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes Map<String>
- Dictionary of string->string pairs containing information about the Storage Target.
UnknownTargetResponse, UnknownTargetResponseArgs      
- Attributes Dictionary<string, string>
- Dictionary of string->string pairs containing information about the Storage Target.
- Attributes map[string]string
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes Map<String,String>
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes {[key: string]: string}
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes Mapping[str, str]
- Dictionary of string->string pairs containing information about the Storage Target.
- attributes Map<String>
- Dictionary of string->string pairs containing information about the Storage Target.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storagecache:StorageTarget st1 /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StorageCache/caches/{cacheName}/storageTargets/{storageTargetName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0