azure-native.datafactory.Dataset

Explore with Pulumi AI

Dataset resource type. API Version: 2018-06-01.

Example Usage

Datasets_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
    {
        DatasetName = "exampleDataset",
        FactoryName = "exampleFactoryName",
        Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
        {
            FileName = 
            {
                { "type", "Expression" },
                { "value", "@dataset().MyFileName" },
            },
            FolderPath = 
            {
                { "type", "Expression" },
                { "value", "@dataset().MyFolderPath" },
            },
            Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
            {
                Type = "TextFormat",
            },
            LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
            {
                ReferenceName = "exampleLinkedService",
                Type = "LinkedServiceReference",
            },
            Parameters = 
            {
                { "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = "String",
                } },
                { "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = "String",
                } },
            },
            Type = "AzureBlob",
        },
        ResourceGroupName = "exampleResourceGroup",
    });

});

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
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 dataset = new Dataset("dataset", DatasetArgs.builder()        
            .datasetName("exampleDataset")
            .factoryName("exampleFactoryName")
            .properties(Map.ofEntries(
                Map.entry("fileName", AmazonMWSObjectDatasetArgs.builder()
                    .type("Expression")
                    .value("@dataset().MyFileName")
                    .build()),
                Map.entry("folderPath", AmazonMWSObjectDatasetArgs.builder()
                    .type("Expression")
                    .value("@dataset().MyFolderPath")
                    .build()),
                Map.entry("format", Map.of("type", "TextFormat")),
                Map.entry("linkedServiceName", Map.ofEntries(
                    Map.entry("referenceName", "exampleLinkedService"),
                    Map.entry("type", "LinkedServiceReference")
                )),
                Map.entry("parameters", Map.ofEntries(
                    Map.entry("MyFileName", Map.of("type", "String")),
                    Map.entry("MyFolderPath", Map.of("type", "String"))
                )),
                Map.entry("type", "AzureBlob")
            ))
            .resourceGroupName("exampleResourceGroup")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

dataset = azure_native.datafactory.Dataset("dataset",
    dataset_name="exampleDataset",
    factory_name="exampleFactoryName",
    properties=azure_native.datafactory.AzureBlobDatasetArgs(
        file_name={
            "type": "Expression",
            "value": "@dataset().MyFileName",
        },
        folder_path={
            "type": "Expression",
            "value": "@dataset().MyFolderPath",
        },
        format=azure_native.datafactory.TextFormatArgs(
            type="TextFormat",
        ),
        linked_service_name=azure_native.datafactory.LinkedServiceReferenceArgs(
            reference_name="exampleLinkedService",
            type="LinkedServiceReference",
        ),
        parameters={
            "MyFileName": azure_native.datafactory.ParameterSpecificationArgs(
                type="String",
            ),
            "MyFolderPath": azure_native.datafactory.ParameterSpecificationArgs(
                type="String",
            ),
        },
        type="AzureBlob",
    ),
    resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const dataset = new azure_native.datafactory.Dataset("dataset", {
    datasetName: "exampleDataset",
    factoryName: "exampleFactoryName",
    properties: {
        fileName: {
            type: "Expression",
            value: "@dataset().MyFileName",
        },
        folderPath: {
            type: "Expression",
            value: "@dataset().MyFolderPath",
        },
        format: {
            type: "TextFormat",
        },
        linkedServiceName: {
            referenceName: "exampleLinkedService",
            type: "LinkedServiceReference",
        },
        parameters: {
            MyFileName: {
                type: "String",
            },
            MyFolderPath: {
                type: "String",
            },
        },
        type: "AzureBlob",
    },
    resourceGroupName: "exampleResourceGroup",
});
resources:
  dataset:
    type: azure-native:datafactory:Dataset
    properties:
      datasetName: exampleDataset
      factoryName: exampleFactoryName
      properties:
        fileName:
          type: Expression
          value: '@dataset().MyFileName'
        folderPath:
          type: Expression
          value: '@dataset().MyFolderPath'
        format:
          type: TextFormat
        linkedServiceName:
          referenceName: exampleLinkedService
          type: LinkedServiceReference
        parameters:
          MyFileName:
            type: String
          MyFolderPath:
            type: String
        type: AzureBlob
      resourceGroupName: exampleResourceGroup

Datasets_Update

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
    {
        DatasetName = "exampleDataset",
        FactoryName = "exampleFactoryName",
        Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
        {
            Description = "Example description",
            FileName = 
            {
                { "type", "Expression" },
                { "value", "@dataset().MyFileName" },
            },
            FolderPath = 
            {
                { "type", "Expression" },
                { "value", "@dataset().MyFolderPath" },
            },
            Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
            {
                Type = "TextFormat",
            },
            LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
            {
                ReferenceName = "exampleLinkedService",
                Type = "LinkedServiceReference",
            },
            Parameters = 
            {
                { "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = "String",
                } },
                { "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = "String",
                } },
            },
            Type = "AzureBlob",
        },
        ResourceGroupName = "exampleResourceGroup",
    });

});

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
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 dataset = new Dataset("dataset", DatasetArgs.builder()        
            .datasetName("exampleDataset")
            .factoryName("exampleFactoryName")
            .properties(Map.ofEntries(
                Map.entry("description", "Example description"),
                Map.entry("fileName", AmazonMWSObjectDatasetArgs.builder()
                    .type("Expression")
                    .value("@dataset().MyFileName")
                    .build()),
                Map.entry("folderPath", AmazonMWSObjectDatasetArgs.builder()
                    .type("Expression")
                    .value("@dataset().MyFolderPath")
                    .build()),
                Map.entry("format", Map.of("type", "TextFormat")),
                Map.entry("linkedServiceName", Map.ofEntries(
                    Map.entry("referenceName", "exampleLinkedService"),
                    Map.entry("type", "LinkedServiceReference")
                )),
                Map.entry("parameters", Map.ofEntries(
                    Map.entry("MyFileName", Map.of("type", "String")),
                    Map.entry("MyFolderPath", Map.of("type", "String"))
                )),
                Map.entry("type", "AzureBlob")
            ))
            .resourceGroupName("exampleResourceGroup")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

dataset = azure_native.datafactory.Dataset("dataset",
    dataset_name="exampleDataset",
    factory_name="exampleFactoryName",
    properties=azure_native.datafactory.AzureBlobDatasetArgs(
        description="Example description",
        file_name={
            "type": "Expression",
            "value": "@dataset().MyFileName",
        },
        folder_path={
            "type": "Expression",
            "value": "@dataset().MyFolderPath",
        },
        format=azure_native.datafactory.TextFormatArgs(
            type="TextFormat",
        ),
        linked_service_name=azure_native.datafactory.LinkedServiceReferenceArgs(
            reference_name="exampleLinkedService",
            type="LinkedServiceReference",
        ),
        parameters={
            "MyFileName": azure_native.datafactory.ParameterSpecificationArgs(
                type="String",
            ),
            "MyFolderPath": azure_native.datafactory.ParameterSpecificationArgs(
                type="String",
            ),
        },
        type="AzureBlob",
    ),
    resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const dataset = new azure_native.datafactory.Dataset("dataset", {
    datasetName: "exampleDataset",
    factoryName: "exampleFactoryName",
    properties: {
        description: "Example description",
        fileName: {
            type: "Expression",
            value: "@dataset().MyFileName",
        },
        folderPath: {
            type: "Expression",
            value: "@dataset().MyFolderPath",
        },
        format: {
            type: "TextFormat",
        },
        linkedServiceName: {
            referenceName: "exampleLinkedService",
            type: "LinkedServiceReference",
        },
        parameters: {
            MyFileName: {
                type: "String",
            },
            MyFolderPath: {
                type: "String",
            },
        },
        type: "AzureBlob",
    },
    resourceGroupName: "exampleResourceGroup",
});
resources:
  dataset:
    type: azure-native:datafactory:Dataset
    properties:
      datasetName: exampleDataset
      factoryName: exampleFactoryName
      properties:
        description: Example description
        fileName:
          type: Expression
          value: '@dataset().MyFileName'
        folderPath:
          type: Expression
          value: '@dataset().MyFolderPath'
        format:
          type: TextFormat
        linkedServiceName:
          referenceName: exampleLinkedService
          type: LinkedServiceReference
        parameters:
          MyFileName:
            type: String
          MyFolderPath:
            type: String
        type: AzureBlob
      resourceGroupName: exampleResourceGroup

Create Dataset Resource

new Dataset(name: string, args: DatasetArgs, opts?: CustomResourceOptions);
@overload
def Dataset(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            dataset_name: Optional[str] = None,
            factory_name: Optional[str] = None,
            properties: Optional[Union[AmazonMWSObjectDatasetArgs, AmazonRdsForOracleTableDatasetArgs, AmazonRdsForSqlServerTableDatasetArgs, AmazonRedshiftTableDatasetArgs, AmazonS3DatasetArgs, AvroDatasetArgs, AzureBlobDatasetArgs, AzureBlobFSDatasetArgs, AzureDataExplorerTableDatasetArgs, AzureDataLakeStoreDatasetArgs, AzureDatabricksDeltaLakeDatasetArgs, AzureMariaDBTableDatasetArgs, AzureMySqlTableDatasetArgs, AzurePostgreSqlTableDatasetArgs, AzureSearchIndexDatasetArgs, AzureSqlDWTableDatasetArgs, AzureSqlMITableDatasetArgs, AzureSqlTableDatasetArgs, AzureTableDatasetArgs, BinaryDatasetArgs, CassandraTableDatasetArgs, CommonDataServiceForAppsEntityDatasetArgs, ConcurObjectDatasetArgs, CosmosDbMongoDbApiCollectionDatasetArgs, CosmosDbSqlApiCollectionDatasetArgs, CouchbaseTableDatasetArgs, CustomDatasetArgs, Db2TableDatasetArgs, DelimitedTextDatasetArgs, DocumentDbCollectionDatasetArgs, DrillTableDatasetArgs, DynamicsAXResourceDatasetArgs, DynamicsCrmEntityDatasetArgs, DynamicsEntityDatasetArgs, EloquaObjectDatasetArgs, ExcelDatasetArgs, FileShareDatasetArgs, GoogleAdWordsObjectDatasetArgs, GoogleBigQueryObjectDatasetArgs, GreenplumTableDatasetArgs, HBaseObjectDatasetArgs, HiveObjectDatasetArgs, HttpDatasetArgs, HubspotObjectDatasetArgs, ImpalaObjectDatasetArgs, InformixTableDatasetArgs, JiraObjectDatasetArgs, JsonDatasetArgs, MagentoObjectDatasetArgs, MariaDBTableDatasetArgs, MarketoObjectDatasetArgs, MicrosoftAccessTableDatasetArgs, MongoDbAtlasCollectionDatasetArgs, MongoDbCollectionDatasetArgs, MongoDbV2CollectionDatasetArgs, MySqlTableDatasetArgs, NetezzaTableDatasetArgs, ODataResourceDatasetArgs, OdbcTableDatasetArgs, Office365DatasetArgs, OracleServiceCloudObjectDatasetArgs, OracleTableDatasetArgs, OrcDatasetArgs, ParquetDatasetArgs, PaypalObjectDatasetArgs, PhoenixObjectDatasetArgs, PostgreSqlTableDatasetArgs, PrestoObjectDatasetArgs, QuickBooksObjectDatasetArgs, RelationalTableDatasetArgs, ResponsysObjectDatasetArgs, RestResourceDatasetArgs, SalesforceMarketingCloudObjectDatasetArgs, SalesforceObjectDatasetArgs, SalesforceServiceCloudObjectDatasetArgs, SapBwCubeDatasetArgs, SapCloudForCustomerResourceDatasetArgs, SapEccResourceDatasetArgs, SapHanaTableDatasetArgs, SapOdpResourceDatasetArgs, SapOpenHubTableDatasetArgs, SapTableResourceDatasetArgs, ServiceNowObjectDatasetArgs, SharePointOnlineListResourceDatasetArgs, ShopifyObjectDatasetArgs, SnowflakeDatasetArgs, SparkObjectDatasetArgs, SqlServerTableDatasetArgs, SquareObjectDatasetArgs, SybaseTableDatasetArgs, TeradataTableDatasetArgs, VerticaTableDatasetArgs, WebTableDatasetArgs, XeroObjectDatasetArgs, XmlDatasetArgs, ZohoObjectDatasetArgs]] = None,
            resource_group_name: Optional[str] = None)
@overload
def Dataset(resource_name: str,
            args: DatasetArgs,
            opts: Optional[ResourceOptions] = None)
func NewDataset(ctx *Context, name string, args DatasetArgs, opts ...ResourceOption) (*Dataset, error)
public Dataset(string name, DatasetArgs args, CustomResourceOptions? opts = null)
public Dataset(String name, DatasetArgs args)
public Dataset(String name, DatasetArgs args, CustomResourceOptions options)
type: azure-native:datafactory:Dataset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

Dataset 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 Dataset resource accepts the following input properties:

FactoryName string

The factory name.

Properties Pulumi.AzureNative.DataFactory.Inputs.AmazonMWSObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOracleTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForSqlServerTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonRedshiftTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3DatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AvroDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureMariaDBTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSearchIndexDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlDWTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlMITableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.AzureTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.BinaryDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.CassandraTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsEntityDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ConcurObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiCollectionDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbSqlApiCollectionDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.CouchbaseTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.CustomDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.Db2TableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.DocumentDbCollectionDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.DrillTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.DynamicsAXResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmEntityDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.DynamicsEntityDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.EloquaObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ExcelDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.FileShareDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.GoogleAdWordsObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.GreenplumTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.HBaseObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.HiveObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.HttpDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.HubspotObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ImpalaObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.InformixTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.JiraObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.JsonDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MagentoObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MariaDBTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MarketoObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasCollectionDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MongoDbCollectionDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2CollectionDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.MySqlTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.NetezzaTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ODataResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.OdbcTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.Office365DatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.OracleServiceCloudObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.OracleTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.OrcDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ParquetDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.PaypalObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.PhoenixObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.PrestoObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.QuickBooksObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.RelationalTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ResponsysObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.RestResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SalesforceMarketingCloudObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SalesforceObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SapBwCubeDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SapEccResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SapHanaTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SapOdpResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SapOpenHubTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SapTableResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SharePointOnlineListResourceDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ShopifyObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SparkObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SqlServerTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SquareObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.SybaseTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.TeradataTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.VerticaTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.WebTableDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.XeroObjectDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.XmlDatasetArgs | Pulumi.AzureNative.DataFactory.Inputs.ZohoObjectDatasetArgs

Dataset properties.

ResourceGroupName string

The resource group name.

DatasetName string

The dataset name.

FactoryName string

The factory name.

Properties AmazonMWSObjectDatasetArgs | AmazonRdsForOracleTableDatasetArgs | AmazonRdsForSqlServerTableDatasetArgs | AmazonRedshiftTableDatasetArgs | AmazonS3DatasetArgs | AvroDatasetArgs | AzureBlobDatasetArgs | AzureBlobFSDatasetArgs | AzureDataExplorerTableDatasetArgs | AzureDataLakeStoreDatasetArgs | AzureDatabricksDeltaLakeDatasetArgs | AzureMariaDBTableDatasetArgs | AzureMySqlTableDatasetArgs | AzurePostgreSqlTableDatasetArgs | AzureSearchIndexDatasetArgs | AzureSqlDWTableDatasetArgs | AzureSqlMITableDatasetArgs | AzureSqlTableDatasetArgs | AzureTableDatasetArgs | BinaryDatasetArgs | CassandraTableDatasetArgs | CommonDataServiceForAppsEntityDatasetArgs | ConcurObjectDatasetArgs | CosmosDbMongoDbApiCollectionDatasetArgs | CosmosDbSqlApiCollectionDatasetArgs | CouchbaseTableDatasetArgs | CustomDatasetArgs | Db2TableDatasetArgs | DelimitedTextDatasetArgs | DocumentDbCollectionDatasetArgs | DrillTableDatasetArgs | DynamicsAXResourceDatasetArgs | DynamicsCrmEntityDatasetArgs | DynamicsEntityDatasetArgs | EloquaObjectDatasetArgs | ExcelDatasetArgs | FileShareDatasetArgs | GoogleAdWordsObjectDatasetArgs | GoogleBigQueryObjectDatasetArgs | GreenplumTableDatasetArgs | HBaseObjectDatasetArgs | HiveObjectDatasetArgs | HttpDatasetArgs | HubspotObjectDatasetArgs | ImpalaObjectDatasetArgs | InformixTableDatasetArgs | JiraObjectDatasetArgs | JsonDatasetArgs | MagentoObjectDatasetArgs | MariaDBTableDatasetArgs | MarketoObjectDatasetArgs | MicrosoftAccessTableDatasetArgs | MongoDbAtlasCollectionDatasetArgs | MongoDbCollectionDatasetArgs | MongoDbV2CollectionDatasetArgs | MySqlTableDatasetArgs | NetezzaTableDatasetArgs | ODataResourceDatasetArgs | OdbcTableDatasetArgs | Office365DatasetArgs | OracleServiceCloudObjectDatasetArgs | OracleTableDatasetArgs | OrcDatasetArgs | ParquetDatasetArgs | PaypalObjectDatasetArgs | PhoenixObjectDatasetArgs | PostgreSqlTableDatasetArgs | PrestoObjectDatasetArgs | QuickBooksObjectDatasetArgs | RelationalTableDatasetArgs | ResponsysObjectDatasetArgs | RestResourceDatasetArgs | SalesforceMarketingCloudObjectDatasetArgs | SalesforceObjectDatasetArgs | SalesforceServiceCloudObjectDatasetArgs | SapBwCubeDatasetArgs | SapCloudForCustomerResourceDatasetArgs | SapEccResourceDatasetArgs | SapHanaTableDatasetArgs | SapOdpResourceDatasetArgs | SapOpenHubTableDatasetArgs | SapTableResourceDatasetArgs | ServiceNowObjectDatasetArgs | SharePointOnlineListResourceDatasetArgs | ShopifyObjectDatasetArgs | SnowflakeDatasetArgs | SparkObjectDatasetArgs | SqlServerTableDatasetArgs | SquareObjectDatasetArgs | SybaseTableDatasetArgs | TeradataTableDatasetArgs | VerticaTableDatasetArgs | WebTableDatasetArgs | XeroObjectDatasetArgs | XmlDatasetArgs | ZohoObjectDatasetArgs

Dataset properties.

ResourceGroupName string

The resource group name.

DatasetName string

The dataset name.

factoryName String

The factory name.

properties AmazonMWSObjectDatasetArgs | AmazonRdsForOracleTableDatasetArgs | AmazonRdsForSqlServerTableDatasetArgs | AmazonRedshiftTableDatasetArgs | AmazonS3DatasetArgs | AvroDatasetArgs | AzureBlobDatasetArgs | AzureBlobFSDatasetArgs | AzureDataExplorerTableDatasetArgs | AzureDataLakeStoreDatasetArgs | AzureDatabricksDeltaLakeDatasetArgs | AzureMariaDBTableDatasetArgs | AzureMySqlTableDatasetArgs | AzurePostgreSqlTableDatasetArgs | AzureSearchIndexDatasetArgs | AzureSqlDWTableDatasetArgs | AzureSqlMITableDatasetArgs | AzureSqlTableDatasetArgs | AzureTableDatasetArgs | BinaryDatasetArgs | CassandraTableDatasetArgs | CommonDataServiceForAppsEntityDatasetArgs | ConcurObjectDatasetArgs | CosmosDbMongoDbApiCollectionDatasetArgs | CosmosDbSqlApiCollectionDatasetArgs | CouchbaseTableDatasetArgs | CustomDatasetArgs | Db2TableDatasetArgs | DelimitedTextDatasetArgs | DocumentDbCollectionDatasetArgs | DrillTableDatasetArgs | DynamicsAXResourceDatasetArgs | DynamicsCrmEntityDatasetArgs | DynamicsEntityDatasetArgs | EloquaObjectDatasetArgs | ExcelDatasetArgs | FileShareDatasetArgs | GoogleAdWordsObjectDatasetArgs | GoogleBigQueryObjectDatasetArgs | GreenplumTableDatasetArgs | HBaseObjectDatasetArgs | HiveObjectDatasetArgs | HttpDatasetArgs | HubspotObjectDatasetArgs | ImpalaObjectDatasetArgs | InformixTableDatasetArgs | JiraObjectDatasetArgs | JsonDatasetArgs | MagentoObjectDatasetArgs | MariaDBTableDatasetArgs | MarketoObjectDatasetArgs | MicrosoftAccessTableDatasetArgs | MongoDbAtlasCollectionDatasetArgs | MongoDbCollectionDatasetArgs | MongoDbV2CollectionDatasetArgs | MySqlTableDatasetArgs | NetezzaTableDatasetArgs | ODataResourceDatasetArgs | OdbcTableDatasetArgs | Office365DatasetArgs | OracleServiceCloudObjectDatasetArgs | OracleTableDatasetArgs | OrcDatasetArgs | ParquetDatasetArgs | PaypalObjectDatasetArgs | PhoenixObjectDatasetArgs | PostgreSqlTableDatasetArgs | PrestoObjectDatasetArgs | QuickBooksObjectDatasetArgs | RelationalTableDatasetArgs | ResponsysObjectDatasetArgs | RestResourceDatasetArgs | SalesforceMarketingCloudObjectDatasetArgs | SalesforceObjectDatasetArgs | SalesforceServiceCloudObjectDatasetArgs | SapBwCubeDatasetArgs | SapCloudForCustomerResourceDatasetArgs | SapEccResourceDatasetArgs | SapHanaTableDatasetArgs | SapOdpResourceDatasetArgs | SapOpenHubTableDatasetArgs | SapTableResourceDatasetArgs | ServiceNowObjectDatasetArgs | SharePointOnlineListResourceDatasetArgs | ShopifyObjectDatasetArgs | SnowflakeDatasetArgs | SparkObjectDatasetArgs | SqlServerTableDatasetArgs | SquareObjectDatasetArgs | SybaseTableDatasetArgs | TeradataTableDatasetArgs | VerticaTableDatasetArgs | WebTableDatasetArgs | XeroObjectDatasetArgs | XmlDatasetArgs | ZohoObjectDatasetArgs

Dataset properties.

resourceGroupName String

The resource group name.

datasetName String

The dataset name.

factoryName string

The factory name.

properties AmazonMWSObjectDatasetArgs | AmazonRdsForOracleTableDatasetArgs | AmazonRdsForSqlServerTableDatasetArgs | AmazonRedshiftTableDatasetArgs | AmazonS3DatasetArgs | AvroDatasetArgs | AzureBlobDatasetArgs | AzureBlobFSDatasetArgs | AzureDataExplorerTableDatasetArgs | AzureDataLakeStoreDatasetArgs | AzureDatabricksDeltaLakeDatasetArgs | AzureMariaDBTableDatasetArgs | AzureMySqlTableDatasetArgs | AzurePostgreSqlTableDatasetArgs | AzureSearchIndexDatasetArgs | AzureSqlDWTableDatasetArgs | AzureSqlMITableDatasetArgs | AzureSqlTableDatasetArgs | AzureTableDatasetArgs | BinaryDatasetArgs | CassandraTableDatasetArgs | CommonDataServiceForAppsEntityDatasetArgs | ConcurObjectDatasetArgs | CosmosDbMongoDbApiCollectionDatasetArgs | CosmosDbSqlApiCollectionDatasetArgs | CouchbaseTableDatasetArgs | CustomDatasetArgs | Db2TableDatasetArgs | DelimitedTextDatasetArgs | DocumentDbCollectionDatasetArgs | DrillTableDatasetArgs | DynamicsAXResourceDatasetArgs | DynamicsCrmEntityDatasetArgs | DynamicsEntityDatasetArgs | EloquaObjectDatasetArgs | ExcelDatasetArgs | FileShareDatasetArgs | GoogleAdWordsObjectDatasetArgs | GoogleBigQueryObjectDatasetArgs | GreenplumTableDatasetArgs | HBaseObjectDatasetArgs | HiveObjectDatasetArgs | HttpDatasetArgs | HubspotObjectDatasetArgs | ImpalaObjectDatasetArgs | InformixTableDatasetArgs | JiraObjectDatasetArgs | JsonDatasetArgs | MagentoObjectDatasetArgs | MariaDBTableDatasetArgs | MarketoObjectDatasetArgs | MicrosoftAccessTableDatasetArgs | MongoDbAtlasCollectionDatasetArgs | MongoDbCollectionDatasetArgs | MongoDbV2CollectionDatasetArgs | MySqlTableDatasetArgs | NetezzaTableDatasetArgs | ODataResourceDatasetArgs | OdbcTableDatasetArgs | Office365DatasetArgs | OracleServiceCloudObjectDatasetArgs | OracleTableDatasetArgs | OrcDatasetArgs | ParquetDatasetArgs | PaypalObjectDatasetArgs | PhoenixObjectDatasetArgs | PostgreSqlTableDatasetArgs | PrestoObjectDatasetArgs | QuickBooksObjectDatasetArgs | RelationalTableDatasetArgs | ResponsysObjectDatasetArgs | RestResourceDatasetArgs | SalesforceMarketingCloudObjectDatasetArgs | SalesforceObjectDatasetArgs | SalesforceServiceCloudObjectDatasetArgs | SapBwCubeDatasetArgs | SapCloudForCustomerResourceDatasetArgs | SapEccResourceDatasetArgs | SapHanaTableDatasetArgs | SapOdpResourceDatasetArgs | SapOpenHubTableDatasetArgs | SapTableResourceDatasetArgs | ServiceNowObjectDatasetArgs | SharePointOnlineListResourceDatasetArgs | ShopifyObjectDatasetArgs | SnowflakeDatasetArgs | SparkObjectDatasetArgs | SqlServerTableDatasetArgs | SquareObjectDatasetArgs | SybaseTableDatasetArgs | TeradataTableDatasetArgs | VerticaTableDatasetArgs | WebTableDatasetArgs | XeroObjectDatasetArgs | XmlDatasetArgs | ZohoObjectDatasetArgs

Dataset properties.

resourceGroupName string

The resource group name.

datasetName string

The dataset name.

factory_name str

The factory name.

properties AmazonMWSObjectDatasetArgs | AmazonRdsForOracleTableDatasetArgs | AmazonRdsForSqlServerTableDatasetArgs | AmazonRedshiftTableDatasetArgs | AmazonS3DatasetArgs | AvroDatasetArgs | AzureBlobDatasetArgs | AzureBlobFSDatasetArgs | AzureDataExplorerTableDatasetArgs | AzureDataLakeStoreDatasetArgs | AzureDatabricksDeltaLakeDatasetArgs | AzureMariaDBTableDatasetArgs | AzureMySqlTableDatasetArgs | AzurePostgreSqlTableDatasetArgs | AzureSearchIndexDatasetArgs | AzureSqlDWTableDatasetArgs | AzureSqlMITableDatasetArgs | AzureSqlTableDatasetArgs | AzureTableDatasetArgs | BinaryDatasetArgs | CassandraTableDatasetArgs | CommonDataServiceForAppsEntityDatasetArgs | ConcurObjectDatasetArgs | CosmosDbMongoDbApiCollectionDatasetArgs | CosmosDbSqlApiCollectionDatasetArgs | CouchbaseTableDatasetArgs | CustomDatasetArgs | Db2TableDatasetArgs | DelimitedTextDatasetArgs | DocumentDbCollectionDatasetArgs | DrillTableDatasetArgs | DynamicsAXResourceDatasetArgs | DynamicsCrmEntityDatasetArgs | DynamicsEntityDatasetArgs | EloquaObjectDatasetArgs | ExcelDatasetArgs | FileShareDatasetArgs | GoogleAdWordsObjectDatasetArgs | GoogleBigQueryObjectDatasetArgs | GreenplumTableDatasetArgs | HBaseObjectDatasetArgs | HiveObjectDatasetArgs | HttpDatasetArgs | HubspotObjectDatasetArgs | ImpalaObjectDatasetArgs | InformixTableDatasetArgs | JiraObjectDatasetArgs | JsonDatasetArgs | MagentoObjectDatasetArgs | MariaDBTableDatasetArgs | MarketoObjectDatasetArgs | MicrosoftAccessTableDatasetArgs | MongoDbAtlasCollectionDatasetArgs | MongoDbCollectionDatasetArgs | MongoDbV2CollectionDatasetArgs | MySqlTableDatasetArgs | NetezzaTableDatasetArgs | ODataResourceDatasetArgs | OdbcTableDatasetArgs | Office365DatasetArgs | OracleServiceCloudObjectDatasetArgs | OracleTableDatasetArgs | OrcDatasetArgs | ParquetDatasetArgs | PaypalObjectDatasetArgs | PhoenixObjectDatasetArgs | PostgreSqlTableDatasetArgs | PrestoObjectDatasetArgs | QuickBooksObjectDatasetArgs | RelationalTableDatasetArgs | ResponsysObjectDatasetArgs | RestResourceDatasetArgs | SalesforceMarketingCloudObjectDatasetArgs | SalesforceObjectDatasetArgs | SalesforceServiceCloudObjectDatasetArgs | SapBwCubeDatasetArgs | SapCloudForCustomerResourceDatasetArgs | SapEccResourceDatasetArgs | SapHanaTableDatasetArgs | SapOdpResourceDatasetArgs | SapOpenHubTableDatasetArgs | SapTableResourceDatasetArgs | ServiceNowObjectDatasetArgs | SharePointOnlineListResourceDatasetArgs | ShopifyObjectDatasetArgs | SnowflakeDatasetArgs | SparkObjectDatasetArgs | SqlServerTableDatasetArgs | SquareObjectDatasetArgs | SybaseTableDatasetArgs | TeradataTableDatasetArgs | VerticaTableDatasetArgs | WebTableDatasetArgs | XeroObjectDatasetArgs | XmlDatasetArgs | ZohoObjectDatasetArgs

Dataset properties.

resource_group_name str

The resource group name.

dataset_name str

The dataset name.

factoryName String

The factory name.

properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map

Dataset properties.

resourceGroupName String

The resource group name.

datasetName String

The dataset name.

Outputs

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

Etag string

Etag identifies change in the resource.

Id string

The provider-assigned unique ID for this managed resource.

Name string

The resource name.

Type string

The resource type.

Etag string

Etag identifies change in the resource.

Id string

The provider-assigned unique ID for this managed resource.

Name string

The resource name.

Type string

The resource type.

etag String

Etag identifies change in the resource.

id String

The provider-assigned unique ID for this managed resource.

name String

The resource name.

type String

The resource type.

etag string

Etag identifies change in the resource.

id string

The provider-assigned unique ID for this managed resource.

name string

The resource name.

type string

The resource type.

etag str

Etag identifies change in the resource.

id str

The provider-assigned unique ID for this managed resource.

name str

The resource name.

type str

The resource type.

etag String

Etag identifies change in the resource.

id String

The provider-assigned unique ID for this managed resource.

name String

The resource name.

type String

The resource type.

Supporting Types

Note: There are over 200 nested types for this resource. Only the first 200 types are included in this documentation.

AmazonMWSObjectDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName object

The table name. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName interface{}

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Object

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName any

The table name. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table_name Any

The table name. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Any

The table name. Type: string (or Expression with resultType string).

AmazonMWSObjectDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName object

The table name. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName interface{}

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Object

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName any

The table name. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table_name Any

The table name. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Any

The table name. Type: string (or Expression with resultType string).

AmazonRdsForOracleTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

AmazonRdsForOracleTableDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

AmazonRdsForSqlServerTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

AmazonRdsForSqlServerTableDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

AmazonRedshiftTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The Amazon Redshift table name. Type: string (or Expression with resultType string).

TableName object

This property will be retired. Please consider using schema + table properties instead.

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The Amazon Redshift table name. Type: string (or Expression with resultType string).

TableName interface{}

This property will be retired. Please consider using schema + table properties instead.

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The Amazon Redshift table name. Type: string (or Expression with resultType string).

tableName Object

This property will be retired. Please consider using schema + table properties instead.

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The Amazon Redshift table name. Type: string (or Expression with resultType string).

tableName any

This property will be retired. Please consider using schema + table properties instead.

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The Amazon Redshift table name. Type: string (or Expression with resultType string).

table_name Any

This property will be retired. Please consider using schema + table properties instead.

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The Amazon Redshift table name. Type: string (or Expression with resultType string).

tableName Any

This property will be retired. Please consider using schema + table properties instead.

AmazonRedshiftTableDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The Amazon Redshift table name. Type: string (or Expression with resultType string).

TableName object

This property will be retired. Please consider using schema + table properties instead.

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The Amazon Redshift table name. Type: string (or Expression with resultType string).

TableName interface{}

This property will be retired. Please consider using schema + table properties instead.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The Amazon Redshift table name. Type: string (or Expression with resultType string).

tableName Object

This property will be retired. Please consider using schema + table properties instead.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The Amazon Redshift table name. Type: string (or Expression with resultType string).

tableName any

This property will be retired. Please consider using schema + table properties instead.

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The Amazon Redshift table name. Type: string (or Expression with resultType string).

table_name Any

This property will be retired. Please consider using schema + table properties instead.

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The Amazon Redshift table name. Type: string (or Expression with resultType string).

tableName Any

This property will be retired. Please consider using schema + table properties instead.

AmazonS3CompatibleLocation

BucketName object

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version object

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

BucketName interface{}

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version interface{}

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucketName Object

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Object

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucketName any

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version any

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucket_name Any

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucketName Any

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

AmazonS3CompatibleLocationResponse

BucketName object

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version object

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

BucketName interface{}

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version interface{}

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucketName Object

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Object

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucketName any

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version any

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucket_name Any

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

bucketName Any

Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of Amazon S3 Compatible. Type: string (or Expression with resultType string).

AmazonS3Dataset

BucketName object

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression

The data compression method used for the Amazon S3 object.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat

The format of files.

Key object

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

ModifiedDatetimeEnd object

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart object

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Prefix object

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Version object

The version for the S3 object. Type: string (or Expression with resultType string).

BucketName interface{}

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompression

The data compression method used for the Amazon S3 object.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of files.

Key interface{}

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

ModifiedDatetimeEnd interface{}

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart interface{}

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

Parameters map[string]ParameterSpecification

Parameters for dataset.

Prefix interface{}

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Version interface{}

The version for the S3 object. Type: string (or Expression with resultType string).

bucketName Object

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the Amazon S3 object.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of files.

key Object

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modifiedDatetimeEnd Object

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Object

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters Map<String,ParameterSpecification>

Parameters for dataset.

prefix Object

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version Object

The version for the S3 object. Type: string (or Expression with resultType string).

bucketName any

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the Amazon S3 object.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of files.

key any

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modifiedDatetimeEnd any

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart any

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

prefix any

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version any

The version for the S3 object. Type: string (or Expression with resultType string).

bucket_name Any

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the Amazon S3 object.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of files.

key Any

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modified_datetime_end Any

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modified_datetime_start Any

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

prefix Any

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version Any

The version for the S3 object. Type: string (or Expression with resultType string).

bucketName Any

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the Amazon S3 object.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of files.

key Any

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modifiedDatetimeEnd Any

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Any

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for dataset.

prefix Any

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version Any

The version for the S3 object. Type: string (or Expression with resultType string).

AmazonS3DatasetResponse

BucketName object

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse

The data compression method used for the Amazon S3 object.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse

The format of files.

Key object

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

ModifiedDatetimeEnd object

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart object

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Prefix object

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Version object

The version for the S3 object. Type: string (or Expression with resultType string).

BucketName interface{}

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompressionResponse

The data compression method used for the Amazon S3 object.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of files.

Key interface{}

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

ModifiedDatetimeEnd interface{}

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart interface{}

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Prefix interface{}

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Version interface{}

The version for the S3 object. Type: string (or Expression with resultType string).

bucketName Object

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the Amazon S3 object.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of files.

key Object

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modifiedDatetimeEnd Object

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Object

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

prefix Object

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version Object

The version for the S3 object. Type: string (or Expression with resultType string).

bucketName any

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the Amazon S3 object.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of files.

key any

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modifiedDatetimeEnd any

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart any

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

prefix any

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version any

The version for the S3 object. Type: string (or Expression with resultType string).

bucket_name Any

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the Amazon S3 object.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of files.

key Any

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modified_datetime_end Any

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modified_datetime_start Any

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

prefix Any

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version Any

The version for the S3 object. Type: string (or Expression with resultType string).

bucketName Any

The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the Amazon S3 object.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of files.

key Any

The key of the Amazon S3 object. Type: string (or Expression with resultType string).

modifiedDatetimeEnd Any

The end of S3 object's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Any

The start of S3 object's modified datetime. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for dataset.

prefix Any

The prefix filter for the S3 object name. Type: string (or Expression with resultType string).

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

version Any

The version for the S3 object. Type: string (or Expression with resultType string).

AmazonS3Location

BucketName object

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version object

Specify the version of amazon S3. Type: string (or Expression with resultType string).

BucketName interface{}

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version interface{}

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucketName Object

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Object

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucketName any

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version any

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucket_name Any

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucketName Any

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of amazon S3. Type: string (or Expression with resultType string).

AmazonS3LocationResponse

BucketName object

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version object

Specify the version of amazon S3. Type: string (or Expression with resultType string).

BucketName interface{}

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Version interface{}

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucketName Object

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Object

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucketName any

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version any

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucket_name Any

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of amazon S3. Type: string (or Expression with resultType string).

bucketName Any

Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

version Any

Specify the version of amazon S3. Type: string (or Expression with resultType string).

AvroDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Location Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation

The location of the avro storage.

Annotations List<object>

List of tags that can be used for describing the Dataset.

AvroCompressionCodec object

The data avroCompressionCodec. Type: string (or Expression with resultType string).

AvroCompressionLevel int
Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

LinkedServiceName LinkedServiceReference

Linked service reference.

Location AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | OracleCloudStorageLocation | SftpLocation

The location of the avro storage.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

AvroCompressionCodec interface{}

The data avroCompressionCodec. Type: string (or Expression with resultType string).

AvroCompressionLevel int
Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReference

Linked service reference.

location AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | OracleCloudStorageLocation | SftpLocation

The location of the avro storage.

annotations List<Object>

List of tags that can be used for describing the Dataset.

avroCompressionCodec Object

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avroCompressionLevel Integer
description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReference

Linked service reference.

location AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | OracleCloudStorageLocation | SftpLocation

The location of the avro storage.

annotations any[]

List of tags that can be used for describing the Dataset.

avroCompressionCodec any

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avroCompressionLevel number
description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linked_service_name LinkedServiceReference

Linked service reference.

location AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | OracleCloudStorageLocation | SftpLocation

The location of the avro storage.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

avro_compression_codec Any

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avro_compression_level int
description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName Property Map

Linked service reference.

location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map

The location of the avro storage.

annotations List<Any>

List of tags that can be used for describing the Dataset.

avroCompressionCodec Any

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avroCompressionLevel Number
description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AvroDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Location Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse

The location of the avro storage.

Annotations List<object>

List of tags that can be used for describing the Dataset.

AvroCompressionCodec object

The data avroCompressionCodec. Type: string (or Expression with resultType string).

AvroCompressionLevel int
Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Location AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse

The location of the avro storage.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

AvroCompressionCodec interface{}

The data avroCompressionCodec. Type: string (or Expression with resultType string).

AvroCompressionLevel int
Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

location AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse

The location of the avro storage.

annotations List<Object>

List of tags that can be used for describing the Dataset.

avroCompressionCodec Object

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avroCompressionLevel Integer
description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

location AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse

The location of the avro storage.

annotations any[]

List of tags that can be used for describing the Dataset.

avroCompressionCodec any

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avroCompressionLevel number
description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

location AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse

The location of the avro storage.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

avro_compression_codec Any

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avro_compression_level int
description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName Property Map

Linked service reference.

location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map

The location of the avro storage.

annotations List<Any>

List of tags that can be used for describing the Dataset.

avroCompressionCodec Any

The data avroCompressionCodec. Type: string (or Expression with resultType string).

avroCompressionLevel Number
description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AvroFormat

Deserializer object

Deserializer. Type: string (or Expression with resultType string).

Serializer object

Serializer. Type: string (or Expression with resultType string).

Deserializer interface{}

Deserializer. Type: string (or Expression with resultType string).

Serializer interface{}

Serializer. Type: string (or Expression with resultType string).

deserializer Object

Deserializer. Type: string (or Expression with resultType string).

serializer Object

Serializer. Type: string (or Expression with resultType string).

deserializer any

Deserializer. Type: string (or Expression with resultType string).

serializer any

Serializer. Type: string (or Expression with resultType string).

deserializer Any

Deserializer. Type: string (or Expression with resultType string).

serializer Any

Serializer. Type: string (or Expression with resultType string).

deserializer Any

Deserializer. Type: string (or Expression with resultType string).

serializer Any

Serializer. Type: string (or Expression with resultType string).

AvroFormatResponse

Deserializer object

Deserializer. Type: string (or Expression with resultType string).

Serializer object

Serializer. Type: string (or Expression with resultType string).

Deserializer interface{}

Deserializer. Type: string (or Expression with resultType string).

Serializer interface{}

Serializer. Type: string (or Expression with resultType string).

deserializer Object

Deserializer. Type: string (or Expression with resultType string).

serializer Object

Serializer. Type: string (or Expression with resultType string).

deserializer any

Deserializer. Type: string (or Expression with resultType string).

serializer any

Serializer. Type: string (or Expression with resultType string).

deserializer Any

Deserializer. Type: string (or Expression with resultType string).

serializer Any

Serializer. Type: string (or Expression with resultType string).

deserializer Any

Deserializer. Type: string (or Expression with resultType string).

serializer Any

Serializer. Type: string (or Expression with resultType string).

AzureBlobDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression

The data compression method used for the blob storage.

Description string

Dataset description.

FileName object

The name of the Azure Blob. Type: string (or Expression with resultType string).

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath object

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat

The format of the Azure Blob storage.

ModifiedDatetimeEnd object

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart object

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableRootLocation object

The root of blob path. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompression

The data compression method used for the blob storage.

Description string

Dataset description.

FileName interface{}

The name of the Azure Blob. Type: string (or Expression with resultType string).

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath interface{}

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Blob storage.

ModifiedDatetimeEnd interface{}

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart interface{}

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableRootLocation interface{}

The root of blob path. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the blob storage.

description String

Dataset description.

fileName Object

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Object

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Blob storage.

modifiedDatetimeEnd Object

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Object

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableRootLocation Object

The root of blob path. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the blob storage.

description string

Dataset description.

fileName any

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath any

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Blob storage.

modifiedDatetimeEnd any

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart any

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableRootLocation any

The root of blob path. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the blob storage.

description str

Dataset description.

file_name Any

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folder_path Any

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Blob storage.

modified_datetime_end Any

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modified_datetime_start Any

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table_root_location Any

The root of blob path. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the blob storage.

description String

Dataset description.

fileName Any

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Any

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of the Azure Blob storage.

modifiedDatetimeEnd Any

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Any

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableRootLocation Any

The root of blob path. Type: string (or Expression with resultType string).

AzureBlobDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse

The data compression method used for the blob storage.

Description string

Dataset description.

FileName object

The name of the Azure Blob. Type: string (or Expression with resultType string).

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath object

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse

The format of the Azure Blob storage.

ModifiedDatetimeEnd object

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart object

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableRootLocation object

The root of blob path. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompressionResponse

The data compression method used for the blob storage.

Description string

Dataset description.

FileName interface{}

The name of the Azure Blob. Type: string (or Expression with resultType string).

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath interface{}

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Blob storage.

ModifiedDatetimeEnd interface{}

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

ModifiedDatetimeStart interface{}

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableRootLocation interface{}

The root of blob path. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the blob storage.

description String

Dataset description.

fileName Object

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Object

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Blob storage.

modifiedDatetimeEnd Object

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Object

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableRootLocation Object

The root of blob path. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the blob storage.

description string

Dataset description.

fileName any

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath any

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Blob storage.

modifiedDatetimeEnd any

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart any

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableRootLocation any

The root of blob path. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the blob storage.

description str

Dataset description.

file_name Any

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folder_path Any

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Blob storage.

modified_datetime_end Any

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modified_datetime_start Any

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table_root_location Any

The root of blob path. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the blob storage.

description String

Dataset description.

fileName Any

The name of the Azure Blob. Type: string (or Expression with resultType string).

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Any

The path of the Azure Blob storage. Type: string (or Expression with resultType string).

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of the Azure Blob storage.

modifiedDatetimeEnd Any

The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

modifiedDatetimeStart Any

The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableRootLocation Any

The root of blob path. Type: string (or Expression with resultType string).

AzureBlobFSDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression

The data compression method used for the blob storage.

Description string

Dataset description.

FileName object

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath object

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat

The format of the Azure Data Lake Storage Gen2 storage.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompression

The data compression method used for the blob storage.

Description string

Dataset description.

FileName interface{}

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath interface{}

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Data Lake Storage Gen2 storage.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the blob storage.

description String

Dataset description.

fileName Object

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Object

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Data Lake Storage Gen2 storage.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the blob storage.

description string

Dataset description.

fileName any

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath any

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Data Lake Storage Gen2 storage.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the blob storage.

description str

Dataset description.

file_name Any

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folder_path Any

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Azure Data Lake Storage Gen2 storage.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the blob storage.

description String

Dataset description.

fileName Any

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Any

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of the Azure Data Lake Storage Gen2 storage.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureBlobFSDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse

The data compression method used for the blob storage.

Description string

Dataset description.

FileName object

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath object

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse

The format of the Azure Data Lake Storage Gen2 storage.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompressionResponse

The data compression method used for the blob storage.

Description string

Dataset description.

FileName interface{}

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath interface{}

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Data Lake Storage Gen2 storage.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the blob storage.

description String

Dataset description.

fileName Object

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Object

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Data Lake Storage Gen2 storage.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the blob storage.

description string

Dataset description.

fileName any

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath any

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Data Lake Storage Gen2 storage.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the blob storage.

description str

Dataset description.

file_name Any

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folder_path Any

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Azure Data Lake Storage Gen2 storage.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the blob storage.

description String

Dataset description.

fileName Any

The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Any

The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of the Azure Data Lake Storage Gen2 storage.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureBlobFSLocation

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FileSystem object

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FileSystem interface{}

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

fileSystem Object

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

fileSystem any

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

file_system Any

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

fileSystem Any

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureBlobFSLocationResponse

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FileSystem object

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FileSystem interface{}

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

fileSystem Object

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

fileSystem any

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

file_system Any

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

fileSystem Any

Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureBlobStorageLocation

Container object

Specify the container of azure blob. Type: string (or Expression with resultType string).

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Container interface{}

Specify the container of azure blob. Type: string (or Expression with resultType string).

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container Object

Specify the container of azure blob. Type: string (or Expression with resultType string).

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container any

Specify the container of azure blob. Type: string (or Expression with resultType string).

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container Any

Specify the container of azure blob. Type: string (or Expression with resultType string).

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container Any

Specify the container of azure blob. Type: string (or Expression with resultType string).

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureBlobStorageLocationResponse

Container object

Specify the container of azure blob. Type: string (or Expression with resultType string).

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

Container interface{}

Specify the container of azure blob. Type: string (or Expression with resultType string).

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container Object

Specify the container of azure blob. Type: string (or Expression with resultType string).

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container any

Specify the container of azure blob. Type: string (or Expression with resultType string).

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container Any

Specify the container of azure blob. Type: string (or Expression with resultType string).

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

container Any

Specify the container of azure blob. Type: string (or Expression with resultType string).

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureDataExplorerTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

AzureDataExplorerTableDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

AzureDataLakeStoreDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression

The data compression method used for the item(s) in the Azure Data Lake Store.

Description string

Dataset description.

FileName object

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath object

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat

The format of the Data Lake Store.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompression

The data compression method used for the item(s) in the Azure Data Lake Store.

Description string

Dataset description.

FileName interface{}

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath interface{}

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Data Lake Store.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the item(s) in the Azure Data Lake Store.

description String

Dataset description.

fileName Object

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Object

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Data Lake Store.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the item(s) in the Azure Data Lake Store.

description string

Dataset description.

fileName any

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath any

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Data Lake Store.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompression

The data compression method used for the item(s) in the Azure Data Lake Store.

description str

Dataset description.

file_name Any

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folder_path Any

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat

The format of the Data Lake Store.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the item(s) in the Azure Data Lake Store.

description String

Dataset description.

fileName Any

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Any

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of the Data Lake Store.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureDataLakeStoreDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse

The data compression method used for the item(s) in the Azure Data Lake Store.

Description string

Dataset description.

FileName object

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath object

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse

The format of the Data Lake Store.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Compression DatasetCompressionResponse

The data compression method used for the item(s) in the Azure Data Lake Store.

Description string

Dataset description.

FileName interface{}

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

FolderPath interface{}

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Data Lake Store.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the item(s) in the Azure Data Lake Store.

description String

Dataset description.

fileName Object

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Object

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Data Lake Store.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the item(s) in the Azure Data Lake Store.

description string

Dataset description.

fileName any

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath any

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Data Lake Store.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

compression DatasetCompressionResponse

The data compression method used for the item(s) in the Azure Data Lake Store.

description str

Dataset description.

file_name Any

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folder_path Any

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse

The format of the Data Lake Store.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

compression Property Map

The data compression method used for the item(s) in the Azure Data Lake Store.

description String

Dataset description.

fileName Any

The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

folderPath Any

Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).

format Property Map | Property Map | Property Map | Property Map | Property Map

The format of the Data Lake Store.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureDataLakeStoreLocation

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureDataLakeStoreLocationResponse

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureDatabricksDeltaLakeDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Database object

The database name of delta table. Type: string (or Expression with resultType string).

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The name of delta table. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Database interface{}

The database name of delta table. Type: string (or Expression with resultType string).

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The name of delta table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

database Object

The database name of delta table. Type: string (or Expression with resultType string).

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The name of delta table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

database any

The database name of delta table. Type: string (or Expression with resultType string).

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The name of delta table. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

database Any

The database name of delta table. Type: string (or Expression with resultType string).

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of delta table. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

database Any

The database name of delta table. Type: string (or Expression with resultType string).

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of delta table. Type: string (or Expression with resultType string).

AzureDatabricksDeltaLakeDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Database object

The database name of delta table. Type: string (or Expression with resultType string).

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The name of delta table. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Database interface{}

The database name of delta table. Type: string (or Expression with resultType string).

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The name of delta table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

database Object

The database name of delta table. Type: string (or Expression with resultType string).

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The name of delta table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

database any

The database name of delta table. Type: string (or Expression with resultType string).

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The name of delta table. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

database Any

The database name of delta table. Type: string (or Expression with resultType string).

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of delta table. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

database Any

The database name of delta table. Type: string (or Expression with resultType string).

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of delta table. Type: string (or Expression with resultType string).

AzureFileStorageLocation

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureFileStorageLocationResponse

FileName object

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

FileName interface{}

Specify the file name of dataset. Type: string (or Expression with resultType string).

FolderPath interface{}

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Object

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Object

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

file_name Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folder_path Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

fileName Any

Specify the file name of dataset. Type: string (or Expression with resultType string).

folderPath Any

Specify the folder path of dataset. Type: string (or Expression with resultType string)

AzureMariaDBTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName object

The table name. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName interface{}

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Object

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName any

The table name. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table_name Any

The table name. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Any

The table name. Type: string (or Expression with resultType string).

AzureMariaDBTableDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName object

The table name. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

TableName interface{}

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Object

The table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName any

The table name. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table_name Any

The table name. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

tableName Any

The table name. Type: string (or Expression with resultType string).

AzureMySqlTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

TableName object

The Azure MySQL database table name. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

TableName interface{}

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

tableName Object

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

tableName any

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

table_name Any

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

tableName Any

The Azure MySQL database table name. Type: string (or Expression with resultType string).

AzureMySqlTableDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

TableName object

The Azure MySQL database table name. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

TableName interface{}

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

tableName Object

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

tableName any

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

table_name Any

The Azure MySQL database table name. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The name of Azure MySQL database table. Type: string (or Expression with resultType string).

tableName Any

The Azure MySQL database table name. Type: string (or Expression with resultType string).

AzurePostgreSqlTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

TableName object

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

TableName interface{}

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

tableName Object

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

tableName any

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

table_name Any

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

tableName Any

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

AzurePostgreSqlTableDatasetResponse

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table object

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

TableName object

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

Table interface{}

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

TableName interface{}

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Object

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

tableName Object

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table any

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

tableName any

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

table_name Any

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

table Any

The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).

