azure-native.datafactory.Dataset
Explore with Pulumi AI
Dataset resource type.
Uses Azure REST API version 2018-06-01. In version 1.x of the Azure Native provider, it used 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 = new Dictionary<string, object?>
            {
                ["type"] = "Expression",
                ["value"] = "@dataset().MyFileName",
            },
            FolderPath = new Dictionary<string, object?>
            {
                ["type"] = "Expression",
                ["value"] = "@dataset().MyFolderPath",
            },
            Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
            {
                Type = "TextFormat",
            },
            LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
            {
                ReferenceName = "exampleLinkedService",
                Type = AzureNative.DataFactory.Type.LinkedServiceReference,
            },
            Parameters = 
            {
                { "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = AzureNative.DataFactory.ParameterType.String,
                } },
                { "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = AzureNative.DataFactory.ParameterType.String,
                } },
            },
            Type = "AzureBlob",
        },
        ResourceGroupName = "exampleResourceGroup",
    });
});
package main
import (
	datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datafactory.NewDataset(ctx, "dataset", &datafactory.DatasetArgs{
			DatasetName: pulumi.String("exampleDataset"),
			FactoryName: pulumi.String("exampleFactoryName"),
			Properties: &datafactory.AzureBlobDatasetArgs{
				FileName: pulumi.Any(map[string]interface{}{
					"type":  "Expression",
					"value": "@dataset().MyFileName",
				}),
				FolderPath: pulumi.Any(map[string]interface{}{
					"type":  "Expression",
					"value": "@dataset().MyFolderPath",
				}),
				Format: datafactory.TextFormat{
					Type: "TextFormat",
				},
				LinkedServiceName: &datafactory.LinkedServiceReferenceArgs{
					ReferenceName: pulumi.String("exampleLinkedService"),
					Type:          pulumi.String(datafactory.TypeLinkedServiceReference),
				},
				Parameters: datafactory.ParameterSpecificationMap{
					"MyFileName": &datafactory.ParameterSpecificationArgs{
						Type: pulumi.String(datafactory.ParameterTypeString),
					},
					"MyFolderPath": &datafactory.ParameterSpecificationArgs{
						Type: pulumi.String(datafactory.ParameterTypeString),
					},
				},
				Type: pulumi.String("AzureBlob"),
			},
			ResourceGroupName: pulumi.String("exampleResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.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(AzureBlobDatasetArgs.builder()
                .fileName(Map.ofEntries(
                    Map.entry("type", "Expression"),
                    Map.entry("value", "@dataset().MyFileName")
                ))
                .folderPath(Map.ofEntries(
                    Map.entry("type", "Expression"),
                    Map.entry("value", "@dataset().MyFolderPath")
                ))
                .format(TextFormatArgs.builder()
                    .type("TextFormat")
                    .build())
                .linkedServiceName(LinkedServiceReferenceArgs.builder()
                    .referenceName("exampleLinkedService")
                    .type("LinkedServiceReference")
                    .build())
                .parameters(Map.ofEntries(
                    Map.entry("MyFileName", Map.of("type", "String")),
                    Map.entry("MyFolderPath", Map.of("type", "String"))
                ))
                .type("AzureBlob")
                .build())
            .resourceGroupName("exampleResourceGroup")
            .build());
    }
}
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: azure_native.datafactory.Type.LinkedServiceReference,
        },
        parameters: {
            MyFileName: {
                type: azure_native.datafactory.ParameterType.String,
            },
            MyFolderPath: {
                type: azure_native.datafactory.ParameterType.String,
            },
        },
        type: "AzureBlob",
    },
    resourceGroupName: "exampleResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
    dataset_name="exampleDataset",
    factory_name="exampleFactoryName",
    properties={
        "file_name": {
            "type": "Expression",
            "value": "@dataset().MyFileName",
        },
        "folder_path": {
            "type": "Expression",
            "value": "@dataset().MyFolderPath",
        },
        "format": {
            "type": "TextFormat",
        },
        "linked_service_name": {
            "reference_name": "exampleLinkedService",
            "type": azure_native.datafactory.Type.LINKED_SERVICE_REFERENCE,
        },
        "parameters": {
            "MyFileName": {
                "type": azure_native.datafactory.ParameterType.STRING,
            },
            "MyFolderPath": {
                "type": azure_native.datafactory.ParameterType.STRING,
            },
        },
        "type": "AzureBlob",
    },
    resource_group_name="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 = new Dictionary<string, object?>
            {
                ["type"] = "Expression",
                ["value"] = "@dataset().MyFileName",
            },
            FolderPath = new Dictionary<string, object?>
            {
                ["type"] = "Expression",
                ["value"] = "@dataset().MyFolderPath",
            },
            Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
            {
                Type = "TextFormat",
            },
            LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
            {
                ReferenceName = "exampleLinkedService",
                Type = AzureNative.DataFactory.Type.LinkedServiceReference,
            },
            Parameters = 
            {
                { "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = AzureNative.DataFactory.ParameterType.String,
                } },
                { "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
                {
                    Type = AzureNative.DataFactory.ParameterType.String,
                } },
            },
            Type = "AzureBlob",
        },
        ResourceGroupName = "exampleResourceGroup",
    });
});
package main
import (
	datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datafactory.NewDataset(ctx, "dataset", &datafactory.DatasetArgs{
			DatasetName: pulumi.String("exampleDataset"),
			FactoryName: pulumi.String("exampleFactoryName"),
			Properties: &datafactory.AzureBlobDatasetArgs{
				Description: pulumi.String("Example description"),
				FileName: pulumi.Any(map[string]interface{}{
					"type":  "Expression",
					"value": "@dataset().MyFileName",
				}),
				FolderPath: pulumi.Any(map[string]interface{}{
					"type":  "Expression",
					"value": "@dataset().MyFolderPath",
				}),
				Format: datafactory.TextFormat{
					Type: "TextFormat",
				},
				LinkedServiceName: &datafactory.LinkedServiceReferenceArgs{
					ReferenceName: pulumi.String("exampleLinkedService"),
					Type:          pulumi.String(datafactory.TypeLinkedServiceReference),
				},
				Parameters: datafactory.ParameterSpecificationMap{
					"MyFileName": &datafactory.ParameterSpecificationArgs{
						Type: pulumi.String(datafactory.ParameterTypeString),
					},
					"MyFolderPath": &datafactory.ParameterSpecificationArgs{
						Type: pulumi.String(datafactory.ParameterTypeString),
					},
				},
				Type: pulumi.String("AzureBlob"),
			},
			ResourceGroupName: pulumi.String("exampleResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.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(AzureBlobDatasetArgs.builder()
                .description("Example description")
                .fileName(Map.ofEntries(
                    Map.entry("type", "Expression"),
                    Map.entry("value", "@dataset().MyFileName")
                ))
                .folderPath(Map.ofEntries(
                    Map.entry("type", "Expression"),
                    Map.entry("value", "@dataset().MyFolderPath")
                ))
                .format(TextFormatArgs.builder()
                    .type("TextFormat")
                    .build())
                .linkedServiceName(LinkedServiceReferenceArgs.builder()
                    .referenceName("exampleLinkedService")
                    .type("LinkedServiceReference")
                    .build())
                .parameters(Map.ofEntries(
                    Map.entry("MyFileName", Map.of("type", "String")),
                    Map.entry("MyFolderPath", Map.of("type", "String"))
                ))
                .type("AzureBlob")
                .build())
            .resourceGroupName("exampleResourceGroup")
            .build());
    }
}
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: azure_native.datafactory.Type.LinkedServiceReference,
        },
        parameters: {
            MyFileName: {
                type: azure_native.datafactory.ParameterType.String,
            },
            MyFolderPath: {
                type: azure_native.datafactory.ParameterType.String,
            },
        },
        type: "AzureBlob",
    },
    resourceGroupName: "exampleResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
    dataset_name="exampleDataset",
    factory_name="exampleFactoryName",
    properties={
        "description": "Example description",
        "file_name": {
            "type": "Expression",
            "value": "@dataset().MyFileName",
        },
        "folder_path": {
            "type": "Expression",
            "value": "@dataset().MyFolderPath",
        },
        "format": {
            "type": "TextFormat",
        },
        "linked_service_name": {
            "reference_name": "exampleLinkedService",
            "type": azure_native.datafactory.Type.LINKED_SERVICE_REFERENCE,
        },
        "parameters": {
            "MyFileName": {
                "type": azure_native.datafactory.ParameterType.STRING,
            },
            "MyFolderPath": {
                "type": azure_native.datafactory.ParameterType.STRING,
            },
        },
        "type": "AzureBlob",
    },
    resource_group_name="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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Dataset(name: string, args: DatasetArgs, opts?: CustomResourceOptions);@overload
def Dataset(resource_name: str,
            args: DatasetArgs,
            opts: Optional[ResourceOptions] = None)
@overload
def Dataset(resource_name: str,
            opts: Optional[ResourceOptions] = 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, GoogleBigQueryV2ObjectDatasetArgs, GreenplumTableDatasetArgs, HBaseObjectDatasetArgs, HiveObjectDatasetArgs, HttpDatasetArgs, HubspotObjectDatasetArgs, IcebergDatasetArgs, ImpalaObjectDatasetArgs, InformixTableDatasetArgs, JiraObjectDatasetArgs, JsonDatasetArgs, LakeHouseTableDatasetArgs, MagentoObjectDatasetArgs, MariaDBTableDatasetArgs, MarketoObjectDatasetArgs, MicrosoftAccessTableDatasetArgs, MongoDbAtlasCollectionDatasetArgs, MongoDbCollectionDatasetArgs, MongoDbV2CollectionDatasetArgs, MySqlTableDatasetArgs, NetezzaTableDatasetArgs, ODataResourceDatasetArgs, OdbcTableDatasetArgs, Office365DatasetArgs, OracleServiceCloudObjectDatasetArgs, OracleTableDatasetArgs, OrcDatasetArgs, ParquetDatasetArgs, PaypalObjectDatasetArgs, PhoenixObjectDatasetArgs, PostgreSqlTableDatasetArgs, PostgreSqlV2TableDatasetArgs, PrestoObjectDatasetArgs, QuickBooksObjectDatasetArgs, RelationalTableDatasetArgs, ResponsysObjectDatasetArgs, RestResourceDatasetArgs, SalesforceMarketingCloudObjectDatasetArgs, SalesforceObjectDatasetArgs, SalesforceServiceCloudObjectDatasetArgs, SalesforceServiceCloudV2ObjectDatasetArgs, SalesforceV2ObjectDatasetArgs, SapBwCubeDatasetArgs, SapCloudForCustomerResourceDatasetArgs, SapEccResourceDatasetArgs, SapHanaTableDatasetArgs, SapOdpResourceDatasetArgs, SapOpenHubTableDatasetArgs, SapTableResourceDatasetArgs, ServiceNowObjectDatasetArgs, ServiceNowV2ObjectDatasetArgs, SharePointOnlineListResourceDatasetArgs, ShopifyObjectDatasetArgs, SnowflakeDatasetArgs, SnowflakeV2DatasetArgs, SparkObjectDatasetArgs, SqlServerTableDatasetArgs, SquareObjectDatasetArgs, SybaseTableDatasetArgs, TeradataTableDatasetArgs, VerticaTableDatasetArgs, WarehouseTableDatasetArgs, WebTableDatasetArgs, XeroObjectDatasetArgs, XmlDatasetArgs, ZohoObjectDatasetArgs]] = None,
            resource_group_name: Optional[str] = None,
            dataset_name: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var datasetResource = new AzureNative.DataFactory.Dataset("datasetResource", new()
{
    FactoryName = "string",
    Properties = new AzureNative.DataFactory.Inputs.AmazonMWSObjectDatasetArgs
    {
        LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
        {
            ReferenceName = "string",
            Type = "string",
            Parameters = 
            {
                { "string", "any" },
            },
        },
        Type = "AmazonMWSObject",
        Annotations = new[]
        {
            "any",
        },
        Description = "string",
        Folder = new AzureNative.DataFactory.Inputs.DatasetFolderArgs
        {
            Name = "string",
        },
        Parameters = 
        {
            { "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
            {
                Type = "string",
                DefaultValue = "any",
            } },
        },
        Schema = "any",
        Structure = "any",
        TableName = "any",
    },
    ResourceGroupName = "string",
    DatasetName = "string",
});
example, err := datafactory.NewDataset(ctx, "datasetResource", &datafactory.DatasetArgs{
	FactoryName: pulumi.String("string"),
	Properties: &datafactory.AmazonMWSObjectDatasetArgs{
		LinkedServiceName: &datafactory.LinkedServiceReferenceArgs{
			ReferenceName: pulumi.String("string"),
			Type:          pulumi.String("string"),
			Parameters: pulumi.Map{
				"string": pulumi.Any("any"),
			},
		},
		Type: pulumi.String("AmazonMWSObject"),
		Annotations: pulumi.Array{
			pulumi.Any("any"),
		},
		Description: pulumi.String("string"),
		Folder: &datafactory.DatasetFolderArgs{
			Name: pulumi.String("string"),
		},
		Parameters: datafactory.ParameterSpecificationMap{
			"string": &datafactory.ParameterSpecificationArgs{
				Type:         pulumi.String("string"),
				DefaultValue: pulumi.Any("any"),
			},
		},
		Schema:    pulumi.Any("any"),
		Structure: pulumi.Any("any"),
		TableName: pulumi.Any("any"),
	},
	ResourceGroupName: pulumi.String("string"),
	DatasetName:       pulumi.String("string"),
})
var datasetResource = new Dataset("datasetResource", DatasetArgs.builder()
    .factoryName("string")
    .properties(AmazonMWSObjectDatasetArgs.builder()
        .linkedServiceName(LinkedServiceReferenceArgs.builder()
            .referenceName("string")
            .type("string")
            .parameters(Map.of("string", "any"))
            .build())
        .type("AmazonMWSObject")
        .annotations("any")
        .description("string")
        .folder(DatasetFolderArgs.builder()
            .name("string")
            .build())
        .parameters(Map.of("string", Map.ofEntries(
            Map.entry("type", "string"),
            Map.entry("defaultValue", "any")
        )))
        .schema("any")
        .structure("any")
        .tableName("any")
        .build())
    .resourceGroupName("string")
    .datasetName("string")
    .build());
dataset_resource = azure_native.datafactory.Dataset("datasetResource",
    factory_name="string",
    properties={
        "linked_service_name": {
            "reference_name": "string",
            "type": "string",
            "parameters": {
                "string": "any",
            },
        },
        "type": "AmazonMWSObject",
        "annotations": ["any"],
        "description": "string",
        "folder": {
            "name": "string",
        },
        "parameters": {
            "string": {
                "type": "string",
                "default_value": "any",
            },
        },
        "schema": "any",
        "structure": "any",
        "table_name": "any",
    },
    resource_group_name="string",
    dataset_name="string")
const datasetResource = new azure_native.datafactory.Dataset("datasetResource", {
    factoryName: "string",
    properties: {
        linkedServiceName: {
            referenceName: "string",
            type: "string",
            parameters: {
                string: "any",
            },
        },
        type: "AmazonMWSObject",
        annotations: ["any"],
        description: "string",
        folder: {
            name: "string",
        },
        parameters: {
            string: {
                type: "string",
                defaultValue: "any",
            },
        },
        schema: "any",
        structure: "any",
        tableName: "any",
    },
    resourceGroupName: "string",
    datasetName: "string",
});
type: azure-native:datafactory:Dataset
properties:
    datasetName: string
    factoryName: string
    properties:
        annotations:
            - any
        description: string
        folder:
            name: string
        linkedServiceName:
            parameters:
                string: any
            referenceName: string
            type: string
        parameters:
            string:
                defaultValue: any
                type: string
        schema: any
        structure: any
        tableName: any
        type: AmazonMWSObject
    resourceGroupName: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Dataset resource accepts the following input properties:
- FactoryName string
- The factory name.
- Properties
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon MWSObject Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Oracle Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Sql Server Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon Redshift Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Dataset Azure | Pulumi.Native. Data Factory. Inputs. Avro Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSDataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Explorer Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Delta Lake Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Maria DBTable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure My Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Postgre Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Search Index Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql DWTable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql MITable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Binary Dataset Azure | Pulumi.Native. Data Factory. Inputs. Cassandra Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Common Data Service For Apps Entity Dataset Azure | Pulumi.Native. Data Factory. Inputs. Concur Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Mongo Db Api Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Sql Api Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Couchbase Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Custom Dataset Azure | Pulumi.Native. Data Factory. Inputs. Db2Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Delimited Text Dataset Azure | Pulumi.Native. Data Factory. Inputs. Document Db Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Drill Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Dynamics AXResource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Crm Entity Dataset Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Entity Dataset Azure | Pulumi.Native. Data Factory. Inputs. Eloqua Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Excel Dataset Azure | Pulumi.Native. Data Factory. Inputs. File Share Dataset Azure | Pulumi.Native. Data Factory. Inputs. Google Ad Words Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Greenplum Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. HBase Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Hive Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Http Dataset Azure | Pulumi.Native. Data Factory. Inputs. Hubspot Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Iceberg Dataset Azure | Pulumi.Native. Data Factory. Inputs. Impala Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Informix Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Jira Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Json Dataset Azure | Pulumi.Native. Data Factory. Inputs. Lake House Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Magento Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Maria DBTable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Marketo Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Microsoft Access Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Atlas Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db V2Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. My Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Netezza Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. OData Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Odbc Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Office365Dataset Azure | Pulumi.Native. Data Factory. Inputs. Oracle Service Cloud Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Oracle Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Orc Dataset Azure | Pulumi.Native. Data Factory. Inputs. Parquet Dataset Azure | Pulumi.Native. Data Factory. Inputs. Paypal Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Phoenix Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql V2Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Presto Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Quick Books Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Relational Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Responsys Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Rest Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Marketing Cloud Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Bw Cube Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Cloud For Customer Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Ecc Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Hana Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Odp Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Open Hub Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Table Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Service Now Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Service Now V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Share Point Online List Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Shopify Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Snowflake Dataset Azure | Pulumi.Native. Data Factory. Inputs. Snowflake V2Dataset Azure | Pulumi.Native. Data Factory. Inputs. Spark Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sql Server Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Square Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sybase Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Teradata Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Vertica Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Warehouse Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Web Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Xero Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Xml Dataset Azure Native. Data Factory. Inputs. Zoho Object Dataset 
- Dataset properties.
- ResourceGroup stringName 
- The resource group name.
- DatasetName string
- The dataset name.
- FactoryName string
- The factory name.
- Properties
AmazonMWSObject | AmazonDataset Args Rds | AmazonFor Oracle Table Dataset Args Rds | AmazonFor Sql Server Table Dataset Args Redshift | AmazonTable Dataset Args S3Dataset | AvroArgs Dataset | AzureArgs Blob | AzureDataset Args Blob | AzureFSDataset Args Data | AzureExplorer Table Dataset Args Data | AzureLake Store Dataset Args Databricks | AzureDelta Lake Dataset Args Maria | AzureDBTable Dataset Args My | AzureSql Table Dataset Args Postgre | AzureSql Table Dataset Args Search | AzureIndex Dataset Args Sql | AzureDWTable Dataset Args Sql | AzureMITable Dataset Args Sql | AzureTable Dataset Args Table | BinaryDataset Args Dataset | CassandraArgs Table | CommonDataset Args Data | ConcurService For Apps Entity Dataset Args Object | CosmosDataset Args Db | CosmosMongo Db Api Collection Dataset Args Db | CouchbaseSql Api Collection Dataset Args Table | CustomDataset Args Dataset | Db2TableArgs Dataset | DelimitedArgs Text | DocumentDataset Args Db | DrillCollection Dataset Args Table | DynamicsDataset Args AXResource | DynamicsDataset Args Crm | DynamicsEntity Dataset Args Entity | EloquaDataset Args Object | ExcelDataset Args Dataset | FileArgs Share | GoogleDataset Args Ad | GoogleWords Object Dataset Args Big | GoogleQuery Object Dataset Args Big | GreenplumQuery V2Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | IcebergDataset Args Dataset | ImpalaArgs Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | LakeArgs House | MagentoTable Dataset Args Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PostgreTable Dataset Args Sql | PrestoV2Table Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SalesforceCloud Object Dataset Args Service | SalesforceCloud V2Object Dataset Args V2Object | SapDataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ServiceObject Dataset Args Now | ShareV2Object Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SnowflakeArgs V2Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WarehouseDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args 
- Dataset properties.
- ResourceGroup stringName 
- The resource group name.
- DatasetName string
- The dataset name.
- factoryName String
- The factory name.
- properties
AmazonMWSObject | AmazonDataset Rds | AmazonFor Oracle Table Dataset Rds | AmazonFor Sql Server Table Dataset Redshift | AmazonTable Dataset S3Dataset | AvroDataset | AzureBlob | AzureDataset Blob | AzureFSDataset Data | AzureExplorer Table Dataset Data | AzureLake Store Dataset Databricks | AzureDelta Lake Dataset Maria | AzureDBTable Dataset My | AzureSql Table Dataset Postgre | AzureSql Table Dataset Search | AzureIndex Dataset Sql | AzureDWTable Dataset Sql | AzureMITable Dataset Sql | AzureTable Dataset Table | BinaryDataset Dataset | CassandraTable | CommonDataset Data | ConcurService For Apps Entity Dataset Object | CosmosDataset Db | CosmosMongo Db Api Collection Dataset Db | CouchbaseSql Api Collection Dataset Table | CustomDataset Dataset | Db2TableDataset | DelimitedText | DocumentDataset Db | DrillCollection Dataset Table | DynamicsDataset AXResource | DynamicsDataset Crm | DynamicsEntity Dataset Entity | EloquaDataset Object | ExcelDataset Dataset | FileShare | GoogleDataset Ad | GoogleWords Object Dataset Big | GoogleQuery Object Dataset Big | GreenplumQuery V2Object Dataset Table | HBaseDataset Object | HiveDataset Object | HttpDataset Dataset | HubspotObject | IcebergDataset Dataset | ImpalaObject | InformixDataset Table | JiraDataset Object | JsonDataset Dataset | LakeHouse | MagentoTable Dataset Object | MariaDataset DBTable | MarketoDataset Object | MicrosoftDataset Access | MongoTable Dataset Db | MongoAtlas Collection Dataset Db | MongoCollection Dataset Db | MyV2Collection Dataset Sql | NetezzaTable Dataset Table | ODataDataset Resource | OdbcDataset Table | Office365Dataset | OracleDataset Service | OracleCloud Object Dataset Table | OrcDataset Dataset | ParquetDataset | PaypalObject | PhoenixDataset Object | PostgreDataset Sql | PostgreTable Dataset Sql | PrestoV2Table Dataset Object | QuickDataset Books | RelationalObject Dataset Table | ResponsysDataset Object | RestDataset Resource | SalesforceDataset Marketing | SalesforceCloud Object Dataset Object | SalesforceDataset Service | SalesforceCloud Object Dataset Service | SalesforceCloud V2Object Dataset V2Object | SapDataset Bw | SapCube Dataset Cloud | SapFor Customer Resource Dataset Ecc | SapResource Dataset Hana | SapTable Dataset Odp | SapResource Dataset Open | SapHub Table Dataset Table | ServiceResource Dataset Now | ServiceObject Dataset Now | ShareV2Object Dataset Point | ShopifyOnline List Resource Dataset Object | SnowflakeDataset Dataset | SnowflakeV2Dataset | SparkObject | SqlDataset Server | SquareTable Dataset Object | SybaseDataset Table | TeradataDataset Table | VerticaDataset Table | WarehouseDataset Table | WebDataset Table | XeroDataset Object | XmlDataset Dataset | ZohoObject Dataset 
- Dataset properties.
- resourceGroup StringName 
- The resource group name.
- datasetName String
- The dataset name.
- factoryName string
- The factory name.
- properties
AmazonMWSObject | AmazonDataset Rds | AmazonFor Oracle Table Dataset Rds | AmazonFor Sql Server Table Dataset Redshift | AmazonTable Dataset S3Dataset | AvroDataset | AzureBlob | AzureDataset Blob | AzureFSDataset Data | AzureExplorer Table Dataset Data | AzureLake Store Dataset Databricks | AzureDelta Lake Dataset Maria | AzureDBTable Dataset My | AzureSql Table Dataset Postgre | AzureSql Table Dataset Search | AzureIndex Dataset Sql | AzureDWTable Dataset Sql | AzureMITable Dataset Sql | AzureTable Dataset Table | BinaryDataset Dataset | CassandraTable | CommonDataset Data | ConcurService For Apps Entity Dataset Object | CosmosDataset Db | CosmosMongo Db Api Collection Dataset Db | CouchbaseSql Api Collection Dataset Table | CustomDataset Dataset | Db2TableDataset | DelimitedText | DocumentDataset Db | DrillCollection Dataset Table | DynamicsDataset AXResource | DynamicsDataset Crm | DynamicsEntity Dataset Entity | EloquaDataset Object | ExcelDataset Dataset | FileShare | GoogleDataset Ad | GoogleWords Object Dataset Big | GoogleQuery Object Dataset Big | GreenplumQuery V2Object Dataset Table | HBaseDataset Object | HiveDataset Object | HttpDataset Dataset | HubspotObject | IcebergDataset Dataset | ImpalaObject | InformixDataset Table | JiraDataset Object | JsonDataset Dataset | LakeHouse | MagentoTable Dataset Object | MariaDataset DBTable | MarketoDataset Object | MicrosoftDataset Access | MongoTable Dataset Db | MongoAtlas Collection Dataset Db | MongoCollection Dataset Db | MyV2Collection Dataset Sql | NetezzaTable Dataset Table | ODataDataset Resource | OdbcDataset Table | Office365Dataset | OracleDataset Service | OracleCloud Object Dataset Table | OrcDataset Dataset | ParquetDataset | PaypalObject | PhoenixDataset Object | PostgreDataset Sql | PostgreTable Dataset Sql | PrestoV2Table Dataset Object | QuickDataset Books | RelationalObject Dataset Table | ResponsysDataset Object | RestDataset Resource | SalesforceDataset Marketing | SalesforceCloud Object Dataset Object | SalesforceDataset Service | SalesforceCloud Object Dataset Service | SalesforceCloud V2Object Dataset V2Object | SapDataset Bw | SapCube Dataset Cloud | SapFor Customer Resource Dataset Ecc | SapResource Dataset Hana | SapTable Dataset Odp | SapResource Dataset Open | SapHub Table Dataset Table | ServiceResource Dataset Now | ServiceObject Dataset Now | ShareV2Object Dataset Point | ShopifyOnline List Resource Dataset Object | SnowflakeDataset Dataset | SnowflakeV2Dataset | SparkObject | SqlDataset Server | SquareTable Dataset Object | SybaseDataset Table | TeradataDataset Table | VerticaDataset Table | WarehouseDataset Table | WebDataset Table | XeroDataset Object | XmlDataset Dataset | ZohoObject Dataset 
- Dataset properties.
- resourceGroup stringName 
- The resource group name.
- datasetName string
- The dataset name.
- factory_name str
- The factory name.
- properties
AmazonMWSObject | AmazonDataset Args Rds | AmazonFor Oracle Table Dataset Args Rds | AmazonFor Sql Server Table Dataset Args Redshift | AmazonTable Dataset Args S3Dataset | AvroArgs Dataset | AzureArgs Blob | AzureDataset Args Blob | AzureFSDataset Args Data | AzureExplorer Table Dataset Args Data | AzureLake Store Dataset Args Databricks | AzureDelta Lake Dataset Args Maria | AzureDBTable Dataset Args My | AzureSql Table Dataset Args Postgre | AzureSql Table Dataset Args Search | AzureIndex Dataset Args Sql | AzureDWTable Dataset Args Sql | AzureMITable Dataset Args Sql | AzureTable Dataset Args Table | BinaryDataset Args Dataset | CassandraArgs Table | CommonDataset Args Data | ConcurService For Apps Entity Dataset Args Object | CosmosDataset Args Db | CosmosMongo Db Api Collection Dataset Args Db | CouchbaseSql Api Collection Dataset Args Table | CustomDataset Args Dataset | Db2TableArgs Dataset | DelimitedArgs Text | DocumentDataset Args Db | DrillCollection Dataset Args Table | DynamicsDataset Args AXResource | DynamicsDataset Args Crm | DynamicsEntity Dataset Args Entity | EloquaDataset Args Object | ExcelDataset Args Dataset | FileArgs Share | GoogleDataset Args Ad | GoogleWords Object Dataset Args Big | GoogleQuery Object Dataset Args Big | GreenplumQuery V2Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | IcebergDataset Args Dataset | ImpalaArgs Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | LakeArgs House | MagentoTable Dataset Args Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PostgreTable Dataset Args Sql | PrestoV2Table Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SalesforceCloud Object Dataset Args Service | SalesforceCloud V2Object Dataset Args V2Object | SapDataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ServiceObject Dataset Args Now | ShareV2Object Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SnowflakeArgs V2Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WarehouseDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args 
- Dataset properties.
- resource_group_ strname 
- 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 | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Dataset properties.
- resourceGroup StringName 
- 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:
Supporting Types
AmazonMWSObjectDataset, AmazonMWSObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AmazonMWSObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AmazonRdsForOracleTableDatasetArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AmazonRdsForOracleTableDatasetResponseArgs              
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AmazonRdsForSqlServerTableDatasetArgs              
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AmazonRdsForSqlServerTableDatasetResponseArgs                
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AmazonRedshiftTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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.
- linkedService Property MapName 
- 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, AmazonRedshiftTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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, AmazonS3CompatibleLocationArgs      
- 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, AmazonS3CompatibleLocationResponseArgs        
- 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, AmazonS3DatasetArgs    
- BucketName object
- The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- The data compression method used for the Amazon S3 object.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format 
- The format of files.
- Key object
- The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- ModifiedDatetime objectEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime objectStart 
- The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- ModifiedDatetime interface{}End 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime interface{}Start 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- modifiedDatetime ObjectEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime ObjectStart 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- modifiedDatetime anyEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime anyStart 
- 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_ Linkedname Service Reference 
- 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_ Anyend 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified_datetime_ Anystart 
- 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).
- linkedService Property MapName 
- 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).
- modifiedDatetime AnyEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime AnyStart 
- 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, AmazonS3DatasetResponseArgs      
- BucketName object
- The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- The data compression method used for the Amazon S3 object.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response 
- The format of files.
- Key object
- The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- ModifiedDatetime objectEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime objectStart 
- The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- The data compression method used for the Amazon S3 object.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- Key interface{}
- The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- ModifiedDatetime interface{}End 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime interface{}Start 
- The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the Amazon S3 object.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- key Object
- The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modifiedDatetime ObjectEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime ObjectStart 
- The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the Amazon S3 object.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- key any
- The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modifiedDatetime anyEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime anyStart 
- The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the Amazon S3 object.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- key Any
- The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified_datetime_ Anyend 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified_datetime_ Anystart 
- The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
- modifiedDatetime AnyEnd 
- The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime AnyStart 
- 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, AmazonS3LocationArgs    
- 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, AmazonS3LocationResponseArgs      
- 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, AvroDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the avro storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- AvroCompression objectCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- AvroCompression intLevel 
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the avro storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- AvroCompression interface{}Codec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- AvroCompression intLevel 
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the avro storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- avroCompression ObjectCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avroCompression IntegerLevel 
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the avro storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- avroCompression anyCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avroCompression numberLevel 
- 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_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the avro storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- avro_compression_ Anycodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_compression_ intlevel 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the avro storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- avroCompression AnyCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avroCompression NumberLevel 
- 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, AvroDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the avro storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- AvroCompression objectCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- AvroCompression intLevel 
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the avro storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- AvroCompression interface{}Codec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- AvroCompression intLevel 
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the avro storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- avroCompression ObjectCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avroCompression IntegerLevel 
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the avro storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- avroCompression anyCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avroCompression numberLevel 
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the avro storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- avro_compression_ Anycodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_compression_ intlevel 
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the avro storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- avroCompression AnyCodec 
- The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avroCompression NumberLevel 
- 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, AvroFormatArgs    
- 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, AvroFormatResponseArgs      
- 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, AzureBlobDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- 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.Azure Native. Data Factory. Inputs. Dataset Folder 
- 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.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format 
- The format of the Azure Blob storage.
- ModifiedDatetime objectEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime objectStart 
- The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- TableRoot objectLocation 
- The root of blob path. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- ModifiedDatetime interface{}End 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime interface{}Start 
- 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.
- TableRoot interface{}Location 
- The root of blob path. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- modifiedDatetime ObjectEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime ObjectStart 
- 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.
- tableRoot ObjectLocation 
- The root of blob path. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- modifiedDatetime anyEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime anyStart 
- 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.
- tableRoot anyLocation 
- The root of blob path. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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_ Anyend 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified_datetime_ Anystart 
- 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_ Anylocation 
- The root of blob path. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
- modifiedDatetime AnyEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime AnyStart 
- 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.
- tableRoot AnyLocation 
- The root of blob path. Type: string (or Expression with resultType string).
AzureBlobDatasetResponse, AzureBlobDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- 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.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- 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.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response 
- The format of the Azure Blob storage.
- ModifiedDatetime objectEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime objectStart 
- The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- TableRoot objectLocation 
- The root of blob path. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Blob storage.
- ModifiedDatetime interface{}End 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime interface{}Start 
- The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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.
- TableRoot interface{}Location 
- The root of blob path. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Blob storage.
- modifiedDatetime ObjectEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime ObjectStart 
- The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- tableRoot ObjectLocation 
- The root of blob path. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Blob storage.
- modifiedDatetime anyEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime anyStart 
- The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- tableRoot anyLocation 
- The root of blob path. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Blob storage.
- modified_datetime_ Anyend 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified_datetime_ Anystart 
- The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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_ Anylocation 
- The root of blob path. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
- modifiedDatetime AnyEnd 
- The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime AnyStart 
- 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.
- tableRoot AnyLocation 
- The root of blob path. Type: string (or Expression with resultType string).
AzureBlobFSDataset, AzureBlobFSDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- 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.Azure Native. Data Factory. Inputs. Dataset Folder 
- 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.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format 
- The format of the Azure Data Lake Storage Gen2 storage.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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.
- linkedService Property MapName 
- 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, AzureBlobFSDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- 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.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- 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.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response 
- The format of the Azure Data Lake Storage Gen2 storage.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Data Lake Storage Gen2 storage.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Data Lake Storage Gen2 storage.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Data Lake Storage Gen2 storage.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Azure Data Lake Storage Gen2 storage.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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, AzureBlobFSLocationArgs      
- 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, AzureBlobFSLocationResponseArgs        
- 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, AzureBlobStorageLocationArgs        
- 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, AzureBlobStorageLocationResponseArgs          
- 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, AzureDataExplorerTableDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AzureDataExplorerTableDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AzureDataLakeStoreDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- 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.Azure Native. Data Factory. Inputs. Dataset Folder 
- 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.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format 
- The format of the Data Lake Store.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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.
- linkedService Property MapName 
- 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, AzureDataLakeStoreDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- 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.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- 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.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response 
- The format of the Data Lake Store.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Data Lake Store.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Data Lake Store.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Data Lake Store.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- 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
DatasetResponse Folder 
- 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 | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the Data Lake Store.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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, AzureDataLakeStoreLocationArgs          
- 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, AzureDataLakeStoreLocationResponseArgs            
- 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, AzureDatabricksDeltaLakeDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- 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.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AzureDatabricksDeltaLakeDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- 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.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- 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
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- 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
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- 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
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- 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
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AzureFileStorageLocationArgs        
- 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, AzureFileStorageLocationResponseArgs          
- 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, AzureMariaDBTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AzureMariaDBTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AzureMySqlTableDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AzureMySqlTableDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AzurePostgreSqlTableDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AzurePostgreSqlTableDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AzureSearchIndexDatasetArgs        
- IndexName object
- The name of the Azure Search Index. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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, AzureSearchIndexDatasetResponseArgs          
- IndexName object
- The name of the Azure Search Index. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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, AzureSqlDWTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
AzureSqlDWTableDatasetResponse, AzureSqlDWTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
AzureSqlMITableDataset, AzureSqlMITableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
AzureSqlMITableDatasetResponse, AzureSqlMITableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
AzureSqlTableDataset, AzureSqlTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 SQL database. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 SQL database. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 SQL database. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 SQL database. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 SQL database. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 SQL database. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
AzureSqlTableDatasetResponse, AzureSqlTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 SQL database. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 SQL database. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 SQL database. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 SQL database. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 SQL database. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 SQL database. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
AzureTableDataset, AzureTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- TableName object
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- TableName interface{}
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- tableName Object
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- tableName any
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- table_name Any
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- 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.
- linkedService Property MapName 
- Linked service reference.
- tableName Any
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- 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.
AzureTableDatasetResponse, AzureTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- TableName object
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- TableName interface{}
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- tableName Object
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- tableName any
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- table_name Any
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- tableName Any
- The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- 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.
BinaryDataset, BinaryDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the Binary storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- The data compression method used for the binary dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the Binary storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression 
- The data compression method used for the binary 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the Binary storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the binary 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the Binary storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the binary 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the Binary storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the binary 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the Binary storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the binary 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.
BinaryDatasetResponse, BinaryDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the Binary storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- The data compression method used for the binary dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the Binary storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- The data compression method used for the binary dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the Binary storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the binary dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the Binary storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the binary dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the Binary storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the binary dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the Binary storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the binary 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.
CassandraTableDataset, CassandraTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Keyspace object
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 of the Cassandra database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- Keyspace interface{}
- The keyspace of the Cassandra database. 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.
- TableName interface{}
- The table name of the Cassandra database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- keyspace Object
- The keyspace of the Cassandra database. 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.
- tableName Object
- The table name of the Cassandra database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- keyspace any
- The keyspace of the Cassandra database. 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.
- tableName any
- The table name of the Cassandra database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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.
- keyspace Any
- The keyspace of the Cassandra database. 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_name Any
- The table name of the Cassandra database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
- keyspace Any
- The keyspace of the Cassandra database. 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.
- tableName Any
- The table name of the Cassandra database. Type: string (or Expression with resultType string).
CassandraTableDatasetResponse, CassandraTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Keyspace object
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 of the Cassandra database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Keyspace interface{}
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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 of the Cassandra database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- keyspace Object
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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 of the Cassandra database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- keyspace any
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 of the Cassandra database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- keyspace Any
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 of the Cassandra database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
- keyspace Any
- The keyspace of the Cassandra database. 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.
- tableName Any
- The table name of the Cassandra database. Type: string (or Expression with resultType string).
CommonDataServiceForAppsEntityDataset, CommonDataServiceForAppsEntityDatasetArgs              
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName object
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName interface{}
- The logical name of the entity. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Object
- The logical name of the entity. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- entityName any
- The logical name of the entity. 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.
- 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_ Linkedname Service Reference 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- entity_name Any
- The logical name of the entity. 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.
- 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.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Any
- The logical name of the entity. 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.
- 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.
CommonDataServiceForAppsEntityDatasetResponse, CommonDataServiceForAppsEntityDatasetResponseArgs                
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName object
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName interface{}
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Object
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- entityName any
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- entity_name Any
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Any
- The logical name of the entity. 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.
- 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.
ConcurObjectDataset, ConcurObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
ConcurObjectDatasetResponse, ConcurObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
CosmosDbMongoDbApiCollectionDataset, CosmosDbMongoDbApiCollectionDatasetArgs              
- Collection object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- Collection interface{}
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- collection Object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
CosmosDbMongoDbApiCollectionDatasetResponse, CosmosDbMongoDbApiCollectionDatasetResponseArgs                
- Collection object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- Collection interface{}
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- collection Object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- collection any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
CosmosDbSqlApiCollectionDataset, CosmosDbSqlApiCollectionDatasetArgs            
- CollectionName object
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- CollectionName interface{}
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- collectionName Object
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collectionName any
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection_name Any
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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.
- collectionName Any
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
CosmosDbSqlApiCollectionDatasetResponse, CosmosDbSqlApiCollectionDatasetResponseArgs              
- CollectionName object
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- CollectionName interface{}
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- collectionName Object
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- collectionName any
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- collection_name Any
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- collectionName Any
- CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
CouchbaseTableDataset, CouchbaseTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
CouchbaseTableDatasetResponse, CouchbaseTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
CustomDataset, CustomDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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.
- linked_service_ Linkedname Service Reference 
- 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.
- linkedService Property MapName 
- 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.
CustomDatasetResponse, CustomDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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.
DatasetCompression, DatasetCompressionArgs    
DatasetCompressionResponse, DatasetCompressionResponseArgs      
DatasetFolder, DatasetFolderArgs    
- Name string
- The name of the folder that this Dataset is in.
- Name string
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
- name string
- The name of the folder that this Dataset is in.
- name str
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
DatasetResponseFolder, DatasetResponseFolderArgs      
- Name string
- The name of the folder that this Dataset is in.
- Name string
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
- name string
- The name of the folder that this Dataset is in.
- name str
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
Db2TableDataset, Db2TableDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Db2 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_ Linkedname Service Reference 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
Db2TableDatasetResponse, Db2TableDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Db2 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Db2 table name. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
DelimitedTextDataset, DelimitedTextDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the delimited text storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- ColumnDelimiter object
- The column delimiter. Type: string (or Expression with resultType string).
- CompressionCodec object
- The data compressionCodec. Type: string (or Expression with resultType string).
- CompressionLevel object
- The data compression method used for DelimitedText.
- Description string
- Dataset description.
- EncodingName object
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar object
- The escape character. Type: string (or Expression with resultType string).
- FirstRow objectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- QuoteChar object
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter object
- The row delimiter. 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the delimited text storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- ColumnDelimiter interface{}
- The column delimiter. Type: string (or Expression with resultType string).
- CompressionCodec interface{}
- The data compressionCodec. Type: string (or Expression with resultType string).
- CompressionLevel interface{}
- The data compression method used for DelimitedText.
- Description string
- Dataset description.
- EncodingName interface{}
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar interface{}
- The escape character. Type: string (or Expression with resultType string).
- FirstRow interface{}As Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue interface{}
- The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification 
- Parameters for dataset.
- QuoteChar interface{}
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter interface{}
- The row delimiter. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the delimited text storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- columnDelimiter Object
- The column delimiter. Type: string (or Expression with resultType string).
- compressionCodec Object
- The data compressionCodec. Type: string (or Expression with resultType string).
- compressionLevel Object
- The data compression method used for DelimitedText.
- description String
- Dataset description.
- encodingName Object
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Object
- The escape character. Type: string (or Expression with resultType string).
- firstRow ObjectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Object
- The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification> 
- Parameters for dataset.
- quoteChar Object
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Object
- The row delimiter. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the delimited text storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- columnDelimiter any
- The column delimiter. Type: string (or Expression with resultType string).
- compressionCodec any
- The data compressionCodec. Type: string (or Expression with resultType string).
- compressionLevel any
- The data compression method used for DelimitedText.
- description string
- Dataset description.
- encodingName any
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar any
- The escape character. Type: string (or Expression with resultType string).
- firstRow anyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue any
- The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification} 
- Parameters for dataset.
- quoteChar any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter any
- The row delimiter. 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the delimited text storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- column_delimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- compression_codec Any
- The data compressionCodec. Type: string (or Expression with resultType string).
- compression_level Any
- The data compression method used for DelimitedText.
- description str
- Dataset description.
- encoding_name Any
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_char Any
- The escape character. Type: string (or Expression with resultType string).
- first_row_ Anyas_ header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_value Any
- The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification] 
- Parameters for dataset.
- quote_char Any
- The quote character. Type: string (or Expression with resultType string).
- row_delimiter Any
- The row delimiter. 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the delimited text storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- columnDelimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- compressionCodec Any
- The data compressionCodec. Type: string (or Expression with resultType string).
- compressionLevel Any
- The data compression method used for DelimitedText.
- description String
- Dataset description.
- encodingName Any
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Any
- The escape character. Type: string (or Expression with resultType string).
- firstRow AnyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Any
- The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- quoteChar Any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Any
- The row delimiter. 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.
DelimitedTextDatasetResponse, DelimitedTextDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the delimited text storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- ColumnDelimiter object
- The column delimiter. Type: string (or Expression with resultType string).
- CompressionCodec object
- The data compressionCodec. Type: string (or Expression with resultType string).
- CompressionLevel object
- The data compression method used for DelimitedText.
- Description string
- Dataset description.
- EncodingName object
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar object
- The escape character. Type: string (or Expression with resultType string).
- FirstRow objectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- QuoteChar object
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter object
- The row delimiter. 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the delimited text storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- ColumnDelimiter interface{}
- The column delimiter. Type: string (or Expression with resultType string).
- CompressionCodec interface{}
- The data compressionCodec. Type: string (or Expression with resultType string).
- CompressionLevel interface{}
- The data compression method used for DelimitedText.
- Description string
- Dataset description.
- EncodingName interface{}
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar interface{}
- The escape character. Type: string (or Expression with resultType string).
- FirstRow interface{}As Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue interface{}
- The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- QuoteChar interface{}
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter interface{}
- The row delimiter. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the delimited text storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- columnDelimiter Object
- The column delimiter. Type: string (or Expression with resultType string).
- compressionCodec Object
- The data compressionCodec. Type: string (or Expression with resultType string).
- compressionLevel Object
- The data compression method used for DelimitedText.
- description String
- Dataset description.
- encodingName Object
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Object
- The escape character. Type: string (or Expression with resultType string).
- firstRow ObjectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Object
- The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- quoteChar Object
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Object
- The row delimiter. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the delimited text storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- columnDelimiter any
- The column delimiter. Type: string (or Expression with resultType string).
- compressionCodec any
- The data compressionCodec. Type: string (or Expression with resultType string).
- compressionLevel any
- The data compression method used for DelimitedText.
- description string
- Dataset description.
- encodingName any
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar any
- The escape character. Type: string (or Expression with resultType string).
- firstRow anyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue any
- The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- quoteChar any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter any
- The row delimiter. 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.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the delimited text storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- column_delimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- compression_codec Any
- The data compressionCodec. Type: string (or Expression with resultType string).
- compression_level Any
- The data compression method used for DelimitedText.
- description str
- Dataset description.
- encoding_name Any
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_char Any
- The escape character. Type: string (or Expression with resultType string).
- first_row_ Anyas_ header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_value Any
- The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- quote_char Any
- The quote character. Type: string (or Expression with resultType string).
- row_delimiter Any
- The row delimiter. 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the delimited text storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- columnDelimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- compressionCodec Any
- The data compressionCodec. Type: string (or Expression with resultType string).
- compressionLevel Any
- The data compression method used for DelimitedText.
- description String
- Dataset description.
- encodingName Any
- The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Any
- The escape character. Type: string (or Expression with resultType string).
- firstRow AnyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Any
- The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- quoteChar Any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Any
- The row delimiter. 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.
DocumentDbCollectionDataset, DocumentDbCollectionDatasetArgs        
- CollectionName object
- Document Database collection name. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- CollectionName interface{}
- Document Database collection name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- collectionName Object
- Document Database collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collectionName any
- Document Database collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection_name Any
- Document Database collection name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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.
- collectionName Any
- Document Database collection name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
DocumentDbCollectionDatasetResponse, DocumentDbCollectionDatasetResponseArgs          
- CollectionName object
- Document Database collection name. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- CollectionName interface{}
- Document Database collection name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- collectionName Object
- Document Database collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- collectionName any
- Document Database collection name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- collection_name Any
- Document Database collection name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- collectionName Any
- Document Database collection name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
DrillTableDataset, DrillTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Drill. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Drill. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Drill. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Drill. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Drill. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Drill. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
DrillTableDatasetResponse, DrillTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Drill. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Drill. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Drill. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Drill. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Drill. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Drill. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
DynamicsAXResourceDataset, DynamicsAXResourceDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Path object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Path interface{}
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- path Object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- path any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService Property MapName 
- Linked service reference.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- 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.
DynamicsAXResourceDatasetResponse, DynamicsAXResourceDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Path object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Path interface{}
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- path Object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- path any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- 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.
DynamicsCrmEntityDataset, DynamicsCrmEntityDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName object
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName interface{}
- The logical name of the entity. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Object
- The logical name of the entity. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- entityName any
- The logical name of the entity. 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.
- 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_ Linkedname Service Reference 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- entity_name Any
- The logical name of the entity. 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.
- 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.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Any
- The logical name of the entity. 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.
- 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.
DynamicsCrmEntityDatasetResponse, DynamicsCrmEntityDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName object
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName interface{}
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Object
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- entityName any
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- entity_name Any
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Any
- The logical name of the entity. 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.
- 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.
DynamicsEntityDataset, DynamicsEntityDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName object
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName interface{}
- The logical name of the entity. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Object
- The logical name of the entity. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- entityName any
- The logical name of the entity. 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.
- 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_ Linkedname Service Reference 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- entity_name Any
- The logical name of the entity. 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.
- 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.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Any
- The logical name of the entity. 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.
- 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.
DynamicsEntityDatasetResponse, DynamicsEntityDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName object
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- EntityName interface{}
- The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Object
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- entityName any
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- entity_name Any
- The logical name of the entity. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- entityName Any
- The logical name of the entity. 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.
- 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.
EloquaObjectDataset, EloquaObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
EloquaObjectDatasetResponse, EloquaObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
ExcelDataset, ExcelDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the excel storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- FirstRow objectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- Range object
- The partial data of one sheet. 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.
- SheetIndex object
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- SheetName object
- The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the excel storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- FirstRow interface{}As Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue interface{}
- The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification 
- Parameters for dataset.
- Range interface{}
- The partial data of one sheet. 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.
- SheetIndex interface{}
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- SheetName interface{}
- The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the excel storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description String
- Dataset description.
- firstRow ObjectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Object
- The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification> 
- Parameters for dataset.
- range Object
- The partial data of one sheet. 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.
- sheetIndex Object
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheetName Object
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the excel storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description string
- Dataset description.
- firstRow anyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue any
- The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification} 
- Parameters for dataset.
- range any
- The partial data of one sheet. 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.
- sheetIndex any
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheetName any
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the excel storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description str
- Dataset description.
- first_row_ Anyas_ header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetFolder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_value Any
- The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification] 
- Parameters for dataset.
- range Any
- The partial data of one sheet. 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.
- sheet_index Any
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet_name Any
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linkedService Property MapName 
- 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 | Property Map
- The location of the excel storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- firstRow AnyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Any
- The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- range Any
- The partial data of one sheet. 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.
- sheetIndex Any
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheetName Any
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ExcelDatasetResponse, ExcelDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the excel storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- FirstRow objectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- Range object
- The partial data of one sheet. 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.
- SheetIndex object
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- SheetName object
- The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the excel storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- FirstRow interface{}As Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue interface{}
- The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- Range interface{}
- The partial data of one sheet. 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.
- SheetIndex interface{}
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- SheetName interface{}
- The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the excel storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description String
- Dataset description.
- firstRow ObjectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Object
- The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- range Object
- The partial data of one sheet. 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.
- sheetIndex Object
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheetName Object
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the excel storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description string
- Dataset description.
- firstRow anyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue any
- The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- range any
- The partial data of one sheet. 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.
- sheetIndex any
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheetName any
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the excel storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description str
- Dataset description.
- first_row_ Anyas_ header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_value Any
- The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- range Any
- The partial data of one sheet. 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.
- sheet_index Any
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet_name Any
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linkedService Property MapName 
- 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 | Property Map
- The location of the excel storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- firstRow AnyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Any
- The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- range Any
- The partial data of one sheet. 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.
- sheetIndex Any
- The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheetName Any
- The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
FileServerLocation, FileServerLocationArgs      
- 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)
FileServerLocationResponse, FileServerLocationResponseArgs        
- 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)
FileShareDataset, FileShareDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- The data compression method used for the file system.
- Description string
- Dataset description.
- FileFilter object
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- FileName object
- The name of the on-premises file system. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- FolderPath object
- The path of the on-premises file system. Type: string (or Expression with resultType string).
- Format
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format 
- The format of the files.
- ModifiedDatetime objectEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime objectStart 
- The start of file's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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 file system.
- Description string
- Dataset description.
- FileFilter interface{}
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- FileName interface{}
- The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- Format
AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat 
- The format of the files.
- ModifiedDatetime interface{}End 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime interface{}Start 
- The start of file'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.
- linkedService LinkedName Service Reference 
- 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 file system.
- description String
- Dataset description.
- fileFilter Object
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- fileName Object
- The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- format
AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat 
- The format of the files.
- modifiedDatetime ObjectEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime ObjectStart 
- The start of file'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.
- linkedService LinkedName Service Reference 
- 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 file system.
- description string
- Dataset description.
- fileFilter any
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- fileName any
- The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- format
AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat 
- The format of the files.
- modifiedDatetime anyEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime anyStart 
- The start of file'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.
- linked_service_ Linkedname Service Reference 
- 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 file system.
- description str
- Dataset description.
- file_filter Any
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file_name Any
- The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- format
AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat 
- The format of the files.
- modified_datetime_ Anyend 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_datetime_ Anystart 
- The start of file'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.
- linkedService Property MapName 
- 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 file system.
- description String
- Dataset description.
- fileFilter Any
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- fileName Any
- The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- format Property Map | Property Map | Property Map | Property Map | Property Map
- The format of the files.
- modifiedDatetime AnyEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime AnyStart 
- The start of file'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.
FileShareDatasetResponse, FileShareDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- The data compression method used for the file system.
- Description string
- Dataset description.
- FileFilter object
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- FileName object
- The name of the on-premises file system. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- FolderPath object
- The path of the on-premises file system. Type: string (or Expression with resultType string).
- Format
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response 
- The format of the files.
- ModifiedDatetime objectEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime objectStart 
- The start of file's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- The data compression method used for the file system.
- Description string
- Dataset description.
- FileFilter interface{}
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- FileName interface{}
- The name of the on-premises file system. Type: string (or Expression with resultType string).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- FolderPath interface{}
- The path of the on-premises file system. Type: string (or Expression with resultType string).
- Format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the files.
- ModifiedDatetime interface{}End 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- ModifiedDatetime interface{}Start 
- The start of file's modified datetime. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the file system.
- description String
- Dataset description.
- fileFilter Object
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- fileName Object
- The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folderPath Object
- The path of the on-premises file system. Type: string (or Expression with resultType string).
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the files.
- modifiedDatetime ObjectEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime ObjectStart 
- The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the file system.
- description string
- Dataset description.
- fileFilter any
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- fileName any
- The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folderPath any
- The path of the on-premises file system. Type: string (or Expression with resultType string).
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the files.
- modifiedDatetime anyEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime anyStart 
- The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the file system.
- description str
- Dataset description.
- file_filter Any
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file_name Any
- The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder_path Any
- The path of the on-premises file system. Type: string (or Expression with resultType string).
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of the files.
- modified_datetime_ Anyend 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_datetime_ Anystart 
- The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 file system.
- description String
- Dataset description.
- fileFilter Any
- Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- fileName Any
- The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- format Property Map | Property Map | Property Map | Property Map | Property Map
- The format of the files.
- modifiedDatetime AnyEnd 
- The end of file's modified datetime. Type: string (or Expression with resultType string).
- modifiedDatetime AnyStart 
- The start of file'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.
FtpServerLocation, FtpServerLocationArgs      
- 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)
FtpServerLocationResponse, FtpServerLocationResponseArgs        
- 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)
GoogleAdWordsObjectDataset, GoogleAdWordsObjectDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
GoogleAdWordsObjectDatasetResponse, GoogleAdWordsObjectDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
GoogleBigQueryObjectDataset, GoogleBigQueryObjectDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Dataset object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using database + table properties instead.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Dataset interface{}
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using database + table properties instead.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- dataset Object
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using database + table properties instead.
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- dataset any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using database + table properties instead.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using database + table properties instead.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using database + table properties instead.
GoogleBigQueryObjectDatasetResponse, GoogleBigQueryObjectDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Dataset object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using database + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Dataset interface{}
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using database + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- dataset Object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using database + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- dataset any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using database + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using database + table properties instead.
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using database + table properties instead.
GoogleBigQueryV2ObjectDataset, GoogleBigQueryV2ObjectDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Dataset object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Dataset interface{}
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- dataset Object
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- dataset any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
GoogleBigQueryV2ObjectDatasetResponse, GoogleBigQueryV2ObjectDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Dataset object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Dataset interface{}
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- dataset Object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- dataset any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Google BigQuery. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
GoogleCloudStorageLocation, GoogleCloudStorageLocationArgs        
- BucketName object
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- BucketName interface{}
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Object
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucketName any
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket_name Any
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Any
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
GoogleCloudStorageLocationResponse, GoogleCloudStorageLocationResponseArgs          
- BucketName object
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- BucketName interface{}
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Object
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucketName any
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket_name Any
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Any
- Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
GreenplumTableDataset, GreenplumTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Greenplum. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Greenplum. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Greenplum. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Greenplum. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Greenplum. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Greenplum. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
GreenplumTableDatasetResponse, GreenplumTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Greenplum. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Greenplum. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Greenplum. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Greenplum. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Greenplum. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Greenplum. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
HBaseObjectDataset, HBaseObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
HBaseObjectDatasetResponse, HBaseObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
HdfsLocation, HdfsLocationArgs    
- 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)
HdfsLocationResponse, HdfsLocationResponseArgs      
- 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)
HiveObjectDataset, HiveObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Hive. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Hive. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Hive. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Hive. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Hive. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Hive. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
HiveObjectDatasetResponse, HiveObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Hive. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Hive. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Hive. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Hive. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Hive. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Hive. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
HttpDataset, HttpDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- AdditionalHeaders object
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- The data compression method used on files.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format 
- The format of files.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- RelativeUrl object
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- RequestBody object
- The body for the HTTP request. Type: string (or Expression with resultType string).
- RequestMethod object
- The HTTP method for the HTTP request. 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- AdditionalHeaders interface{}
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression 
- The data compression method used on files.
- 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.
- Parameters
map[string]ParameterSpecification 
- Parameters for dataset.
- RelativeUrl interface{}
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- RequestBody interface{}
- The body for the HTTP request. Type: string (or Expression with resultType string).
- RequestMethod interface{}
- The HTTP method for the HTTP request. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- additionalHeaders Object
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used on files.
- 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.
- parameters
Map<String,ParameterSpecification> 
- Parameters for dataset.
- relativeUrl Object
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- requestBody Object
- The body for the HTTP request. Type: string (or Expression with resultType string).
- requestMethod Object
- The HTTP method for the HTTP request. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- additionalHeaders any
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used on files.
- 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.
- parameters
{[key: string]: ParameterSpecification} 
- Parameters for dataset.
- relativeUrl any
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- requestBody any
- The body for the HTTP request. Type: string (or Expression with resultType string).
- requestMethod any
- The HTTP method for the HTTP request. 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- additional_headers Any
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used on files.
- 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.
- parameters
Mapping[str, ParameterSpecification] 
- Parameters for dataset.
- relative_url Any
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request_body Any
- The body for the HTTP request. Type: string (or Expression with resultType string).
- request_method Any
- The HTTP method for the HTTP request. 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.
- linkedService Property MapName 
- Linked service reference.
- additionalHeaders Any
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used on files.
- 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.
- parameters Map<Property Map>
- Parameters for dataset.
- relativeUrl Any
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- requestBody Any
- The body for the HTTP request. Type: string (or Expression with resultType string).
- requestMethod Any
- The HTTP method for the HTTP request. 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.
HttpDatasetResponse, HttpDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- AdditionalHeaders object
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- The data compression method used on files.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response 
- The format of files.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- RelativeUrl object
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- RequestBody object
- The body for the HTTP request. Type: string (or Expression with resultType string).
- RequestMethod object
- The HTTP method for the HTTP request. 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- AdditionalHeaders interface{}
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- The data compression method used on files.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- RelativeUrl interface{}
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- RequestBody interface{}
- The body for the HTTP request. Type: string (or Expression with resultType string).
- RequestMethod interface{}
- The HTTP method for the HTTP request. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- additionalHeaders Object
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used on files.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- relativeUrl Object
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- requestBody Object
- The body for the HTTP request. Type: string (or Expression with resultType string).
- requestMethod Object
- The HTTP method for the HTTP request. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- additionalHeaders any
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used on files.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- relativeUrl any
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- requestBody any
- The body for the HTTP request. Type: string (or Expression with resultType string).
- requestMethod any
- The HTTP method for the HTTP request. 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.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- additional_headers Any
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used on files.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
AvroFormat | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response 
- The format of files.
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- relative_url Any
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request_body Any
- The body for the HTTP request. Type: string (or Expression with resultType string).
- request_method Any
- The HTTP method for the HTTP request. 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.
- linkedService Property MapName 
- Linked service reference.
- additionalHeaders Any
- The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used on files.
- 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.
- parameters Map<Property Map>
- Parameters for dataset.
- relativeUrl Any
- The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- requestBody Any
- The body for the HTTP request. Type: string (or Expression with resultType string).
- requestMethod Any
- The HTTP method for the HTTP request. 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.
HttpServerLocation, HttpServerLocationArgs      
- 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)
- RelativeUrl object
- Specify the relativeUrl of http server. 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)
- RelativeUrl interface{}
- Specify the relativeUrl of http server. 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)
- relativeUrl Object
- Specify the relativeUrl of http server. 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)
- relativeUrl any
- Specify the relativeUrl of http server. 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)
- relative_url Any
- Specify the relativeUrl of http server. 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)
- relativeUrl Any
- Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
HttpServerLocationResponse, HttpServerLocationResponseArgs        
- 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)
- RelativeUrl object
- Specify the relativeUrl of http server. 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)
- RelativeUrl interface{}
- Specify the relativeUrl of http server. 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)
- relativeUrl Object
- Specify the relativeUrl of http server. 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)
- relativeUrl any
- Specify the relativeUrl of http server. 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)
- relative_url Any
- Specify the relativeUrl of http server. 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)
- relativeUrl Any
- Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
HubspotObjectDataset, HubspotObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
HubspotObjectDatasetResponse, HubspotObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
IcebergDataset, IcebergDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- 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.
IcebergDatasetResponse, IcebergDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the iceberg storage. Setting a file name is not allowed for iceberg format.
- 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.
ImpalaObjectDataset, ImpalaObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Impala. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Impala. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Impala. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Impala. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Impala. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Impala. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
ImpalaObjectDatasetResponse, ImpalaObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Impala. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Impala. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Impala. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Impala. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Impala. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Impala. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
InformixTableDataset, InformixTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Informix table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Informix table name. Type: string (or Expression with resultType string).
InformixTableDatasetResponse, InformixTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Informix table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Informix table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Informix table name. Type: string (or Expression with resultType string).
JiraObjectDataset, JiraObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
JiraObjectDatasetResponse, JiraObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
JsonDataset, JsonDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName interface{}
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description string
- Dataset description.
- encodingName any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- 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_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description str
- Dataset description.
- encoding_name Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- 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.
JsonDatasetResponse, JsonDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName interface{}
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description string
- Dataset description.
- encodingName any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description str
- Dataset description.
- encoding_name Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- 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.
JsonFormat, JsonFormatArgs    
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- EncodingName object
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- FilePattern object
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- JsonNode objectReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- JsonPath objectDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- NestingSeparator object
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- EncodingName interface{}
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- FilePattern interface{}
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- JsonNode interface{}Reference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- JsonPath interface{}Definition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- NestingSeparator interface{}
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encodingName Object
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- filePattern Object
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- jsonNode ObjectReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- jsonPath ObjectDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nestingSeparator Object
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encodingName any
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- filePattern any
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- jsonNode anyReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- jsonPath anyDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nestingSeparator any
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encoding_name Any
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file_pattern Any
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json_node_ Anyreference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json_path_ Anydefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting_separator Any
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encodingName Any
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- filePattern Any
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- jsonNode AnyReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- jsonPath AnyDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nestingSeparator Any
- The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
JsonFormatResponse, JsonFormatResponseArgs      
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- EncodingName object
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- FilePattern object
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- JsonNode objectReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- JsonPath objectDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- NestingSeparator object
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- EncodingName interface{}
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- FilePattern interface{}
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- JsonNode interface{}Reference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- JsonPath interface{}Definition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- NestingSeparator interface{}
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encodingName Object
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- filePattern Object
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- jsonNode ObjectReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- jsonPath ObjectDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nestingSeparator Object
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encodingName any
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- filePattern any
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- jsonNode anyReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- jsonPath anyDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nestingSeparator any
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encoding_name Any
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file_pattern Any
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json_node_ Anyreference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json_path_ Anydefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting_separator Any
- The character used to separate nesting levels. Default value is '.' (dot). 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).
- encodingName Any
- The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- filePattern Any
- File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- jsonNode AnyReference 
- The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- jsonPath AnyDefinition 
- The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nestingSeparator Any
- The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
LakeHouseLocation, LakeHouseLocationArgs      
- 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)
LakeHouseLocationResponse, LakeHouseLocationResponseArgs        
- 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)
LakeHouseTableDataset, LakeHouseTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
LakeHouseTableDatasetResponse, LakeHouseTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
LinkedServiceReference, LinkedServiceReferenceArgs      
- ReferenceName string
- Reference LinkedService name.
- Type
string | Pulumi.Azure Native. Data Factory. Type 
- Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- ReferenceName string
- Reference LinkedService name.
- Type string | Type
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type String | Type
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- referenceName string
- Reference LinkedService name.
- type string | Type
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_name str
- Reference LinkedService name.
- type str | Type
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type
String | "LinkedService Reference" 
- Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
LinkedServiceReferenceResponse, LinkedServiceReferenceResponseArgs        
- ReferenceName string
- Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- ReferenceName string
- Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- referenceName string
- Reference LinkedService name.
- type string
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_name str
- Reference LinkedService name.
- type str
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
MagentoObjectDataset, MagentoObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
MagentoObjectDatasetResponse, MagentoObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
MariaDBTableDataset, MariaDBTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
MariaDBTableDatasetResponse, MariaDBTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
MarketoObjectDataset, MarketoObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
MarketoObjectDatasetResponse, MarketoObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
MicrosoftAccessTableDataset, MicrosoftAccessTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
MicrosoftAccessTableDatasetResponse, MicrosoftAccessTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Microsoft Access table name. Type: string (or Expression with resultType string).
MongoDbAtlasCollectionDataset, MongoDbAtlasCollectionDatasetArgs          
- Collection object
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- Collection interface{}
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- collection Object
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection Any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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.
- collection Any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
MongoDbAtlasCollectionDatasetResponse, MongoDbAtlasCollectionDatasetResponseArgs            
- Collection object
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- Collection interface{}
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- collection Object
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- collection any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- collection Any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- collection Any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
MongoDbCollectionDataset, MongoDbCollectionDatasetArgs        
- CollectionName object
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- CollectionName interface{}
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- collectionName Object
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collectionName any
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection_name Any
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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.
- collectionName Any
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
MongoDbCollectionDatasetResponse, MongoDbCollectionDatasetResponseArgs          
- CollectionName object
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- CollectionName interface{}
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- collectionName Object
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- collectionName any
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- collection_name Any
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- collectionName Any
- The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
MongoDbV2CollectionDataset, MongoDbV2CollectionDatasetArgs        
- Collection object
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- Collection interface{}
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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.
- collection Object
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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.
- collection Any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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.
- collection Any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
MongoDbV2CollectionDatasetResponse, MongoDbV2CollectionDatasetResponseArgs          
- Collection object
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- Collection interface{}
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- collection Object
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- collection any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- collection Any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- collection Any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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.
MySqlTableDataset, MySqlTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 MySQL table name. Type: string (or Expression with resultType string).
MySqlTableDatasetResponse, MySqlTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 MySQL table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 MySQL table name. Type: string (or Expression with resultType string).
NetezzaTableDataset, NetezzaTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Netezza. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Netezza. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Netezza. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Netezza. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Netezza. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Netezza. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
NetezzaTableDatasetResponse, NetezzaTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Netezza. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Netezza. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Netezza. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Netezza. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Netezza. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Netezza. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
ODataResourceDataset, ODataResourceDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- Path object
- The OData resource path. 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.
- LinkedService LinkedName Service Reference 
- 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.
- Path interface{}
- The OData resource path. 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.
- linkedService LinkedName Service Reference 
- 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.
- path Object
- The OData resource path. 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.
- linkedService LinkedName Service Reference 
- 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.
- path any
- The OData resource path. 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.
- linked_service_ Linkedname Service Reference 
- 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.
- path Any
- The OData resource path. 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.
- linkedService Property MapName 
- 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.
- path Any
- The OData resource path. 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.
ODataResourceDatasetResponse, ODataResourceDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- Path object
- The OData resource path. 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- Path interface{}
- The OData resource path. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- path Object
- The OData resource path. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- path any
- The OData resource path. 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.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- path Any
- The OData resource path. 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.
- linkedService Property MapName 
- 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.
- path Any
- The OData resource path. 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.
OdbcTableDataset, OdbcTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 ODBC table name. Type: string (or Expression with resultType string).
OdbcTableDatasetResponse, OdbcTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 ODBC table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 ODBC table name. Type: string (or Expression with resultType string).
Office365Dataset, Office365DatasetArgs  
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- TableName object
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- Predicate object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- TableName interface{}
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- 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.
- Predicate interface{}
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- tableName Object
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- 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.
- predicate Object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- tableName any
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- 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.
- predicate any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- table_name Any
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- 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.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linkedService Property MapName 
- Linked service reference.
- tableName Any
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- 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.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
Office365DatasetResponse, Office365DatasetResponseArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- TableName object
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- Predicate object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- TableName interface{}
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- Predicate interface{}
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- tableName Object
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- predicate Object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- tableName any
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- predicate any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- table_name Any
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
- linkedService Property MapName 
- Linked service reference.
- tableName Any
- Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- 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.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. 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.
OracleCloudStorageLocation, OracleCloudStorageLocationArgs        
- BucketName object
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- BucketName interface{}
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Object
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucketName any
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket_name Any
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Any
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
OracleCloudStorageLocationResponse, OracleCloudStorageLocationResponseArgs          
- BucketName object
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- BucketName interface{}
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Object
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucketName any
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket_name Any
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucketName Any
- Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
OracleServiceCloudObjectDataset, OracleServiceCloudObjectDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
OracleServiceCloudObjectDatasetResponse, OracleServiceCloudObjectDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
OracleTableDataset, OracleTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
OracleTableDatasetResponse, OracleTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
OrcDataset, OrcDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the ORC data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- OrcCompression objectCodec 
- The data orcCompressionCodec. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the ORC data storage.
- 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.
- OrcCompression interface{}Codec 
- The data orcCompressionCodec. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the ORC data storage.
- 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.
- orcCompression ObjectCodec 
- The data orcCompressionCodec. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the ORC data storage.
- 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.
- orcCompression anyCodec 
- The data orcCompressionCodec. 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the ORC data storage.
- 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.
- orc_compression_ Anycodec 
- The data orcCompressionCodec. 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the ORC data storage.
- 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.
- orcCompression AnyCodec 
- The data orcCompressionCodec. 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.
OrcDatasetResponse, OrcDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the ORC data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- OrcCompression objectCodec 
- The data orcCompressionCodec. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the ORC data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- OrcCompression interface{}Codec 
- The data orcCompressionCodec. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the ORC data storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- orcCompression ObjectCodec 
- The data orcCompressionCodec. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the ORC data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- orcCompression anyCodec 
- The data orcCompressionCodec. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the ORC data storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- orc_compression_ Anycodec 
- The data orcCompressionCodec. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the ORC data storage.
- 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.
- orcCompression AnyCodec 
- The data orcCompressionCodec. 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.
OrcFormat, OrcFormatArgs    
- 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).
OrcFormatResponse, OrcFormatResponseArgs      
- 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).
ParameterSpecification, ParameterSpecificationArgs    
- Type
string | Pulumi.Azure Native. Data Factory. Parameter Type 
- Parameter type.
- DefaultValue object
- Default value of parameter.
- Type
string | ParameterType 
- Parameter type.
- DefaultValue interface{}
- Default value of parameter.
- type
String | ParameterType 
- Parameter type.
- defaultValue Object
- Default value of parameter.
- type
string | ParameterType 
- Parameter type.
- defaultValue any
- Default value of parameter.
- type
str | ParameterType 
- Parameter type.
- default_value Any
- Default value of parameter.
- type
String | "Object" | "String" | "Int" | "Float" | "Bool" | "Array" | "SecureString" 
- Parameter type.
- defaultValue Any
- Default value of parameter.
ParameterSpecificationResponse, ParameterSpecificationResponseArgs      
- Type string
- Parameter type.
- DefaultValue object
- Default value of parameter.
- Type string
- Parameter type.
- DefaultValue interface{}
- Default value of parameter.
- type String
- Parameter type.
- defaultValue Object
- Default value of parameter.
- type string
- Parameter type.
- defaultValue any
- Default value of parameter.
- type str
- Parameter type.
- default_value Any
- Default value of parameter.
- type String
- Parameter type.
- defaultValue Any
- Default value of parameter.
ParameterType, ParameterTypeArgs    
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- SecureString 
- SecureString
- ParameterType Object 
- Object
- ParameterType String 
- String
- ParameterType Int 
- Int
- ParameterType Float 
- Float
- ParameterType Bool 
- Bool
- ParameterType Array 
- Array
- ParameterType Secure String 
- SecureString
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- SecureString 
- SecureString
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- SecureString 
- SecureString
- OBJECT
- Object
- STRING
- String
- INT
- Int
- FLOAT
- Float
- BOOL
- Bool
- ARRAY
- Array
- SECURE_STRING
- SecureString
- "Object"
- Object
- "String"
- String
- "Int"
- Int
- "Float"
- Float
- "Bool"
- Bool
- "Array"
- Array
- "SecureString" 
- SecureString
ParquetDataset, ParquetDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the parquet storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- CompressionCodec object
- The data compressionCodec. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the parquet storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- CompressionCodec interface{}
- The data compressionCodec. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the parquet storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compressionCodec Object
- The data compressionCodec. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the parquet storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compressionCodec any
- The data compressionCodec. 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the parquet storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression_codec Any
- The data compressionCodec. 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the parquet storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compressionCodec Any
- The data compressionCodec. 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.
ParquetDatasetResponse, ParquetDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the parquet storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- CompressionCodec object
- The data compressionCodec. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the parquet storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- CompressionCodec interface{}
- The data compressionCodec. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the parquet storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compressionCodec Object
- The data compressionCodec. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the parquet storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compressionCodec any
- The data compressionCodec. Type: string (or Expression with resultType string).
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the parquet storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression_codec Any
- The data compressionCodec. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the parquet storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compressionCodec Any
- The data compressionCodec. 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.
ParquetFormat, ParquetFormatArgs    
- 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).
ParquetFormatResponse, ParquetFormatResponseArgs      
- 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).
PaypalObjectDataset, PaypalObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
PaypalObjectDatasetResponse, PaypalObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
PhoenixObjectDataset, PhoenixObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Phoenix. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Phoenix. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Phoenix. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Phoenix. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Phoenix. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Phoenix. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
PhoenixObjectDatasetResponse, PhoenixObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Phoenix. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Phoenix. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Phoenix. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Phoenix. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Phoenix. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Phoenix. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
PostgreSqlTableDataset, PostgreSqlTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 PostgreSQL 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_ Linkedname Service Reference 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
PostgreSqlTableDatasetResponse, PostgreSqlTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 PostgreSQL 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
PostgreSqlV2TableDataset, PostgreSqlV2TableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
PostgreSqlV2TableDatasetResponse, PostgreSqlV2TableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
PrestoObjectDataset, PrestoObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Presto. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Presto. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Presto. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Presto. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Presto. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Presto. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
PrestoObjectDatasetResponse, PrestoObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Presto. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Presto. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Presto. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Presto. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Presto. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Presto. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
QuickBooksObjectDataset, QuickBooksObjectDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
QuickBooksObjectDatasetResponse, QuickBooksObjectDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
RelationalTableDataset, RelationalTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 relational table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 relational table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 relational table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 relational table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 relational table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 relational table name. Type: string (or Expression with resultType string).
RelationalTableDatasetResponse, RelationalTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 relational table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 relational table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 relational table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 relational table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 relational table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 relational table name. Type: string (or Expression with resultType string).
ResponsysObjectDataset, ResponsysObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
ResponsysObjectDatasetResponse, ResponsysObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
RestResourceDataset, RestResourceDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- AdditionalHeaders Dictionary<string, object>
- The additional HTTP headers in the request to the RESTful API.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- PaginationRules Dictionary<string, object>
- The pagination rules to compose next page requests.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- RelativeUrl object
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- RequestBody object
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- RequestMethod object
- The HTTP method used to call the RESTful API. The default is GET. 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- AdditionalHeaders map[string]interface{}
- The additional HTTP headers in the request to the RESTful API.
- 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.
- PaginationRules map[string]interface{}
- The pagination rules to compose next page requests.
- Parameters
map[string]ParameterSpecification 
- Parameters for dataset.
- RelativeUrl interface{}
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- RequestBody interface{}
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- RequestMethod interface{}
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- additionalHeaders Map<String,Object>
- The additional HTTP headers in the request to the RESTful API.
- 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.
- paginationRules Map<String,Object>
- The pagination rules to compose next page requests.
- parameters
Map<String,ParameterSpecification> 
- Parameters for dataset.
- relativeUrl Object
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- requestBody Object
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- requestMethod Object
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- additionalHeaders {[key: string]: any}
- The additional HTTP headers in the request to the RESTful API.
- 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.
- paginationRules {[key: string]: any}
- The pagination rules to compose next page requests.
- parameters
{[key: string]: ParameterSpecification} 
- Parameters for dataset.
- relativeUrl any
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- requestBody any
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- requestMethod any
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- additional_headers Mapping[str, Any]
- The additional HTTP headers in the request to the RESTful API.
- 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.
- pagination_rules Mapping[str, Any]
- The pagination rules to compose next page requests.
- parameters
Mapping[str, ParameterSpecification] 
- Parameters for dataset.
- relative_url Any
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request_body Any
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request_method Any
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linkedService Property MapName 
- Linked service reference.
- additionalHeaders Map<Any>
- The additional HTTP headers in the request to the RESTful API.
- 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.
- paginationRules Map<Any>
- The pagination rules to compose next page requests.
- parameters Map<Property Map>
- Parameters for dataset.
- relativeUrl Any
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- requestBody Any
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- requestMethod Any
- The HTTP method used to call the RESTful API. The default is GET. 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.
RestResourceDatasetResponse, RestResourceDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- AdditionalHeaders Dictionary<string, object>
- The additional HTTP headers in the request to the RESTful API.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- PaginationRules Dictionary<string, object>
- The pagination rules to compose next page requests.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- RelativeUrl object
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- RequestBody object
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- RequestMethod object
- The HTTP method used to call the RESTful API. The default is GET. 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- AdditionalHeaders map[string]interface{}
- The additional HTTP headers in the request to the RESTful API.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- PaginationRules map[string]interface{}
- The pagination rules to compose next page requests.
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- RelativeUrl interface{}
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- RequestBody interface{}
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- RequestMethod interface{}
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- additionalHeaders Map<String,Object>
- The additional HTTP headers in the request to the RESTful API.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- paginationRules Map<String,Object>
- The pagination rules to compose next page requests.
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- relativeUrl Object
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- requestBody Object
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- requestMethod Object
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- additionalHeaders {[key: string]: any}
- The additional HTTP headers in the request to the RESTful API.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- paginationRules {[key: string]: any}
- The pagination rules to compose next page requests.
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- relativeUrl any
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- requestBody any
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- requestMethod any
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- additional_headers Mapping[str, Any]
- The additional HTTP headers in the request to the RESTful API.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination_rules Mapping[str, Any]
- The pagination rules to compose next page requests.
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- relative_url Any
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request_body Any
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request_method Any
- The HTTP method used to call the RESTful API. The default is GET. 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.
- linkedService Property MapName 
- Linked service reference.
- additionalHeaders Map<Any>
- The additional HTTP headers in the request to the RESTful API.
- 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.
- paginationRules Map<Any>
- The pagination rules to compose next page requests.
- parameters Map<Property Map>
- Parameters for dataset.
- relativeUrl Any
- The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- requestBody Any
- The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- requestMethod Any
- The HTTP method used to call the RESTful API. The default is GET. 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.
SalesforceMarketingCloudObjectDataset, SalesforceMarketingCloudObjectDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
SalesforceMarketingCloudObjectDatasetResponse, SalesforceMarketingCloudObjectDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
SalesforceObjectDataset, SalesforceObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- ObjectApi interface{}Name 
- The Salesforce object API name. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi ObjectName 
- The Salesforce object API name. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi anyName 
- The Salesforce object API name. 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.
- linked_service_ Linkedname Service Reference 
- 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.
- object_api_ Anyname 
- The Salesforce object API name. 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce object API name. 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.
SalesforceObjectDatasetResponse, SalesforceObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi interface{}Name 
- The Salesforce object API name. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi ObjectName 
- The Salesforce object API name. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi anyName 
- The Salesforce object API name. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- object_api_ Anyname 
- The Salesforce object API name. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce object API name. 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.
SalesforceServiceCloudObjectDataset, SalesforceServiceCloudObjectDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- ObjectApi interface{}Name 
- The Salesforce Service Cloud object API name. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi ObjectName 
- The Salesforce Service Cloud object API name. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi anyName 
- The Salesforce Service Cloud object API name. 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.
- linked_service_ Linkedname Service Reference 
- 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.
- object_api_ Anyname 
- The Salesforce Service Cloud object API name. 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce Service Cloud object API name. 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.
SalesforceServiceCloudObjectDatasetResponse, SalesforceServiceCloudObjectDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi interface{}Name 
- The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi ObjectName 
- The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi anyName 
- The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- object_api_ Anyname 
- The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce Service Cloud object API name. 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.
SalesforceServiceCloudV2ObjectDataset, SalesforceServiceCloudV2ObjectDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- ReportId object
- The Salesforce Service Cloud V2 reportId. 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.
- LinkedService LinkedName Service Reference 
- 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.
- ObjectApi interface{}Name 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification 
- Parameters for dataset.
- ReportId interface{}
- The Salesforce Service Cloud V2 reportId. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi ObjectName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification> 
- Parameters for dataset.
- reportId Object
- The Salesforce Service Cloud V2 reportId. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi anyName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification} 
- Parameters for dataset.
- reportId any
- The Salesforce Service Cloud V2 reportId. 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.
- linked_service_ Linkedname Service Reference 
- 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.
- object_api_ Anyname 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification] 
- Parameters for dataset.
- report_id Any
- The Salesforce Service Cloud V2 reportId. 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- reportId Any
- The Salesforce Service Cloud V2 reportId. 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.
SalesforceServiceCloudV2ObjectDatasetResponse, SalesforceServiceCloudV2ObjectDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- ReportId object
- The Salesforce Service Cloud V2 reportId. 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi interface{}Name 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- ReportId interface{}
- The Salesforce Service Cloud V2 reportId. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi ObjectName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- reportId Object
- The Salesforce Service Cloud V2 reportId. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi anyName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- reportId any
- The Salesforce Service Cloud V2 reportId. 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.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- object_api_ Anyname 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- report_id Any
- The Salesforce Service Cloud V2 reportId. 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- reportId Any
- The Salesforce Service Cloud V2 reportId. 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.
SalesforceV2ObjectDataset, SalesforceV2ObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- ReportId object
- The Salesforce V2 report Id. 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.
- LinkedService LinkedName Service Reference 
- 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.
- ObjectApi interface{}Name 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification 
- Parameters for dataset.
- ReportId interface{}
- The Salesforce V2 report Id. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi ObjectName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification> 
- Parameters for dataset.
- reportId Object
- The Salesforce V2 report Id. 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.
- linkedService LinkedName Service Reference 
- 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.
- objectApi anyName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification} 
- Parameters for dataset.
- reportId any
- The Salesforce V2 report Id. 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.
- linked_service_ Linkedname Service Reference 
- 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.
- object_api_ Anyname 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification] 
- Parameters for dataset.
- report_id Any
- The Salesforce V2 report Id. 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- reportId Any
- The Salesforce V2 report Id. 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.
SalesforceV2ObjectDatasetResponse, SalesforceV2ObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi objectName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- ReportId object
- The Salesforce V2 report Id. 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ObjectApi interface{}Name 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- ReportId interface{}
- The Salesforce V2 report Id. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi ObjectName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- reportId Object
- The Salesforce V2 report Id. 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- objectApi anyName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- reportId any
- The Salesforce V2 report Id. 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.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- object_api_ Anyname 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- report_id Any
- The Salesforce V2 report Id. 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.
- linkedService Property MapName 
- 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.
- objectApi AnyName 
- The Salesforce V2 object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- reportId Any
- The Salesforce V2 report Id. 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.
SapBwCubeDataset, SapBwCubeDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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.
- linkedService LinkedName Service Reference 
- 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.
- linked_service_ Linkedname Service Reference 
- 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.
- linkedService Property MapName 
- 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.
SapBwCubeDatasetResponse, SapBwCubeDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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.
SapCloudForCustomerResourceDataset, SapCloudForCustomerResourceDatasetArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Path object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Path interface{}
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- path Object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- path any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService Property MapName 
- Linked service reference.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- 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.
SapCloudForCustomerResourceDatasetResponse, SapCloudForCustomerResourceDatasetResponseArgs              
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Path object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Path interface{}
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- path Object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- path any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- 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.
SapEccResourceDataset, SapEccResourceDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Path object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Path interface{}
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- path Object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- path any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- 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.
- linkedService Property MapName 
- Linked service reference.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- 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.
SapEccResourceDatasetResponse, SapEccResourceDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Path object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Path interface{}
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- path Object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- path any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- 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.
SapHanaTableDataset, SapHanaTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 SAP HANA. Type: string (or Expression with resultType string).
SapHanaTableDatasetResponse, SapHanaTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 SAP HANA. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 SAP HANA. Type: string (or Expression with resultType string).
SapOdpResourceDataset, SapOdpResourceDatasetArgs        
- Context object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- ObjectName object
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- Context interface{}
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- Linked service reference.
- ObjectName interface{}
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- 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.
- context Object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- Linked service reference.
- objectName Object
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- 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.
- context any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- Linked service reference.
- objectName any
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- 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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- object_name Any
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- 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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- Linked service reference.
- objectName Any
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- 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.
SapOdpResourceDatasetResponse, SapOdpResourceDatasetResponseArgs          
- Context object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- ObjectName object
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- Context interface{}
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- ObjectName interface{}
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- context Object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- objectName Object
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- context any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- objectName any
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- object_name Any
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- Linked service reference.
- objectName Any
- The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- 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.
SapOpenHubTableDataset, SapOpenHubTableDatasetArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- OpenHub objectDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- BaseRequest objectId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- ExcludeLast objectRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- OpenHub interface{}Destination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- BaseRequest interface{}Id 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- ExcludeLast interface{}Request 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- openHub ObjectDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- baseRequest ObjectId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- excludeLast ObjectRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- openHub anyDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- baseRequest anyId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description string
- Dataset description.
- excludeLast anyRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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_ Linkedname Service Reference 
- Linked service reference.
- open_hub_ Anydestination_ name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- base_request_ Anyid 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description str
- Dataset description.
- exclude_last_ Anyrequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
- linkedService Property MapName 
- Linked service reference.
- openHub AnyDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- baseRequest AnyId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- excludeLast AnyRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
SapOpenHubTableDatasetResponse, SapOpenHubTableDatasetResponseArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- OpenHub objectDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- BaseRequest objectId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- ExcludeLast objectRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- OpenHub interface{}Destination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- BaseRequest interface{}Id 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- ExcludeLast interface{}Request 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- openHub ObjectDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- baseRequest ObjectId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- excludeLast ObjectRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- openHub anyDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- baseRequest anyId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description string
- Dataset description.
- excludeLast anyRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- open_hub_ Anydestination_ name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- base_request_ Anyid 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description str
- Dataset description.
- exclude_last_ Anyrequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- openHub AnyDestination Name 
- The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- baseRequest AnyId 
- The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- excludeLast AnyRequest 
- Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
SapTableResourceDataset, SapTableResourceDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- TableName object
- The name of the SAP Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- TableName interface{}
- The name of the SAP Table. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- tableName Object
- The name of the SAP Table. Type: string (or Expression with resultType string).
- 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- tableName any
- The name of the SAP Table. Type: string (or Expression with resultType string).
- 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- table_name Any
- The name of the SAP Table. Type: string (or Expression with resultType string).
- 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.
- linkedService Property MapName 
- Linked service reference.
- tableName Any
- The name of the SAP Table. Type: string (or Expression with resultType string).
- 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.
SapTableResourceDatasetResponse, SapTableResourceDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- TableName object
- The name of the SAP Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- TableName interface{}
- The name of the SAP Table. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- tableName Object
- The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- tableName any
- The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- table_name Any
- The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- Linked service reference.
- tableName Any
- The name of the SAP Table. Type: string (or Expression with resultType string).
- 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.
ServiceNowObjectDataset, ServiceNowObjectDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
ServiceNowObjectDatasetResponse, ServiceNowObjectDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
ServiceNowV2ObjectDataset, ServiceNowV2ObjectDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- ValueType string | Pulumi.Azure Native. Data Factory. Value Type 
- Type of value copied from source.
- LinkedService LinkedName Service Reference 
- 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).
- ValueType string | ValueType 
- Type of value copied from source.
- linkedService LinkedName Service Reference 
- 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).
- valueType String | ValueType 
- Type of value copied from source.
- linkedService LinkedName Service Reference 
- 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).
- valueType string | ValueType 
- Type of value copied from source.
- linked_service_ Linkedname Service Reference 
- 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).
- value_type str | ValueType 
- Type of value copied from source.
- linkedService Property MapName 
- 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).
- valueType String | "actual" | "display"
- Type of value copied from source.
ServiceNowV2ObjectDatasetResponse, ServiceNowV2ObjectDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- ValueType string
- Type of value copied from source.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- ValueType string
- Type of value copied from source.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- valueType String
- Type of value copied from source.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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).
- valueType string
- Type of value copied from source.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- value_type str
- Type of value copied from source.
- linkedService Property MapName 
- 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).
- valueType String
- Type of value copied from source.
SftpLocation, SftpLocationArgs    
- 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)
SftpLocationResponse, SftpLocationResponseArgs      
- 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)
SharePointOnlineListResourceDataset, SharePointOnlineListResourceDatasetArgs            
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ListName object
- The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- 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.
- ListName interface{}
- The name of the SharePoint Online list. 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.
- linkedService LinkedName Service Reference 
- 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.
- listName Object
- The name of the SharePoint Online list. 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.
- linkedService LinkedName Service Reference 
- 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.
- listName any
- The name of the SharePoint Online list. 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.
- linked_service_ Linkedname Service Reference 
- 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.
- list_name Any
- The name of the SharePoint Online list. 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.
- linkedService Property MapName 
- 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.
- listName Any
- The name of the SharePoint Online list. 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.
SharePointOnlineListResourceDatasetResponse, SharePointOnlineListResourceDatasetResponseArgs              
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ListName object
- The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- ListName interface{}
- The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- listName Object
- The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- listName any
- The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- list_name Any
- The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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.
- listName Any
- The name of the SharePoint Online list. 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.
ShopifyObjectDataset, ShopifyObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
ShopifyObjectDatasetResponse, ShopifyObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
SnowflakeDataset, SnowflakeDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Snowflake database. Type: string (or Expression with resultType string).
SnowflakeDatasetResponse, SnowflakeDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Snowflake database. Type: string (or Expression with resultType string).
SnowflakeV2Dataset, SnowflakeV2DatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Snowflake database. Type: string (or Expression with resultType string).
SnowflakeV2DatasetResponse, SnowflakeV2DatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Snowflake database. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Snowflake database. Type: string (or Expression with resultType string).
SparkObjectDataset, SparkObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Spark. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Spark. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Spark. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Spark. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Spark. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Spark. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
SparkObjectDatasetResponse, SparkObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Spark. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Spark. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Spark. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Spark. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Spark. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Spark. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
SqlServerTableDataset, SqlServerTableDatasetArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
SqlServerTableDatasetResponse, SqlServerTableDatasetResponseArgs          
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
SquareObjectDataset, SquareObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
SquareObjectDatasetResponse, SquareObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
SybaseTableDataset, SybaseTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Sybase table name. Type: string (or Expression with resultType string).
SybaseTableDatasetResponse, SybaseTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Sybase table name. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Sybase table name. Type: string (or Expression with resultType string).
TeradataTableDataset, TeradataTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Database object
- The database name of Teradata. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Teradata. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Database interface{}
- The database name of Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- database Object
- The database name of Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- database any
- The database name of Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- database Any
- The database name of Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- database Any
- The database name of Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
TeradataTableDatasetResponse, TeradataTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Database object
- The database name of Teradata. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Teradata. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Database interface{}
- The database name of Teradata. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Teradata. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- database Object
- The database name of Teradata. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Teradata. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- database any
- The database name of Teradata. Type: string (or Expression with resultType string).
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Teradata. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- database Any
- The database name of Teradata. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Teradata. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- database Any
- The database name of Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
TextFormat, TextFormatArgs    
- ColumnDelimiter object
- The column delimiter. Type: string (or Expression with resultType string).
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- EncodingName object
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar object
- The escape character. Type: string (or Expression with resultType string).
- FirstRow objectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- QuoteChar object
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter object
- The row delimiter. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- SkipLine objectCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- TreatEmpty objectAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- ColumnDelimiter interface{}
- The column delimiter. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- EncodingName interface{}
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar interface{}
- The escape character. Type: string (or Expression with resultType string).
- FirstRow interface{}As Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- NullValue interface{}
- The null value string. Type: string (or Expression with resultType string).
- QuoteChar interface{}
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter interface{}
- The row delimiter. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- SkipLine interface{}Count 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- TreatEmpty interface{}As Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- columnDelimiter Object
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- encodingName Object
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Object
- The escape character. Type: string (or Expression with resultType string).
- firstRow ObjectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- nullValue Object
- The null value string. Type: string (or Expression with resultType string).
- quoteChar Object
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Object
- The row delimiter. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- skipLine ObjectCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treatEmpty ObjectAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- columnDelimiter any
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- encodingName any
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar any
- The escape character. Type: string (or Expression with resultType string).
- firstRow anyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- nullValue any
- The null value string. Type: string (or Expression with resultType string).
- quoteChar any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter any
- The row delimiter. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- skipLine anyCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treatEmpty anyAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column_delimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding_name Any
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_char Any
- The escape character. Type: string (or Expression with resultType string).
- first_row_ Anyas_ header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null_value Any
- The null value string. Type: string (or Expression with resultType string).
- quote_char Any
- The quote character. Type: string (or Expression with resultType string).
- row_delimiter Any
- The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skip_line_ Anycount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat_empty_ Anyas_ null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- columnDelimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encodingName Any
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Any
- The escape character. Type: string (or Expression with resultType string).
- firstRow AnyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- nullValue Any
- The null value string. Type: string (or Expression with resultType string).
- quoteChar Any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Any
- The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skipLine AnyCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treatEmpty AnyAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
TextFormatResponse, TextFormatResponseArgs      
- ColumnDelimiter object
- The column delimiter. Type: string (or Expression with resultType string).
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- EncodingName object
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar object
- The escape character. Type: string (or Expression with resultType string).
- FirstRow objectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- QuoteChar object
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter object
- The row delimiter. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- SkipLine objectCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- TreatEmpty objectAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- ColumnDelimiter interface{}
- The column delimiter. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- EncodingName interface{}
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- EscapeChar interface{}
- The escape character. Type: string (or Expression with resultType string).
- FirstRow interface{}As Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- NullValue interface{}
- The null value string. Type: string (or Expression with resultType string).
- QuoteChar interface{}
- The quote character. Type: string (or Expression with resultType string).
- RowDelimiter interface{}
- The row delimiter. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- SkipLine interface{}Count 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- TreatEmpty interface{}As Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- columnDelimiter Object
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- encodingName Object
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Object
- The escape character. Type: string (or Expression with resultType string).
- firstRow ObjectAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- nullValue Object
- The null value string. Type: string (or Expression with resultType string).
- quoteChar Object
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Object
- The row delimiter. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- skipLine ObjectCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treatEmpty ObjectAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- columnDelimiter any
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- encodingName any
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar any
- The escape character. Type: string (or Expression with resultType string).
- firstRow anyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- nullValue any
- The null value string. Type: string (or Expression with resultType string).
- quoteChar any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter any
- The row delimiter. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- skipLine anyCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treatEmpty anyAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column_delimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding_name Any
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_char Any
- The escape character. Type: string (or Expression with resultType string).
- first_row_ Anyas_ header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null_value Any
- The null value string. Type: string (or Expression with resultType string).
- quote_char Any
- The quote character. Type: string (or Expression with resultType string).
- row_delimiter Any
- The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skip_line_ Anycount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat_empty_ Anyas_ null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- columnDelimiter Any
- The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encodingName Any
- The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escapeChar Any
- The escape character. Type: string (or Expression with resultType string).
- firstRow AnyAs Header 
- When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- nullValue Any
- The null value string. Type: string (or Expression with resultType string).
- quoteChar Any
- The quote character. Type: string (or Expression with resultType string).
- rowDelimiter Any
- The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skipLine AnyCount 
- The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treatEmpty AnyAs Null 
- Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
Type, TypeArgs  
- LinkedService Reference 
- LinkedServiceReference
- TypeLinked Service Reference 
- LinkedServiceReference
- LinkedService Reference 
- LinkedServiceReference
- LinkedService Reference 
- LinkedServiceReference
- LINKED_SERVICE_REFERENCE
- LinkedServiceReference
- "LinkedService Reference" 
- LinkedServiceReference
ValueType, ValueTypeArgs    
- Actual
- actual
- Display
- display
- ValueType Actual 
- actual
- ValueType Display 
- display
- Actual
- actual
- Display
- display
- Actual
- actual
- Display
- display
- ACTUAL
- actual
- DISPLAY
- display
- "actual"
- actual
- "display"
- display
VerticaTableDataset, VerticaTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Vertica. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference 
- 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 Vertica. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Vertica. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference 
- 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 Vertica. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference 
- 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 Vertica. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Vertica. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
VerticaTableDatasetResponse, VerticaTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Vertica. Type: string (or Expression with resultType string).
- TableName object
- This property will be retired. Please consider using schema + table properties instead.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Vertica. Type: string (or Expression with resultType string).
- TableName interface{}
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Vertica. Type: string (or Expression with resultType string).
- tableName Object
- This property will be retired. Please consider using schema + table properties instead.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Vertica. Type: string (or Expression with resultType string).
- tableName any
- This property will be retired. Please consider using schema + table properties instead.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Vertica. Type: string (or Expression with resultType string).
- table_name Any
- This property will be retired. Please consider using schema + table properties instead.
- linkedService Property MapName 
- 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 Vertica. Type: string (or Expression with resultType string).
- tableName Any
- This property will be retired. Please consider using schema + table properties instead.
WarehouseTableDataset, WarehouseTableDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
WarehouseTableDatasetResponse, WarehouseTableDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
- linkedService Property MapName 
- 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 Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
WebTableDataset, WebTableDatasetArgs      
- Index object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- Parameters for dataset.
- Path object
- The relative URL to the web page from the linked service URL. 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.
- Index interface{}
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- LinkedService LinkedName Service Reference 
- 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.
- Path interface{}
- The relative URL to the web page from the linked service URL. 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.
- index Object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linkedService LinkedName Service Reference 
- 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.
- path Object
- The relative URL to the web page from the linked service URL. 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.
- index any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linkedService LinkedName Service Reference 
- 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.
- path any
- The relative URL to the web page from the linked service URL. 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.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linked_service_ Linkedname Service Reference 
- 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.
- path Any
- The relative URL to the web page from the linked service URL. 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.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linkedService Property MapName 
- 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.
- path Any
- The relative URL to the web page from the linked service URL. 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.
WebTableDatasetResponse, WebTableDatasetResponseArgs        
- Index object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- Parameters for dataset.
- Path object
- The relative URL to the web page from the linked service URL. 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.
- Index interface{}
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- Parameters for dataset.
- Path interface{}
- The relative URL to the web page from the linked service URL. 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.
- index Object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- Parameters for dataset.
- path Object
- The relative URL to the web page from the linked service URL. 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.
- index any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- Parameters for dataset.
- path any
- The relative URL to the web page from the linked service URL. 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.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linked_service_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- Parameters for dataset.
- path Any
- The relative URL to the web page from the linked service URL. 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.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linkedService Property MapName 
- 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.
- path Any
- The relative URL to the web page from the linked service URL. 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.
XeroObjectDataset, XeroObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
XeroObjectDatasetResponse, XeroObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
XmlDataset, XmlDatasetArgs    
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location 
- The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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.
- LinkedService LinkedName Service Reference 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName interface{}
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- NullValue interface{}
- The null value string. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- nullValue Object
- The null value string. 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.
- linkedService LinkedName Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description string
- Dataset description.
- encodingName any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- nullValue any
- The null value string. 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.
- linked_service_ Linkedname Service Reference 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location 
- The location of the json data storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression 
- The data compression method used for the json dataset.
- description str
- Dataset description.
- encoding_name Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- null_value Any
- The null value string. 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- nullValue Any
- The null value string. 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.
XmlDatasetResponse, XmlDatasetResponseArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Location
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response 
- The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.Azure Native. Data Factory. Inputs. Dataset Compression Response 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue object
- The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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.
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- Description string
- Dataset description.
- EncodingName interface{}
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- NullValue interface{}
- The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]ParameterSpecification Response 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Object
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue Object
- The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,ParameterSpecification Response> 
- 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.
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description string
- Dataset description.
- encodingName any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- nullValue any
- The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- location
AmazonS3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response 
- The location of the json data storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
DatasetCompression Response 
- The data compression method used for the json dataset.
- description str
- Dataset description.
- encoding_name Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_value Any
- The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, ParameterSpecification Response] 
- 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.
- linkedService Property MapName 
- 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 | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encodingName Any
- The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. 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.
- nullValue Any
- The null value string. 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.
ZohoObjectDataset, ZohoObjectDatasetArgs      
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification> 
- 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).
- LinkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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).
- linkedService LinkedName Service Reference 
- 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_ Linkedname Service Reference 
- 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).
- linkedService Property MapName 
- 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).
ZohoObjectDatasetResponse, ZohoObjectDatasetResponseArgs        
- LinkedService Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.Azure Native. Data Factory. Inputs. Dataset Response Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.Azure Native. Data Factory. Inputs. Parameter Specification Response> 
- 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).
- LinkedService LinkedName Service Reference Response 
- Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]ParameterSpecification Response 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,ParameterSpecification Response> 
- 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).
- linkedService LinkedName Service Reference Response 
- Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: ParameterSpecification Response} 
- 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_ Linkedname Service Reference Response 
- Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
DatasetResponse Folder 
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, ParameterSpecification Response] 
- 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).
- linkedService Property MapName 
- 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).
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datafactory:Dataset exampleDataset /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/datasets/{datasetName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0