1. Packages
  2. Azure Native
  3. API Docs
  4. datafactory
  5. Dataset
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

azure-native.datafactory.Dataset

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

Dataset resource type.

Uses Azure REST API version 2018-06-01. In version 2.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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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",
    });

});
Copy
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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
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
Copy

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 This property is required. string
The unique name of the resource.
args This property is required. DatasetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. DatasetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DatasetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
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"),
})
Copy
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());
Copy
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")
Copy
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",
});
Copy
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
Copy

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
This property is required.
Changes to this property will trigger replacement.
string
The factory name.
Properties This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonMWSObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOracleTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForSqlServerTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AmazonRedshiftTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Dataset | Pulumi.AzureNative.DataFactory.Inputs.AvroDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureMariaDBTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureSearchIndexDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlDWTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlMITableDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlTableDataset | Pulumi.AzureNative.DataFactory.Inputs.AzureTableDataset | Pulumi.AzureNative.DataFactory.Inputs.BinaryDataset | Pulumi.AzureNative.DataFactory.Inputs.CassandraTableDataset | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsEntityDataset | Pulumi.AzureNative.DataFactory.Inputs.ConcurObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiCollectionDataset | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbSqlApiCollectionDataset | Pulumi.AzureNative.DataFactory.Inputs.CouchbaseTableDataset | Pulumi.AzureNative.DataFactory.Inputs.CustomDataset | Pulumi.AzureNative.DataFactory.Inputs.Db2TableDataset | Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextDataset | Pulumi.AzureNative.DataFactory.Inputs.DocumentDbCollectionDataset | Pulumi.AzureNative.DataFactory.Inputs.DrillTableDataset | Pulumi.AzureNative.DataFactory.Inputs.DynamicsAXResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmEntityDataset | Pulumi.AzureNative.DataFactory.Inputs.DynamicsEntityDataset | Pulumi.AzureNative.DataFactory.Inputs.EloquaObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.ExcelDataset | Pulumi.AzureNative.DataFactory.Inputs.FileShareDataset | Pulumi.AzureNative.DataFactory.Inputs.GoogleAdWordsObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryV2ObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.GreenplumTableDataset | Pulumi.AzureNative.DataFactory.Inputs.HBaseObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.HiveObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.HttpDataset | Pulumi.AzureNative.DataFactory.Inputs.HubspotObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.IcebergDataset | Pulumi.AzureNative.DataFactory.Inputs.ImpalaObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.InformixTableDataset | Pulumi.AzureNative.DataFactory.Inputs.JiraObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.JsonDataset | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseTableDataset | Pulumi.AzureNative.DataFactory.Inputs.MagentoObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.MariaDBTableDataset | Pulumi.AzureNative.DataFactory.Inputs.MarketoObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessTableDataset | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasCollectionDataset | Pulumi.AzureNative.DataFactory.Inputs.MongoDbCollectionDataset | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2CollectionDataset | Pulumi.AzureNative.DataFactory.Inputs.MySqlTableDataset | Pulumi.AzureNative.DataFactory.Inputs.NetezzaTableDataset | Pulumi.AzureNative.DataFactory.Inputs.ODataResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.OdbcTableDataset | Pulumi.AzureNative.DataFactory.Inputs.Office365Dataset | Pulumi.AzureNative.DataFactory.Inputs.OracleServiceCloudObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.OracleTableDataset | Pulumi.AzureNative.DataFactory.Inputs.OrcDataset | Pulumi.AzureNative.DataFactory.Inputs.ParquetDataset | Pulumi.AzureNative.DataFactory.Inputs.PaypalObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.PhoenixObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlTableDataset | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlV2TableDataset | Pulumi.AzureNative.DataFactory.Inputs.PrestoObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.QuickBooksObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.RelationalTableDataset | Pulumi.AzureNative.DataFactory.Inputs.ResponsysObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.RestResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.SalesforceMarketingCloudObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SalesforceObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudV2ObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SalesforceV2ObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SapBwCubeDataset | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.SapEccResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.SapHanaTableDataset | Pulumi.AzureNative.DataFactory.Inputs.SapOdpResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.SapOpenHubTableDataset | Pulumi.AzureNative.DataFactory.Inputs.SapTableResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowV2ObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SharePointOnlineListResourceDataset | Pulumi.AzureNative.DataFactory.Inputs.ShopifyObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeDataset | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeV2Dataset | Pulumi.AzureNative.DataFactory.Inputs.SparkObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SqlServerTableDataset | Pulumi.AzureNative.DataFactory.Inputs.SquareObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.SybaseTableDataset | Pulumi.AzureNative.DataFactory.Inputs.TeradataTableDataset | Pulumi.AzureNative.DataFactory.Inputs.VerticaTableDataset | Pulumi.AzureNative.DataFactory.Inputs.WarehouseTableDataset | Pulumi.AzureNative.DataFactory.Inputs.WebTableDataset | Pulumi.AzureNative.DataFactory.Inputs.XeroObjectDataset | Pulumi.AzureNative.DataFactory.Inputs.XmlDataset | Pulumi.AzureNative.DataFactory.Inputs.ZohoObjectDataset
Dataset properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
DatasetName Changes to this property will trigger replacement. string
The dataset name.
FactoryName
This property is required.
Changes to this property will trigger replacement.
string
The factory name.
Properties This property is required. 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
Dataset properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
DatasetName Changes to this property will trigger replacement. string
The dataset name.
factoryName
This property is required.
Changes to this property will trigger replacement.
String
The factory name.
properties This property is required. AmazonMWSObjectDataset | AmazonRdsForOracleTableDataset | AmazonRdsForSqlServerTableDataset | AmazonRedshiftTableDataset | AmazonS3Dataset | AvroDataset | AzureBlobDataset | AzureBlobFSDataset | AzureDataExplorerTableDataset | AzureDataLakeStoreDataset | AzureDatabricksDeltaLakeDataset | AzureMariaDBTableDataset | AzureMySqlTableDataset | AzurePostgreSqlTableDataset | AzureSearchIndexDataset | AzureSqlDWTableDataset | AzureSqlMITableDataset | AzureSqlTableDataset | AzureTableDataset | BinaryDataset | CassandraTableDataset | CommonDataServiceForAppsEntityDataset | ConcurObjectDataset | CosmosDbMongoDbApiCollectionDataset | CosmosDbSqlApiCollectionDataset | CouchbaseTableDataset | CustomDataset | Db2TableDataset | DelimitedTextDataset | DocumentDbCollectionDataset | DrillTableDataset | DynamicsAXResourceDataset | DynamicsCrmEntityDataset | DynamicsEntityDataset | EloquaObjectDataset | ExcelDataset | FileShareDataset | GoogleAdWordsObjectDataset | GoogleBigQueryObjectDataset | GoogleBigQueryV2ObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HttpDataset | HubspotObjectDataset | IcebergDataset | ImpalaObjectDataset | InformixTableDataset | JiraObjectDataset | JsonDataset | LakeHouseTableDataset | MagentoObjectDataset | MariaDBTableDataset | MarketoObjectDataset | MicrosoftAccessTableDataset | MongoDbAtlasCollectionDataset | MongoDbCollectionDataset | MongoDbV2CollectionDataset | MySqlTableDataset | NetezzaTableDataset | ODataResourceDataset | OdbcTableDataset | Office365Dataset | OracleServiceCloudObjectDataset | OracleTableDataset | OrcDataset | ParquetDataset | PaypalObjectDataset | PhoenixObjectDataset | PostgreSqlTableDataset | PostgreSqlV2TableDataset | PrestoObjectDataset | QuickBooksObjectDataset | RelationalTableDataset | ResponsysObjectDataset | RestResourceDataset | SalesforceMarketingCloudObjectDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SalesforceServiceCloudV2ObjectDataset | SalesforceV2ObjectDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOdpResourceDataset | SapOpenHubTableDataset | SapTableResourceDataset | ServiceNowObjectDataset | ServiceNowV2ObjectDataset | SharePointOnlineListResourceDataset | ShopifyObjectDataset | SnowflakeDataset | SnowflakeV2Dataset | SparkObjectDataset | SqlServerTableDataset | SquareObjectDataset | SybaseTableDataset | TeradataTableDataset | VerticaTableDataset | WarehouseTableDataset | WebTableDataset | XeroObjectDataset | XmlDataset | ZohoObjectDataset
Dataset properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
datasetName Changes to this property will trigger replacement. String
The dataset name.
factoryName
This property is required.
Changes to this property will trigger replacement.
string
The factory name.
properties This property is required. AmazonMWSObjectDataset | AmazonRdsForOracleTableDataset | AmazonRdsForSqlServerTableDataset | AmazonRedshiftTableDataset | AmazonS3Dataset | AvroDataset | AzureBlobDataset | AzureBlobFSDataset | AzureDataExplorerTableDataset | AzureDataLakeStoreDataset | AzureDatabricksDeltaLakeDataset | AzureMariaDBTableDataset | AzureMySqlTableDataset | AzurePostgreSqlTableDataset | AzureSearchIndexDataset | AzureSqlDWTableDataset | AzureSqlMITableDataset | AzureSqlTableDataset | AzureTableDataset | BinaryDataset | CassandraTableDataset | CommonDataServiceForAppsEntityDataset | ConcurObjectDataset | CosmosDbMongoDbApiCollectionDataset | CosmosDbSqlApiCollectionDataset | CouchbaseTableDataset | CustomDataset | Db2TableDataset | DelimitedTextDataset | DocumentDbCollectionDataset | DrillTableDataset | DynamicsAXResourceDataset | DynamicsCrmEntityDataset | DynamicsEntityDataset | EloquaObjectDataset | ExcelDataset | FileShareDataset | GoogleAdWordsObjectDataset | GoogleBigQueryObjectDataset | GoogleBigQueryV2ObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HttpDataset | HubspotObjectDataset | IcebergDataset | ImpalaObjectDataset | InformixTableDataset | JiraObjectDataset | JsonDataset | LakeHouseTableDataset | MagentoObjectDataset | MariaDBTableDataset | MarketoObjectDataset | MicrosoftAccessTableDataset | MongoDbAtlasCollectionDataset | MongoDbCollectionDataset | MongoDbV2CollectionDataset | MySqlTableDataset | NetezzaTableDataset | ODataResourceDataset | OdbcTableDataset | Office365Dataset | OracleServiceCloudObjectDataset | OracleTableDataset | OrcDataset | ParquetDataset | PaypalObjectDataset | PhoenixObjectDataset | PostgreSqlTableDataset | PostgreSqlV2TableDataset | PrestoObjectDataset | QuickBooksObjectDataset | RelationalTableDataset | ResponsysObjectDataset | RestResourceDataset | SalesforceMarketingCloudObjectDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SalesforceServiceCloudV2ObjectDataset | SalesforceV2ObjectDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOdpResourceDataset | SapOpenHubTableDataset | SapTableResourceDataset | ServiceNowObjectDataset | ServiceNowV2ObjectDataset | SharePointOnlineListResourceDataset | ShopifyObjectDataset | SnowflakeDataset | SnowflakeV2Dataset | SparkObjectDataset | SqlServerTableDataset | SquareObjectDataset | SybaseTableDataset | TeradataTableDataset | VerticaTableDataset | WarehouseTableDataset | WebTableDataset | XeroObjectDataset | XmlDataset | ZohoObjectDataset
Dataset properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
datasetName Changes to this property will trigger replacement. string
The dataset name.
factory_name
This property is required.
Changes to this property will trigger replacement.
str
The factory name.
properties This property is required. 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
Dataset properties.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
dataset_name Changes to this property will trigger replacement. str
The dataset name.
factoryName
This property is required.
Changes to this property will trigger replacement.
String
The factory name.
properties This property is required. 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.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
datasetName Changes to this property will trigger replacement. String
The dataset name.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Etag string
Etag identifies change in the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
Type string
The resource type.
AzureApiVersion string
The Azure API version of the resource.
Etag string
Etag identifies change in the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name.
Type string
The resource type.
azureApiVersion String
The Azure API version of the resource.
etag String
Etag identifies change in the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
type String
The resource type.
azureApiVersion string
The Azure API version of the resource.
etag string
Etag identifies change in the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The resource name.
type string
The resource type.
azure_api_version str
The Azure API version of the resource.
etag str
Etag identifies change in the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The resource name.
type str
The resource type.
azureApiVersion String
The Azure API version of the resource.
etag String
Etag identifies change in the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name.
type String
The resource type.

