Show / Hide Table of Contents

Class GetFactory

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

Methods

View Source

InvokeAsync(GetFactoryArgs, InvokeOptions)

Use this data source to access information about an existing Azure Data Factory (Version 2).

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var example = Output.Create(Azure.DataFactory.GetFactory.InvokeAsync(new Azure.DataFactory.GetFactoryArgs
    {
        Name = azurerm_data_factory.Example.Name,
        ResourceGroupName = azurerm_data_factory.Example.Resource_group_name,
    }));
    this.DataFactoryId = azurerm_data_factory.Example.Id;
}

[Output("dataFactoryId")]
public Output<string> DataFactoryId { get; set; }
}

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

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