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

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Data Factory Binary Dataset inside an 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 = "West Europe",
            });
            var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new Azure.DataFactory.FactoryArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
            var exampleLinkedServiceSftp = new Azure.DataFactory.LinkedServiceSftp("exampleLinkedServiceSftp", new Azure.DataFactory.LinkedServiceSftpArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                DataFactoryId = exampleFactory.Id,
                AuthenticationType = "Basic",
                Host = "http://www.bing.com",
                Port = 22,
                Username = "foo",
                Password = "bar",
            });
            var exampleDatasetBinary = new Azure.DataFactory.DatasetBinary("exampleDatasetBinary", new Azure.DataFactory.DatasetBinaryArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                DataFactoryId = exampleFactory.Id,
                LinkedServiceName = exampleLinkedServiceSftp.Name,
                SftpServerLocation = new Azure.DataFactory.Inputs.DatasetBinarySftpServerLocationArgs
                {
                    Path = "/test/",
                    Filename = "**",
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/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
    		}
    		exampleFactory, err := datafactory.NewFactory(ctx, "exampleFactory", &datafactory.FactoryArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		exampleLinkedServiceSftp, err := datafactory.NewLinkedServiceSftp(ctx, "exampleLinkedServiceSftp", &datafactory.LinkedServiceSftpArgs{
    			ResourceGroupName:  exampleResourceGroup.Name,
    			DataFactoryId:      exampleFactory.ID(),
    			AuthenticationType: pulumi.String("Basic"),
    			Host:               pulumi.String("http://www.bing.com"),
    			Port:               pulumi.Int(22),
    			Username:           pulumi.String("foo"),
    			Password:           pulumi.String("bar"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = datafactory.NewDatasetBinary(ctx, "exampleDatasetBinary", &datafactory.DatasetBinaryArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			DataFactoryId:     exampleFactory.ID(),
    			LinkedServiceName: exampleLinkedServiceSftp.Name,
    			SftpServerLocation: &datafactory.DatasetBinarySftpServerLocationArgs{
    				Path:     pulumi.String("/test/"),
    				Filename: pulumi.String("**"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    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,
    });
    const exampleLinkedServiceSftp = new azure.datafactory.LinkedServiceSftp("exampleLinkedServiceSftp", {
        resourceGroupName: exampleResourceGroup.name,
        dataFactoryId: exampleFactory.id,
        authenticationType: "Basic",
        host: "http://www.bing.com",
        port: 22,
        username: "foo",
        password: "bar",
    });
    const exampleDatasetBinary = new azure.datafactory.DatasetBinary("exampleDatasetBinary", {
        resourceGroupName: exampleResourceGroup.name,
        dataFactoryId: exampleFactory.id,
        linkedServiceName: exampleLinkedServiceSftp.name,
        sftpServerLocation: {
            path: "/test/",
            filename: "**",
        },
    });
    
    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)
    example_linked_service_sftp = azure.datafactory.LinkedServiceSftp("exampleLinkedServiceSftp",
        resource_group_name=example_resource_group.name,
        data_factory_id=example_factory.id,
        authentication_type="Basic",
        host="http://www.bing.com",
        port=22,
        username="foo",
        password="bar")
    example_dataset_binary = azure.datafactory.DatasetBinary("exampleDatasetBinary",
        resource_group_name=example_resource_group.name,
        data_factory_id=example_factory.id,
        linked_service_name=example_linked_service_sftp.name,
        sftp_server_location=azure.datafactory.DatasetBinarySftpServerLocationArgs(
            path="/test/",
            filename="**",
        ))
    

    Example coming soon!

    Create DatasetBinary Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DatasetBinary(name: string, args: DatasetBinaryArgs, opts?: CustomResourceOptions);
    @overload
    def DatasetBinary(resource_name: str,
                      args: DatasetBinaryArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def DatasetBinary(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      linked_service_name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      compression: Optional[DatasetBinaryCompressionArgs] = None,
                      additional_properties: Optional[Mapping[str, str]] = None,
                      data_factory_id: Optional[str] = None,
                      data_factory_name: Optional[str] = None,
                      description: Optional[str] = None,
                      folder: Optional[str] = None,
                      http_server_location: Optional[DatasetBinaryHttpServerLocationArgs] = None,
                      azure_blob_storage_location: Optional[DatasetBinaryAzureBlobStorageLocationArgs] = None,
                      name: Optional[str] = None,
                      parameters: Optional[Mapping[str, str]] = None,
                      annotations: Optional[Sequence[str]] = None,
                      sftp_server_location: Optional[DatasetBinarySftpServerLocationArgs] = None)
    func NewDatasetBinary(ctx *Context, name string, args DatasetBinaryArgs, opts ...ResourceOption) (*DatasetBinary, error)
    public DatasetBinary(string name, DatasetBinaryArgs args, CustomResourceOptions? opts = null)
    public DatasetBinary(String name, DatasetBinaryArgs args)
    public DatasetBinary(String name, DatasetBinaryArgs args, CustomResourceOptions options)
    
    type: azure:datafactory:DatasetBinary
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DatasetBinaryArgs
    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 DatasetBinaryArgs
    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 DatasetBinaryArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatasetBinaryArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatasetBinaryArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var datasetBinaryResource = new Azure.DataFactory.DatasetBinary("datasetBinaryResource", new()
    {
        LinkedServiceName = "string",
        ResourceGroupName = "string",
        Compression = new Azure.DataFactory.Inputs.DatasetBinaryCompressionArgs
        {
            Type = "string",
            Level = "string",
        },
        AdditionalProperties = 
        {
            { "string", "string" },
        },
        DataFactoryId = "string",
        Description = "string",
        Folder = "string",
        HttpServerLocation = new Azure.DataFactory.Inputs.DatasetBinaryHttpServerLocationArgs
        {
            Filename = "string",
            Path = "string",
            RelativeUrl = "string",
            DynamicFilenameEnabled = false,
            DynamicPathEnabled = false,
        },
        AzureBlobStorageLocation = new Azure.DataFactory.Inputs.DatasetBinaryAzureBlobStorageLocationArgs
        {
            Container = "string",
            DynamicFilenameEnabled = false,
            DynamicPathEnabled = false,
            Filename = "string",
            Path = "string",
        },
        Name = "string",
        Parameters = 
        {
            { "string", "string" },
        },
        Annotations = new[]
        {
            "string",
        },
        SftpServerLocation = new Azure.DataFactory.Inputs.DatasetBinarySftpServerLocationArgs
        {
            Filename = "string",
            Path = "string",
            DynamicFilenameEnabled = false,
            DynamicPathEnabled = false,
        },
    });
    
    example, err := datafactory.NewDatasetBinary(ctx, "datasetBinaryResource", &datafactory.DatasetBinaryArgs{
    	LinkedServiceName: pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Compression: &datafactory.DatasetBinaryCompressionArgs{
    		Type:  pulumi.String("string"),
    		Level: pulumi.String("string"),
    	},
    	AdditionalProperties: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DataFactoryId: pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	Folder:        pulumi.String("string"),
    	HttpServerLocation: &datafactory.DatasetBinaryHttpServerLocationArgs{
    		Filename:               pulumi.String("string"),
    		Path:                   pulumi.String("string"),
    		RelativeUrl:            pulumi.String("string"),
    		DynamicFilenameEnabled: pulumi.Bool(false),
    		DynamicPathEnabled:     pulumi.Bool(false),
    	},
    	AzureBlobStorageLocation: &datafactory.DatasetBinaryAzureBlobStorageLocationArgs{
    		Container:              pulumi.String("string"),
    		DynamicFilenameEnabled: pulumi.Bool(false),
    		DynamicPathEnabled:     pulumi.Bool(false),
    		Filename:               pulumi.String("string"),
    		Path:                   pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	Parameters: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Annotations: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SftpServerLocation: &datafactory.DatasetBinarySftpServerLocationArgs{
    		Filename:               pulumi.String("string"),
    		Path:                   pulumi.String("string"),
    		DynamicFilenameEnabled: pulumi.Bool(false),
    		DynamicPathEnabled:     pulumi.Bool(false),
    	},
    })
    
    var datasetBinaryResource = new DatasetBinary("datasetBinaryResource", DatasetBinaryArgs.builder()
        .linkedServiceName("string")
        .resourceGroupName("string")
        .compression(DatasetBinaryCompressionArgs.builder()
            .type("string")
            .level("string")
            .build())
        .additionalProperties(Map.of("string", "string"))
        .dataFactoryId("string")
        .description("string")
        .folder("string")
        .httpServerLocation(DatasetBinaryHttpServerLocationArgs.builder()
            .filename("string")
            .path("string")
            .relativeUrl("string")
            .dynamicFilenameEnabled(false)
            .dynamicPathEnabled(false)
            .build())
        .azureBlobStorageLocation(DatasetBinaryAzureBlobStorageLocationArgs.builder()
            .container("string")
            .dynamicFilenameEnabled(false)
            .dynamicPathEnabled(false)
            .filename("string")
            .path("string")
            .build())
        .name("string")
        .parameters(Map.of("string", "string"))
        .annotations("string")
        .sftpServerLocation(DatasetBinarySftpServerLocationArgs.builder()
            .filename("string")
            .path("string")
            .dynamicFilenameEnabled(false)
            .dynamicPathEnabled(false)
            .build())
        .build());
    
    dataset_binary_resource = azure.datafactory.DatasetBinary("datasetBinaryResource",
        linked_service_name="string",
        resource_group_name="string",
        compression={
            "type": "string",
            "level": "string",
        },
        additional_properties={
            "string": "string",
        },
        data_factory_id="string",
        description="string",
        folder="string",
        http_server_location={
            "filename": "string",
            "path": "string",
            "relative_url": "string",
            "dynamic_filename_enabled": False,
            "dynamic_path_enabled": False,
        },
        azure_blob_storage_location={
            "container": "string",
            "dynamic_filename_enabled": False,
            "dynamic_path_enabled": False,
            "filename": "string",
            "path": "string",
        },
        name="string",
        parameters={
            "string": "string",
        },
        annotations=["string"],
        sftp_server_location={
            "filename": "string",
            "path": "string",
            "dynamic_filename_enabled": False,
            "dynamic_path_enabled": False,
        })
    
    const datasetBinaryResource = new azure.datafactory.DatasetBinary("datasetBinaryResource", {
        linkedServiceName: "string",
        resourceGroupName: "string",
        compression: {
            type: "string",
            level: "string",
        },
        additionalProperties: {
            string: "string",
        },
        dataFactoryId: "string",
        description: "string",
        folder: "string",
        httpServerLocation: {
            filename: "string",
            path: "string",
            relativeUrl: "string",
            dynamicFilenameEnabled: false,
            dynamicPathEnabled: false,
        },
        azureBlobStorageLocation: {
            container: "string",
            dynamicFilenameEnabled: false,
            dynamicPathEnabled: false,
            filename: "string",
            path: "string",
        },
        name: "string",
        parameters: {
            string: "string",
        },
        annotations: ["string"],
        sftpServerLocation: {
            filename: "string",
            path: "string",
            dynamicFilenameEnabled: false,
            dynamicPathEnabled: false,
        },
    });
    
    type: azure:datafactory:DatasetBinary
    properties:
        additionalProperties:
            string: string
        annotations:
            - string
        azureBlobStorageLocation:
            container: string
            dynamicFilenameEnabled: false
            dynamicPathEnabled: false
            filename: string
            path: string
        compression:
            level: string
            type: string
        dataFactoryId: string
        description: string
        folder: string
        httpServerLocation:
            dynamicFilenameEnabled: false
            dynamicPathEnabled: false
            filename: string
            path: string
            relativeUrl: string
        linkedServiceName: string
        name: string
        parameters:
            string: string
        resourceGroupName: string
        sftpServerLocation:
            dynamicFilenameEnabled: false
            dynamicPathEnabled: false
            filename: string
            path: string
    

    DatasetBinary Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DatasetBinary resource accepts the following input properties:

    LinkedServiceName string
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    ResourceGroupName string
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    AdditionalProperties Dictionary<string, string>
    A map of additional properties to associate with the Data Factory Binary Dataset.
    Annotations List<string>
    List of tags that can be used for describing the Data Factory Binary Dataset.
    AzureBlobStorageLocation DatasetBinaryAzureBlobStorageLocation
    A azure_blob_storage_location block as defined below.
    Compression DatasetBinaryCompression
    A compression block as defined below.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The description for the Data Factory Dataset.
    Folder string
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    HttpServerLocation DatasetBinaryHttpServerLocation
    A http_server_location block as defined below.
    Name string
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    Parameters Dictionary<string, string>
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    SftpServerLocation DatasetBinarySftpServerLocation

    A sftp_server_location block as defined below.

    LinkedServiceName string
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    ResourceGroupName string
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    AdditionalProperties map[string]string
    A map of additional properties to associate with the Data Factory Binary Dataset.
    Annotations []string
    List of tags that can be used for describing the Data Factory Binary Dataset.
    AzureBlobStorageLocation DatasetBinaryAzureBlobStorageLocationArgs
    A azure_blob_storage_location block as defined below.
    Compression DatasetBinaryCompressionArgs
    A compression block as defined below.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The description for the Data Factory Dataset.
    Folder string
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    HttpServerLocation DatasetBinaryHttpServerLocationArgs
    A http_server_location block as defined below.
    Name string
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    Parameters map[string]string
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    SftpServerLocation DatasetBinarySftpServerLocationArgs

    A sftp_server_location block as defined below.

    linkedServiceName String
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    resourceGroupName String
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    additionalProperties Map<String,String>
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azureBlobStorageLocation DatasetBinaryAzureBlobStorageLocation
    A azure_blob_storage_location block as defined below.
    compression DatasetBinaryCompression
    A compression block as defined below.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The description for the Data Factory Dataset.
    folder String
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    httpServerLocation DatasetBinaryHttpServerLocation
    A http_server_location block as defined below.
    name String
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters Map<String,String>
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    sftpServerLocation DatasetBinarySftpServerLocation

    A sftp_server_location block as defined below.

    linkedServiceName string
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    resourceGroupName string
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    additionalProperties {[key: string]: string}
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations string[]
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azureBlobStorageLocation DatasetBinaryAzureBlobStorageLocation
    A azure_blob_storage_location block as defined below.
    compression DatasetBinaryCompression
    A compression block as defined below.
    dataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description string
    The description for the Data Factory Dataset.
    folder string
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    httpServerLocation DatasetBinaryHttpServerLocation
    A http_server_location block as defined below.
    name string
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters {[key: string]: string}
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    sftpServerLocation DatasetBinarySftpServerLocation

    A sftp_server_location block as defined below.

    linked_service_name str
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    resource_group_name str
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    additional_properties Mapping[str, str]
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations Sequence[str]
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azure_blob_storage_location DatasetBinaryAzureBlobStorageLocationArgs
    A azure_blob_storage_location block as defined below.
    compression DatasetBinaryCompressionArgs
    A compression block as defined below.
    data_factory_id str
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    data_factory_name str
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description str
    The description for the Data Factory Dataset.
    folder str
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    http_server_location DatasetBinaryHttpServerLocationArgs
    A http_server_location block as defined below.
    name str
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters Mapping[str, str]
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    sftp_server_location DatasetBinarySftpServerLocationArgs

    A sftp_server_location block as defined below.

    linkedServiceName String
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    resourceGroupName String
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    additionalProperties Map<String>
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azureBlobStorageLocation Property Map
    A azure_blob_storage_location block as defined below.
    compression Property Map
    A compression block as defined below.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The description for the Data Factory Dataset.
    folder String
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    httpServerLocation Property Map
    A http_server_location block as defined below.
    name String
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters Map<String>
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    sftpServerLocation Property Map

    A sftp_server_location block as defined below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DatasetBinary 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 DatasetBinary Resource

    Get an existing DatasetBinary 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?: DatasetBinaryState, opts?: CustomResourceOptions): DatasetBinary
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_properties: Optional[Mapping[str, str]] = None,
            annotations: Optional[Sequence[str]] = None,
            azure_blob_storage_location: Optional[DatasetBinaryAzureBlobStorageLocationArgs] = None,
            compression: Optional[DatasetBinaryCompressionArgs] = None,
            data_factory_id: Optional[str] = None,
            data_factory_name: Optional[str] = None,
            description: Optional[str] = None,
            folder: Optional[str] = None,
            http_server_location: Optional[DatasetBinaryHttpServerLocationArgs] = None,
            linked_service_name: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[Mapping[str, str]] = None,
            resource_group_name: Optional[str] = None,
            sftp_server_location: Optional[DatasetBinarySftpServerLocationArgs] = None) -> DatasetBinary
    func GetDatasetBinary(ctx *Context, name string, id IDInput, state *DatasetBinaryState, opts ...ResourceOption) (*DatasetBinary, error)
    public static DatasetBinary Get(string name, Input<string> id, DatasetBinaryState? state, CustomResourceOptions? opts = null)
    public static DatasetBinary get(String name, Output<String> id, DatasetBinaryState state, CustomResourceOptions options)
    resources:  _:    type: azure:datafactory:DatasetBinary    get:      id: ${id}
    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:
    AdditionalProperties Dictionary<string, string>
    A map of additional properties to associate with the Data Factory Binary Dataset.
    Annotations List<string>
    List of tags that can be used for describing the Data Factory Binary Dataset.
    AzureBlobStorageLocation DatasetBinaryAzureBlobStorageLocation
    A azure_blob_storage_location block as defined below.
    Compression DatasetBinaryCompression
    A compression block as defined below.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The description for the Data Factory Dataset.
    Folder string
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    HttpServerLocation DatasetBinaryHttpServerLocation
    A http_server_location block as defined below.
    LinkedServiceName string
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    Name string
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    Parameters Dictionary<string, string>
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    ResourceGroupName string
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    SftpServerLocation DatasetBinarySftpServerLocation

    A sftp_server_location block as defined below.

    AdditionalProperties map[string]string
    A map of additional properties to associate with the Data Factory Binary Dataset.
    Annotations []string
    List of tags that can be used for describing the Data Factory Binary Dataset.
    AzureBlobStorageLocation DatasetBinaryAzureBlobStorageLocationArgs
    A azure_blob_storage_location block as defined below.
    Compression DatasetBinaryCompressionArgs
    A compression block as defined below.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The description for the Data Factory Dataset.
    Folder string
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    HttpServerLocation DatasetBinaryHttpServerLocationArgs
    A http_server_location block as defined below.
    LinkedServiceName string
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    Name string
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    Parameters map[string]string
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    ResourceGroupName string
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    SftpServerLocation DatasetBinarySftpServerLocationArgs

    A sftp_server_location block as defined below.

    additionalProperties Map<String,String>
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azureBlobStorageLocation DatasetBinaryAzureBlobStorageLocation
    A azure_blob_storage_location block as defined below.
    compression DatasetBinaryCompression
    A compression block as defined below.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The description for the Data Factory Dataset.
    folder String
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    httpServerLocation DatasetBinaryHttpServerLocation
    A http_server_location block as defined below.
    linkedServiceName String
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    name String
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters Map<String,String>
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    resourceGroupName String
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    sftpServerLocation DatasetBinarySftpServerLocation

    A sftp_server_location block as defined below.

    additionalProperties {[key: string]: string}
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations string[]
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azureBlobStorageLocation DatasetBinaryAzureBlobStorageLocation
    A azure_blob_storage_location block as defined below.
    compression DatasetBinaryCompression
    A compression block as defined below.
    dataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description string
    The description for the Data Factory Dataset.
    folder string
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    httpServerLocation DatasetBinaryHttpServerLocation
    A http_server_location block as defined below.
    linkedServiceName string
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    name string
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters {[key: string]: string}
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    resourceGroupName string
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    sftpServerLocation DatasetBinarySftpServerLocation

    A sftp_server_location block as defined below.

    additional_properties Mapping[str, str]
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations Sequence[str]
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azure_blob_storage_location DatasetBinaryAzureBlobStorageLocationArgs
    A azure_blob_storage_location block as defined below.
    compression DatasetBinaryCompressionArgs
    A compression block as defined below.
    data_factory_id str
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    data_factory_name str
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description str
    The description for the Data Factory Dataset.
    folder str
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    http_server_location DatasetBinaryHttpServerLocationArgs
    A http_server_location block as defined below.
    linked_service_name str
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    name str
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters Mapping[str, str]
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    resource_group_name str
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    sftp_server_location DatasetBinarySftpServerLocationArgs

    A sftp_server_location block as defined below.

    additionalProperties Map<String>
    A map of additional properties to associate with the Data Factory Binary Dataset.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Binary Dataset.
    azureBlobStorageLocation Property Map
    A azure_blob_storage_location block as defined below.
    compression Property Map
    A compression block as defined below.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The description for the Data Factory Dataset.
    folder String
    The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
    httpServerLocation Property Map
    A http_server_location block as defined below.
    linkedServiceName String
    The Data Factory Linked Service name in which to associate the Binary Dataset with.
    name String
    Specifies the name of the Data Factory Binary Dataset. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    parameters Map<String>
    Specifies a list of parameters to associate with the Data Factory Binary Dataset.
    resourceGroupName String
    The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Binary Dataset to be created.
    sftpServerLocation Property Map

    A sftp_server_location block as defined below.

    Supporting Types

    DatasetBinaryAzureBlobStorageLocation, DatasetBinaryAzureBlobStorageLocationArgs

    Container string
    The container on the Azure Blob Storage Account hosting the file.
    DynamicFilenameEnabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    DynamicPathEnabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    Filename string
    The filename of the file in the blob container.
    Path string
    The folder path to the file in the blob container.
    Container string
    The container on the Azure Blob Storage Account hosting the file.
    DynamicFilenameEnabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    DynamicPathEnabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    Filename string
    The filename of the file in the blob container.
    Path string
    The folder path to the file in the blob container.
    container String
    The container on the Azure Blob Storage Account hosting the file.
    dynamicFilenameEnabled Boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled Boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename String
    The filename of the file in the blob container.
    path String
    The folder path to the file in the blob container.
    container string
    The container on the Azure Blob Storage Account hosting the file.
    dynamicFilenameEnabled boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename string
    The filename of the file in the blob container.
    path string
    The folder path to the file in the blob container.
    container str
    The container on the Azure Blob Storage Account hosting the file.
    dynamic_filename_enabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamic_path_enabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename str
    The filename of the file in the blob container.
    path str
    The folder path to the file in the blob container.
    container String
    The container on the Azure Blob Storage Account hosting the file.
    dynamicFilenameEnabled Boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled Boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename String
    The filename of the file in the blob container.
    path String
    The folder path to the file in the blob container.

    DatasetBinaryCompression, DatasetBinaryCompressionArgs

    Type string
    The type of compression used during transport.
    Level string
    The level of compression. Possible values are Fastest and Optimal.
    Type string
    The type of compression used during transport.
    Level string
    The level of compression. Possible values are Fastest and Optimal.
    type String
    The type of compression used during transport.
    level String
    The level of compression. Possible values are Fastest and Optimal.
    type string
    The type of compression used during transport.
    level string
    The level of compression. Possible values are Fastest and Optimal.
    type str
    The type of compression used during transport.
    level str
    The level of compression. Possible values are Fastest and Optimal.
    type String
    The type of compression used during transport.
    level String
    The level of compression. Possible values are Fastest and Optimal.

    DatasetBinaryHttpServerLocation, DatasetBinaryHttpServerLocationArgs

    Filename string
    The filename of the file on the web server.
    Path string
    The folder path to the file on the web server.
    RelativeUrl string
    The base URL to the web server hosting the file.
    DynamicFilenameEnabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    DynamicPathEnabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    Filename string
    The filename of the file on the web server.
    Path string
    The folder path to the file on the web server.
    RelativeUrl string
    The base URL to the web server hosting the file.
    DynamicFilenameEnabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    DynamicPathEnabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename String
    The filename of the file on the web server.
    path String
    The folder path to the file on the web server.
    relativeUrl String
    The base URL to the web server hosting the file.
    dynamicFilenameEnabled Boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled Boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename string
    The filename of the file on the web server.
    path string
    The folder path to the file on the web server.
    relativeUrl string
    The base URL to the web server hosting the file.
    dynamicFilenameEnabled boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename str
    The filename of the file on the web server.
    path str
    The folder path to the file on the web server.
    relative_url str
    The base URL to the web server hosting the file.
    dynamic_filename_enabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamic_path_enabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename String
    The filename of the file on the web server.
    path String
    The folder path to the file on the web server.
    relativeUrl String
    The base URL to the web server hosting the file.
    dynamicFilenameEnabled Boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled Boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.

    DatasetBinarySftpServerLocation, DatasetBinarySftpServerLocationArgs

    Filename string
    The filename of the file on the SFTP server.
    Path string
    The folder path to the file on the SFTP server.
    DynamicFilenameEnabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    DynamicPathEnabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    Filename string
    The filename of the file on the SFTP server.
    Path string
    The folder path to the file on the SFTP server.
    DynamicFilenameEnabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    DynamicPathEnabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename String
    The filename of the file on the SFTP server.
    path String
    The folder path to the file on the SFTP server.
    dynamicFilenameEnabled Boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled Boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename string
    The filename of the file on the SFTP server.
    path string
    The folder path to the file on the SFTP server.
    dynamicFilenameEnabled boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename str
    The filename of the file on the SFTP server.
    path str
    The folder path to the file on the SFTP server.
    dynamic_filename_enabled bool
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamic_path_enabled bool
    Is the path using dynamic expression, function or system variables? Defaults to false.
    filename String
    The filename of the file on the SFTP server.
    path String
    The folder path to the file on the SFTP server.
    dynamicFilenameEnabled Boolean
    Is the filename using dynamic expression, function or system variables? Defaults to false.
    dynamicPathEnabled Boolean
    Is the path using dynamic expression, function or system variables? Defaults to false.

    Import

    Data Factorie Binary Datasets can be imported using the resource id, e.g.

     $ pulumi import azure:datafactory/datasetBinary:DatasetBinary example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/datasets/example
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.