Supporting Types

AmazonMWSObjectDataset
, AmazonMWSObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

AmazonMWSObjectDatasetResponse
, AmazonMWSObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

AmazonRdsForOracleTableDataset
, AmazonRdsForOracleTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

AmazonRdsForOracleTableDatasetResponse
, AmazonRdsForOracleTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).

AmazonRdsForSqlServerTableDataset
, AmazonRdsForSqlServerTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

AmazonRdsForSqlServerTableDatasetResponse
, AmazonRdsForSqlServerTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).

AmazonRedshiftTableDataset
, AmazonRedshiftTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The Amazon Redshift table name. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

AmazonRedshiftTableDatasetResponse
, AmazonRedshiftTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The Amazon Redshift table name. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

AmazonS3CompatibleLocation
, 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 This property is required. object
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the Amazon S3 object.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat
The format of files.
Key object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
ModifiedDatetimeEnd object
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart object
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Prefix object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Version object
The version for the S3 object. Type: string (or Expression with resultType string).
BucketName This property is required. interface{}
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompression
The data compression method used for the Amazon S3 object.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of files.
Key interface{}
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
ModifiedDatetimeEnd interface{}
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart interface{}
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for dataset.
Prefix interface{}
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Version interface{}
The version for the S3 object. Type: string (or Expression with resultType string).
bucketName This property is required. Object
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the Amazon S3 object.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of files.
key Object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modifiedDatetimeEnd Object
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Object
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for dataset.
prefix Object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version Object
The version for the S3 object. Type: string (or Expression with resultType string).
bucketName This property is required. any
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the Amazon S3 object.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of files.
key any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modifiedDatetimeEnd any
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart any
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
prefix any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version any
The version for the S3 object. Type: string (or Expression with resultType string).
bucket_name This property is required. Any
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the Amazon S3 object.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of files.
key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modified_datetime_end Any
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modified_datetime_start Any
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
prefix Any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version Any
The version for the S3 object. Type: string (or Expression with resultType string).
bucketName This property is required. Any
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the Amazon S3 object.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of files.
key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modifiedDatetimeEnd Any
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Any
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for dataset.
prefix Any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version Any
The version for the S3 object. Type: string (or Expression with resultType string).

AmazonS3DatasetResponse
, AmazonS3DatasetResponseArgs

BucketName This property is required. object
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the Amazon S3 object.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse
The format of files.
Key object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
ModifiedDatetimeEnd object
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart object
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Prefix object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Version object
The version for the S3 object. Type: string (or Expression with resultType string).
BucketName This property is required. interface{}
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
The data compression method used for the Amazon S3 object.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
Key interface{}
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
ModifiedDatetimeEnd interface{}
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart interface{}
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Prefix interface{}
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Version interface{}
The version for the S3 object. Type: string (or Expression with resultType string).
bucketName This property is required. Object
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the Amazon S3 object.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
key Object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modifiedDatetimeEnd Object
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Object
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
prefix Object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version Object
The version for the S3 object. Type: string (or Expression with resultType string).
bucketName This property is required. any
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the Amazon S3 object.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
key any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modifiedDatetimeEnd any
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart any
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
prefix any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version any
The version for the S3 object. Type: string (or Expression with resultType string).
bucket_name This property is required. Any
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the Amazon S3 object.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modified_datetime_end Any
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modified_datetime_start Any
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
prefix Any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version Any
The version for the S3 object. Type: string (or Expression with resultType string).
bucketName This property is required. Any
The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the Amazon S3 object.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of files.
key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
modifiedDatetimeEnd Any
The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Any
The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for dataset.
prefix Any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
version Any
The version for the S3 object. Type: string (or Expression with resultType string).

AmazonS3Location
, 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
The location of the avro storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
AvroCompressionCodec object
The data avroCompressionCodec. Type: string (or Expression with resultType string).
AvroCompressionLevel int
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
The location of the avro storage.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
AvroCompressionCodec interface{}
The data avroCompressionCodec. Type: string (or Expression with resultType string).
AvroCompressionLevel int
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
The location of the avro storage.
annotations List<Object>
List of tags that can be used for describing the Dataset.
avroCompressionCodec Object
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avroCompressionLevel Integer
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
The location of the avro storage.
annotations any[]
List of tags that can be used for describing the Dataset.
avroCompressionCodec any
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avroCompressionLevel number
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
The location of the avro storage.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
avro_compression_codec Any
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avro_compression_level int
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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.
avroCompressionCodec Any
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avroCompressionLevel Number
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AvroDatasetResponse
, AvroDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
The location of the avro storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
AvroCompressionCodec object
The data avroCompressionCodec. Type: string (or Expression with resultType string).
AvroCompressionLevel int
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the avro storage.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
AvroCompressionCodec interface{}
The data avroCompressionCodec. Type: string (or Expression with resultType string).
AvroCompressionLevel int
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the avro storage.
annotations List<Object>
List of tags that can be used for describing the Dataset.
avroCompressionCodec Object
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avroCompressionLevel Integer
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the avro storage.
annotations any[]
List of tags that can be used for describing the Dataset.
avroCompressionCodec any
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avroCompressionLevel number
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the avro storage.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
avro_compression_codec Any
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avro_compression_level int
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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.
avroCompressionCodec Any
The data avroCompressionCodec. Type: string (or Expression with resultType string).
avroCompressionLevel Number
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AvroFormat
, 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the blob storage.
Description string
Dataset description.
FileName object
The name of the Azure Blob. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat
The format of the Azure Blob storage.
ModifiedDatetimeEnd object
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart object
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableRootLocation object
The root of blob path. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompression
The data compression method used for the blob storage.
Description string
Dataset description.
FileName interface{}
The name of the Azure Blob. Type: string (or Expression with resultType string).
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath interface{}
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Blob storage.
ModifiedDatetimeEnd interface{}
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart interface{}
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableRootLocation interface{}
The root of blob path. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the blob storage.
description String
Dataset description.
fileName Object
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Object
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Blob storage.
modifiedDatetimeEnd Object
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Object
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableRootLocation Object
The root of blob path. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the blob storage.
description string
Dataset description.
fileName any
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath any
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Blob storage.
modifiedDatetimeEnd any
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart any
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableRootLocation any
The root of blob path. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the blob storage.
description str
Dataset description.
file_name Any
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folder_path Any
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Blob storage.
modified_datetime_end Any
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modified_datetime_start Any
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_root_location Any
The root of blob path. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the blob storage.
description String
Dataset description.
fileName Any
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Any
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of the Azure Blob storage.
modifiedDatetimeEnd Any
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Any
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableRootLocation Any
The root of blob path. Type: string (or Expression with resultType string).

AzureBlobDatasetResponse
, AzureBlobDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the blob storage.
Description string
Dataset description.
FileName object
The name of the Azure Blob. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse
The format of the Azure Blob storage.
ModifiedDatetimeEnd object
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart object
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableRootLocation object
The root of blob path. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
The data compression method used for the blob storage.
Description string
Dataset description.
FileName interface{}
The name of the Azure Blob. Type: string (or Expression with resultType string).
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath interface{}
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Blob storage.
ModifiedDatetimeEnd interface{}
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart interface{}
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableRootLocation interface{}
The root of blob path. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the blob storage.
description String
Dataset description.
fileName Object
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Object
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Blob storage.
modifiedDatetimeEnd Object
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Object
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableRootLocation Object
The root of blob path. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the blob storage.
description string
Dataset description.
fileName any
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath any
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Blob storage.
modifiedDatetimeEnd any
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart any
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableRootLocation any
The root of blob path. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the blob storage.
description str
Dataset description.
file_name Any
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folder_path Any
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Blob storage.
modified_datetime_end Any
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modified_datetime_start Any
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_root_location Any
The root of blob path. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the blob storage.
description String
Dataset description.
fileName Any
The name of the Azure Blob. Type: string (or Expression with resultType string).
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Any
The path of the Azure Blob storage. Type: string (or Expression with resultType string).
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of the Azure Blob storage.
modifiedDatetimeEnd Any
The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Any
The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableRootLocation Any
The root of blob path. Type: string (or Expression with resultType string).

AzureBlobFSDataset
, AzureBlobFSDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the blob storage.
Description string
Dataset description.
FileName object
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat
The format of the Azure Data Lake Storage Gen2 storage.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompression
The data compression method used for the blob storage.
Description string
Dataset description.
FileName interface{}
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath interface{}
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Data Lake Storage Gen2 storage.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the blob storage.
description String
Dataset description.
fileName Object
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Object
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Data Lake Storage Gen2 storage.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the blob storage.
description string
Dataset description.
fileName any
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath any
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Data Lake Storage Gen2 storage.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the blob storage.
description str
Dataset description.
file_name Any
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folder_path Any
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Azure Data Lake Storage Gen2 storage.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the blob storage.
description String
Dataset description.
fileName Any
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Any
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of the Azure Data Lake Storage Gen2 storage.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureBlobFSDatasetResponse
, AzureBlobFSDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the blob storage.
Description string
Dataset description.
FileName object
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse
The format of the Azure Data Lake Storage Gen2 storage.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
The data compression method used for the blob storage.
Description string
Dataset description.
FileName interface{}
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath interface{}
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Data Lake Storage Gen2 storage.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the blob storage.
description String
Dataset description.
fileName Object
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Object
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Data Lake Storage Gen2 storage.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the blob storage.
description string
Dataset description.
fileName any
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath any
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Data Lake Storage Gen2 storage.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the blob storage.
description str
Dataset description.
file_name Any
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folder_path Any
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Azure Data Lake Storage Gen2 storage.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the blob storage.
description String
Dataset description.
fileName Any
The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Any
The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of the Azure Data Lake Storage Gen2 storage.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureBlobFSLocation
, 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

AzureDataExplorerTableDatasetResponse
, AzureDataExplorerTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).

AzureDataLakeStoreDataset
, AzureDataLakeStoreDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the item(s) in the Azure Data Lake Store.
Description string
Dataset description.
FileName object
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat
The format of the Data Lake Store.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompression
The data compression method used for the item(s) in the Azure Data Lake Store.
Description string
Dataset description.
FileName interface{}
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath interface{}
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Data Lake Store.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the item(s) in the Azure Data Lake Store.
description String
Dataset description.
fileName Object
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Object
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Data Lake Store.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the item(s) in the Azure Data Lake Store.
description string
Dataset description.
fileName any
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath any
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Data Lake Store.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the item(s) in the Azure Data Lake Store.
description str
Dataset description.
file_name Any
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folder_path Any
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format AvroFormat | JsonFormat | OrcFormat | ParquetFormat | TextFormat
The format of the Data Lake Store.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the item(s) in the Azure Data Lake Store.
description String
Dataset description.
fileName Any
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Any
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of the Data Lake Store.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureDataLakeStoreDatasetResponse
, AzureDataLakeStoreDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the item(s) in the Azure Data Lake Store.
Description string
Dataset description.
FileName object
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse
The format of the Data Lake Store.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
The data compression method used for the item(s) in the Azure Data Lake Store.
Description string
Dataset description.
FileName interface{}
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath interface{}
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Data Lake Store.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the item(s) in the Azure Data Lake Store.
description String
Dataset description.
fileName Object
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Object
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Data Lake Store.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the item(s) in the Azure Data Lake Store.
description string
Dataset description.
fileName any
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath any
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Data Lake Store.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the item(s) in the Azure Data Lake Store.
description str
Dataset description.
file_name Any
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folder_path Any
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the Data Lake Store.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the item(s) in the Azure Data Lake Store.
description String
Dataset description.
fileName Any
The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folderPath Any
Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
format Property Map | Property Map | Property Map | Property Map | Property Map
The format of the Data Lake Store.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureDataLakeStoreLocation
, 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Database object
The database name of delta table. Type: string (or Expression with resultType string).
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The name of delta table. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Database interface{}
The database name of delta table. Type: string (or Expression with resultType string).
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The name of delta table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
database Object
The database name of delta table. Type: string (or Expression with resultType string).
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The name of delta table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
database any
The database name of delta table. Type: string (or Expression with resultType string).
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The name of delta table. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
database Any
The database name of delta table. Type: string (or Expression with resultType string).
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of delta table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
database Any
The database name of delta table. Type: string (or Expression with resultType string).
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of delta table. Type: string (or Expression with resultType string).

AzureDatabricksDeltaLakeDatasetResponse
, AzureDatabricksDeltaLakeDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Database object
The database name of delta table. Type: string (or Expression with resultType string).
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The name of delta table. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Database interface{}
The database name of delta table. Type: string (or Expression with resultType string).
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The name of delta table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
database Object
The database name of delta table. Type: string (or Expression with resultType string).
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The name of delta table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
database any
The database name of delta table. Type: string (or Expression with resultType string).
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The name of delta table. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
database Any
The database name of delta table. Type: string (or Expression with resultType string).
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of delta table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
database Any
The database name of delta table. Type: string (or Expression with resultType string).
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of delta table. Type: string (or Expression with resultType string).

AzureFileStorageLocation
, 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

AzureMariaDBTableDatasetResponse
, AzureMariaDBTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

AzureMySqlTableDataset
, AzureMySqlTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
TableName object
The Azure MySQL database table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
TableName interface{}
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
tableName Object
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
tableName any
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
table_name Any
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
tableName Any
The Azure MySQL database table name. Type: string (or Expression with resultType string).

AzureMySqlTableDatasetResponse
, AzureMySqlTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
TableName object
The Azure MySQL database table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
TableName interface{}
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
tableName Object
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
tableName any
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
table_name Any
The Azure MySQL database table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
tableName Any
The Azure MySQL database table name. Type: string (or Expression with resultType string).

AzurePostgreSqlTableDataset
, AzurePostgreSqlTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
TableName object
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
TableName interface{}
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
tableName Object
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
tableName any
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
table_name Any
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
tableName Any
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

AzurePostgreSqlTableDatasetResponse
, AzurePostgreSqlTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
TableName object
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
TableName interface{}
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
tableName Object
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
tableName any
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
table_name Any
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
tableName Any
The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).

AzureSearchIndexDataset
, AzureSearchIndexDatasetArgs

IndexName This property is required. object
The name of the Azure Search Index. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
IndexName This property is required. interface{}
The name of the Azure Search Index. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
indexName This property is required. Object
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
indexName This property is required. any
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
index_name This property is required. Any
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
indexName This property is required. Any
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureSearchIndexDatasetResponse
, AzureSearchIndexDatasetResponseArgs

IndexName This property is required. object
The name of the Azure Search Index. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
IndexName This property is required. interface{}
The name of the Azure Search Index. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
indexName This property is required. Object
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
indexName This property is required. any
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
index_name This property is required. Any
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
indexName This property is required. Any
The name of the Azure Search Index. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

AzureSqlDWTableDataset
, AzureSqlDWTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure 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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure 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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure 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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure 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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure 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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure 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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure 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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure 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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure 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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Azure 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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure SQL database. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Azure 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
TableName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
TableName This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
tableName This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
tableName This property is required. 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_name This property is required. LinkedServiceReference
Linked service reference.
table_name This property is required. 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.
linkedServiceName This property is required. Property Map
Linked service reference.
tableName This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
TableName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
TableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
tableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
tableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
table_name This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
tableName This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
The location of the Binary storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the binary dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
The location of the Binary storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the binary dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the Binary storage.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
The data compression method used for the binary dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the Binary storage.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the binary dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the Binary storage.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the binary dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the Binary storage.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the binary dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Keyspace object
The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name of the Cassandra database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Keyspace object
The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name of the Cassandra database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Keyspace interface{}
The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name of the Cassandra database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
keyspace Object
The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name of the Cassandra database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
keyspace any
The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name of the Cassandra database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
keyspace Any
The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name of the Cassandra database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
EntityName object
The logical name of the entity. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
EntityName object
The logical name of the entity. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

ConcurObjectDatasetResponse
, ConcurObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

CosmosDbMongoDbApiCollectionDataset
, CosmosDbMongoDbApiCollectionDatasetArgs

Collection This property is required. object
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Collection This property is required. interface{}
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Object
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. any
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

CosmosDbMongoDbApiCollectionDatasetResponse
, CosmosDbMongoDbApiCollectionDatasetResponseArgs

Collection This property is required. object
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Collection This property is required. interface{}
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Object
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. any
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

CosmosDbSqlApiCollectionDataset
, CosmosDbSqlApiCollectionDatasetArgs

CollectionName This property is required. object
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CollectionName This property is required. interface{}
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Object
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. any
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection_name This property is required. Any
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Any
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

CosmosDbSqlApiCollectionDatasetResponse
, CosmosDbSqlApiCollectionDatasetResponseArgs

CollectionName This property is required. object
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CollectionName This property is required. interface{}
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Object
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. any
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection_name This property is required. Any
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Any
CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

CouchbaseTableDataset
, CouchbaseTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

CouchbaseTableDatasetResponse
, CouchbaseTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

CustomDataset
, CustomDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

CustomDatasetResponse
, CustomDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

DatasetCompression
, DatasetCompressionArgs

Type This property is required. object
Type of dataset compression. Type: string (or Expression with resultType string).
Level object
The dataset compression level. Type: string (or Expression with resultType string).
Type This property is required. interface{}
Type of dataset compression. Type: string (or Expression with resultType string).
Level interface{}
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. Object
Type of dataset compression. Type: string (or Expression with resultType string).
level Object
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. any
Type of dataset compression. Type: string (or Expression with resultType string).
level any
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. Any
Type of dataset compression. Type: string (or Expression with resultType string).
level Any
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. Any
Type of dataset compression. Type: string (or Expression with resultType string).
level Any
The dataset compression level. Type: string (or Expression with resultType string).

DatasetCompressionResponse
, DatasetCompressionResponseArgs

Type This property is required. object
Type of dataset compression. Type: string (or Expression with resultType string).
Level object
The dataset compression level. Type: string (or Expression with resultType string).
Type This property is required. interface{}
Type of dataset compression. Type: string (or Expression with resultType string).
Level interface{}
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. Object
Type of dataset compression. Type: string (or Expression with resultType string).
level Object
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. any
Type of dataset compression. Type: string (or Expression with resultType string).
level any
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. Any
Type of dataset compression. Type: string (or Expression with resultType string).
level Any
The dataset compression level. Type: string (or Expression with resultType string).
type This property is required. Any
Type of dataset compression. Type: string (or Expression with resultType string).
level Any
The dataset compression level. Type: string (or Expression with resultType string).

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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The Db2 table name. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The Db2 table name. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The Db2 table name. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The 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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The Db2 table name. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The Db2 table name. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The Db2 table name. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The 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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
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).
FirstRowAsHeader object
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.AzureNative.DataFactory.Inputs.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 Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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).
FirstRowAsHeader interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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).
firstRowAsHeader Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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).
firstRowAsHeader any
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_as_header Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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).
firstRowAsHeader Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
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).
FirstRowAsHeader object
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
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.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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).
FirstRowAsHeader interface{}
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 DatasetResponseFolder
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]ParameterSpecificationResponse
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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).
firstRowAsHeader Object
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 DatasetResponseFolder
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,ParameterSpecificationResponse>
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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).
firstRowAsHeader any
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 DatasetResponseFolder
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]: ParameterSpecificationResponse}
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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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_as_header Any
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 DatasetResponseFolder
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, ParameterSpecificationResponse]
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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).
firstRowAsHeader Any
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 This property is required. object
Document Database collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CollectionName This property is required. interface{}
Document Database collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Object
Document Database collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. any
Document Database collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection_name This property is required. Any
Document Database collection name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Any
Document Database collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

