1. Packages
  2. Azure Native
  3. API Docs
  4. azurestackhci
  5. StorageContainer
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.azurestackhci.StorageContainer

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    The storage container resource definition. Azure REST API version: 2022-12-15-preview.

    Other available API versions: 2023-07-01-preview, 2023-09-01-preview, 2024-01-01.

    Example Usage

    PutStorageContainer

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var storageContainer = new AzureNative.AzureStackHCI.StorageContainer("storageContainer", new()
        {
            ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
            {
                Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
                Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
            },
            Location = "West US2",
            Path = "C:\\container_storage",
            ResourceGroupName = "test-rg",
            StorageContainerName = "Default_Container",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurestackhci.NewStorageContainer(ctx, "storageContainer", &azurestackhci.StorageContainerArgs{
    			ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
    				Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
    			},
    			Location:             pulumi.String("West US2"),
    			Path:                 pulumi.String("C:\\container_storage"),
    			ResourceGroupName:    pulumi.String("test-rg"),
    			StorageContainerName: pulumi.String("Default_Container"),
    		})
    		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.azurestackhci.StorageContainer;
    import com.pulumi.azurenative.azurestackhci.StorageContainerArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
    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 storageContainer = new StorageContainer("storageContainer", StorageContainerArgs.builder()        
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
                    .type("CustomLocation")
                    .build())
                .location("West US2")
                .path("C:\\container_storage")
                .resourceGroupName("test-rg")
                .storageContainerName("Default_Container")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    storage_container = azure_native.azurestackhci.StorageContainer("storageContainer",
        extended_location=azure_native.azurestackhci.ExtendedLocationArgs(
            name="/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            type=azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
        ),
        location="West US2",
        path="C:\\container_storage",
        resource_group_name="test-rg",
        storage_container_name="Default_Container")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const storageContainer = new azure_native.azurestackhci.StorageContainer("storageContainer", {
        extendedLocation: {
            name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
        },
        location: "West US2",
        path: "C:\\container_storage",
        resourceGroupName: "test-rg",
        storageContainerName: "Default_Container",
    });
    
    resources:
      storageContainer:
        type: azure-native:azurestackhci:StorageContainer
        properties:
          extendedLocation:
            name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
            type: CustomLocation
          location: West US2
          path: C:\container_storage
          resourceGroupName: test-rg
          storageContainerName: Default_Container
    

    Create StorageContainer Resource

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

    Constructor syntax

    new StorageContainer(name: string, args: StorageContainerArgs, opts?: CustomResourceOptions);
    @overload
    def StorageContainer(resource_name: str,
                         args: StorageContainerArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def StorageContainer(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         resource_group_name: Optional[str] = None,
                         extended_location: Optional[ExtendedLocationArgs] = None,
                         location: Optional[str] = None,
                         path: Optional[str] = None,
                         storage_container_name: Optional[str] = None,
                         tags: Optional[Mapping[str, str]] = None)
    func NewStorageContainer(ctx *Context, name string, args StorageContainerArgs, opts ...ResourceOption) (*StorageContainer, error)
    public StorageContainer(string name, StorageContainerArgs args, CustomResourceOptions? opts = null)
    public StorageContainer(String name, StorageContainerArgs args)
    public StorageContainer(String name, StorageContainerArgs args, CustomResourceOptions options)
    
    type: azure-native:azurestackhci:StorageContainer
    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 StorageContainerArgs
    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 StorageContainerArgs
    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 StorageContainerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StorageContainerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StorageContainerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var storageContainerResource = new AzureNative.AzureStackHCI.StorageContainer("storageContainerResource", new()
    {
        ResourceGroupName = "string",
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Location = "string",
        Path = "string",
        StorageContainerName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := azurestackhci.NewStorageContainer(ctx, "storageContainerResource", &azurestackhci.StorageContainerArgs{
    ResourceGroupName: pulumi.String("string"),
    ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
    Name: pulumi.String("string"),
    Type: pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    Path: pulumi.String("string"),
    StorageContainerName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var storageContainerResource = new StorageContainer("storageContainerResource", StorageContainerArgs.builder()        
        .resourceGroupName("string")
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .location("string")
        .path("string")
        .storageContainerName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    storage_container_resource = azure_native.azurestackhci.StorageContainer("storageContainerResource",
        resource_group_name="string",
        extended_location=azure_native.azurestackhci.ExtendedLocationArgs(
            name="string",
            type="string",
        ),
        location="string",
        path="string",
        storage_container_name="string",
        tags={
            "string": "string",
        })
    
    const storageContainerResource = new azure_native.azurestackhci.StorageContainer("storageContainerResource", {
        resourceGroupName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        location: "string",
        path: "string",
        storageContainerName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:azurestackhci:StorageContainer
    properties:
        extendedLocation:
            name: string
            type: string
        location: string
        path: string
        resourceGroupName: string
        storageContainerName: string
        tags:
            string: string
    

    StorageContainer 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 StorageContainer resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation Pulumi.AzureNative.AzureStackHCI.Inputs.ExtendedLocation
    The extendedLocation of the resource.
    Location string
    The geo-location where the resource lives
    Path string
    Path of the storage container on the disk
    StorageContainerName string
    Name of the storage container
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation ExtendedLocationArgs
    The extendedLocation of the resource.
    Location string
    The geo-location where the resource lives
    Path string
    Path of the storage container on the disk
    StorageContainerName string
    Name of the storage container
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    The extendedLocation of the resource.
    location String
    The geo-location where the resource lives
    path String
    Path of the storage container on the disk
    storageContainerName String
    Name of the storage container
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    The extendedLocation of the resource.
    location string
    The geo-location where the resource lives
    path string
    Path of the storage container on the disk
    storageContainerName string
    Name of the storage container
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    extended_location ExtendedLocationArgs
    The extendedLocation of the resource.
    location str
    The geo-location where the resource lives
    path str
    Path of the storage container on the disk
    storage_container_name str
    Name of the storage container
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation Property Map
    The extendedLocation of the resource.
    location String
    The geo-location where the resource lives
    path String
    Path of the storage container on the disk
    storageContainerName String
    Name of the storage container
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the storage container.
    Status Pulumi.AzureNative.AzureStackHCI.Outputs.StorageContainerStatusResponse
    The observed state of storage containers
    SystemData Pulumi.AzureNative.AzureStackHCI.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the storage container.
    Status StorageContainerStatusResponse
    The observed state of storage containers
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the storage container.
    status StorageContainerStatusResponse
    The observed state of storage containers
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    Provisioning state of the storage container.
    status StorageContainerStatusResponse
    The observed state of storage containers
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    Provisioning state of the storage container.
    status StorageContainerStatusResponse
    The observed state of storage containers
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the storage container.
    status Property Map
    The observed state of storage containers
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ExtendedLocation, ExtendedLocationArgs

    Name string
    The name of the extended location.
    Type string | Pulumi.AzureNative.AzureStackHCI.ExtendedLocationTypes
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string | ExtendedLocationTypes
    The type of the extended location.
    name String
    The name of the extended location.
    type String | ExtendedLocationTypes
    The type of the extended location.
    name string
    The name of the extended location.
    type string | ExtendedLocationTypes
    The type of the extended location.
    name str
    The name of the extended location.
    type str | ExtendedLocationTypes
    The type of the extended location.
    name String
    The name of the extended location.
    type String | "CustomLocation"
    The type of the extended location.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.
    name string
    The name of the extended location.
    type string
    The type of the extended location.
    name str
    The name of the extended location.
    type str
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.

    ExtendedLocationTypes, ExtendedLocationTypesArgs

    CustomLocation
    CustomLocation
    ExtendedLocationTypesCustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CustomLocation
    CUSTOM_LOCATION
    CustomLocation
    "CustomLocation"
    CustomLocation

    StorageContainerStatusResponse, StorageContainerStatusResponseArgs

    AvailableSizeMB double
    Amount of space available on the disk in MB
    ContainerSizeMB double
    Total size of the disk in MB
    ErrorCode string
    StorageContainer provisioning error code
    ErrorMessage string
    Descriptive error message
    ProvisioningStatus Pulumi.AzureNative.AzureStackHCI.Inputs.StorageContainerStatusResponseProvisioningStatus
    AvailableSizeMB float64
    Amount of space available on the disk in MB
    ContainerSizeMB float64
    Total size of the disk in MB
    ErrorCode string
    StorageContainer provisioning error code
    ErrorMessage string
    Descriptive error message
    ProvisioningStatus StorageContainerStatusResponseProvisioningStatus
    availableSizeMB Double
    Amount of space available on the disk in MB
    containerSizeMB Double
    Total size of the disk in MB
    errorCode String
    StorageContainer provisioning error code
    errorMessage String
    Descriptive error message
    provisioningStatus StorageContainerStatusResponseProvisioningStatus
    availableSizeMB number
    Amount of space available on the disk in MB
    containerSizeMB number
    Total size of the disk in MB
    errorCode string
    StorageContainer provisioning error code
    errorMessage string
    Descriptive error message
    provisioningStatus StorageContainerStatusResponseProvisioningStatus
    available_size_mb float
    Amount of space available on the disk in MB
    container_size_mb float
    Total size of the disk in MB
    error_code str
    StorageContainer provisioning error code
    error_message str
    Descriptive error message
    provisioning_status StorageContainerStatusResponseProvisioningStatus
    availableSizeMB Number
    Amount of space available on the disk in MB
    containerSizeMB Number
    Total size of the disk in MB
    errorCode String
    StorageContainer provisioning error code
    errorMessage String
    Descriptive error message
    provisioningStatus Property Map

    StorageContainerStatusResponseProvisioningStatus, StorageContainerStatusResponseProvisioningStatusArgs

    OperationId string
    The ID of the operation performed on the storage container
    Status string
    The status of the operation performed on the storage container [Succeeded, Failed, InProgress]
    OperationId string
    The ID of the operation performed on the storage container
    Status string
    The status of the operation performed on the storage container [Succeeded, Failed, InProgress]
    operationId String
    The ID of the operation performed on the storage container
    status String
    The status of the operation performed on the storage container [Succeeded, Failed, InProgress]
    operationId string
    The ID of the operation performed on the storage container
    status string
    The status of the operation performed on the storage container [Succeeded, Failed, InProgress]
    operation_id str
    The ID of the operation performed on the storage container
    status str
    The status of the operation performed on the storage container [Succeeded, Failed, InProgress]
    operationId String
    The ID of the operation performed on the storage container
    status String
    The status of the operation performed on the storage container [Succeeded, Failed, InProgress]

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:azurestackhci:StorageContainer Default_Container /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/storageContainers/{storageContainerName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi