azure-native.datafactory.Dataset
Explore with Pulumi AI
Dataset resource type. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.
Example Usage
Datasets_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
{
DatasetName = "exampleDataset",
FactoryName = "exampleFactoryName",
Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
{
FileName = new Dictionary<string, object?>
{
["type"] = "Expression",
["value"] = "@dataset().MyFileName",
},
FolderPath = new Dictionary<string, object?>
{
["type"] = "Expression",
["value"] = "@dataset().MyFolderPath",
},
Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
{
Type = "TextFormat",
},
LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "exampleLinkedService",
Type = AzureNative.DataFactory.Type.LinkedServiceReference,
},
Parameters =
{
{ "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = AzureNative.DataFactory.ParameterType.String,
} },
{ "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = AzureNative.DataFactory.ParameterType.String,
} },
},
Type = "AzureBlob",
},
ResourceGroupName = "exampleResourceGroup",
});
});
package main
import (
datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewDataset(ctx, "dataset", &datafactory.DatasetArgs{
DatasetName: pulumi.String("exampleDataset"),
FactoryName: pulumi.String("exampleFactoryName"),
Properties: &datafactory.AzureBlobDatasetArgs{
FileName: pulumi.Any(map[string]interface{}{
"type": "Expression",
"value": "@dataset().MyFileName",
}),
FolderPath: pulumi.Any(map[string]interface{}{
"type": "Expression",
"value": "@dataset().MyFolderPath",
}),
Format: datafactory.TextFormat{
Type: "TextFormat",
},
LinkedServiceName: &datafactory.LinkedServiceReferenceArgs{
ReferenceName: pulumi.String("exampleLinkedService"),
Type: pulumi.String(datafactory.TypeLinkedServiceReference),
},
Parameters: datafactory.ParameterSpecificationMap{
"MyFileName": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String(datafactory.ParameterTypeString),
},
"MyFolderPath": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String(datafactory.ParameterTypeString),
},
},
Type: pulumi.String("AzureBlob"),
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var dataset = new Dataset("dataset", DatasetArgs.builder()
.datasetName("exampleDataset")
.factoryName("exampleFactoryName")
.properties(AzureBlobDatasetArgs.builder()
.fileName(Map.ofEntries(
Map.entry("type", "Expression"),
Map.entry("value", "@dataset().MyFileName")
))
.folderPath(Map.ofEntries(
Map.entry("type", "Expression"),
Map.entry("value", "@dataset().MyFolderPath")
))
.format(TextFormatArgs.builder()
.type("TextFormat")
.build())
.linkedServiceName(LinkedServiceReferenceArgs.builder()
.referenceName("exampleLinkedService")
.type("LinkedServiceReference")
.build())
.parameters(Map.ofEntries(
Map.entry("MyFileName", Map.of("type", "String")),
Map.entry("MyFolderPath", Map.of("type", "String"))
))
.type("AzureBlob")
.build())
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
dataset_name="exampleDataset",
factory_name="exampleFactoryName",
properties={
"file_name": {
"type": "Expression",
"value": "@dataset().MyFileName",
},
"folder_path": {
"type": "Expression",
"value": "@dataset().MyFolderPath",
},
"format": {
"type": "TextFormat",
},
"linked_service_name": {
"reference_name": "exampleLinkedService",
"type": azure_native.datafactory.Type.LINKED_SERVICE_REFERENCE,
},
"parameters": {
"MyFileName": {
"type": azure_native.datafactory.ParameterType.STRING,
},
"MyFolderPath": {
"type": azure_native.datafactory.ParameterType.STRING,
},
},
"type": "AzureBlob",
},
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataset = new azure_native.datafactory.Dataset("dataset", {
datasetName: "exampleDataset",
factoryName: "exampleFactoryName",
properties: {
fileName: {
type: "Expression",
value: "@dataset().MyFileName",
},
folderPath: {
type: "Expression",
value: "@dataset().MyFolderPath",
},
format: {
type: "TextFormat",
},
linkedServiceName: {
referenceName: "exampleLinkedService",
type: azure_native.datafactory.Type.LinkedServiceReference,
},
parameters: {
MyFileName: {
type: azure_native.datafactory.ParameterType.String,
},
MyFolderPath: {
type: azure_native.datafactory.ParameterType.String,
},
},
type: "AzureBlob",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
dataset:
type: azure-native:datafactory:Dataset
properties:
datasetName: exampleDataset
factoryName: exampleFactoryName
properties:
fileName:
type: Expression
value: '@dataset().MyFileName'
folderPath:
type: Expression
value: '@dataset().MyFolderPath'
format:
type: TextFormat
linkedServiceName:
referenceName: exampleLinkedService
type: LinkedServiceReference
parameters:
MyFileName:
type: String
MyFolderPath:
type: String
type: AzureBlob
resourceGroupName: exampleResourceGroup
Datasets_Update
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
{
DatasetName = "exampleDataset",
FactoryName = "exampleFactoryName",
Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
{
Description = "Example description",
FileName = new Dictionary<string, object?>
{
["type"] = "Expression",
["value"] = "@dataset().MyFileName",
},
FolderPath = new Dictionary<string, object?>
{
["type"] = "Expression",
["value"] = "@dataset().MyFolderPath",
},
Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
{
Type = "TextFormat",
},
LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "exampleLinkedService",
Type = AzureNative.DataFactory.Type.LinkedServiceReference,
},
Parameters =
{
{ "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = AzureNative.DataFactory.ParameterType.String,
} },
{ "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = AzureNative.DataFactory.ParameterType.String,
} },
},
Type = "AzureBlob",
},
ResourceGroupName = "exampleResourceGroup",
});
});
package main
import (
datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datafactory.NewDataset(ctx, "dataset", &datafactory.DatasetArgs{
DatasetName: pulumi.String("exampleDataset"),
FactoryName: pulumi.String("exampleFactoryName"),
Properties: &datafactory.AzureBlobDatasetArgs{
Description: pulumi.String("Example description"),
FileName: pulumi.Any(map[string]interface{}{
"type": "Expression",
"value": "@dataset().MyFileName",
}),
FolderPath: pulumi.Any(map[string]interface{}{
"type": "Expression",
"value": "@dataset().MyFolderPath",
}),
Format: datafactory.TextFormat{
Type: "TextFormat",
},
LinkedServiceName: &datafactory.LinkedServiceReferenceArgs{
ReferenceName: pulumi.String("exampleLinkedService"),
Type: pulumi.String(datafactory.TypeLinkedServiceReference),
},
Parameters: datafactory.ParameterSpecificationMap{
"MyFileName": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String(datafactory.ParameterTypeString),
},
"MyFolderPath": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String(datafactory.ParameterTypeString),
},
},
Type: pulumi.String("AzureBlob"),
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var dataset = new Dataset("dataset", DatasetArgs.builder()
.datasetName("exampleDataset")
.factoryName("exampleFactoryName")
.properties(AzureBlobDatasetArgs.builder()
.description("Example description")
.fileName(Map.ofEntries(
Map.entry("type", "Expression"),
Map.entry("value", "@dataset().MyFileName")
))
.folderPath(Map.ofEntries(
Map.entry("type", "Expression"),
Map.entry("value", "@dataset().MyFolderPath")
))
.format(TextFormatArgs.builder()
.type("TextFormat")
.build())
.linkedServiceName(LinkedServiceReferenceArgs.builder()
.referenceName("exampleLinkedService")
.type("LinkedServiceReference")
.build())
.parameters(Map.ofEntries(
Map.entry("MyFileName", Map.of("type", "String")),
Map.entry("MyFolderPath", Map.of("type", "String"))
))
.type("AzureBlob")
.build())
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
dataset_name="exampleDataset",
factory_name="exampleFactoryName",
properties={
"description": "Example description",
"file_name": {
"type": "Expression",
"value": "@dataset().MyFileName",
},
"folder_path": {
"type": "Expression",
"value": "@dataset().MyFolderPath",
},
"format": {
"type": "TextFormat",
},
"linked_service_name": {
"reference_name": "exampleLinkedService",
"type": azure_native.datafactory.Type.LINKED_SERVICE_REFERENCE,
},
"parameters": {
"MyFileName": {
"type": azure_native.datafactory.ParameterType.STRING,
},
"MyFolderPath": {
"type": azure_native.datafactory.ParameterType.STRING,
},
},
"type": "AzureBlob",
},
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataset = new azure_native.datafactory.Dataset("dataset", {
datasetName: "exampleDataset",
factoryName: "exampleFactoryName",
properties: {
description: "Example description",
fileName: {
type: "Expression",
value: "@dataset().MyFileName",
},
folderPath: {
type: "Expression",
value: "@dataset().MyFolderPath",
},
format: {
type: "TextFormat",
},
linkedServiceName: {
referenceName: "exampleLinkedService",
type: azure_native.datafactory.Type.LinkedServiceReference,
},
parameters: {
MyFileName: {
type: azure_native.datafactory.ParameterType.String,
},
MyFolderPath: {
type: azure_native.datafactory.ParameterType.String,
},
},
type: "AzureBlob",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
dataset:
type: azure-native:datafactory:Dataset
properties:
datasetName: exampleDataset
factoryName: exampleFactoryName
properties:
description: Example description
fileName:
type: Expression
value: '@dataset().MyFileName'
folderPath:
type: Expression
value: '@dataset().MyFolderPath'
format:
type: TextFormat
linkedServiceName:
referenceName: exampleLinkedService
type: LinkedServiceReference
parameters:
MyFileName:
type: String
MyFolderPath:
type: String
type: AzureBlob
resourceGroupName: exampleResourceGroup
Create Dataset Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Dataset(name: string, args: DatasetArgs, opts?: CustomResourceOptions);
@overload
def Dataset(resource_name: str,
args: DatasetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Dataset(resource_name: str,
opts: Optional[ResourceOptions] = None,
factory_name: Optional[str] = None,
properties: Optional[Union[AmazonMWSObjectDatasetArgs, AmazonRdsForOracleTableDatasetArgs, AmazonRdsForSqlServerTableDatasetArgs, AmazonRedshiftTableDatasetArgs, AmazonS3DatasetArgs, AvroDatasetArgs, AzureBlobDatasetArgs, AzureBlobFSDatasetArgs, AzureDataExplorerTableDatasetArgs, AzureDataLakeStoreDatasetArgs, AzureDatabricksDeltaLakeDatasetArgs, AzureMariaDBTableDatasetArgs, AzureMySqlTableDatasetArgs, AzurePostgreSqlTableDatasetArgs, AzureSearchIndexDatasetArgs, AzureSqlDWTableDatasetArgs, AzureSqlMITableDatasetArgs, AzureSqlTableDatasetArgs, AzureTableDatasetArgs, BinaryDatasetArgs, CassandraTableDatasetArgs, CommonDataServiceForAppsEntityDatasetArgs, ConcurObjectDatasetArgs, CosmosDbMongoDbApiCollectionDatasetArgs, CosmosDbSqlApiCollectionDatasetArgs, CouchbaseTableDatasetArgs, CustomDatasetArgs, Db2TableDatasetArgs, DelimitedTextDatasetArgs, DocumentDbCollectionDatasetArgs, DrillTableDatasetArgs, DynamicsAXResourceDatasetArgs, DynamicsCrmEntityDatasetArgs, DynamicsEntityDatasetArgs, EloquaObjectDatasetArgs, ExcelDatasetArgs, FileShareDatasetArgs, GoogleAdWordsObjectDatasetArgs, GoogleBigQueryObjectDatasetArgs, GoogleBigQueryV2ObjectDatasetArgs, GreenplumTableDatasetArgs, HBaseObjectDatasetArgs, HiveObjectDatasetArgs, HttpDatasetArgs, HubspotObjectDatasetArgs, IcebergDatasetArgs, ImpalaObjectDatasetArgs, InformixTableDatasetArgs, JiraObjectDatasetArgs, JsonDatasetArgs, LakeHouseTableDatasetArgs, MagentoObjectDatasetArgs, MariaDBTableDatasetArgs, MarketoObjectDatasetArgs, MicrosoftAccessTableDatasetArgs, MongoDbAtlasCollectionDatasetArgs, MongoDbCollectionDatasetArgs, MongoDbV2CollectionDatasetArgs, MySqlTableDatasetArgs, NetezzaTableDatasetArgs, ODataResourceDatasetArgs, OdbcTableDatasetArgs, Office365DatasetArgs, OracleServiceCloudObjectDatasetArgs, OracleTableDatasetArgs, OrcDatasetArgs, ParquetDatasetArgs, PaypalObjectDatasetArgs, PhoenixObjectDatasetArgs, PostgreSqlTableDatasetArgs, PostgreSqlV2TableDatasetArgs, PrestoObjectDatasetArgs, QuickBooksObjectDatasetArgs, RelationalTableDatasetArgs, ResponsysObjectDatasetArgs, RestResourceDatasetArgs, SalesforceMarketingCloudObjectDatasetArgs, SalesforceObjectDatasetArgs, SalesforceServiceCloudObjectDatasetArgs, SalesforceServiceCloudV2ObjectDatasetArgs, SalesforceV2ObjectDatasetArgs, SapBwCubeDatasetArgs, SapCloudForCustomerResourceDatasetArgs, SapEccResourceDatasetArgs, SapHanaTableDatasetArgs, SapOdpResourceDatasetArgs, SapOpenHubTableDatasetArgs, SapTableResourceDatasetArgs, ServiceNowObjectDatasetArgs, ServiceNowV2ObjectDatasetArgs, SharePointOnlineListResourceDatasetArgs, ShopifyObjectDatasetArgs, SnowflakeDatasetArgs, SnowflakeV2DatasetArgs, SparkObjectDatasetArgs, SqlServerTableDatasetArgs, SquareObjectDatasetArgs, SybaseTableDatasetArgs, TeradataTableDatasetArgs, VerticaTableDatasetArgs, WarehouseTableDatasetArgs, WebTableDatasetArgs, XeroObjectDatasetArgs, XmlDatasetArgs, ZohoObjectDatasetArgs]] = None,
resource_group_name: Optional[str] = None,
dataset_name: Optional[str] = None)
func NewDataset(ctx *Context, name string, args DatasetArgs, opts ...ResourceOption) (*Dataset, error)
public Dataset(string name, DatasetArgs args, CustomResourceOptions? opts = null)
public Dataset(String name, DatasetArgs args)
public Dataset(String name, DatasetArgs args, CustomResourceOptions options)
type: azure-native:datafactory:Dataset
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatasetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var datasetResource = new AzureNative.DataFactory.Dataset("datasetResource", new()
{
FactoryName = "string",
Properties = new AzureNative.DataFactory.Inputs.AmazonMWSObjectDatasetArgs
{
LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "string",
Type = "string",
Parameters =
{
{ "string", "any" },
},
},
Type = "AmazonMWSObject",
Annotations = new[]
{
"any",
},
Description = "string",
Folder = new AzureNative.DataFactory.Inputs.DatasetFolderArgs
{
Name = "string",
},
Parameters =
{
{ "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "string",
DefaultValue = "any",
} },
},
Schema = "any",
Structure = "any",
TableName = "any",
},
ResourceGroupName = "string",
DatasetName = "string",
});
example, err := datafactory.NewDataset(ctx, "datasetResource", &datafactory.DatasetArgs{
FactoryName: pulumi.String("string"),
Properties: &datafactory.AmazonMWSObjectDatasetArgs{
LinkedServiceName: &datafactory.LinkedServiceReferenceArgs{
ReferenceName: pulumi.String("string"),
Type: pulumi.String("string"),
Parameters: pulumi.Map{
"string": pulumi.Any("any"),
},
},
Type: pulumi.String("AmazonMWSObject"),
Annotations: pulumi.Array{
pulumi.Any("any"),
},
Description: pulumi.String("string"),
Folder: &datafactory.DatasetFolderArgs{
Name: pulumi.String("string"),
},
Parameters: datafactory.ParameterSpecificationMap{
"string": &datafactory.ParameterSpecificationArgs{
Type: pulumi.String("string"),
DefaultValue: pulumi.Any("any"),
},
},
Schema: pulumi.Any("any"),
Structure: pulumi.Any("any"),
TableName: pulumi.Any("any"),
},
ResourceGroupName: pulumi.String("string"),
DatasetName: pulumi.String("string"),
})
var datasetResource = new Dataset("datasetResource", DatasetArgs.builder()
.factoryName("string")
.properties(AmazonMWSObjectDatasetArgs.builder()
.linkedServiceName(LinkedServiceReferenceArgs.builder()
.referenceName("string")
.type("string")
.parameters(Map.of("string", "any"))
.build())
.type("AmazonMWSObject")
.annotations("any")
.description("string")
.folder(DatasetFolderArgs.builder()
.name("string")
.build())
.parameters(Map.of("string", Map.ofEntries(
Map.entry("type", "string"),
Map.entry("defaultValue", "any")
)))
.schema("any")
.structure("any")
.tableName("any")
.build())
.resourceGroupName("string")
.datasetName("string")
.build());
dataset_resource = azure_native.datafactory.Dataset("datasetResource",
factory_name="string",
properties={
"linked_service_name": {
"reference_name": "string",
"type": "string",
"parameters": {
"string": "any",
},
},
"type": "AmazonMWSObject",
"annotations": ["any"],
"description": "string",
"folder": {
"name": "string",
},
"parameters": {
"string": {
"type": "string",
"default_value": "any",
},
},
"schema": "any",
"structure": "any",
"table_name": "any",
},
resource_group_name="string",
dataset_name="string")
const datasetResource = new azure_native.datafactory.Dataset("datasetResource", {
factoryName: "string",
properties: {
linkedServiceName: {
referenceName: "string",
type: "string",
parameters: {
string: "any",
},
},
type: "AmazonMWSObject",
annotations: ["any"],
description: "string",
folder: {
name: "string",
},
parameters: {
string: {
type: "string",
defaultValue: "any",
},
},
schema: "any",
structure: "any",
tableName: "any",
},
resourceGroupName: "string",
datasetName: "string",
});
type: azure-native:datafactory:Dataset
properties:
datasetName: string
factoryName: string
properties:
annotations:
- any
description: string
folder:
name: string
linkedServiceName:
parameters:
string: any
referenceName: string
type: string
parameters:
string:
defaultValue: any
type: string
schema: any
structure: any
tableName: any
type: AmazonMWSObject
resourceGroupName: string
Dataset Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Dataset resource accepts the following input properties:
- Factory
Name string - The factory name.
- Properties
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon MWSObject Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Oracle Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon Rds For Sql Server Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon Redshift Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Dataset Azure | Pulumi.Native. Data Factory. Inputs. Avro Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSDataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Explorer Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Databricks Delta Lake Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Maria DBTable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure My Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Postgre Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Search Index Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql DWTable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql MITable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Azure Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Binary Dataset Azure | Pulumi.Native. Data Factory. Inputs. Cassandra Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Common Data Service For Apps Entity Dataset Azure | Pulumi.Native. Data Factory. Inputs. Concur Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Mongo Db Api Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Cosmos Db Sql Api Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Couchbase Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Custom Dataset Azure | Pulumi.Native. Data Factory. Inputs. Db2Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Delimited Text Dataset Azure | Pulumi.Native. Data Factory. Inputs. Document Db Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Drill Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Dynamics AXResource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Crm Entity Dataset Azure | Pulumi.Native. Data Factory. Inputs. Dynamics Entity Dataset Azure | Pulumi.Native. Data Factory. Inputs. Eloqua Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Excel Dataset Azure | Pulumi.Native. Data Factory. Inputs. File Share Dataset Azure | Pulumi.Native. Data Factory. Inputs. Google Ad Words Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Google Big Query V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Greenplum Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. HBase Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Hive Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Http Dataset Azure | Pulumi.Native. Data Factory. Inputs. Hubspot Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Iceberg Dataset Azure | Pulumi.Native. Data Factory. Inputs. Impala Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Informix Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Jira Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Json Dataset Azure | Pulumi.Native. Data Factory. Inputs. Lake House Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Magento Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Maria DBTable Dataset Azure | Pulumi.Native. Data Factory. Inputs. Marketo Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Microsoft Access Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Atlas Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. Mongo Db V2Collection Dataset Azure | Pulumi.Native. Data Factory. Inputs. My Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Netezza Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. OData Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Odbc Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Office365Dataset Azure | Pulumi.Native. Data Factory. Inputs. Oracle Service Cloud Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Oracle Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Orc Dataset Azure | Pulumi.Native. Data Factory. Inputs. Parquet Dataset Azure | Pulumi.Native. Data Factory. Inputs. Paypal Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Phoenix Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Postgre Sql V2Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Presto Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Quick Books Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Relational Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Responsys Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Rest Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Marketing Cloud Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce Service Cloud V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Salesforce V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Bw Cube Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Cloud For Customer Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Ecc Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Hana Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Odp Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Open Hub Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sap Table Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Service Now Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Service Now V2Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Share Point Online List Resource Dataset Azure | Pulumi.Native. Data Factory. Inputs. Shopify Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Snowflake Dataset Azure | Pulumi.Native. Data Factory. Inputs. Snowflake V2Dataset Azure | Pulumi.Native. Data Factory. Inputs. Spark Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sql Server Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Square Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Sybase Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Teradata Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Vertica Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Warehouse Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Web Table Dataset Azure | Pulumi.Native. Data Factory. Inputs. Xero Object Dataset Azure | Pulumi.Native. Data Factory. Inputs. Xml Dataset Azure Native. Data Factory. Inputs. Zoho Object Dataset - Dataset properties.
- 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 | GoogleQuery Object Dataset Args Big | GreenplumQuery V2Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | IcebergDataset Args Dataset | ImpalaArgs Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | LakeArgs House | MagentoTable Dataset Args Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PostgreTable Dataset Args Sql | PrestoV2Table Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SalesforceCloud Object Dataset Args Service | SalesforceCloud V2Object Dataset Args V2Object | SapDataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ServiceObject Dataset Args Now | ShareV2Object Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SnowflakeArgs V2Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WarehouseDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args - Dataset properties.
- Resource
Group stringName - The resource group name.
- Dataset
Name string - The dataset name.
- factory
Name String - The factory name.
- properties
Amazon
MWSObject | AmazonDataset Rds | AmazonFor Oracle Table Dataset Rds | AmazonFor Sql Server Table Dataset Redshift | AmazonTable Dataset S3Dataset | AvroDataset | AzureBlob | AzureDataset Blob | AzureFSDataset Data | AzureExplorer Table Dataset Data | AzureLake Store Dataset Databricks | AzureDelta Lake Dataset Maria | AzureDBTable Dataset My | AzureSql Table Dataset Postgre | AzureSql Table Dataset Search | AzureIndex Dataset Sql | AzureDWTable Dataset Sql | AzureMITable Dataset Sql | AzureTable Dataset Table | BinaryDataset Dataset | CassandraTable | CommonDataset Data | ConcurService For Apps Entity Dataset Object | CosmosDataset Db | CosmosMongo Db Api Collection Dataset Db | CouchbaseSql Api Collection Dataset Table | CustomDataset Dataset | Db2TableDataset | DelimitedText | DocumentDataset Db | DrillCollection Dataset Table | DynamicsDataset AXResource | DynamicsDataset Crm | DynamicsEntity Dataset Entity | EloquaDataset Object | ExcelDataset Dataset | FileShare | GoogleDataset Ad | GoogleWords Object Dataset Big | GoogleQuery Object Dataset Big | GreenplumQuery V2Object Dataset Table | HBaseDataset Object | HiveDataset Object | HttpDataset Dataset | HubspotObject | IcebergDataset Dataset | ImpalaObject | InformixDataset Table | JiraDataset Object | JsonDataset Dataset | LakeHouse | MagentoTable Dataset Object | MariaDataset DBTable | MarketoDataset Object | MicrosoftDataset Access | MongoTable Dataset Db | MongoAtlas Collection Dataset Db | MongoCollection Dataset Db | MyV2Collection Dataset Sql | NetezzaTable Dataset Table | ODataDataset Resource | OdbcDataset Table | Office365Dataset | OracleDataset Service | OracleCloud Object Dataset Table | OrcDataset Dataset | ParquetDataset | PaypalObject | PhoenixDataset Object | PostgreDataset Sql | PostgreTable Dataset Sql | PrestoV2Table Dataset Object | QuickDataset Books | RelationalObject Dataset Table | ResponsysDataset Object | RestDataset Resource | SalesforceDataset Marketing | SalesforceCloud Object Dataset Object | SalesforceDataset Service | SalesforceCloud Object Dataset Service | SalesforceCloud V2Object Dataset V2Object | SapDataset Bw | SapCube Dataset Cloud | SapFor Customer Resource Dataset Ecc | SapResource Dataset Hana | SapTable Dataset Odp | SapResource Dataset Open | SapHub Table Dataset Table | ServiceResource Dataset Now | ServiceObject Dataset Now | ShareV2Object Dataset Point | ShopifyOnline List Resource Dataset Object | SnowflakeDataset Dataset | SnowflakeV2Dataset | SparkObject | SqlDataset Server | SquareTable Dataset Object | SybaseDataset Table | TeradataDataset Table | VerticaDataset Table | WarehouseDataset Table | WebDataset Table | XeroDataset Object | XmlDataset Dataset | ZohoObject Dataset - Dataset properties.
- resource
Group StringName - The resource group name.
- dataset
Name String - The dataset name.
- factory
Name string - The factory name.
- properties
Amazon
MWSObject | AmazonDataset Rds | AmazonFor Oracle Table Dataset Rds | AmazonFor Sql Server Table Dataset Redshift | AmazonTable Dataset S3Dataset | AvroDataset | AzureBlob | AzureDataset Blob | AzureFSDataset Data | AzureExplorer Table Dataset Data | AzureLake Store Dataset Databricks | AzureDelta Lake Dataset Maria | AzureDBTable Dataset My | AzureSql Table Dataset Postgre | AzureSql Table Dataset Search | AzureIndex Dataset Sql | AzureDWTable Dataset Sql | AzureMITable Dataset Sql | AzureTable Dataset Table | BinaryDataset Dataset | CassandraTable | CommonDataset Data | ConcurService For Apps Entity Dataset Object | CosmosDataset Db | CosmosMongo Db Api Collection Dataset Db | CouchbaseSql Api Collection Dataset Table | CustomDataset Dataset | Db2TableDataset | DelimitedText | DocumentDataset Db | DrillCollection Dataset Table | DynamicsDataset AXResource | DynamicsDataset Crm | DynamicsEntity Dataset Entity | EloquaDataset Object | ExcelDataset Dataset | FileShare | GoogleDataset Ad | GoogleWords Object Dataset Big | GoogleQuery Object Dataset Big | GreenplumQuery V2Object Dataset Table | HBaseDataset Object | HiveDataset Object | HttpDataset Dataset | HubspotObject | IcebergDataset Dataset | ImpalaObject | InformixDataset Table | JiraDataset Object | JsonDataset Dataset | LakeHouse | MagentoTable Dataset Object | MariaDataset DBTable | MarketoDataset Object | MicrosoftDataset Access | MongoTable Dataset Db | MongoAtlas Collection Dataset Db | MongoCollection Dataset Db | MyV2Collection Dataset Sql | NetezzaTable Dataset Table | ODataDataset Resource | OdbcDataset Table | Office365Dataset | OracleDataset Service | OracleCloud Object Dataset Table | OrcDataset Dataset | ParquetDataset | PaypalObject | PhoenixDataset Object | PostgreDataset Sql | PostgreTable Dataset Sql | PrestoV2Table Dataset Object | QuickDataset Books | RelationalObject Dataset Table | ResponsysDataset Object | RestDataset Resource | SalesforceDataset Marketing | SalesforceCloud Object Dataset Object | SalesforceDataset Service | SalesforceCloud Object Dataset Service | SalesforceCloud V2Object Dataset V2Object | SapDataset Bw | SapCube Dataset Cloud | SapFor Customer Resource Dataset Ecc | SapResource Dataset Hana | SapTable Dataset Odp | SapResource Dataset Open | SapHub Table Dataset Table | ServiceResource Dataset Now | ServiceObject Dataset Now | ShareV2Object Dataset Point | ShopifyOnline List Resource Dataset Object | SnowflakeDataset Dataset | SnowflakeV2Dataset | SparkObject | SqlDataset Server | SquareTable Dataset Object | SybaseDataset Table | TeradataDataset Table | VerticaDataset Table | WarehouseDataset Table | WebDataset Table | XeroDataset Object | XmlDataset Dataset | ZohoObject Dataset - Dataset properties.
- 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 | GoogleQuery Object Dataset Args Big | GreenplumQuery V2Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | IcebergDataset Args Dataset | ImpalaArgs Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | LakeArgs House | MagentoTable Dataset Args Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PostgreTable Dataset Args Sql | PrestoV2Table Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SalesforceCloud Object Dataset Args Service | SalesforceCloud V2Object Dataset Args V2Object | SapDataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ServiceObject Dataset Args Now | ShareV2Object Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SnowflakeArgs V2Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WarehouseDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args - Dataset properties.
- resource_
group_ strname - The resource group name.
- dataset_
name str - The dataset name.
- 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 | 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
AmazonMWSObjectDataset, AmazonMWSObjectDatasetArgs
- 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, AmazonMWSObjectDatasetResponseArgs
- 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, AmazonRdsForOracleTableDatasetArgs
- 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, AmazonRdsForOracleTableDatasetResponseArgs
- 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, AmazonRdsForSqlServerTableDatasetArgs
- 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, AmazonRdsForSqlServerTableDatasetResponseArgs
- 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, AmazonRedshiftTableDatasetArgs
- 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, AmazonRedshiftTableDatasetResponseArgs
- 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, AmazonS3CompatibleLocationArgs
- 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, AmazonS3CompatibleLocationResponseArgs
- 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, AmazonS3DatasetArgs
- 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, AmazonS3DatasetResponseArgs
- 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, AmazonS3LocationArgs
- 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, AmazonS3LocationResponseArgs
- 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, AvroDatasetArgs
- 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. Lake House Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the avro storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation House | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- avro_
compression_ Anycodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_
compression_ intlevel - description str
- Dataset description.
- folder
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 | 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, AvroDatasetResponseArgs
- 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. Lake House Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the avro storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- 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 | LakeLocation Response House | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- avro_
compression_ Anycodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_
compression_ intlevel - description str
- Dataset description.
- folder
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 | 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, AvroFormatArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
AvroFormatResponse, AvroFormatResponseArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
AzureBlobDataset, AzureBlobDatasetArgs
- 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, AzureBlobDatasetResponseArgs
- 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, AzureBlobFSDatasetArgs
- 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, AzureBlobFSDatasetResponseArgs
- 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, AzureBlobFSLocationArgs
- 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, AzureBlobFSLocationResponseArgs
- 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, AzureBlobStorageLocationArgs
- 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, AzureBlobStorageLocationResponseArgs
- 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, AzureDataExplorerTableDatasetArgs
- 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, AzureDataExplorerTableDatasetResponseArgs
- 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, AzureDataLakeStoreDatasetArgs
- 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, AzureDataLakeStoreDatasetResponseArgs
- 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, AzureDataLakeStoreLocationArgs
- 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, AzureDataLakeStoreLocationResponseArgs
- 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, AzureDatabricksDeltaLakeDatasetArgs
- 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, AzureDatabricksDeltaLakeDatasetResponseArgs
- 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, AzureFileStorageLocationArgs
- 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, AzureFileStorageLocationResponseArgs
- 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, AzureMariaDBTableDatasetArgs
- 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, AzureMariaDBTableDatasetResponseArgs
- 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, AzureMySqlTableDatasetArgs
- 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, AzureMySqlTableDatasetResponseArgs
- 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, AzurePostgreSqlTableDatasetArgs
- 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, AzurePostgreSqlTableDatasetResponseArgs
- 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.