DocumentDbCollectionDatasetResponse
, DocumentDbCollectionDatasetResponseArgs

CollectionName This property is required. object
Document Database collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CollectionName This property is required. interface{}
Document Database collection name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Object
Document Database collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. any
Document Database collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection_name This property is required. Any
Document Database collection name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Any
Document Database collection name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

DrillTableDataset
, DrillTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Drill. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Drill. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Drill. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Drill. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Drill. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Drill. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

DrillTableDatasetResponse
, DrillTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Drill. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Drill. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Drill. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Drill. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Drill. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Drill. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

DynamicsAXResourceDataset
, DynamicsAXResourceDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Path This property is required. 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Path This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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_name This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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.
linkedServiceName This property is required. Property Map
Linked service reference.
path This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Path This property is required. 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
path This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
EntityName object
The logical name of the entity. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
EntityName object
The logical name of the entity. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
EntityName object
The logical name of the entity. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
EntityName object
The logical name of the entity. Type: string (or Expression with resultType string).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

EloquaObjectDatasetResponse
, EloquaObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

ExcelDataset
, ExcelDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
The location of the excel storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the json dataset.
Description string
Dataset description.
FirstRowAsHeader object
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.AzureNative.DataFactory.Inputs.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 Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
FirstRowAsHeader interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
firstRowAsHeader Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
firstRowAsHeader any
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_as_header Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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.
firstRowAsHeader Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
The location of the excel storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the json dataset.
Description string
Dataset description.
FirstRowAsHeader object
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
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.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the excel storage.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
The data compression method used for the json dataset.
Description string
Dataset description.
FirstRowAsHeader interface{}
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 DatasetResponseFolder
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]ParameterSpecificationResponse
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the excel storage.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the json dataset.
description String
Dataset description.
firstRowAsHeader Object
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 DatasetResponseFolder
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,ParameterSpecificationResponse>
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the excel storage.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the json dataset.
description string
Dataset description.
firstRowAsHeader any
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 DatasetResponseFolder
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]: ParameterSpecificationResponse}
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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the excel storage.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the json dataset.
description str
Dataset description.
first_row_as_header Any
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 DatasetResponseFolder
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, ParameterSpecificationResponse]
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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.
firstRowAsHeader Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
The path of the on-premises file system. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat
The format of the files.
ModifiedDatetimeEnd object
The end of file's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart object
The start of file's modified datetime. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompression
The data compression method used for the 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.
ModifiedDatetimeEnd interface{}
The end of file's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the 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.
modifiedDatetimeEnd Object
The end of file's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the 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.
modifiedDatetimeEnd any
The end of file's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart any
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompression
The data compression method used for the 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_end Any
The end of file's modified datetime. Type: string (or Expression with resultType string).
modified_datetime_start Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the 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.
modifiedDatetimeEnd Any
The end of file's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
FolderPath object
The path of the on-premises file system. Type: string (or Expression with resultType string).
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse
The format of the files.
ModifiedDatetimeEnd object
The end of file's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart object
The start of file's modified datetime. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
The data compression method used for the 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 DatasetResponseFolder
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 AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the files.
ModifiedDatetimeEnd interface{}
The end of file's modified datetime. Type: string (or Expression with resultType string).
ModifiedDatetimeStart interface{}
The start of file's modified datetime. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the 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 DatasetResponseFolder
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 AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the files.
modifiedDatetimeEnd Object
The end of file's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Object
The start of file's modified datetime. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the 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 DatasetResponseFolder
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 AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the files.
modifiedDatetimeEnd any
The end of file's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart any
The start of file's modified datetime. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
The data compression method used for the 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
folder_path Any
The path of the on-premises file system. Type: string (or Expression with resultType string).
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of the files.
modified_datetime_end Any
The end of file's modified datetime. Type: string (or Expression with resultType string).
modified_datetime_start Any
The start of file's modified datetime. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
compression Property Map
The data compression method used for the 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.
modifiedDatetimeEnd Any
The end of file's modified datetime. Type: string (or Expression with resultType string).
modifiedDatetimeStart Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

GoogleAdWordsObjectDatasetResponse
, GoogleAdWordsObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

GoogleBigQueryObjectDataset
, GoogleBigQueryObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using database + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using database + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using database + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using database + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the 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_name This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using database + table properties instead.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
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).
linkedServiceName This property is required. LinkedServiceReference
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).
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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).
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Google BigQuery. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of Greenplum. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of Greenplum. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of Greenplum. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of Greenplum. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of Greenplum. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of Greenplum. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

GreenplumTableDatasetResponse
, GreenplumTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of Greenplum. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of Greenplum. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of Greenplum. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of Greenplum. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of Greenplum. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of Greenplum. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

HBaseObjectDataset
, HBaseObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

HBaseObjectDatasetResponse
, HBaseObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Hive. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Hive. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Hive. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Hive. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Hive. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Hive. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

HiveObjectDatasetResponse
, HiveObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Hive. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Hive. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Hive. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Hive. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Hive. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Hive. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

HttpDataset
, HttpDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
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.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used on files.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormat | Pulumi.AzureNative.DataFactory.Inputs.JsonFormat | Pulumi.AzureNative.DataFactory.Inputs.OrcFormat | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormat | Pulumi.AzureNative.DataFactory.Inputs.TextFormat
The format of files.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.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.
LinkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
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.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used on files.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Format Pulumi.AzureNative.DataFactory.Inputs.AvroFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetFormatResponse | Pulumi.AzureNative.DataFactory.Inputs.TextFormatResponse
The format of files.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetCompressionResponse
The data compression method used on files.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
Parameters map[string]ParameterSpecificationResponse
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetCompressionResponse
The data compression method used on files.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
parameters Map<String,ParameterSpecificationResponse>
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetCompressionResponse
The data compression method used on files.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
parameters {[key: string]: ParameterSpecificationResponse}
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_name This property is required. LinkedServiceReferenceResponse
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 DatasetCompressionResponse
The data compression method used on files.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
format AvroFormatResponse | JsonFormatResponse | OrcFormatResponse | ParquetFormatResponse | TextFormatResponse
The format of files.
parameters Mapping[str, ParameterSpecificationResponse]
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

HubspotObjectDatasetResponse
, HubspotObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

IcebergDataset
, IcebergDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Impala. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Impala. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Impala. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Impala. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Impala. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Impala. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

ImpalaObjectDatasetResponse
, ImpalaObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Impala. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Impala. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Impala. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Impala. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Impala. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Impala. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

InformixTableDataset
, InformixTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The Informix table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The Informix table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The Informix table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The Informix table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The Informix table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The Informix table name. Type: string (or Expression with resultType string).

InformixTableDatasetResponse
, InformixTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The Informix table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The Informix table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The Informix table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The Informix table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The Informix table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The Informix table name. Type: string (or Expression with resultType string).

JiraObjectDataset
, JiraObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

JiraObjectDatasetResponse
, JiraObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

JsonDataset
, JsonDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
The location of the json data storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
The location of the json data storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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.
JsonNodeReference object
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
JsonPathDefinition object
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.
JsonNodeReference interface{}
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
JsonPathDefinition interface{}
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.
jsonNodeReference Object
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
jsonPathDefinition Object
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.
jsonNodeReference any
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
jsonPathDefinition any
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_reference Any
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
json_path_definition Any
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.
jsonNodeReference Any
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
jsonPathDefinition Any
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.
JsonNodeReference object
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
JsonPathDefinition object
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.
JsonNodeReference interface{}
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
JsonPathDefinition interface{}
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.
jsonNodeReference Object
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
jsonPathDefinition Object
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.
jsonNodeReference any
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
jsonPathDefinition any
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_reference Any
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
json_path_definition Any
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.
jsonNodeReference Any
The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
jsonPathDefinition Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).