tableName Any

The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

AzureSearchIndexDataset

IndexName object

The name of the Azure Search Index. Type: string (or Expression with resultType string).

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

IndexName interface{}

The name of the Azure Search Index. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReference

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecification

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

indexName Object

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecification>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

indexName any

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReference

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecification}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

index_name Any

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReference

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecification]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

indexName Any

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureSearchIndexDatasetResponse

IndexName object

The name of the Azure Search Index. Type: string (or Expression with resultType string).

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

IndexName interface{}

The name of the Azure Search Index. Type: string (or Expression with resultType string).

LinkedServiceName LinkedServiceReferenceResponse

Linked service reference.

Annotations []interface{}

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters map[string]ParameterSpecificationResponse

Parameters for dataset.

Schema interface{}

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

Structure interface{}

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

indexName Object

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations List<Object>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<String,ParameterSpecificationResponse>

Parameters for dataset.

schema Object

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Object

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

indexName any

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linkedServiceName LinkedServiceReferenceResponse

Linked service reference.

annotations any[]

List of tags that can be used for describing the Dataset.

description string

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters {[key: string]: ParameterSpecificationResponse}

Parameters for dataset.

schema any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

index_name Any

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linked_service_name LinkedServiceReferenceResponse

Linked service reference.

annotations Sequence[Any]

List of tags that can be used for describing the Dataset.

description str

Dataset description.

folder DatasetResponseFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Mapping[str, ParameterSpecificationResponse]

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

indexName Any

The name of the Azure Search Index. Type: string (or Expression with resultType string).

linkedServiceName Property Map

Linked service reference.

annotations List<Any>

List of tags that can be used for describing the Dataset.

description String

Dataset description.

folder Property Map

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

parameters Map<Property Map>

Parameters for dataset.

schema Any

Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.

structure Any

Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureSqlDWTableDataset

LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference

Linked service reference.

Annotations List<object>

List of tags that can be used for describing the Dataset.

Description string

Dataset description.

Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder

The folder that this Dataset is in. If not specified, Dataset will appear at the root level.

Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>

Parameters for dataset.

Schema object

Columns that define the physical type schema of the datase