azure-native.datafactory.Dataset
Explore with Pulumi AI
Dataset resource type. API Version: 2018-06-01.
Example Usage
Datasets_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
{
DatasetName = "exampleDataset",
FactoryName = "exampleFactoryName",
Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
{
FileName =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFileName" },
},
FolderPath =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFolderPath" },
},
Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
{
Type = "TextFormat",
},
LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "exampleLinkedService",
Type = "LinkedServiceReference",
},
Parameters =
{
{ "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
{ "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
},
Type = "AzureBlob",
},
ResourceGroupName = "exampleResourceGroup",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var dataset = new Dataset("dataset", DatasetArgs.builder()
.datasetName("exampleDataset")
.factoryName("exampleFactoryName")
.properties(Map.ofEntries(
Map.entry("fileName", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFileName")
.build()),
Map.entry("folderPath", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFolderPath")
.build()),
Map.entry("format", Map.of("type", "TextFormat")),
Map.entry("linkedServiceName", Map.ofEntries(
Map.entry("referenceName", "exampleLinkedService"),
Map.entry("type", "LinkedServiceReference")
)),
Map.entry("parameters", Map.ofEntries(
Map.entry("MyFileName", Map.of("type", "String")),
Map.entry("MyFolderPath", Map.of("type", "String"))
)),
Map.entry("type", "AzureBlob")
))
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
dataset_name="exampleDataset",
factory_name="exampleFactoryName",
properties=azure_native.datafactory.AzureBlobDatasetArgs(
file_name={
"type": "Expression",
"value": "@dataset().MyFileName",
},
folder_path={
"type": "Expression",
"value": "@dataset().MyFolderPath",
},
format=azure_native.datafactory.TextFormatArgs(
type="TextFormat",
),
linked_service_name=azure_native.datafactory.LinkedServiceReferenceArgs(
reference_name="exampleLinkedService",
type="LinkedServiceReference",
),
parameters={
"MyFileName": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
"MyFolderPath": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
},
type="AzureBlob",
),
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataset = new azure_native.datafactory.Dataset("dataset", {
datasetName: "exampleDataset",
factoryName: "exampleFactoryName",
properties: {
fileName: {
type: "Expression",
value: "@dataset().MyFileName",
},
folderPath: {
type: "Expression",
value: "@dataset().MyFolderPath",
},
format: {
type: "TextFormat",
},
linkedServiceName: {
referenceName: "exampleLinkedService",
type: "LinkedServiceReference",
},
parameters: {
MyFileName: {
type: "String",
},
MyFolderPath: {
type: "String",
},
},
type: "AzureBlob",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
dataset:
type: azure-native:datafactory:Dataset
properties:
datasetName: exampleDataset
factoryName: exampleFactoryName
properties:
fileName:
type: Expression
value: '@dataset().MyFileName'
folderPath:
type: Expression
value: '@dataset().MyFolderPath'
format:
type: TextFormat
linkedServiceName:
referenceName: exampleLinkedService
type: LinkedServiceReference
parameters:
MyFileName:
type: String
MyFolderPath:
type: String
type: AzureBlob
resourceGroupName: exampleResourceGroup
Datasets_Update
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
{
DatasetName = "exampleDataset",
FactoryName = "exampleFactoryName",
Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
{
Description = "Example description",
FileName =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFileName" },
},
FolderPath =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFolderPath" },
},
Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
{
Type = "TextFormat",
},
LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "exampleLinkedService",
Type = "LinkedServiceReference",
},
Parameters =
{
{ "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
{ "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
},
Type = "AzureBlob",
},
ResourceGroupName = "exampleResourceGroup",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var dataset = new Dataset("dataset", DatasetArgs.builder()
.datasetName("exampleDataset")
.factoryName("exampleFactoryName")
.properties(Map.ofEntries(
Map.entry("description", "Example description"),
Map.entry("fileName", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFileName")
.build()),
Map.entry("folderPath", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFolderPath")
.build()),
Map.entry("format", Map.of("type", "TextFormat")),
Map.entry("linkedServiceName", Map.ofEntries(
Map.entry("referenceName", "exampleLinkedService"),
Map.entry("type", "LinkedServiceReference")
)),
Map.entry("parameters", Map.ofEntries(
Map.entry("MyFileName", Map.of("type", "String")),
Map.entry("MyFolderPath", Map.of("type", "String"))
)),
Map.entry("type", "AzureBlob")
))
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
dataset_name="exampleDataset",
factory_name="exampleFactoryName",
properties=azure_native.datafactory.AzureBlobDatasetArgs(
description="Example description",
file_name={
"type": "Expression",
"value": "@dataset().MyFileName",
},
folder_path={
"type": "Expression",
"value": "@dataset().MyFolderPath",
},
format=azure_native.datafactory.TextFormatArgs(
type="TextFormat",
),
linked_service_name=azure_native.datafactory.LinkedServiceReferenceArgs(
reference_name="exampleLinkedService",
type="LinkedServiceReference",
),
parameters={
"MyFileName": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
"MyFolderPath": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
},
type="AzureBlob",
),
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataset = new azure_native.datafactory.Dataset("dataset", {
datasetName: "exampleDataset",
factoryName: "exampleFactoryName",
properties: {
description: "Example description",
fileName: {
type: "Expression",
value: "@dataset().MyFileName",
},
folderPath: {
type: "Expression",
value: "@dataset().MyFolderPath",
},
format: {
type: "TextFormat",
},
linkedServiceName: {
referenceName: "exampleLinkedService",
type: "LinkedServiceReference",
},
parameters: {
MyFileName: {
type: "String",
},
MyFolderPath: {
type: "String",
},
},
type: "AzureBlob",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
dataset:
type: azure-native:datafactory:Dataset
properties:
datasetName: exampleDataset
factoryName: exampleFactoryName
properties:
description: Example description
fileName:
type: Expression
value: '@dataset().MyFileName'
folderPath:
type: Expression
value: '@dataset().MyFolderPath'
format:
type: TextFormat
linkedServiceName:
referenceName: exampleLinkedService
type: LinkedServiceReference
parameters:
MyFileName:
type: String
MyFolderPath:
type: String
type: AzureBlob
resourceGroupName: exampleResourceGroup
Create Dataset Resource
new Dataset(name: string, args: DatasetArgs, opts?: CustomResourceOptions);
@overload
def Dataset(resource_name: str,
opts: Optional[ResourceOptions] = None,
dataset_name: Optional[str] = None,
factory_name: Optional[str] = None,
properties: Optional[Union[AmazonMWSObjectDatasetArgs, AmazonRdsForOracleTableDatasetArgs, AmazonRdsForSqlServerTableDatasetArgs, AmazonRedshiftTableDatasetArgs, AmazonS3DatasetArgs, AvroDatasetArgs, AzureBlobDatasetArgs, AzureBlobFSDatasetArgs, AzureDataExplorerTableDatasetArgs, AzureDataLakeStoreDatasetArgs, AzureDatabricksDeltaLakeDatasetArgs, AzureMariaDBTableDatasetArgs, AzureMySqlTableDatasetArgs, AzurePostgreSqlTableDatasetArgs, AzureSearchIndexDatasetArgs, AzureSqlDWTableDatasetArgs, AzureSqlMITableDatasetArgs, AzureSqlTableDatasetArgs, AzureTableDatasetArgs, BinaryDatasetArgs, CassandraTableDatasetArgs, CommonDataServiceForAppsEntityDatasetArgs, ConcurObjectDatasetArgs, CosmosDbMongoDbApiCollectionDatasetArgs, CosmosDbSqlApiCollectionDatasetArgs, CouchbaseTableDatasetArgs, CustomDatasetArgs, Db2TableDatasetArgs, DelimitedTextDatasetArgs, DocumentDbCollectionDatasetArgs, DrillTableDatasetArgs, DynamicsAXResourceDatasetArgs, DynamicsCrmEntityDatasetArgs, DynamicsEntityDatasetArgs, EloquaObjectDatasetArgs, ExcelDatasetArgs, FileShareDatasetArgs, GoogleAdWordsObjectDatasetArgs, GoogleBigQueryObjectDatasetArgs, GreenplumTableDatasetArgs, HBaseObjectDatasetArgs, HiveObjectDatasetArgs, HttpDatasetArgs, HubspotObjectDatasetArgs, ImpalaObjectDatasetArgs, InformixTableDatasetArgs, JiraObjectDatasetArgs, JsonDatasetArgs, MagentoObjectDatasetArgs, MariaDBTableDatasetArgs, MarketoObjectDatasetArgs, MicrosoftAccessTableDatasetArgs, MongoDbAtlasCollectionDatasetArgs, MongoDbCollectionDatasetArgs, MongoDbV2CollectionDatasetArgs, MySqlTableDatasetArgs, NetezzaTableDatasetArgs, ODataResourceDatasetArgs, OdbcTableDatasetArgs, Office365DatasetArgs, OracleServiceCloudObjectDatasetArgs, OracleTableDatasetArgs, OrcDatasetArgs, ParquetDatasetArgs, PaypalObjectDatasetArgs, PhoenixObjectDatasetArgs, PostgreSqlTableDatasetArgs, PrestoObjectDatasetArgs, QuickBooksObjectDatasetArgs, RelationalTableDatasetArgs, ResponsysObjectDatasetArgs, RestResourceDatasetArgs, SalesforceMarketingCloudObjectDatasetArgs, SalesforceObjectDatasetArgs, SalesforceServiceCloudObjectDatasetArgs, SapBwCubeDatasetArgs, SapCloudForCustomerResourceDatasetArgs, SapEccResourceDatasetArgs, SapHanaTableDatasetArgs, SapOdpResourceDatasetArgs, SapOpenHubTableDatasetArgs, SapTableResourceDatasetArgs, ServiceNowObjectDatasetArgs, SharePointOnlineListResourceDatasetArgs, ShopifyObjectDatasetArgs, SnowflakeDatasetArgs, SparkObjectDatasetArgs, SqlServerTableDatasetArgs, SquareObjectDatasetArgs, SybaseTableDatasetArgs, TeradataTableDatasetArgs, VerticaTableDatasetArgs, WebTableDatasetArgs, XeroObjectDatasetArgs, XmlDatasetArgs, ZohoObjectDatasetArgs]] = None,
resource_group_name: Optional[str] = None)
@overload
def Dataset(resource_name: str,
args: DatasetArgs,
opts: Optional[ResourceOptions] = None)
func NewDataset(ctx *Context, name string, args DatasetArgs, opts ...ResourceOption) (*Dataset, error)
public Dataset(string name, DatasetArgs args, CustomResourceOptions? opts = null)
public Dataset(String name, DatasetArgs args)
public Dataset(String name, DatasetArgs args, CustomResourceOptions options)
type: azure-native:datafactory:Dataset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Dataset Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Dataset resource accepts the following input properties:
- Factory
Name string The factory name.
- Properties
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon MWSObject Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Oracle Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Sql Server Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon Redshift Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Avro Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSDataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Explorer Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Delta Lake Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Maria DBTable Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure My Sql Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Postgre Sql Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Search Index Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql DWTable Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql MITable Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Azure Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Binary Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Cassandra Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Common Data Service For Apps Entity Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Concur Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Mongo Db Api Collection Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Sql Api Collection Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Couchbase Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Custom Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Db2Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Delimited Text Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Document Db Collection Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Drill Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Dynamics AXResource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Crm Entity Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Entity Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Eloqua Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Excel Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. File Share Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Google Ad Words Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Greenplum Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. HBase Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Hive Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Http Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Hubspot Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Impala Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Informix Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Jira Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Json Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Magento Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Maria DBTable Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Marketo Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Microsoft Access Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Atlas Collection Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Collection Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db V2Collection Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. My Sql Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Netezza Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. OData Resource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Odbc Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Office365Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Oracle Service Cloud Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Oracle Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Orc Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Parquet Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Paypal Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Phoenix Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Presto Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Quick Books Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Relational Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Responsys Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Rest Resource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Marketing Cloud Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Bw Cube Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Cloud For Customer Resource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Ecc Resource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Hana Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Odp Resource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Open Hub Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sap Table Resource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Service Now Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Share Point Online List Resource Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Shopify Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Snowflake Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Spark Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sql Server Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Square Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Sybase Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Teradata Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Vertica Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Web Table Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Xero Object Dataset Args Azure | Pulumi.Native. Data Factory. Inputs. Xml Dataset Args Azure Native. Data Factory. Inputs. Zoho Object Dataset Args Dataset properties.
- Resource
Group stringName The resource group name.
- Dataset
Name string The dataset name.
- Factory
Name string The factory name.
- Properties
Amazon
MWSObject | AmazonDataset Args Rds | AmazonFor Oracle Table Dataset Args Rds | AmazonFor Sql Server Table Dataset Args Redshift | AmazonTable Dataset Args S3Dataset | AvroArgs Dataset | AzureArgs Blob | AzureDataset Args Blob | AzureFSDataset Args Data | AzureExplorer Table Dataset Args Data | AzureLake Store Dataset Args Databricks | AzureDelta Lake Dataset Args Maria | AzureDBTable Dataset Args My | AzureSql Table Dataset Args Postgre | AzureSql Table Dataset Args Search | AzureIndex Dataset Args Sql | AzureDWTable Dataset Args Sql | AzureMITable Dataset Args Sql | AzureTable Dataset Args Table | BinaryDataset Args Dataset | CassandraArgs Table | CommonDataset Args Data | ConcurService For Apps Entity Dataset Args Object | CosmosDataset Args Db | CosmosMongo Db Api Collection Dataset Args Db | CouchbaseSql Api Collection Dataset Args Table | CustomDataset Args Dataset | Db2TableArgs Dataset | DelimitedArgs Text | DocumentDataset Args Db | DrillCollection Dataset Args Table | DynamicsDataset Args AXResource | DynamicsDataset Args Crm | DynamicsEntity Dataset Args Entity | EloquaDataset Args Object | ExcelDataset Args Dataset | FileArgs Share | GoogleDataset Args Ad | GoogleWords Object Dataset Args Big | GreenplumQuery Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | ImpalaDataset Args Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | MagentoArgs Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PrestoTable Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SapCloud Object Dataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ShareObject Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args Dataset properties.
- Resource
Group stringName The resource group name.
- Dataset
Name string The dataset name.
- factory
Name String The factory name.
- properties
Amazon
MWSObject | AmazonDataset Args Rds | AmazonFor Oracle Table Dataset Args Rds | AmazonFor Sql Server Table Dataset Args Redshift | AmazonTable Dataset Args S3Dataset | AvroArgs Dataset | AzureArgs Blob | AzureDataset Args Blob | AzureFSDataset Args Data | AzureExplorer Table Dataset Args Data | AzureLake Store Dataset Args Databricks | AzureDelta Lake Dataset Args Maria | AzureDBTable Dataset Args My | AzureSql Table Dataset Args Postgre | AzureSql Table Dataset Args Search | AzureIndex Dataset Args Sql | AzureDWTable Dataset Args Sql | AzureMITable Dataset Args Sql | AzureTable Dataset Args Table | BinaryDataset Args Dataset | CassandraArgs Table | CommonDataset Args Data | ConcurService For Apps Entity Dataset Args Object | CosmosDataset Args Db | CosmosMongo Db Api Collection Dataset Args Db | CouchbaseSql Api Collection Dataset Args Table | CustomDataset Args Dataset | Db2TableArgs Dataset | DelimitedArgs Text | DocumentDataset Args Db | DrillCollection Dataset Args Table | DynamicsDataset Args AXResource | DynamicsDataset Args Crm | DynamicsEntity Dataset Args Entity | EloquaDataset Args Object | ExcelDataset Args Dataset | FileArgs Share | GoogleDataset Args Ad | GoogleWords Object Dataset Args Big | GreenplumQuery Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | ImpalaDataset Args Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | MagentoArgs Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PrestoTable Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SapCloud Object Dataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ShareObject Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args Dataset properties.
- resource
Group StringName The resource group name.
- dataset
Name String The dataset name.
- factory
Name string The factory name.
- properties
Amazon
MWSObject | AmazonDataset Args Rds | AmazonFor Oracle Table Dataset Args Rds | AmazonFor Sql Server Table Dataset Args Redshift | AmazonTable Dataset Args S3Dataset | AvroArgs Dataset | AzureArgs Blob | AzureDataset Args Blob | AzureFSDataset Args Data | AzureExplorer Table Dataset Args Data | AzureLake Store Dataset Args Databricks | AzureDelta Lake Dataset Args Maria | AzureDBTable Dataset Args My | AzureSql Table Dataset Args Postgre | AzureSql Table Dataset Args Search | AzureIndex Dataset Args Sql | AzureDWTable Dataset Args Sql | AzureMITable Dataset Args Sql | AzureTable Dataset Args Table | BinaryDataset Args Dataset | CassandraArgs Table | CommonDataset Args Data | ConcurService For Apps Entity Dataset Args Object | CosmosDataset Args Db | CosmosMongo Db Api Collection Dataset Args Db | CouchbaseSql Api Collection Dataset Args Table | CustomDataset Args Dataset | Db2TableArgs Dataset | DelimitedArgs Text | DocumentDataset Args Db | DrillCollection Dataset Args Table | DynamicsDataset Args AXResource | DynamicsDataset Args Crm | DynamicsEntity Dataset Args Entity | EloquaDataset Args Object | ExcelDataset Args Dataset | FileArgs Share | GoogleDataset Args Ad | GoogleWords Object Dataset Args Big | GreenplumQuery Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | ImpalaDataset Args Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | MagentoArgs Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PrestoTable Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SapCloud Object Dataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ShareObject Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args Dataset properties.
- resource
Group stringName The resource group name.
- dataset
Name string The dataset name.
- factory_
name str The factory name.
- properties
Amazon
MWSObject | AmazonDataset Args Rds | AmazonFor Oracle Table Dataset Args Rds | AmazonFor Sql Server Table Dataset Args Redshift | AmazonTable Dataset Args S3Dataset | AvroArgs Dataset | AzureArgs Blob | AzureDataset Args Blob | AzureFSDataset Args Data | AzureExplorer Table Dataset Args Data | AzureLake Store Dataset Args Databricks | AzureDelta Lake Dataset Args Maria | AzureDBTable Dataset Args My | AzureSql Table Dataset Args Postgre | AzureSql Table Dataset Args Search | AzureIndex Dataset Args Sql | AzureDWTable Dataset Args Sql | AzureMITable Dataset Args Sql | AzureTable Dataset Args Table | BinaryDataset Args Dataset | CassandraArgs Table | CommonDataset Args Data | ConcurService For Apps Entity Dataset Args Object | CosmosDataset Args Db | CosmosMongo Db Api Collection Dataset Args Db | CouchbaseSql Api Collection Dataset Args Table | CustomDataset Args Dataset | Db2TableArgs Dataset | DelimitedArgs Text | DocumentDataset Args Db | DrillCollection Dataset Args Table | DynamicsDataset Args AXResource | DynamicsDataset Args Crm | DynamicsEntity Dataset Args Entity | EloquaDataset Args Object | ExcelDataset Args Dataset | FileArgs Share | GoogleDataset Args Ad | GoogleWords Object Dataset Args Big | GreenplumQuery Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | ImpalaDataset Args Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | MagentoArgs Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PrestoTable Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SapCloud Object Dataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ShareObject Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args Dataset properties.
- resource_
group_ strname The resource group name.
- dataset_
name str The dataset name.
- factory
Name String The factory name.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
Dataset properties.
- resource
Group StringName The resource group name.
- dataset
Name String The dataset name.
Outputs
All input properties are implicitly available as output properties. Additionally, the Dataset resource produces the following output properties:
Supporting Types
Note: There are over 200 nested types for this resource. Only the first 200 types are included in this documentation.
AmazonMWSObjectDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name object The table name. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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
Name interface{} The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Object The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with 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).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with 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).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Any The table name. Type: string (or Expression with resultType string).
AmazonMWSObjectDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name object The table name. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name interface{} The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Object The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name any The table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table_
name Any The table name. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Any The table name. Type: string (or Expression with resultType string).
AmazonRdsForOracleTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
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 Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
AmazonRdsForOracleTableDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table interface{}
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the AmazonRdsForOracle database. Type: string (or Expression with resultType string).
AmazonRdsForSqlServerTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
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 Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
AmazonRdsForSqlServerTableDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table interface{}
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the SQL Server dataset. Type: string (or Expression with resultType string).
AmazonRedshiftTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- Table
Name object This property will be retired. Please consider using schema + table properties instead.
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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).
- Table
Name interface{} This property will be retired. Please consider using schema + table properties instead.
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- table
Name Object This property will be retired. Please consider using schema + table properties instead.
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), 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.
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), 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.
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- table
Name Any This property will be retired. Please consider using schema + table properties instead.
AmazonRedshiftTableDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- Table
Name object This property will be retired. Please consider using schema + table properties instead.
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table interface{}
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- Table
Name interface{} This property will be retired. Please consider using schema + table properties instead.
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- table
Name Object This property will be retired. Please consider using schema + table properties instead.
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- table
Name any This property will be retired. Please consider using schema + table properties instead.
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- table_
name Any This property will be retired. Please consider using schema + table properties instead.
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The Amazon Redshift table name. Type: string (or Expression with resultType string).
- table
Name Any This property will be retired. Please consider using schema + table properties instead.
AmazonS3CompatibleLocation
- Bucket
Name object Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- Bucket
Name interface{} Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- bucket
Name Object Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path 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).
- 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).
- 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).
- 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).
AmazonS3CompatibleLocationResponse
- Bucket
Name object Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- Bucket
Name interface{} Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- bucket
Name Object Specify the bucketName of Amazon S3 Compatible. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path 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).
- 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).
- 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).
- 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).
AmazonS3Dataset
- Bucket
Name object The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression The data compression method used for the Amazon S3 object.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format The format of files.
- Key object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- Modified
Datetime objectEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Prefix object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Version object
The version for the S3 object. Type: string (or Expression with resultType string).
- Bucket
Name interface{} The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression The data compression method used for the Amazon S3 object.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of files.
- Key interface{}
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}End The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification 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).
- bucket
Name Object The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the Amazon S3 object.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of files.
- key Object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified
Datetime ObjectEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- prefix Object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- version Object
The version for the S3 object. Type: string (or Expression with resultType string).
- bucket
Name any The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the Amazon S3 object.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of files.
- key any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified
Datetime anyEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- prefix any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- version any
The version for the S3 object. Type: string (or Expression with resultType string).
- bucket_
name Any The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the Amazon S3 object.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of files.
- key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified_
datetime_ Anyend The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- prefix Any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- version Any
The version for the S3 object. Type: string (or Expression with resultType string).
- bucket
Name Any The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the Amazon S3 object.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format Property Map | Property Map | Property Map | Property Map | Property Map
The format of files.
- key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified
Datetime AnyEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters 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
- Bucket
Name object The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response The data compression method used for the Amazon S3 object.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response The format of files.
- Key object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- Modified
Datetime objectEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Prefix object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Version object
The version for the S3 object. Type: string (or Expression with resultType string).
- Bucket
Name interface{} The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response The data compression method used for the Amazon S3 object.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of files.
- Key interface{}
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}End The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Prefix interface{}
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Version interface{}
The version for the S3 object. Type: string (or Expression with resultType string).
- bucket
Name Object The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the Amazon S3 object.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of files.
- key Object
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified
Datetime ObjectEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- prefix Object
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- version Object
The version for the S3 object. Type: string (or Expression with resultType string).
- bucket
Name any The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the Amazon S3 object.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of files.
- key any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified
Datetime anyEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- prefix any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- version any
The version for the S3 object. Type: string (or Expression with resultType string).
- bucket_
name Any The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the Amazon S3 object.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of files.
- key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified_
datetime_ Anyend The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- prefix Any
The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- version Any
The version for the S3 object. Type: string (or Expression with resultType string).
- bucket
Name Any The name of the Amazon S3 bucket. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the Amazon S3 object.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format Property Map | Property Map | Property Map | Property Map | Property Map
The format of files.
- key Any
The key of the Amazon S3 object. Type: string (or Expression with resultType string).
- modified
Datetime AnyEnd The end of S3 object's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart The start of S3 object's modified datetime. Type: string (or Expression with resultType string).
- parameters 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
- Bucket
Name object Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- Bucket
Name interface{} Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- bucket
Name Object Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path 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).
- 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).
- 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).
- 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).
AmazonS3LocationResponse
- Bucket
Name object Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- Bucket
Name interface{} Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- bucket
Name Object Specify the bucketName of amazon S3. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path 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).
- 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).
- 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).
- 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).
AvroDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location The location of the avro storage.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Avro
Compression objectCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location The location of the avro storage.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Avro
Compression interface{}Codec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location The location of the avro storage.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- avro
Compression ObjectCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression IntegerLevel - description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location The location of the avro storage.
- annotations any[]
List of tags that can be used for describing the Dataset.
- avro
Compression anyCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression numberLevel - description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location The location of the avro storage.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- avro_
compression_ Anycodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_
compression_ intlevel - description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression 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 Property MapName Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
The location of the avro storage.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- avro
Compression AnyCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression NumberLevel - description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AvroDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response The location of the avro storage.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Avro
Compression objectCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response The location of the avro storage.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Avro
Compression interface{}Codec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response The location of the avro storage.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- avro
Compression ObjectCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression IntegerLevel - description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response The location of the avro storage.
- annotations any[]
List of tags that can be used for describing the Dataset.
- avro
Compression anyCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression numberLevel - description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response The location of the avro storage.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- avro_
compression_ Anycodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_
compression_ intlevel - description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
The location of the avro storage.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- avro
Compression AnyCodec The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression NumberLevel - description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AvroFormat
- Deserializer object
Deserializer. Type: string (or Expression with resultType string).
- Serializer object
Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
Serializer. Type: string (or Expression with resultType string).
- deserializer Object
Deserializer. Type: string (or Expression with resultType string).
- serializer Object
Serializer. Type: string (or Expression with resultType string).
- deserializer any
Deserializer. Type: string (or Expression with resultType string).
- serializer any
Serializer. Type: string (or Expression with resultType string).
- deserializer Any
Deserializer. Type: string (or Expression with resultType string).
- serializer Any
Serializer. Type: string (or Expression with resultType string).
- deserializer Any
Deserializer. Type: string (or Expression with resultType string).
- serializer Any
Serializer. Type: string (or Expression with resultType string).
AvroFormatResponse
- Deserializer object
Deserializer. Type: string (or Expression with resultType string).
- Serializer object
Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
Serializer. Type: string (or Expression with resultType string).
- deserializer Object
Deserializer. Type: string (or Expression with resultType string).
- serializer Object
Serializer. Type: string (or Expression with resultType string).
- deserializer any
Deserializer. Type: string (or Expression with resultType string).
- serializer any
Serializer. Type: string (or Expression with resultType string).
- deserializer Any
Deserializer. Type: string (or Expression with resultType string).
- serializer Any
Serializer. Type: string (or Expression with resultType string).
- deserializer Any
Deserializer. Type: string (or Expression with resultType string).
- serializer Any
Serializer. Type: string (or Expression with resultType string).
AzureBlobDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name object The name of the Azure Blob. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format The format of the Azure Blob storage.
- Modified
Datetime objectEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Root objectLocation The root of blob path. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name interface{} The name of the Azure Blob. Type: string (or Expression with resultType string).
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path interface{} The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Blob storage.
- Modified
Datetime interface{}End The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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
Root interface{}Location The root of blob path. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name Object The name of the Azure Blob. Type: string (or Expression with resultType string).
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path Object The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Blob storage.
- modified
Datetime ObjectEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Root ObjectLocation The root of blob path. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the blob storage.
- description string
Dataset description.
- file
Name any The name of the Azure Blob. Type: string (or Expression with resultType string).
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path any The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Blob storage.
- modified
Datetime anyEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Root anyLocation The root of blob path. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression 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
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder_
path Any The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Blob storage.
- modified_
datetime_ Anyend The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table_
root_ Anylocation The root of blob path. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name 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.
- folder
Path 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.
- modified
Datetime AnyEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Root AnyLocation The root of blob path. Type: string (or Expression with resultType string).
AzureBlobDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name object The name of the Azure Blob. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response The format of the Azure Blob storage.
- Modified
Datetime objectEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Root objectLocation The root of blob path. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name interface{} The name of the Azure Blob. Type: string (or Expression with resultType string).
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path interface{} The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Blob storage.
- Modified
Datetime interface{}End The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Root interface{}Location The root of blob path. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name Object The name of the Azure Blob. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path Object The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Blob storage.
- modified
Datetime ObjectEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Root ObjectLocation The root of blob path. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the blob storage.
- description string
Dataset description.
- file
Name any The name of the Azure Blob. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path any The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Blob storage.
- modified
Datetime anyEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Root anyLocation The root of blob path. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the blob storage.
- description str
Dataset description.
- file_
name Any The name of the Azure Blob. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder_
path Any The path of the Azure Blob storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Blob storage.
- modified_
datetime_ Anyend The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table_
root_ Anylocation The root of blob path. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name 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.
- folder
Path 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.
- modified
Datetime AnyEnd The end of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart The start of Azure Blob's modified datetime. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Root AnyLocation The root of blob path. Type: string (or Expression with resultType string).
AzureBlobFSDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name object The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format The format of the Azure Data Lake Storage Gen2 storage.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name interface{} The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path interface{} The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Data Lake Storage Gen2 storage.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name Object The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path Object The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Data Lake Storage Gen2 storage.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the blob storage.
- description string
Dataset description.
- file
Name any The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path any The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Data Lake Storage Gen2 storage.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression 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
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder_
path Any The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Azure Data Lake Storage Gen2 storage.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression 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 Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name 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.
- folder
Path 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
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name object The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response The format of the Azure Data Lake Storage Gen2 storage.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response The data compression method used for the blob storage.
- Description string
Dataset description.
- File
Name interface{} The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path interface{} The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Data Lake Storage Gen2 storage.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name Object The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path Object The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Data Lake Storage Gen2 storage.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the blob storage.
- description string
Dataset description.
- file
Name any The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path any The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Data Lake Storage Gen2 storage.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the blob storage.
- description str
Dataset description.
- file_
name Any The name of the Azure Data Lake Storage Gen2. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder_
path Any The path of the Azure Data Lake Storage Gen2 storage. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Azure Data Lake Storage Gen2 storage.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the blob storage.
- description String
Dataset description.
- file
Name 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.
- folder
Path 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
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- File
System object Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).
- Folder
Path object Specify the folder path of dataset. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- File
System interface{} Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).
- Folder
Path interface{} Specify the folder path of dataset. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- file
System Object Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).
- folder
Path Object 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)
- 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)
- 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)
AzureBlobFSLocationResponse
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- File
System object Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).
- Folder
Path object Specify the folder path of dataset. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- File
System interface{} Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).
- Folder
Path interface{} Specify the folder path of dataset. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- file
System Object Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType string).
- folder
Path Object 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)
- 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)
- 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)
AzureBlobStorageLocation
- Container object
Specify the container of azure blob. Type: string (or Expression with resultType string).
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path 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).
- 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).
- 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).
- 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)
AzureBlobStorageLocationResponse
- Container object
Specify the container of azure blob. Type: string (or Expression with resultType string).
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path 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).
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path 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).
- 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).
- 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).
- 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)
AzureDataExplorerTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
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 Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
AzureDataExplorerTableDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table interface{}
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the Azure Data Explorer database. Type: string (or Expression with resultType string).
AzureDataLakeStoreDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression The data compression method used for the item(s) in the Azure Data Lake Store.
- Description string
Dataset description.
- File
Name object The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format The format of the Data Lake Store.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression The data compression method used for the item(s) in the Azure Data Lake Store.
- Description string
Dataset description.
- File
Name interface{} The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path interface{} Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Data Lake Store.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the item(s) in the Azure Data Lake Store.
- description String
Dataset description.
- file
Name Object The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path Object Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Data Lake Store.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression The data compression method used for the item(s) in the Azure Data Lake Store.
- description string
Dataset description.
- file
Name any The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path any Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Data Lake Store.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression 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
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder_
path Any Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat The format of the Data Lake Store.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression 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 Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the item(s) in the Azure Data Lake Store.
- description String
Dataset description.
- file
Name 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.
- folder
Path 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
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response The data compression method used for the item(s) in the Azure Data Lake Store.
- Description string
Dataset description.
- File
Name object The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response The format of the Data Lake Store.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response The data compression method used for the item(s) in the Azure Data Lake Store.
- Description string
Dataset description.
- File
Name interface{} The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path interface{} Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Data Lake Store.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the item(s) in the Azure Data Lake Store.
- description String
Dataset description.
- file
Name Object The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path Object Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Data Lake Store.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the item(s) in the Azure Data Lake Store.
- description string
Dataset description.
- file
Name any The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder
Path any Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Data Lake Store.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response The data compression method used for the item(s) in the Azure Data Lake Store.
- description str
Dataset description.
- file_
name Any The name of the file in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- folder_
path Any Path to the folder in the Azure Data Lake Store. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response The format of the Data Lake Store.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- compression Property Map
The data compression method used for the item(s) in the Azure Data Lake Store.
- description String
Dataset description.
- file
Name 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.
- folder
Path 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
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path object Specify the folder path of dataset. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path interface{} Specify the folder path of dataset. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Object 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)
- 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)
- 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)
AzureDataLakeStoreLocationResponse
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path object Specify the folder path of dataset. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path interface{} Specify the folder path of dataset. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Object 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)
- 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)
- 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)
AzureDatabricksDeltaLakeDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Database object
The database name of delta table. Type: string (or Expression with resultType string).
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The name of delta table. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Database interface{}
The database name of delta table. Type: string (or Expression with resultType string).
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- database Object
The database name of delta table. Type: string (or Expression with resultType string).
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The name of delta table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- database any
The database name of delta table. Type: string (or Expression with resultType string).
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The name of delta table. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- database Any
The database name of delta table. Type: string (or Expression with resultType string).
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), 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 Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- database Any
The database name of delta table. Type: string (or Expression with resultType string).
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The name of delta table. Type: string (or Expression with resultType string).
AzureDatabricksDeltaLakeDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Database object
The database name of delta table. Type: string (or Expression with resultType string).
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The name of delta table. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Database interface{}
The database name of delta table. Type: string (or Expression with resultType string).
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table interface{}
The name of delta table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- database Object
The database name of delta table. Type: string (or Expression with resultType string).
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The name of delta table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- database any
The database name of delta table. Type: string (or Expression with resultType string).
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The name of delta table. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- database Any
The database name of delta table. Type: string (or Expression with resultType string).
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The name of delta table. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- database Any
The database name of delta table. Type: string (or Expression with resultType string).
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The name of delta table. Type: string (or Expression with resultType string).
AzureFileStorageLocation
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path object Specify the folder path of dataset. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path interface{} Specify the folder path of dataset. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Object 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)
- 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)
- 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)
AzureFileStorageLocationResponse
- File
Name object Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path object Specify the folder path of dataset. Type: string (or Expression with resultType string)
- File
Name interface{} Specify the file name of dataset. Type: string (or Expression with resultType string).
- Folder
Path interface{} Specify the folder path of dataset. Type: string (or Expression with resultType string)
- file
Name Object Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Object 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)
- 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)
- 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)
AzureMariaDBTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name object The table name. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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
Name interface{} The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Object The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with 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).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with 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).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Any The table name. Type: string (or Expression with resultType string).
AzureMariaDBTableDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name object The table name. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name interface{} The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Object The table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name any The table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table_
name Any The table name. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Any The table name. Type: string (or Expression with resultType string).
AzureMySqlTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- Table
Name object The Azure MySQL database table name. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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).
- Table
Name interface{} The Azure MySQL database table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- table
Name Object The Azure MySQL database table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), 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).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), 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).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- table
Name Any The Azure MySQL database table name. Type: string (or Expression with resultType string).
AzureMySqlTableDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- Table
Name object The Azure MySQL database table name. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table interface{}
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- Table
Name interface{} The Azure MySQL database table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- table
Name Object The Azure MySQL database table name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- table
Name any The Azure MySQL database table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- table_
name Any The Azure MySQL database table name. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The name of Azure MySQL database table. Type: string (or Expression with resultType string).
- table
Name Any The Azure MySQL database table name. Type: string (or Expression with resultType string).
AzurePostgreSqlTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- Table
Name object The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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).
- Table
Name interface{} The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name Object The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
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).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
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).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name Any The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
AzurePostgreSqlTableDatasetResponse
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- Table
Name object The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table interface{}
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- Table
Name interface{} The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name Object The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name any The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table_
name Any The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name Any The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
AzureSearchIndexDataset
- Index
Name object The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Index
Name interface{} The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression 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
Name Object The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name any The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index_
name Any The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name Any The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AzureSearchIndexDatasetResponse
- Index
Name object The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Index
Name interface{} The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response Linked service reference.
- Annotations []interface{}
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response Parameters for dataset.
- Schema interface{}
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name Object The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations List<Object>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> Parameters for dataset.
- schema Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name any The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response Linked service reference.
- annotations any[]
List of tags that can be used for describing the Dataset.
- description string
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} Parameters for dataset.
- schema any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index_
name Any The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response Linked service reference.
- annotations Sequence[Any]
List of tags that can be used for describing the Dataset.
- description str
Dataset description.
- folder
Dataset
Response Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name Any The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service Property MapName Linked service reference.
- annotations List<Any>
List of tags that can be used for describing the Dataset.
- description String
Dataset description.
- folder Property Map
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
Parameters for dataset.
- schema Any
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AzureSqlDWTableDataset
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Linked service reference.
- Annotations List<object>
List of tags that can be used for describing the Dataset.
- Description string
Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> Parameters for dataset.
- Schema object
Columns that define the physical type schema of the datase