Show / Hide Table of Contents

Class LinkedServiceDataLakeStorageGen2

Manages a Linked Service (connection) between Data Lake Storage Gen2 and Azure Data Factory.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
    {
        Location = "northeurope",
    });
    var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new Azure.DataFactory.FactoryArgs
    {
        Location = exampleResourceGroup.Location,
        ResourceGroupName = exampleResourceGroup.Name,
    });
    var current = Output.Create(Azure.Core.GetClientConfig.InvokeAsync());
    var exampleLinkedServiceDataLakeStorageGen2 = new Azure.DataFactory.LinkedServiceDataLakeStorageGen2("exampleLinkedServiceDataLakeStorageGen2", new Azure.DataFactory.LinkedServiceDataLakeStorageGen2Args
    {
        ResourceGroupName = exampleResourceGroup.Name,
        DataFactoryName = exampleFactory.Name,
        ServicePrincipalId = current.Apply(current => current.ClientId),
        ServicePrincipalKey = "exampleKey",
        Tenant = "11111111-1111-1111-1111-111111111111",
        Url = "https://datalakestoragegen2",
    });
}

}
Inheritance
System.Object
Resource
CustomResource
LinkedServiceDataLakeStorageGen2
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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 class LinkedServiceDataLakeStorageGen2 : CustomResource

Constructors

View Source

LinkedServiceDataLakeStorageGen2(String, LinkedServiceDataLakeStorageGen2Args, CustomResourceOptions)

Create a LinkedServiceDataLakeStorageGen2 resource with the given unique name, arguments, and options.

Declaration
public LinkedServiceDataLakeStorageGen2(string name, LinkedServiceDataLakeStorageGen2Args args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

LinkedServiceDataLakeStorageGen2Args args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

AdditionalProperties

A map of additional properties to associate with the Data Factory Linked Service MySQL.

Declaration
public Output<ImmutableDictionary<string, string>> AdditionalProperties { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.String>>
View Source

Annotations

List of tags that can be used for describing the Data Factory Linked Service MySQL.

Declaration
public Output<ImmutableArray<string>> Annotations { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>
View Source

DataFactoryName

The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

Declaration
public Output<string> DataFactoryName { get; }
Property Value
Type Description
Output<System.String>
View Source

Description

The description for the Data Factory Linked Service MySQL.

Declaration
public Output<string> Description { get; }
Property Value
Type Description
Output<System.String>
View Source

IntegrationRuntimeName

The integration runtime reference to associate with the Data Factory Linked Service MySQL.

Declaration
public Output<string> IntegrationRuntimeName { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

Specifies the name of the Data Factory Linked Service MySQL. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

Parameters

A map of parameters to associate with the Data Factory Linked Service MySQL.

Declaration
public Output<ImmutableDictionary<string, string>> Parameters { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.String>>
View Source

ResourceGroupName

The name of the resource group in which to create the Data Factory Linked Service MySQL. Changing this forces a new resource

Declaration
public Output<string> ResourceGroupName { get; }
Property Value
Type Description
Output<System.String>
View Source

ServicePrincipalId

The service principal id in which to authenticate against the Azure Data Lake Storage Gen2 account.

Declaration
public Output<string> ServicePrincipalId { get; }
Property Value
Type Description
Output<System.String>
View Source

ServicePrincipalKey

The service principal key in which to authenticate against the Azure Data Lake Storage Gen2 account.

Declaration
public Output<string> ServicePrincipalKey { get; }
Property Value
Type Description
Output<System.String>
View Source

Tenant

The tenant id or name in which to authenticate against the Azure Data Lake Storage Gen2 account.

Declaration
public Output<string> Tenant { get; }
Property Value
Type Description
Output<System.String>
View Source

Url

The endpoint for the Azure Data Lake Storage Gen2 service.

Declaration
public Output<string> Url { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, LinkedServiceDataLakeStorageGen2State, CustomResourceOptions)

Get an existing LinkedServiceDataLakeStorageGen2 resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static LinkedServiceDataLakeStorageGen2 Get(string name, Input<string> id, LinkedServiceDataLakeStorageGen2State state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

LinkedServiceDataLakeStorageGen2State state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
LinkedServiceDataLakeStorageGen2
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.