LakeHouseTableDatasetResponse
, LakeHouseTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The name of Microsoft Fabric Lakehouse Table. Type: string (or Expression with resultType string).

LinkedServiceReference
, LinkedServiceReferenceArgs

ReferenceName This property is required. string
Reference LinkedService name.
Type This property is required. string | Pulumi.AzureNative.DataFactory.Type
Linked service reference type.
Parameters Dictionary<string, object>
Arguments for LinkedService.
ReferenceName This property is required. string
Reference LinkedService name.
Type This property is required. string | Type
Linked service reference type.
Parameters map[string]interface{}
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. String | Type
Linked service reference type.
parameters Map<String,Object>
Arguments for LinkedService.
referenceName This property is required. string
Reference LinkedService name.
type This property is required. string | Type
Linked service reference type.
parameters {[key: string]: any}
Arguments for LinkedService.
reference_name This property is required. str
Reference LinkedService name.
type This property is required. str | Type
Linked service reference type.
parameters Mapping[str, Any]
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. String | "LinkedServiceReference"
Linked service reference type.
parameters Map<Any>
Arguments for LinkedService.

LinkedServiceReferenceResponse
, LinkedServiceReferenceResponseArgs

ReferenceName This property is required. string
Reference LinkedService name.
Type This property is required. string
Linked service reference type.
Parameters Dictionary<string, object>
Arguments for LinkedService.
ReferenceName This property is required. string
Reference LinkedService name.
Type This property is required. string
Linked service reference type.
Parameters map[string]interface{}
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. String
Linked service reference type.
parameters Map<String,Object>
Arguments for LinkedService.
referenceName This property is required. string
Reference LinkedService name.
type This property is required. string
Linked service reference type.
parameters {[key: string]: any}
Arguments for LinkedService.
reference_name This property is required. str
Reference LinkedService name.
type This property is required. str
Linked service reference type.
parameters Mapping[str, Any]
Arguments for LinkedService.
referenceName This property is required. String
Reference LinkedService name.
type This property is required. String
Linked service reference type.
parameters Map<Any>
Arguments for LinkedService.

MagentoObjectDataset
, MagentoObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

MagentoObjectDatasetResponse
, MagentoObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

MariaDBTableDataset
, MariaDBTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

MariaDBTableDatasetResponse
, MariaDBTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

MarketoObjectDataset
, MarketoObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

MarketoObjectDatasetResponse
, MarketoObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

MicrosoftAccessTableDataset
, MicrosoftAccessTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The Microsoft Access table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The Microsoft Access table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The Microsoft Access table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The Microsoft Access table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The Microsoft Access table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The Microsoft Access table name. Type: string (or Expression with resultType string).

MicrosoftAccessTableDatasetResponse
, MicrosoftAccessTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The Microsoft Access table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The Microsoft Access table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The Microsoft Access table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The Microsoft Access table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The Microsoft Access table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The Microsoft Access table name. Type: string (or Expression with resultType string).

MongoDbAtlasCollectionDataset
, MongoDbAtlasCollectionDatasetArgs

Collection This property is required. object
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Collection This property is required. interface{}
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Object
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. any
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

MongoDbAtlasCollectionDatasetResponse
, MongoDbAtlasCollectionDatasetResponseArgs

Collection This property is required. object
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Collection This property is required. interface{}
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Object
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. any
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

MongoDbCollectionDataset
, MongoDbCollectionDatasetArgs

CollectionName This property is required. object
The table name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CollectionName This property is required. interface{}
The table name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Object
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. any
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection_name This property is required. Any
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Any
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

MongoDbCollectionDatasetResponse
, MongoDbCollectionDatasetResponseArgs

CollectionName This property is required. object
The table name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CollectionName This property is required. interface{}
The table name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Object
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. any
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection_name This property is required. Any
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collectionName This property is required. Any
The table name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

MongoDbV2CollectionDataset
, MongoDbV2CollectionDatasetArgs

Collection This property is required. object
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Collection This property is required. interface{}
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Object
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. any
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

MongoDbV2CollectionDatasetResponse
, MongoDbV2CollectionDatasetResponseArgs

Collection This property is required. object
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Collection This property is required. interface{}
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Object
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. any
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
collection This property is required. Any
The collection name of the MongoDB database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

MySqlTableDataset
, MySqlTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The MySQL table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The MySQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The MySQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The MySQL table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The MySQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The MySQL table name. Type: string (or Expression with resultType string).

MySqlTableDatasetResponse
, MySqlTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The MySQL table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The MySQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The MySQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The MySQL table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The MySQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The MySQL table name. Type: string (or Expression with resultType string).

NetezzaTableDataset
, NetezzaTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Netezza. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Netezza. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Netezza. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Netezza. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Netezza. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Netezza. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

NetezzaTableDatasetResponse
, NetezzaTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Netezza. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Netezza. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Netezza. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Netezza. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Netezza. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Netezza. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

ODataResourceDataset
, ODataResourceDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The ODBC table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The ODBC table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The ODBC table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The ODBC table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The ODBC table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The ODBC table name. Type: string (or Expression with resultType string).

OdbcTableDatasetResponse
, OdbcTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The ODBC table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The ODBC table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The ODBC table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The ODBC table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The ODBC table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The ODBC table name. Type: string (or Expression with resultType string).

Office365Dataset
, Office365DatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
TableName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
TableName This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
tableName This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
tableName This property is required. 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_name This property is required. LinkedServiceReference
Linked service reference.
table_name This property is required. 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.
linkedServiceName This property is required. Property Map
Linked service reference.
tableName This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
TableName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
TableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
tableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
tableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
table_name This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
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.
linkedServiceName This property is required. Property Map
Linked service reference.
tableName This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

OracleServiceCloudObjectDatasetResponse
, OracleServiceCloudObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

OracleTableDataset
, OracleTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the 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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the 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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the 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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the 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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the 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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the 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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
OrcCompressionCodec object
The data orcCompressionCodec. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
OrcCompressionCodec interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
orcCompressionCodec Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
orcCompressionCodec any
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_codec Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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.
orcCompressionCodec Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
OrcCompressionCodec object
The data orcCompressionCodec. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
OrcCompressionCodec interface{}
The data orcCompressionCodec. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
orcCompressionCodec Object
The data orcCompressionCodec. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
orcCompressionCodec any
The data orcCompressionCodec. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
orc_compression_codec Any
The data orcCompressionCodec. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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.
orcCompressionCodec Any
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 This property is required. string | Pulumi.AzureNative.DataFactory.ParameterType
Parameter type.
DefaultValue object
Default value of parameter.
Type This property is required. string | ParameterType
Parameter type.
DefaultValue interface{}
Default value of parameter.
type This property is required. String | ParameterType
Parameter type.
defaultValue Object
Default value of parameter.
type This property is required. string | ParameterType
Parameter type.
defaultValue any
Default value of parameter.
type This property is required. str | ParameterType
Parameter type.
default_value Any
Default value of parameter.
type This property is required. String | "Object" | "String" | "Int" | "Float" | "Bool" | "Array" | "SecureString"
Parameter type.
defaultValue Any
Default value of parameter.

ParameterSpecificationResponse
, ParameterSpecificationResponseArgs

Type This property is required. string
Parameter type.
DefaultValue object
Default value of parameter.
Type This property is required. string
Parameter type.
DefaultValue interface{}
Default value of parameter.
type This property is required. String
Parameter type.
defaultValue Object
Default value of parameter.
type This property is required. string
Parameter type.
defaultValue any
Default value of parameter.
type This property is required. str
Parameter type.
default_value Any
Default value of parameter.
type This property is required. 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
ParameterTypeObject
Object
ParameterTypeString
String
ParameterTypeInt
Int
ParameterTypeFloat
Float
ParameterTypeBool
Bool
ParameterTypeArray
Array
ParameterTypeSecureString
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

PaypalObjectDatasetResponse
, PaypalObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

