Show / Hide Table of Contents

Class GetConfigurationStore

Inheritance
System.Object
GetConfigurationStore
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.AppConfiguration
Assembly: Pulumi.Azure.dll
Syntax
public static class GetConfigurationStore

Methods

View Source

InvokeAsync(GetConfigurationStoreArgs, InvokeOptions)

Use this data source to access information about an existing App Configuration.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var example = Output.Create(Azure.AppConfiguration.GetConfigurationStore.InvokeAsync(new Azure.AppConfiguration.GetConfigurationStoreArgs
    {
        Name = "existing",
        ResourceGroupName = "existing",
    }));
    this.Id = example.Apply(example => example.Id);
}

[Output("id")]
public Output<string> Id { get; set; }
}

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

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