1. Packages
  2. Azure Classic
  3. API Docs
  4. stack
  5. getHciStoragePath

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

azure.stack.getHciStoragePath

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

    Use this data source to access information about an existing Stack HCI Storage Path.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = azure.stack.getHciStoragePath({
        name: "example-hci-storage-path-name",
        resourceGroupName: "example-rg",
    });
    export const id = example.then(example => example.id);
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.stack.get_hci_storage_path(name="example-hci-storage-path-name",
        resource_group_name="example-rg")
    pulumi.export("id", example.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/stack"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := stack.LookupHciStoragePath(ctx, &stack.LookupHciStoragePathArgs{
    			Name:              "example-hci-storage-path-name",
    			ResourceGroupName: "example-rg",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("id", example.Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Azure.Stack.GetHciStoragePath.Invoke(new()
        {
            Name = "example-hci-storage-path-name",
            ResourceGroupName = "example-rg",
        });
    
        return new Dictionary<string, object?>
        {
            ["id"] = example.Apply(getHciStoragePathResult => getHciStoragePathResult.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.stack.StackFunctions;
    import com.pulumi.azure.stack.inputs.GetHciStoragePathArgs;
    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) {
            final var example = StackFunctions.getHciStoragePath(GetHciStoragePathArgs.builder()
                .name("example-hci-storage-path-name")
                .resourceGroupName("example-rg")
                .build());
    
            ctx.export("id", example.applyValue(getHciStoragePathResult -> getHciStoragePathResult.id()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: azure:stack:getHciStoragePath
          arguments:
            name: example-hci-storage-path-name
            resourceGroupName: example-rg
    outputs:
      id: ${example.id}
    

    Using getHciStoragePath

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getHciStoragePath(args: GetHciStoragePathArgs, opts?: InvokeOptions): Promise<GetHciStoragePathResult>
    function getHciStoragePathOutput(args: GetHciStoragePathOutputArgs, opts?: InvokeOptions): Output<GetHciStoragePathResult>
    def get_hci_storage_path(name: Optional[str] = None,
                             resource_group_name: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetHciStoragePathResult
    def get_hci_storage_path_output(name: Optional[pulumi.Input[str]] = None,
                             resource_group_name: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetHciStoragePathResult]
    func LookupHciStoragePath(ctx *Context, args *LookupHciStoragePathArgs, opts ...InvokeOption) (*LookupHciStoragePathResult, error)
    func LookupHciStoragePathOutput(ctx *Context, args *LookupHciStoragePathOutputArgs, opts ...InvokeOption) LookupHciStoragePathResultOutput

    > Note: This function is named LookupHciStoragePath in the Go SDK.

    public static class GetHciStoragePath 
    {
        public static Task<GetHciStoragePathResult> InvokeAsync(GetHciStoragePathArgs args, InvokeOptions? opts = null)
        public static Output<GetHciStoragePathResult> Invoke(GetHciStoragePathInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetHciStoragePathResult> getHciStoragePath(GetHciStoragePathArgs args, InvokeOptions options)
    public static Output<GetHciStoragePathResult> getHciStoragePath(GetHciStoragePathArgs args, InvokeOptions options)
    
    fn::invoke:
      function: azure:stack/getHciStoragePath:getHciStoragePath
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    The name of this Stack HCI Storage Path.
    ResourceGroupName string
    The name of the Resource Group where the Stack HCI Storage Path exists.
    Name string
    The name of this Stack HCI Storage Path.
    ResourceGroupName string
    The name of the Resource Group where the Stack HCI Storage Path exists.
    name String
    The name of this Stack HCI Storage Path.
    resourceGroupName String
    The name of the Resource Group where the Stack HCI Storage Path exists.
    name string
    The name of this Stack HCI Storage Path.
    resourceGroupName string
    The name of the Resource Group where the Stack HCI Storage Path exists.
    name str
    The name of this Stack HCI Storage Path.
    resource_group_name str
    The name of the Resource Group where the Stack HCI Storage Path exists.
    name String
    The name of this Stack HCI Storage Path.
    resourceGroupName String
    The name of the Resource Group where the Stack HCI Storage Path exists.

    getHciStoragePath Result

    The following output properties are available:

    CustomLocationId string
    The ID of the Custom Location where the Stack HCI Storage Path exists.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The Azure Region where the Stack HCI Storage Path exists.
    Name string
    Path string
    The file path on the disk where the Stack HCI Storage Path was created.
    ResourceGroupName string
    Tags Dictionary<string, string>
    A mapping of tags assigned to the Stack HCI Storage Path.
    CustomLocationId string
    The ID of the Custom Location where the Stack HCI Storage Path exists.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The Azure Region where the Stack HCI Storage Path exists.
    Name string
    Path string
    The file path on the disk where the Stack HCI Storage Path was created.
    ResourceGroupName string
    Tags map[string]string
    A mapping of tags assigned to the Stack HCI Storage Path.
    customLocationId String
    The ID of the Custom Location where the Stack HCI Storage Path exists.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The Azure Region where the Stack HCI Storage Path exists.
    name String
    path String
    The file path on the disk where the Stack HCI Storage Path was created.
    resourceGroupName String
    tags Map<String,String>
    A mapping of tags assigned to the Stack HCI Storage Path.
    customLocationId string
    The ID of the Custom Location where the Stack HCI Storage Path exists.
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    The Azure Region where the Stack HCI Storage Path exists.
    name string
    path string
    The file path on the disk where the Stack HCI Storage Path was created.
    resourceGroupName string
    tags {[key: string]: string}
    A mapping of tags assigned to the Stack HCI Storage Path.
    custom_location_id str
    The ID of the Custom Location where the Stack HCI Storage Path exists.
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    The Azure Region where the Stack HCI Storage Path exists.
    name str
    path str
    The file path on the disk where the Stack HCI Storage Path was created.
    resource_group_name str
    tags Mapping[str, str]
    A mapping of tags assigned to the Stack HCI Storage Path.
    customLocationId String
    The ID of the Custom Location where the Stack HCI Storage Path exists.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The Azure Region where the Stack HCI Storage Path exists.
    name String
    path String
    The file path on the disk where the Stack HCI Storage Path was created.
    resourceGroupName String
    tags Map<String>
    A mapping of tags assigned to the Stack HCI Storage Path.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi