1. Packages
  2. Azure Classic
  3. API Docs
  4. datafactory
  5. Factory

We recommend using Azure Native.

Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi

azure.datafactory.Factory

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi

    Manages an Azure Data Factory (Version 2).

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West Europe",
        });
    
        var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new()
        {
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/datafactory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = datafactory.NewFactory(ctx, "exampleFactory", &datafactory.FactoryArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.datafactory.Factory;
    import com.pulumi.azure.datafactory.FactoryArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            var exampleFactory = new Factory("exampleFactory", FactoryArgs.builder()        
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_factory = azure.datafactory.Factory("exampleFactory",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleFactory = new azure.datafactory.Factory("exampleFactory", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West Europe
      exampleFactory:
        type: azure:datafactory:Factory
        properties:
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
    

    Create Factory Resource

    new Factory(name: string, args: FactoryArgs, opts?: CustomResourceOptions);
    @overload
    def Factory(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                customer_managed_key_id: Optional[str] = None,
                customer_managed_key_identity_id: Optional[str] = None,
                github_configuration: Optional[FactoryGithubConfigurationArgs] = None,
                global_parameters: Optional[Sequence[FactoryGlobalParameterArgs]] = None,
                identity: Optional[FactoryIdentityArgs] = None,
                location: Optional[str] = None,
                managed_virtual_network_enabled: Optional[bool] = None,
                name: Optional[str] = None,
                public_network_enabled: Optional[bool] = None,
                purview_id: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                vsts_configuration: Optional[FactoryVstsConfigurationArgs] = None)
    @overload
    def Factory(resource_name: str,
                args: FactoryArgs,
                opts: Optional[ResourceOptions] = None)
    func NewFactory(ctx *Context, name string, args FactoryArgs, opts ...ResourceOption) (*Factory, error)
    public Factory(string name, FactoryArgs args, CustomResourceOptions? opts = null)
    public Factory(String name, FactoryArgs args)
    public Factory(String name, FactoryArgs args, CustomResourceOptions options)
    
    type: azure:datafactory:Factory
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args FactoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args FactoryArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args FactoryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FactoryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FactoryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Factory Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Factory resource accepts the following input properties:

    ResourceGroupName string

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    CustomerManagedKeyId string

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    CustomerManagedKeyIdentityId string

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    GithubConfiguration FactoryGithubConfiguration

    A github_configuration block as defined below.

    GlobalParameters List<FactoryGlobalParameter>

    A list of global_parameter blocks as defined above.

    Identity FactoryIdentity

    An identity block as defined below.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    ManagedVirtualNetworkEnabled bool

    Is Managed Virtual Network enabled?

    Name string

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

    PublicNetworkEnabled bool

    Is the Data Factory visible to the public network? Defaults to true.

    PurviewId string

    Specifies the ID of the purview account resource associated with the Data Factory.

    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    VstsConfiguration FactoryVstsConfiguration

    A vsts_configuration block as defined below.

    ResourceGroupName string

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    CustomerManagedKeyId string

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    CustomerManagedKeyIdentityId string

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    GithubConfiguration FactoryGithubConfigurationArgs

    A github_configuration block as defined below.

    GlobalParameters []FactoryGlobalParameterArgs

    A list of global_parameter blocks as defined above.

    Identity FactoryIdentityArgs

    An identity block as defined below.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    ManagedVirtualNetworkEnabled bool

    Is Managed Virtual Network enabled?

    Name string

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

    PublicNetworkEnabled bool

    Is the Data Factory visible to the public network? Defaults to true.

    PurviewId string

    Specifies the ID of the purview account resource associated with the Data Factory.

    Tags map[string]string

    A mapping of tags to assign to the resource.

    VstsConfiguration FactoryVstsConfigurationArgs

    A vsts_configuration block as defined below.

    resourceGroupName String

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    customerManagedKeyId String

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customerManagedKeyIdentityId String

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    githubConfiguration FactoryGithubConfiguration

    A github_configuration block as defined below.

    globalParameters List<FactoryGlobalParameter>

    A list of global_parameter blocks as defined above.

    identity FactoryIdentity

    An identity block as defined below.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managedVirtualNetworkEnabled Boolean

    Is Managed Virtual Network enabled?

    name String

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

    publicNetworkEnabled Boolean

    Is the Data Factory visible to the public network? Defaults to true.

    purviewId String

    Specifies the ID of the purview account resource associated with the Data Factory.

    tags Map<String,String>

    A mapping of tags to assign to the resource.

    vstsConfiguration FactoryVstsConfiguration

    A vsts_configuration block as defined below.

    resourceGroupName string

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    customerManagedKeyId string

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customerManagedKeyIdentityId string

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    githubConfiguration FactoryGithubConfiguration

    A github_configuration block as defined below.

    globalParameters FactoryGlobalParameter[]

    A list of global_parameter blocks as defined above.

    identity FactoryIdentity

    An identity block as defined below.

    location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managedVirtualNetworkEnabled boolean

    Is Managed Virtual Network enabled?

    name string

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

    publicNetworkEnabled boolean

    Is the Data Factory visible to the public network? Defaults to true.

    purviewId string

    Specifies the ID of the purview account resource associated with the Data Factory.

    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    vstsConfiguration FactoryVstsConfiguration

    A vsts_configuration block as defined below.

    resource_group_name str

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    customer_managed_key_id str

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customer_managed_key_identity_id str

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    github_configuration FactoryGithubConfigurationArgs

    A github_configuration block as defined below.

    global_parameters Sequence[FactoryGlobalParameterArgs]

    A list of global_parameter blocks as defined above.

    identity FactoryIdentityArgs

    An identity block as defined below.

    location str

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managed_virtual_network_enabled bool

    Is Managed Virtual Network enabled?

    name str

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

    public_network_enabled bool

    Is the Data Factory visible to the public network? Defaults to true.

    purview_id str

    Specifies the ID of the purview account resource associated with the Data Factory.

    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    vsts_configuration FactoryVstsConfigurationArgs

    A vsts_configuration block as defined below.

    resourceGroupName String

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    customerManagedKeyId String

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customerManagedKeyIdentityId String

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    githubConfiguration Property Map

    A github_configuration block as defined below.

    globalParameters List<Property Map>

    A list of global_parameter blocks as defined above.

    identity Property Map

    An identity block as defined below.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managedVirtualNetworkEnabled Boolean

    Is Managed Virtual Network enabled?

    name String

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

    publicNetworkEnabled Boolean

    Is the Data Factory visible to the public network? Defaults to true.

    purviewId String

    Specifies the ID of the purview account resource associated with the Data Factory.

    tags Map<String>

    A mapping of tags to assign to the resource.

    vstsConfiguration Property Map

    A vsts_configuration block as defined below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Factory resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing Factory Resource

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

    public static get(name: string, id: Input<ID>, state?: FactoryState, opts?: CustomResourceOptions): Factory
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            customer_managed_key_id: Optional[str] = None,
            customer_managed_key_identity_id: Optional[str] = None,
            github_configuration: Optional[FactoryGithubConfigurationArgs] = None,
            global_parameters: Optional[Sequence[FactoryGlobalParameterArgs]] = None,
            identity: Optional[FactoryIdentityArgs] = None,
            location: Optional[str] = None,
            managed_virtual_network_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            public_network_enabled: Optional[bool] = None,
            purview_id: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            vsts_configuration: Optional[FactoryVstsConfigurationArgs] = None) -> Factory
    func GetFactory(ctx *Context, name string, id IDInput, state *FactoryState, opts ...ResourceOption) (*Factory, error)
    public static Factory Get(string name, Input<string> id, FactoryState? state, CustomResourceOptions? opts = null)
    public static Factory get(String name, Output<String> id, FactoryState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CustomerManagedKeyId string

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    CustomerManagedKeyIdentityId string

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    GithubConfiguration FactoryGithubConfiguration

    A github_configuration block as defined below.

    GlobalParameters List<FactoryGlobalParameter>

    A list of global_parameter blocks as defined above.

    Identity FactoryIdentity

    An identity block as defined below.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    ManagedVirtualNetworkEnabled bool

    Is Managed Virtual Network enabled?

    Name string

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

    PublicNetworkEnabled bool

    Is the Data Factory visible to the public network? Defaults to true.

    PurviewId string

    Specifies the ID of the purview account resource associated with the Data Factory.

    ResourceGroupName string

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    VstsConfiguration FactoryVstsConfiguration

    A vsts_configuration block as defined below.

    CustomerManagedKeyId string

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    CustomerManagedKeyIdentityId string

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    GithubConfiguration FactoryGithubConfigurationArgs

    A github_configuration block as defined below.

    GlobalParameters []FactoryGlobalParameterArgs

    A list of global_parameter blocks as defined above.

    Identity FactoryIdentityArgs

    An identity block as defined below.

    Location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    ManagedVirtualNetworkEnabled bool

    Is Managed Virtual Network enabled?

    Name string

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

    PublicNetworkEnabled bool

    Is the Data Factory visible to the public network? Defaults to true.

    PurviewId string

    Specifies the ID of the purview account resource associated with the Data Factory.

    ResourceGroupName string

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    Tags map[string]string

    A mapping of tags to assign to the resource.

    VstsConfiguration FactoryVstsConfigurationArgs

    A vsts_configuration block as defined below.

    customerManagedKeyId String

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customerManagedKeyIdentityId String

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    githubConfiguration FactoryGithubConfiguration

    A github_configuration block as defined below.

    globalParameters List<FactoryGlobalParameter>

    A list of global_parameter blocks as defined above.

    identity FactoryIdentity

    An identity block as defined below.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managedVirtualNetworkEnabled Boolean

    Is Managed Virtual Network enabled?

    name String

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

    publicNetworkEnabled Boolean

    Is the Data Factory visible to the public network? Defaults to true.

    purviewId String

    Specifies the ID of the purview account resource associated with the Data Factory.

    resourceGroupName String

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    tags Map<String,String>

    A mapping of tags to assign to the resource.

    vstsConfiguration FactoryVstsConfiguration

    A vsts_configuration block as defined below.

    customerManagedKeyId string

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customerManagedKeyIdentityId string

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    githubConfiguration FactoryGithubConfiguration

    A github_configuration block as defined below.

    globalParameters FactoryGlobalParameter[]

    A list of global_parameter blocks as defined above.

    identity FactoryIdentity

    An identity block as defined below.

    location string

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managedVirtualNetworkEnabled boolean

    Is Managed Virtual Network enabled?

    name string

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

    publicNetworkEnabled boolean

    Is the Data Factory visible to the public network? Defaults to true.

    purviewId string

    Specifies the ID of the purview account resource associated with the Data Factory.

    resourceGroupName string

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    vstsConfiguration FactoryVstsConfiguration

    A vsts_configuration block as defined below.

    customer_managed_key_id str

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customer_managed_key_identity_id str

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    github_configuration FactoryGithubConfigurationArgs

    A github_configuration block as defined below.

    global_parameters Sequence[FactoryGlobalParameterArgs]

    A list of global_parameter blocks as defined above.

    identity FactoryIdentityArgs

    An identity block as defined below.

    location str

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managed_virtual_network_enabled bool

    Is Managed Virtual Network enabled?

    name str

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

    public_network_enabled bool

    Is the Data Factory visible to the public network? Defaults to true.

    purview_id str

    Specifies the ID of the purview account resource associated with the Data Factory.

    resource_group_name str

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    vsts_configuration FactoryVstsConfigurationArgs

    A vsts_configuration block as defined below.

    customerManagedKeyId String

    Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.

    customerManagedKeyIdentityId String

    Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if customer_managed_key_id is set.

    githubConfiguration Property Map

    A github_configuration block as defined below.

    globalParameters List<Property Map>

    A list of global_parameter blocks as defined above.

    identity Property Map

    An identity block as defined below.

    location String

    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

    managedVirtualNetworkEnabled Boolean

    Is Managed Virtual Network enabled?

    name String

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

    publicNetworkEnabled Boolean

    Is the Data Factory visible to the public network? Defaults to true.

    purviewId String

    Specifies the ID of the purview account resource associated with the Data Factory.

    resourceGroupName String

    The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.

    tags Map<String>

    A mapping of tags to assign to the resource.

    vstsConfiguration Property Map

    A vsts_configuration block as defined below.

    Supporting Types

    FactoryGithubConfiguration, FactoryGithubConfigurationArgs

    AccountName string

    Specifies the GitHub account name.

    BranchName string

    Specifies the branch of the repository to get code from.

    GitUrl string

    Specifies the GitHub Enterprise host name. For example: https://github.mydomain.com. Use https://github.com for open source repositories.

    RepositoryName string

    Specifies the name of the git repository.

    RootFolder string

    Specifies the root folder within the repository. Set to / for the top level.

    PublishingEnabled bool

    Is automated publishing enabled? Defaults to false.

    Note: You must log in to the Data Factory management UI to complete the authentication to the GitHub repository.

    AccountName string

    Specifies the GitHub account name.

    BranchName string

    Specifies the branch of the repository to get code from.

    GitUrl string

    Specifies the GitHub Enterprise host name. For example: https://github.mydomain.com. Use https://github.com for open source repositories.

    RepositoryName string

    Specifies the name of the git repository.

    RootFolder string

    Specifies the root folder within the repository. Set to / for the top level.

    PublishingEnabled bool

    Is automated publishing enabled? Defaults to false.

    Note: You must log in to the Data Factory management UI to complete the authentication to the GitHub repository.

    accountName String

    Specifies the GitHub account name.

    branchName String

    Specifies the branch of the repository to get code from.

    gitUrl String

    Specifies the GitHub Enterprise host name. For example: https://github.mydomain.com. Use https://github.com for open source repositories.

    repositoryName String

    Specifies the name of the git repository.

    rootFolder String

    Specifies the root folder within the repository. Set to / for the top level.

    publishingEnabled Boolean

    Is automated publishing enabled? Defaults to false.

    Note: You must log in to the Data Factory management UI to complete the authentication to the GitHub repository.

    accountName string

    Specifies the GitHub account name.

    branchName string

    Specifies the branch of the repository to get code from.

    gitUrl string

    Specifies the GitHub Enterprise host name. For example: https://github.mydomain.com. Use https://github.com for open source repositories.

    repositoryName string

    Specifies the name of the git repository.

    rootFolder string

    Specifies the root folder within the repository. Set to / for the top level.

    publishingEnabled boolean

    Is automated publishing enabled? Defaults to false.

    Note: You must log in to the Data Factory management UI to complete the authentication to the GitHub repository.

    account_name str

    Specifies the GitHub account name.

    branch_name str

    Specifies the branch of the repository to get code from.

    git_url str

    Specifies the GitHub Enterprise host name. For example: https://github.mydomain.com. Use https://github.com for open source repositories.

    repository_name str

    Specifies the name of the git repository.

    root_folder str

    Specifies the root folder within the repository. Set to / for the top level.

    publishing_enabled bool

    Is automated publishing enabled? Defaults to false.

    Note: You must log in to the Data Factory management UI to complete the authentication to the GitHub repository.

    accountName String

    Specifies the GitHub account name.

    branchName String

    Specifies the branch of the repository to get code from.

    gitUrl String

    Specifies the GitHub Enterprise host name. For example: https://github.mydomain.com. Use https://github.com for open source repositories.

    repositoryName String

    Specifies the name of the git repository.

    rootFolder String

    Specifies the root folder within the repository. Set to / for the top level.

    publishingEnabled Boolean

    Is automated publishing enabled? Defaults to false.

    Note: You must log in to the Data Factory management UI to complete the authentication to the GitHub repository.

    FactoryGlobalParameter, FactoryGlobalParameterArgs

    Name string

    Specifies the global parameter name.

    Type string

    Specifies the global parameter type. Possible Values are Array, Bool, Float, Int, Object or String.

    Value string

    Specifies the global parameter value.

    Note: For type Array and Object it is recommended to use jsonencode() for the value

    Name string

    Specifies the global parameter name.

    Type string

    Specifies the global parameter type. Possible Values are Array, Bool, Float, Int, Object or String.

    Value string

    Specifies the global parameter value.

    Note: For type Array and Object it is recommended to use jsonencode() for the value

    name String

    Specifies the global parameter name.

    type String

    Specifies the global parameter type. Possible Values are Array, Bool, Float, Int, Object or String.

    value String

    Specifies the global parameter value.

    Note: For type Array and Object it is recommended to use jsonencode() for the value

    name string

    Specifies the global parameter name.

    type string

    Specifies the global parameter type. Possible Values are Array, Bool, Float, Int, Object or String.

    value string

    Specifies the global parameter value.

    Note: For type Array and Object it is recommended to use jsonencode() for the value

    name str

    Specifies the global parameter name.

    type str

    Specifies the global parameter type. Possible Values are Array, Bool, Float, Int, Object or String.

    value str

    Specifies the global parameter value.

    Note: For type Array and Object it is recommended to use jsonencode() for the value

    name String

    Specifies the global parameter name.

    type String

    Specifies the global parameter type. Possible Values are Array, Bool, Float, Int, Object or String.

    value String

    Specifies the global parameter value.

    Note: For type Array and Object it is recommended to use jsonencode() for the value

    FactoryIdentity, FactoryIdentityArgs

    Type string

    Specifies the type of Managed Service Identity that should be configured on this Data Factory. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).

    IdentityIds List<string>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Data Factory.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    PrincipalId string

    The Principal ID associated with this Managed Service Identity.

    TenantId string

    Specifies the Tenant ID associated with the VSTS account.

    Type string

    Specifies the type of Managed Service Identity that should be configured on this Data Factory. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).

    IdentityIds []string

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Data Factory.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    PrincipalId string

    The Principal ID associated with this Managed Service Identity.

    TenantId string

    Specifies the Tenant ID associated with the VSTS account.

    type String

    Specifies the type of Managed Service Identity that should be configured on this Data Factory. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).

    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Data Factory.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId String

    The Principal ID associated with this Managed Service Identity.

    tenantId String

    Specifies the Tenant ID associated with the VSTS account.

    type string

    Specifies the type of Managed Service Identity that should be configured on this Data Factory. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).

    identityIds string[]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Data Factory.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId string

    The Principal ID associated with this Managed Service Identity.

    tenantId string

    Specifies the Tenant ID associated with the VSTS account.

    type str

    Specifies the type of Managed Service Identity that should be configured on this Data Factory. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).

    identity_ids Sequence[str]

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Data Factory.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principal_id str

    The Principal ID associated with this Managed Service Identity.

    tenant_id str

    Specifies the Tenant ID associated with the VSTS account.

    type String

    Specifies the type of Managed Service Identity that should be configured on this Data Factory. Possible values are SystemAssigned, UserAssigned, SystemAssigned, UserAssigned (to enable both).

    identityIds List<String>

    Specifies a list of User Assigned Managed Identity IDs to be assigned to this Data Factory.

    NOTE: This is required when type is set to UserAssigned or SystemAssigned, UserAssigned.

    principalId String

    The Principal ID associated with this Managed Service Identity.

    tenantId String

    Specifies the Tenant ID associated with the VSTS account.

    FactoryVstsConfiguration, FactoryVstsConfigurationArgs

    AccountName string

    Specifies the VSTS account name.

    BranchName string

    Specifies the branch of the repository to get code from.

    ProjectName string

    Specifies the name of the VSTS project.

    RepositoryName string

    Specifies the name of the git repository.

    RootFolder string

    Specifies the root folder within the repository. Set to / for the top level.

    TenantId string

    Specifies the Tenant ID associated with the VSTS account.

    PublishingEnabled bool

    Is automated publishing enabled? Defaults to false.

    AccountName string

    Specifies the VSTS account name.

    BranchName string

    Specifies the branch of the repository to get code from.

    ProjectName string

    Specifies the name of the VSTS project.

    RepositoryName string

    Specifies the name of the git repository.

    RootFolder string

    Specifies the root folder within the repository. Set to / for the top level.

    TenantId string

    Specifies the Tenant ID associated with the VSTS account.

    PublishingEnabled bool

    Is automated publishing enabled? Defaults to false.

    accountName String

    Specifies the VSTS account name.

    branchName String

    Specifies the branch of the repository to get code from.

    projectName String

    Specifies the name of the VSTS project.

    repositoryName String

    Specifies the name of the git repository.

    rootFolder String

    Specifies the root folder within the repository. Set to / for the top level.

    tenantId String

    Specifies the Tenant ID associated with the VSTS account.

    publishingEnabled Boolean

    Is automated publishing enabled? Defaults to false.

    accountName string

    Specifies the VSTS account name.

    branchName string

    Specifies the branch of the repository to get code from.

    projectName string

    Specifies the name of the VSTS project.

    repositoryName string

    Specifies the name of the git repository.

    rootFolder string

    Specifies the root folder within the repository. Set to / for the top level.

    tenantId string

    Specifies the Tenant ID associated with the VSTS account.

    publishingEnabled boolean

    Is automated publishing enabled? Defaults to false.

    account_name str

    Specifies the VSTS account name.

    branch_name str

    Specifies the branch of the repository to get code from.

    project_name str

    Specifies the name of the VSTS project.

    repository_name str

    Specifies the name of the git repository.

    root_folder str

    Specifies the root folder within the repository. Set to / for the top level.

    tenant_id str

    Specifies the Tenant ID associated with the VSTS account.

    publishing_enabled bool

    Is automated publishing enabled? Defaults to false.

    accountName String

    Specifies the VSTS account name.

    branchName String

    Specifies the branch of the repository to get code from.

    projectName String

    Specifies the name of the VSTS project.

    repositoryName String

    Specifies the name of the git repository.

    rootFolder String

    Specifies the root folder within the repository. Set to / for the top level.

    tenantId String

    Specifies the Tenant ID associated with the VSTS account.

    publishingEnabled Boolean

    Is automated publishing enabled? Defaults to false.

    Import

    Data Factory can be imported using the resource id, e.g.

     $ pulumi import azure:datafactory/factory:Factory example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.52.0 published on Monday, Oct 2, 2023 by Pulumi