PhoenixObjectDataset
, PhoenixObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Phoenix. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Phoenix. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Phoenix. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Phoenix. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Phoenix. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Phoenix. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

PhoenixObjectDatasetResponse
, PhoenixObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Phoenix. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Phoenix. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Phoenix. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Phoenix. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Phoenix. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Phoenix. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

PostgreSqlTableDataset
, PostgreSqlTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The PostgreSQL table name. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The PostgreSQL table name. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The PostgreSQL table name. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The 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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The PostgreSQL table name. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The PostgreSQL table name. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The PostgreSQL table name. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The 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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The PostgreSQL table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The PostgreSQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The PostgreSQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The PostgreSQL table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The PostgreSQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The PostgreSQL table name. Type: string (or Expression with resultType string).

PostgreSqlV2TableDatasetResponse
, PostgreSqlV2TableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The PostgreSQL table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The PostgreSQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The PostgreSQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The PostgreSQL table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The PostgreSQL table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The PostgreSQL table name. Type: string (or Expression with resultType string).

PrestoObjectDataset
, PrestoObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Presto. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Presto. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Presto. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Presto. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Presto. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Presto. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

PrestoObjectDatasetResponse
, PrestoObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Presto. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Presto. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Presto. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Presto. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Presto. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Presto. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

QuickBooksObjectDataset
, QuickBooksObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

QuickBooksObjectDatasetResponse
, QuickBooksObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

RelationalTableDataset
, RelationalTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The relational table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The relational table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The relational table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The relational table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The relational table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The relational table name. Type: string (or Expression with resultType string).

RelationalTableDatasetResponse
, RelationalTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The relational table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The relational table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The relational table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The relational table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The relational table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The relational table name. Type: string (or Expression with resultType string).

ResponsysObjectDataset
, ResponsysObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

ResponsysObjectDatasetResponse
, ResponsysObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

RestResourceDataset
, RestResourceDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
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.AzureNative.DataFactory.Inputs.DatasetFolder
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.AzureNative.DataFactory.Inputs.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.
LinkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
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.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
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]ParameterSpecificationResponse
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
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,ParameterSpecificationResponse>
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
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]: ParameterSpecificationResponse}
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_name This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
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, ParameterSpecificationResponse]
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.
linkedServiceName This property is required. Property Map
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

SalesforceMarketingCloudObjectDatasetResponse
, SalesforceMarketingCloudObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

SalesforceObjectDataset
, SalesforceObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
The Salesforce object API name. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
The Salesforce object API name. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
The Salesforce object API name. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
The Salesforce object API name. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
The Salesforce Service Cloud V2 object API name. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce V2 object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.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.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName object
The Salesforce V2 object API name. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
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.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ObjectApiName interface{}
The Salesforce V2 object API name. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Object
The Salesforce V2 object API name. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
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.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName any
The Salesforce V2 object API name. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
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_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
object_api_name Any
The Salesforce V2 object API name. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
objectApiName Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

SapBwCubeDatasetResponse
, SapBwCubeDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.

SapCloudForCustomerResourceDataset
, SapCloudForCustomerResourceDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Path This property is required. 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Path This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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_name This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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.
linkedServiceName This property is required. Property Map
Linked service reference.
path This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Path This property is required. 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
path This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Path This property is required. 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Path This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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_name This property is required. LinkedServiceReference
Linked service reference.
path This property is required. 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.
linkedServiceName This property is required. Property Map
Linked service reference.
path This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Path This property is required. 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
path This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
path This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of SAP HANA. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of SAP HANA. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of SAP HANA. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of SAP HANA. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of SAP HANA. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of SAP HANA. Type: string (or Expression with resultType string).

SapHanaTableDatasetResponse
, SapHanaTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of SAP HANA. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of SAP HANA. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of SAP HANA. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of SAP HANA. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of SAP HANA. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of SAP HANA. Type: string (or Expression with resultType string).

SapOdpResourceDataset
, SapOdpResourceDatasetArgs

Context This property is required. object
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
ObjectName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Context This property is required. interface{}
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
ObjectName This property is required. 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 This property is required. Object
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
objectName This property is required. 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 This property is required. any
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
objectName This property is required. 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 This property is required. Any
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
object_name This property is required. 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 This property is required. Any
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
objectName This property is required. 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 This property is required. object
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
ObjectName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Context This property is required. interface{}
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
ObjectName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
context This property is required. Object
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
objectName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
context This property is required. any
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
objectName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
context This property is required. Any
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
object_name This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
context This property is required. Any
The context of the SAP ODP Object. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
objectName This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
OpenHubDestinationName This property is required. object
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.
BaseRequestId object
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.
ExcludeLastRequest object
Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
OpenHubDestinationName This property is required. interface{}
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.
BaseRequestId interface{}
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.
ExcludeLastRequest interface{}
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
openHubDestinationName This property is required. Object
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.
baseRequestId Object
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.
excludeLastRequest Object
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
openHubDestinationName This property is required. any
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.
baseRequestId any
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.
excludeLastRequest any
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_name This property is required. LinkedServiceReference
Linked service reference.
open_hub_destination_name This property is required. Any
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_id Any
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_request Any
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.
linkedServiceName This property is required. Property Map
Linked service reference.
openHubDestinationName This property is required. Any
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.
baseRequestId Any
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.
excludeLastRequest Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
OpenHubDestinationName This property is required. object
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.
BaseRequestId object
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.
ExcludeLastRequest object
Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
OpenHubDestinationName This property is required. interface{}
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.
BaseRequestId interface{}
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.
ExcludeLastRequest interface{}
Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
openHubDestinationName This property is required. Object
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.
baseRequestId Object
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.
excludeLastRequest Object
Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
openHubDestinationName This property is required. any
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.
baseRequestId any
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.
excludeLastRequest any
Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
open_hub_destination_name This property is required. Any
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_id Any
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_request Any
Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
openHubDestinationName This property is required. Any
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.
baseRequestId Any
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.
excludeLastRequest Any
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
TableName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
TableName This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
tableName This property is required. 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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
tableName This property is required. 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_name This property is required. LinkedServiceReference
Linked service reference.
table_name This property is required. 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.
linkedServiceName This property is required. Property Map
Linked service reference.
tableName This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
TableName This property is required. 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
TableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
tableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
tableName This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
table_name This property is required. 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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
tableName This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

ServiceNowObjectDatasetResponse
, ServiceNowObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

ServiceNowV2ObjectDataset
, ServiceNowV2ObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
ValueType string | Pulumi.AzureNative.DataFactory.ValueType
Type of value copied from source.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
ValueType string | ValueType
Type of value copied from source.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
valueType String | ValueType
Type of value copied from source.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
valueType string | ValueType
Type of value copied from source.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
value_type str | ValueType
Type of value copied from source.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).
valueType String | "actual" | "display"
Type of value copied from source.

ServiceNowV2ObjectDatasetResponse
, ServiceNowV2ObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
ValueType string
Type of value copied from source.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
ValueType string
Type of value copied from source.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
valueType String
Type of value copied from source.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
valueType string
Type of value copied from source.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
value_type str
Type of value copied from source.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ListName object
The name of the SharePoint Online list. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ListName object
The name of the SharePoint Online list. Type: string (or Expression with resultType string).
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
ListName interface{}
The name of the SharePoint Online list. Type: string (or Expression with resultType string).
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
listName Object
The name of the SharePoint Online list. Type: string (or Expression with resultType string).
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
listName any
The name of the SharePoint Online list. Type: string (or Expression with resultType string).
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
list_name Any
The name of the SharePoint Online list. Type: string (or Expression with resultType string).
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

ShopifyObjectDatasetResponse
, ShopifyObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

SnowflakeDataset
, SnowflakeDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).

SnowflakeDatasetResponse
, SnowflakeDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).

SnowflakeV2Dataset
, SnowflakeV2DatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).

SnowflakeV2DatasetResponse
, SnowflakeV2DatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Snowflake database. Type: string (or Expression with resultType string).

SparkObjectDataset
, SparkObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Spark. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Spark. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Spark. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Spark. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Spark. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Spark. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

