Show / Hide Table of Contents

Class GetConsumeGroup

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

Methods

View Source

InvokeAsync(GetConsumeGroupArgs, InvokeOptions)

Use this data source to access information about an existing Event Hubs Consumer Group within an Event Hub.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var test = Output.Create(Azure.EventHub.GetConsumeGroup.InvokeAsync(new Azure.EventHub.GetConsumeGroupArgs
    {
        EventhubName = azurerm_eventhub.Test.Name,
        Name = azurerm_eventhub_consumer_group.Test.Name,
        NamespaceName = azurerm_eventhub_namespace.Test.Name,
        ResourceGroupName = azurerm_resource_group.Test.Name,
    }));
}

}

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

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