Show / Hide Table of Contents

Class GetStorageContainer

Inheritance
System.Object
GetStorageContainer
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Storage
Assembly: Pulumi.Azure.dll
Syntax
public static class GetStorageContainer

Methods

View Source

InvokeAsync(GetStorageContainerArgs, InvokeOptions)

Use this data source to access information about an existing Storage Container.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var example = Output.Create(Azure.Storage.GetStorageContainer.InvokeAsync(new Azure.Storage.GetStorageContainerArgs
    {
        Name = "example-container-name",
        StorageAccountName = "example-storage-account-name",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetStorageContainerResult> InvokeAsync(GetStorageContainerArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetStorageContainerArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetStorageContainerResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.