SparkObjectDatasetResponse
, SparkObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Spark. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Spark. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Spark. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Spark. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Spark. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Spark. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

SqlServerTableDataset
, SqlServerTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

SqlServerTableDatasetResponse
, SqlServerTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

SquareObjectDataset
, SquareObjectDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

SquareObjectDatasetResponse
, SquareObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

SybaseTableDataset
, SybaseTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The Sybase table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The Sybase table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The Sybase table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The Sybase table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The Sybase table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The Sybase table name. Type: string (or Expression with resultType string).

SybaseTableDatasetResponse
, SybaseTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The Sybase table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The Sybase table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The Sybase table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The Sybase table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The Sybase table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The Sybase table name. Type: string (or Expression with resultType string).

TeradataTableDataset
, TeradataTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Database object
The database name of Teradata. Type: string (or Expression with resultType string).
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of Teradata. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
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).
linkedServiceName This property is required. LinkedServiceReference
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).
linkedServiceName This property is required. LinkedServiceReference
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_name This property is required. LinkedServiceReference
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).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
database Any
The database name of 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Database object
The database name of Teradata. Type: string (or Expression with resultType string).
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of Teradata. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of Teradata. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of Teradata. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of Teradata. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
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 DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of Teradata. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
database Any
The database name of 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).
FirstRowAsHeader object
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).
SkipLineCount object
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
TreatEmptyAsNull object
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).
FirstRowAsHeader interface{}
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).
SkipLineCount interface{}
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
TreatEmptyAsNull interface{}
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).
firstRowAsHeader Object
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).
skipLineCount Object
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
treatEmptyAsNull Object
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).
firstRowAsHeader any
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).
skipLineCount any
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
treatEmptyAsNull any
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_as_header Any
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_count Any
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_as_null Any
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).
firstRowAsHeader Any
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).
skipLineCount Any
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
treatEmptyAsNull Any
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).
FirstRowAsHeader object
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).
SkipLineCount object
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
TreatEmptyAsNull object
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).
FirstRowAsHeader interface{}
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).
SkipLineCount interface{}
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
TreatEmptyAsNull interface{}
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).
firstRowAsHeader Object
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).
skipLineCount Object
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
treatEmptyAsNull Object
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).
firstRowAsHeader any
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).
skipLineCount any
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
treatEmptyAsNull any
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_as_header Any
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_count Any
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_as_null Any
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).
firstRowAsHeader Any
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).
skipLineCount Any
The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
treatEmptyAsNull Any
Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).

Type
, TypeArgs

LinkedServiceReference
LinkedServiceReference
TypeLinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LinkedServiceReference
LINKED_SERVICE_REFERENCE
LinkedServiceReference
"LinkedServiceReference"
LinkedServiceReference

ValueType
, ValueTypeArgs

Actual
actual
Display
display
ValueTypeActual
actual
ValueTypeDisplay
display
Actual
actual
Display
display
Actual
actual
Display
display
ACTUAL
actual
DISPLAY
display
"actual"
actual
"display"
display

VerticaTableDataset
, VerticaTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Vertica. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Vertica. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Vertica. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Vertica. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Vertica. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Vertica. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

VerticaTableDatasetResponse
, VerticaTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Vertica. Type: string (or Expression with resultType string).
TableName object
This property will be retired. Please consider using schema + table properties instead.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Vertica. Type: string (or Expression with resultType string).
TableName interface{}
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Vertica. Type: string (or Expression with resultType string).
tableName Object
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Vertica. Type: string (or Expression with resultType string).
tableName any
This property will be retired. Please consider using schema + table properties instead.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Vertica. Type: string (or Expression with resultType string).
table_name Any
This property will be retired. Please consider using schema + table properties instead.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Vertica. Type: string (or Expression with resultType string).
tableName Any
This property will be retired. Please consider using schema + table properties instead.

WarehouseTableDataset
, WarehouseTableDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).

WarehouseTableDatasetResponse
, WarehouseTableDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table object
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Table interface{}
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Object
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table any
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table Any
The table name of the Microsoft Fabric Warehouse. Type: string (or Expression with resultType string).

WebTableDataset
, WebTableDatasetArgs

Index This property is required. object
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
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 This property is required. interface{}
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
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 This property is required. Object
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
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 This property is required. any
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
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 This property is required. Any
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
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 This property is required. Any
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
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 This property is required. object
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
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 This property is required. interface{}
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
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 This property is required. Object
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
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 This property is required. any
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
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 This property is required. Any
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
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 This property is required. Any
The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

XeroObjectDatasetResponse
, XeroObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

XmlDataset
, XmlDatasetArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocation | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3Location | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocation | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocation | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocation | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocation | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocation | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocation | Pulumi.AzureNative.DataFactory.Inputs.SftpLocation
The location of the json data storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompression
The data compression method used for the 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.AzureNative.DataFactory.Inputs.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 Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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_name This property is required. LinkedServiceReference
Linked service reference.
location This property is required. AmazonS3CompatibleLocation | AmazonS3Location | AzureBlobFSLocation | AzureBlobStorageLocation | AzureDataLakeStoreLocation | AzureFileStorageLocation | FileServerLocation | FtpServerLocation | GoogleCloudStorageLocation | HdfsLocation | HttpServerLocation | LakeHouseLocation | OracleCloudStorageLocation | SftpLocation
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.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3LocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpServerLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageLocationResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpLocationResponse
The location of the json data storage.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Compression Pulumi.AzureNative.DataFactory.Inputs.DatasetCompressionResponse
The data compression method used for the 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.AzureNative.DataFactory.Inputs.DatasetResponseFolder
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.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Compression DatasetCompressionResponse
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 DatasetResponseFolder
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]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
annotations List<Object>
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
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 DatasetResponseFolder
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,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
annotations any[]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
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 DatasetResponseFolder
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]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
location This property is required. AmazonS3CompatibleLocationResponse | AmazonS3LocationResponse | AzureBlobFSLocationResponse | AzureBlobStorageLocationResponse | AzureDataLakeStoreLocationResponse | AzureFileStorageLocationResponse | FileServerLocationResponse | FtpServerLocationResponse | GoogleCloudStorageLocationResponse | HdfsLocationResponse | HttpServerLocationResponse | LakeHouseLocationResponse | OracleCloudStorageLocationResponse | SftpLocationResponse
The location of the json data storage.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
compression DatasetCompressionResponse
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 DatasetResponseFolder
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, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
linkedServiceName This property is required. Property Map
Linked service reference.
location This property is required. 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

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecification>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReference
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecification
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecification>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReference
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecification}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReference
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecification]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

ZohoObjectDatasetResponse
, ZohoObjectDatasetResponseArgs

LinkedServiceName This property is required. Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
Linked service reference.
Annotations List<object>
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder Pulumi.AzureNative.DataFactory.Inputs.DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationResponse>
Parameters for dataset.
Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName object
The table name. Type: string (or Expression with resultType string).
LinkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
Annotations []interface{}
List of tags that can be used for describing the Dataset.
Description string
Dataset description.
Folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
Parameters map[string]ParameterSpecificationResponse
Parameters for dataset.
Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
TableName interface{}
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations List<Object>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<String,ParameterSpecificationResponse>
Parameters for dataset.
schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Object
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations any[]
List of tags that can be used for describing the Dataset.
description string
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters {[key: string]: ParameterSpecificationResponse}
Parameters for dataset.
schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName any
The table name. Type: string (or Expression with resultType string).
linked_service_name This property is required. LinkedServiceReferenceResponse
Linked service reference.
annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
description str
Dataset description.
folder DatasetResponseFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Mapping[str, ParameterSpecificationResponse]
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
table_name Any
The table name. Type: string (or Expression with resultType string).
linkedServiceName This property is required. Property Map
Linked service reference.
annotations List<Any>
List of tags that can be used for describing the Dataset.
description String
Dataset description.
folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
parameters Map<Property Map>
Parameters for dataset.
schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
tableName Any
The table name. Type: string (or Expression with resultType string).

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} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi