azure-native.datafactory.Dataset
Explore with Pulumi AI
Dataset resource type. API Version: 2018-06-01.
Example Usage
Datasets_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
{
DatasetName = "exampleDataset",
FactoryName = "exampleFactoryName",
Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
{
FileName =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFileName" },
},
FolderPath =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFolderPath" },
},
Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
{
Type = "TextFormat",
},
LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "exampleLinkedService",
Type = "LinkedServiceReference",
},
Parameters =
{
{ "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
{ "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
},
Type = "AzureBlob",
},
ResourceGroupName = "exampleResourceGroup",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var dataset = new Dataset("dataset", DatasetArgs.builder()
.datasetName("exampleDataset")
.factoryName("exampleFactoryName")
.properties(Map.ofEntries(
Map.entry("fileName", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFileName")
.build()),
Map.entry("folderPath", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFolderPath")
.build()),
Map.entry("format", Map.of("type", "TextFormat")),
Map.entry("linkedServiceName", Map.ofEntries(
Map.entry("referenceName", "exampleLinkedService"),
Map.entry("type", "LinkedServiceReference")
)),
Map.entry("parameters", Map.ofEntries(
Map.entry("MyFileName", Map.of("type", "String")),
Map.entry("MyFolderPath", Map.of("type", "String"))
)),
Map.entry("type", "AzureBlob")
))
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
dataset_name="exampleDataset",
factory_name="exampleFactoryName",
properties=azure_native.datafactory.AzureBlobDatasetArgs(
file_name={
"type": "Expression",
"value": "@dataset().MyFileName",
},
folder_path={
"type": "Expression",
"value": "@dataset().MyFolderPath",
},
format=azure_native.datafactory.TextFormatArgs(
type="TextFormat",
),
linked_service_name=azure_native.datafactory.LinkedServiceReferenceArgs(
reference_name="exampleLinkedService",
type="LinkedServiceReference",
),
parameters={
"MyFileName": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
"MyFolderPath": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
},
type="AzureBlob",
),
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataset = new azure_native.datafactory.Dataset("dataset", {
datasetName: "exampleDataset",
factoryName: "exampleFactoryName",
properties: {
fileName: {
type: "Expression",
value: "@dataset().MyFileName",
},
folderPath: {
type: "Expression",
value: "@dataset().MyFolderPath",
},
format: {
type: "TextFormat",
},
linkedServiceName: {
referenceName: "exampleLinkedService",
type: "LinkedServiceReference",
},
parameters: {
MyFileName: {
type: "String",
},
MyFolderPath: {
type: "String",
},
},
type: "AzureBlob",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
dataset:
type: azure-native:datafactory:Dataset
properties:
datasetName: exampleDataset
factoryName: exampleFactoryName
properties:
fileName:
type: Expression
value: '@dataset().MyFileName'
folderPath:
type: Expression
value: '@dataset().MyFolderPath'
format:
type: TextFormat
linkedServiceName:
referenceName: exampleLinkedService
type: LinkedServiceReference
parameters:
MyFileName:
type: String
MyFolderPath:
type: String
type: AzureBlob
resourceGroupName: exampleResourceGroup
Datasets_Update
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataset = new AzureNative.DataFactory.Dataset("dataset", new()
{
DatasetName = "exampleDataset",
FactoryName = "exampleFactoryName",
Properties = new AzureNative.DataFactory.Inputs.AzureBlobDatasetArgs
{
Description = "Example description",
FileName =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFileName" },
},
FolderPath =
{
{ "type", "Expression" },
{ "value", "@dataset().MyFolderPath" },
},
Format = new AzureNative.DataFactory.Inputs.TextFormatArgs
{
Type = "TextFormat",
},
LinkedServiceName = new AzureNative.DataFactory.Inputs.LinkedServiceReferenceArgs
{
ReferenceName = "exampleLinkedService",
Type = "LinkedServiceReference",
},
Parameters =
{
{ "MyFileName", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
{ "MyFolderPath", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
{
Type = "String",
} },
},
Type = "AzureBlob",
},
ResourceGroupName = "exampleResourceGroup",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.Dataset;
import com.pulumi.azurenative.datafactory.DatasetArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var dataset = new Dataset("dataset", DatasetArgs.builder()
.datasetName("exampleDataset")
.factoryName("exampleFactoryName")
.properties(Map.ofEntries(
Map.entry("description", "Example description"),
Map.entry("fileName", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFileName")
.build()),
Map.entry("folderPath", AmazonMWSObjectDatasetArgs.builder()
.type("Expression")
.value("@dataset().MyFolderPath")
.build()),
Map.entry("format", Map.of("type", "TextFormat")),
Map.entry("linkedServiceName", Map.ofEntries(
Map.entry("referenceName", "exampleLinkedService"),
Map.entry("type", "LinkedServiceReference")
)),
Map.entry("parameters", Map.ofEntries(
Map.entry("MyFileName", Map.of("type", "String")),
Map.entry("MyFolderPath", Map.of("type", "String"))
)),
Map.entry("type", "AzureBlob")
))
.resourceGroupName("exampleResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
dataset = azure_native.datafactory.Dataset("dataset",
dataset_name="exampleDataset",
factory_name="exampleFactoryName",
properties=azure_native.datafactory.AzureBlobDatasetArgs(
description="Example description",
file_name={
"type": "Expression",
"value": "@dataset().MyFileName",
},
folder_path={
"type": "Expression",
"value": "@dataset().MyFolderPath",
},
format=azure_native.datafactory.TextFormatArgs(
type="TextFormat",
),
linked_service_name=azure_native.datafactory.LinkedServiceReferenceArgs(
reference_name="exampleLinkedService",
type="LinkedServiceReference",
),
parameters={
"MyFileName": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
"MyFolderPath": azure_native.datafactory.ParameterSpecificationArgs(
type="String",
),
},
type="AzureBlob",
),
resource_group_name="exampleResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataset = new azure_native.datafactory.Dataset("dataset", {
datasetName: "exampleDataset",
factoryName: "exampleFactoryName",
properties: {
description: "Example description",
fileName: {
type: "Expression",
value: "@dataset().MyFileName",
},
folderPath: {
type: "Expression",
value: "@dataset().MyFolderPath",
},
format: {
type: "TextFormat",
},
linkedServiceName: {
referenceName: "exampleLinkedService",
type: "LinkedServiceReference",
},
parameters: {
MyFileName: {
type: "String",
},
MyFolderPath: {
type: "String",
},
},
type: "AzureBlob",
},
resourceGroupName: "exampleResourceGroup",
});
resources:
dataset:
type: azure-native:datafactory:Dataset
properties:
datasetName: exampleDataset
factoryName: exampleFactoryName
properties:
description: Example description
fileName:
type: Expression
value: '@dataset().MyFileName'
folderPath:
type: Expression
value: '@dataset().MyFolderPath'
format:
type: TextFormat
linkedServiceName:
referenceName: exampleLinkedService
type: LinkedServiceReference
parameters:
MyFileName:
type: String
MyFolderPath:
type: String
type: AzureBlob
resourceGroupName: exampleResourceGroup
Create Dataset Resource
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, GreenplumTableDatasetArgs, HBaseObjectDatasetArgs, HiveObjectDatasetArgs, HttpDatasetArgs, HubspotObjectDatasetArgs, ImpalaObjectDatasetArgs, InformixTableDatasetArgs, JiraObjectDatasetArgs, JsonDatasetArgs, MagentoObjectDatasetArgs, MariaDBTableDatasetArgs, MarketoObjectDatasetArgs, MicrosoftAccessTableDatasetArgs, MongoDbAtlasCollectionDatasetArgs, MongoDbCollectionDatasetArgs, MongoDbV2CollectionDatasetArgs, MySqlTableDatasetArgs, NetezzaTableDatasetArgs, ODataResourceDatasetArgs, OdbcTableDatasetArgs, Office365DatasetArgs, OracleServiceCloudObjectDatasetArgs, OracleTableDatasetArgs, OrcDatasetArgs, ParquetDatasetArgs, PaypalObjectDatasetArgs, PhoenixObjectDatasetArgs, PostgreSqlTableDatasetArgs, PrestoObjectDatasetArgs, QuickBooksObjectDatasetArgs, RelationalTableDatasetArgs, ResponsysObjectDatasetArgs, RestResourceDatasetArgs, SalesforceMarketingCloudObjectDatasetArgs, SalesforceObjectDatasetArgs, SalesforceServiceCloudObjectDatasetArgs, SapBwCubeDatasetArgs, SapCloudForCustomerResourceDatasetArgs, SapEccResourceDatasetArgs, SapHanaTableDatasetArgs, SapOdpResourceDatasetArgs, SapOpenHubTableDatasetArgs, SapTableResourceDatasetArgs, ServiceNowObjectDatasetArgs, SharePointOnlineListResourceDatasetArgs, ShopifyObjectDatasetArgs, SnowflakeDatasetArgs, SparkObjectDatasetArgs, SqlServerTableDatasetArgs, SquareObjectDatasetArgs, SybaseTableDatasetArgs, TeradataTableDatasetArgs, VerticaTableDatasetArgs, WebTableDatasetArgs, XeroObjectDatasetArgs, XmlDatasetArgs, ZohoObjectDatasetArgs]] = None,
resource_group_name: Optional[str] = None,
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 =
{
{ "linkedServiceName",
{
{ "referenceName", "string" },
{ "type", "string" },
{ "parameters",
{
{ "string", "any" },
} },
} },
{ "type", "AmazonMWSObject" },
{ "annotations", new[]
{
"any",
} },
{ "description", "string" },
{ "folder",
{
{ "name", "string" },
} },
{ "parameters",
{
{ "string",
{
{ "type", "string" },
{ "defaultValue", "any" },
} },
} },
{ "schema", "any" },
{ "structure", "any" },
{ "tableName", "any" },
},
ResourceGroupName = "string",
DatasetName = "string",
});
example, err := datafactory.NewDataset(ctx, "datasetResource", &datafactory.DatasetArgs{
FactoryName: "string",
Properties: map[string]interface{}{
"linkedServiceName": map[string]interface{}{
"referenceName": "string",
"type": "string",
"parameters": map[string]interface{}{
"string": "any",
},
},
"type": "AmazonMWSObject",
"annotations": []string{
"any",
},
"description": "string",
"folder": map[string]interface{}{
"name": "string",
},
"parameters": map[string]interface{}{
"string": map[string]interface{}{
"type": "string",
"defaultValue": "any",
},
},
"schema": "any",
"structure": "any",
"tableName": "any",
},
ResourceGroupName: "string",
DatasetName: "string",
})
var datasetResource = new Dataset("datasetResource", DatasetArgs.builder()
.factoryName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.datasetName("string")
.build());
dataset_resource = azure_native.datafactory.Dataset("datasetResource",
factory_name=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,
},
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
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. 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. 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. 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. 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. 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. 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. 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. 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 | GreenplumQuery Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | ImpalaDataset Args Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | MagentoArgs Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PrestoTable Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SapCloud Object Dataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ShareObject Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args - Dataset properties.
- Resource
Group stringName - The resource group name.
- Dataset
Name string - The dataset name.
- factory
Name String - The factory name.
- properties
Amazon
MWSObject | AmazonDataset 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 | GreenplumQuery Object Dataset Table | HBaseDataset Object | HiveDataset Object | HttpDataset Dataset | HubspotObject | ImpalaDataset Object | InformixDataset Table | JiraDataset Object | JsonDataset Dataset | MagentoObject | 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 | PrestoTable Dataset Object | QuickDataset Books | RelationalObject Dataset Table | ResponsysDataset Object | RestDataset Resource | SalesforceDataset Marketing | SalesforceCloud Object Dataset Object | SalesforceDataset Service | SapCloud Object Dataset 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 | ShareObject Dataset Point | ShopifyOnline List Resource Dataset Object | SnowflakeDataset Dataset | SparkObject | SqlDataset Server | SquareTable Dataset Object | SybaseDataset Table | TeradataDataset Table | VerticaDataset 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 | GreenplumQuery Object Dataset Table | HBaseDataset Object | HiveDataset Object | HttpDataset Dataset | HubspotObject | ImpalaDataset Object | InformixDataset Table | JiraDataset Object | JsonDataset Dataset | MagentoObject | 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 | PrestoTable Dataset Object | QuickDataset Books | RelationalObject Dataset Table | ResponsysDataset Object | RestDataset Resource | SalesforceDataset Marketing | SalesforceCloud Object Dataset Object | SalesforceDataset Service | SapCloud Object Dataset 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 | ShareObject Dataset Point | ShopifyOnline List Resource Dataset Object | SnowflakeDataset Dataset | SparkObject | SqlDataset Server | SquareTable Dataset Object | SybaseDataset Table | TeradataDataset Table | VerticaDataset 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 | GreenplumQuery Object Dataset Args Table | HBaseDataset Args Object | HiveDataset Args Object | HttpDataset Args Dataset | HubspotArgs Object | ImpalaDataset Args Object | InformixDataset Args Table | JiraDataset Args Object | JsonDataset Args Dataset | MagentoArgs Object | MariaDataset Args DBTable | MarketoDataset Args Object | MicrosoftDataset Args Access | MongoTable Dataset Args Db | MongoAtlas Collection Dataset Args Db | MongoCollection Dataset Args Db | MyV2Collection Dataset Args Sql | NetezzaTable Dataset Args Table | ODataDataset Args Resource | OdbcDataset Args Table | Office365DatasetDataset Args Args | OracleService | OracleCloud Object Dataset Args Table | OrcDataset Args Dataset | ParquetArgs Dataset | PaypalArgs Object | PhoenixDataset Args Object | PostgreDataset Args Sql | PrestoTable Dataset Args Object | QuickDataset Args Books | RelationalObject Dataset Args Table | ResponsysDataset Args Object | RestDataset Args Resource | SalesforceDataset Args Marketing | SalesforceCloud Object Dataset Args Object | SalesforceDataset Args Service | SapCloud Object Dataset Args Bw | SapCube Dataset Args Cloud | SapFor Customer Resource Dataset Args Ecc | SapResource Dataset Args Hana | SapTable Dataset Args Odp | SapResource Dataset Args Open | SapHub Table Dataset Args Table | ServiceResource Dataset Args Now | ShareObject Dataset Args Point | ShopifyOnline List Resource Dataset Args Object | SnowflakeDataset Args Dataset | SparkArgs Object | SqlDataset Args Server | SquareTable Dataset Args Object | SybaseDataset Args Table | TeradataDataset Args Table | VerticaDataset Args Table | WebDataset Args Table | XeroDataset Args Object | XmlDataset Args Dataset | ZohoArgs Object Dataset Args - Dataset properties.
- resource_
group_ strname - The resource group name.
- dataset_
name str - The dataset name.
- factory
Name String - The factory name.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Dataset properties.
- resource
Group StringName - The resource group name.
- dataset
Name String - The dataset name.
Outputs
All input properties are implicitly available as output properties. Additionally, the Dataset resource produces the following output properties:
Supporting Types
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. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the avro storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Avro
Compression objectCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Avro
Compression interface{}Codec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
- Dataset description.
- Folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification - Parameters for dataset.
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- avro
Compression ObjectCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression IntegerLevel - description String
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> - Parameters for dataset.
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- avro
Compression anyCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression numberLevel - description string
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the avro storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- avro_
compression_ Anycodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_
compression_ intlevel - description str
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the avro storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- avro
Compression AnyCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression NumberLevel - description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AvroDatasetResponse, 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. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the avro storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Avro
Compression objectCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Avro
Compression interface{}Codec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- Avro
Compression intLevel - Description string
- Dataset description.
- Folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response - Parameters for dataset.
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- avro
Compression ObjectCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression IntegerLevel - description String
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- avro
Compression anyCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression numberLevel - description string
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the avro storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- avro_
compression_ Anycodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro_
compression_ intlevel - description str
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the avro storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- avro
Compression AnyCodec - The data avroCompressionCodec. Type: string (or Expression with resultType string).
- avro
Compression NumberLevel - description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AvroFormat, 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.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Object
- The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name Object - The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table any
- The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name any - The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
- The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table_
name Any - The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
- The table name of the Azure PostgreSQL database. Type: string (or Expression with resultType string).
- table
Name Any - The table name of the Azure PostgreSQL database which includes both schema and table. Type: string (or Expression with resultType string).
AzureSearchIndexDataset, AzureSearchIndexDatasetArgs
- Index
Name object - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Index
Name interface{} - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference - Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification - Parameters for dataset.
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name Object - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> - Parameters for dataset.
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name any - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index_
name Any - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name Any - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AzureSearchIndexDatasetResponse, AzureSearchIndexDatasetResponseArgs
- Index
Name object - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Index
Name interface{} - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response - Parameters for dataset.
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name Object - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name any - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index_
name Any - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index
Name Any - The name of the Azure Search Index. Type: string (or Expression with resultType string).
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AzureSqlDWTableDataset, AzureSqlDWTableDatasetArgs
- 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 SQL Data Warehouse. 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 table name of the Azure SQL Data Warehouse. 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 table name of the Azure SQL Data Warehouse. 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 table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
AzureSqlDWTableDatasetResponse, AzureSqlDWTableDatasetResponseArgs
- 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 SQL Data Warehouse. 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 table name of the Azure SQL Data Warehouse. 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 table name of the Azure SQL Data Warehouse. 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 table name of the Azure SQL Data Warehouse. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Data Warehouse. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
AzureSqlMITableDataset, AzureSqlMITableDatasetArgs
- 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 SQL Managed Instance dataset. 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 table name of the Azure SQL Managed Instance dataset. 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 table name of the Azure SQL Managed Instance dataset. 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 table name of the Azure SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
AzureSqlMITableDatasetResponse, AzureSqlMITableDatasetResponseArgs
- 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 SQL Managed Instance dataset. 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 table name of the Azure SQL Managed Instance dataset. 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 table name of the Azure SQL Managed Instance dataset. 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 table name of the Azure SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL Managed Instance dataset. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
AzureSqlTableDataset, AzureSqlTableDatasetArgs
- 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 SQL database. 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 table name of the Azure SQL database. 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 table name of the Azure SQL database. 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 table name of the Azure SQL database. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL database. 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 table name of the Azure SQL database. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
AzureSqlTableDatasetResponse, AzureSqlTableDatasetResponseArgs
- 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 SQL database. 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 table name of the Azure SQL database. 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 table name of the Azure SQL database. 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 table name of the Azure SQL database. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 SQL database. 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 table name of the Azure SQL database. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
AzureTableDataset, AzureTableDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Table
Name object - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Table
Name interface{} - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- table
Name Object - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- table
Name any - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- table_
name Any - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- table
Name Any - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
AzureTableDatasetResponse, AzureTableDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Table
Name object - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Table
Name interface{} - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- table
Name Object - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- table
Name any - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- table_
name Any - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- table
Name Any - The table name of the Azure Table storage. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
BinaryDataset, BinaryDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the Binary storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression - The data compression method used for the binary dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the Binary storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression - The data compression method used for the binary 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the Binary storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the binary 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the Binary storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the binary 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.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the Binary storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the binary 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.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the Binary storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the binary dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
BinaryDatasetResponse, BinaryDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the Binary storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response - The data compression method used for the binary dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the Binary storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response - The data compression method used for the binary 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the Binary storage.
- 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 binary 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the Binary storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response - The data compression method used for the binary 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.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the Binary storage.
- 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 binary 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.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the Binary storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the binary dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CassandraTableDataset, CassandraTableDatasetArgs
- 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.
- Keyspace object
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name object - The table name of the Cassandra 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.
- Keyspace interface{}
- The keyspace of the Cassandra database. 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
Name interface{} - The table name of the Cassandra 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.
- keyspace Object
- The keyspace of the Cassandra database. 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
Name Object - The table name of the Cassandra 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.
- keyspace any
- The keyspace of the Cassandra database. 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
Name any - The table name of the Cassandra database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- keyspace Any
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- parameters
Mapping[str, 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 of the Cassandra 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.
- keyspace Any
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Any - The table name of the Cassandra database. Type: string (or Expression with resultType string).
CassandraTableDatasetResponse, CassandraTableDatasetResponseArgs
- 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.
- Keyspace object
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table
Name object - The table name of the Cassandra 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.
- Keyspace interface{}
- The keyspace of the Cassandra database. 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
Name interface{} - The table name of the Cassandra 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.
- keyspace Object
- The keyspace of the Cassandra database. 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
Name Object - The table name of the Cassandra 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.
- keyspace any
- The keyspace of the Cassandra database. 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
Name any - The table name of the Cassandra database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- keyspace Any
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- parameters
Mapping[str, 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 of the Cassandra 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.
- keyspace Any
- The keyspace of the Cassandra database. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table
Name Any - The table name of the Cassandra database. Type: string (or Expression with resultType string).
CommonDataServiceForAppsEntityDataset, CommonDataServiceForAppsEntityDatasetArgs
- 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.
- Entity
Name object - The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Entity
Name interface{} - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Object - The logical name of the entity. 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.
- 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.
- description string
- Dataset description.
- entity
Name any - The logical name of the entity. 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.
- 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.
- description str
- Dataset description.
- entity_
name Any - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Any - The logical name of the entity. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
CommonDataServiceForAppsEntityDatasetResponse, CommonDataServiceForAppsEntityDatasetResponseArgs
- 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.
- Entity
Name object - The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Entity
Name interface{} - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Object - The logical name of the entity. 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.
- 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.
- description string
- Dataset description.
- entity
Name any - The logical name of the entity. 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.
- 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.
- description str
- Dataset description.
- entity_
name Any - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Any - The logical name of the entity. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ConcurObjectDataset, ConcurObjectDatasetArgs
- 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).
ConcurObjectDatasetResponse, ConcurObjectDatasetResponseArgs
- 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).
CosmosDbMongoDbApiCollectionDataset, CosmosDbMongoDbApiCollectionDatasetArgs
- Collection object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection interface{}
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference - Linked service reference.
- Annotations []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.
- collection Object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations 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.
- collection any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations 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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) 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.
CosmosDbMongoDbApiCollectionDatasetResponse, CosmosDbMongoDbApiCollectionDatasetResponseArgs
- Collection object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection interface{}
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Annotations []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.
- collection Object
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations 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.
- collection any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations 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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection Any
- The collection name of the CosmosDB (MongoDB API) 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.
CosmosDbSqlApiCollectionDataset, CosmosDbSqlApiCollectionDatasetArgs
- Collection
Name object - CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection
Name interface{} - CosmosDB (SQL API) collection 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.
- collection
Name Object - CosmosDB (SQL API) collection 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.
- collection
Name any - CosmosDB (SQL API) collection 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.
- collection_
name Any - CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection
Name Any - CosmosDB (SQL API) collection 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.
CosmosDbSqlApiCollectionDatasetResponse, CosmosDbSqlApiCollectionDatasetResponseArgs
- Collection
Name object - CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection
Name interface{} - CosmosDB (SQL API) collection 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.
- collection
Name Object - CosmosDB (SQL API) collection 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.
- collection
Name any - CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations 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.
- collection_
name Any - CosmosDB (SQL API) collection name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection
Name Any - CosmosDB (SQL API) collection 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.
CouchbaseTableDataset, CouchbaseTableDatasetArgs
- 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).
CouchbaseTableDatasetResponse, CouchbaseTableDatasetResponseArgs
- 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).
CustomDataset, CustomDatasetArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
CustomDatasetResponse, CustomDatasetResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
DatasetCompression, DatasetCompressionArgs
DatasetCompressionResponse, DatasetCompressionResponseArgs
DatasetFolder, DatasetFolderArgs
- Name string
- The name of the folder that this Dataset is in.
- Name string
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
- name string
- The name of the folder that this Dataset is in.
- name str
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
DatasetResponseFolder, DatasetResponseFolderArgs
- Name string
- The name of the folder that this Dataset is in.
- Name string
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
- name string
- The name of the folder that this Dataset is in.
- name str
- The name of the folder that this Dataset is in.
- name String
- The name of the folder that this Dataset is in.
Db2TableDataset, Db2TableDatasetArgs
- 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 Db2 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 Db2 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 Db2 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 Db2 table name. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Db2 table name. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 Db2 table name. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
Db2TableDatasetResponse, Db2TableDatasetResponseArgs
- 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 Db2 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 Db2 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 Db2 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 Db2 table name. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Db2 table name. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 Db2 table name. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
DelimitedTextDataset, DelimitedTextDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the delimited text storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Column
Delimiter object - The column delimiter. Type: string (or Expression with resultType string).
- Compression
Codec object - The data compressionCodec. Type: string (or Expression with resultType string).
- Compression
Level object - The data compression method used for DelimitedText.
- Description string
- Dataset description.
- Encoding
Name object - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char object - The escape character. Type: string (or Expression with resultType string).
- First
Row objectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Quote
Char object - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter object - The row delimiter. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the delimited text storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Column
Delimiter interface{} - The column delimiter. Type: string (or Expression with resultType string).
- Compression
Codec interface{} - The data compressionCodec. Type: string (or Expression with resultType string).
- Compression
Level interface{} - The data compression method used for DelimitedText.
- Description string
- Dataset description.
- Encoding
Name interface{} - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char interface{} - The escape character. Type: string (or Expression with resultType string).
- First
Row interface{}As Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value interface{} - The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification - Parameters for dataset.
- Quote
Char interface{} - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter interface{} - The row delimiter. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the delimited text storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- column
Delimiter Object - The column delimiter. Type: string (or Expression with resultType string).
- compression
Codec Object - The data compressionCodec. Type: string (or Expression with resultType string).
- compression
Level Object - The data compression method used for DelimitedText.
- description String
- Dataset description.
- encoding
Name Object - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Object - The escape character. Type: string (or Expression with resultType string).
- first
Row ObjectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Object - The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> - Parameters for dataset.
- quote
Char Object - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Object - The row delimiter. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the delimited text storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- column
Delimiter any - The column delimiter. Type: string (or Expression with resultType string).
- compression
Codec any - The data compressionCodec. Type: string (or Expression with resultType string).
- compression
Level any - The data compression method used for DelimitedText.
- description string
- Dataset description.
- encoding
Name any - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char any - The escape character. Type: string (or Expression with resultType string).
- first
Row anyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- quote
Char any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter any - The row delimiter. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the delimited text storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- column_
delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- compression_
codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- compression_
level Any - The data compression method used for DelimitedText.
- description str
- Dataset description.
- encoding_
name Any - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_
char Any - The escape character. Type: string (or Expression with resultType string).
- first_
row_ Anyas_ header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- quote_
char Any - The quote character. Type: string (or Expression with resultType string).
- row_
delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the delimited text storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- column
Delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- compression
Codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- compression
Level Any - The data compression method used for DelimitedText.
- description String
- Dataset description.
- encoding
Name Any - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Any - The escape character. Type: string (or Expression with resultType string).
- first
Row AnyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- quote
Char Any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
DelimitedTextDatasetResponse, DelimitedTextDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the delimited text storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Column
Delimiter object - The column delimiter. Type: string (or Expression with resultType string).
- Compression
Codec object - The data compressionCodec. Type: string (or Expression with resultType string).
- Compression
Level object - The data compression method used for DelimitedText.
- Description string
- Dataset description.
- Encoding
Name object - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char object - The escape character. Type: string (or Expression with resultType string).
- First
Row objectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Quote
Char object - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter object - The row delimiter. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the delimited text storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Column
Delimiter interface{} - The column delimiter. Type: string (or Expression with resultType string).
- Compression
Codec interface{} - The data compressionCodec. Type: string (or Expression with resultType string).
- Compression
Level interface{} - The data compression method used for DelimitedText.
- Description string
- Dataset description.
- Encoding
Name interface{} - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char interface{} - The escape character. Type: string (or Expression with resultType string).
- First
Row interface{}As Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value interface{} - The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response - Parameters for dataset.
- Quote
Char interface{} - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter interface{} - The row delimiter. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the delimited text storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- column
Delimiter Object - The column delimiter. Type: string (or Expression with resultType string).
- compression
Codec Object - The data compressionCodec. Type: string (or Expression with resultType string).
- compression
Level Object - The data compression method used for DelimitedText.
- description String
- Dataset description.
- encoding
Name Object - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Object - The escape character. Type: string (or Expression with resultType string).
- first
Row ObjectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Object - The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- quote
Char Object - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Object - The row delimiter. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the delimited text storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- column
Delimiter any - The column delimiter. Type: string (or Expression with resultType string).
- compression
Codec any - The data compressionCodec. Type: string (or Expression with resultType string).
- compression
Level any - The data compression method used for DelimitedText.
- description string
- Dataset description.
- encoding
Name any - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char any - The escape character. Type: string (or Expression with resultType string).
- first
Row anyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- quote
Char any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter any - The row delimiter. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the delimited text storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- column_
delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- compression_
codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- compression_
level Any - The data compression method used for DelimitedText.
- description str
- Dataset description.
- encoding_
name Any - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_
char Any - The escape character. Type: string (or Expression with resultType string).
- first_
row_ Anyas_ header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- quote_
char Any - The quote character. Type: string (or Expression with resultType string).
- row_
delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the delimited text storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- column
Delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- compression
Codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- compression
Level Any - The data compression method used for DelimitedText.
- description String
- Dataset description.
- encoding
Name Any - The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Any - The escape character. Type: string (or Expression with resultType string).
- first
Row AnyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- quote
Char Any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
DocumentDbCollectionDataset, DocumentDbCollectionDatasetArgs
- Collection
Name object - Document Database collection name. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection
Name interface{} - Document Database collection 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.
- collection
Name Object - Document Database collection 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.
- collection
Name any - Document Database collection 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.
- collection_
name Any - Document Database collection name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection
Name Any - Document Database collection 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.
DocumentDbCollectionDatasetResponse, DocumentDbCollectionDatasetResponseArgs
- Collection
Name object - Document Database collection name. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection
Name interface{} - Document Database collection 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.
- collection
Name Object - Document Database collection 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.
- collection
Name any - Document Database collection 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.
- collection_
name Any - Document Database collection name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection
Name Any - Document Database collection 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.
DrillTableDataset, DrillTableDatasetArgs
- 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 Drill. 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 table name of the Drill. 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 table name of the Drill. 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 table name of the Drill. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Drill. 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 table name of the Drill. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
DrillTableDatasetResponse, DrillTableDatasetResponseArgs
- 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 Drill. 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 table name of the Drill. 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 table name of the Drill. 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 table name of the Drill. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Drill. 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 table name of the Drill. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
DynamicsAXResourceDataset, DynamicsAXResourceDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Path object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Path interface{}
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- path Object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- path any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
DynamicsAXResourceDatasetResponse, DynamicsAXResourceDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Path object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Path interface{}
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- path Object
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- path any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The path of the Dynamics AX OData entity. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
DynamicsCrmEntityDataset, DynamicsCrmEntityDatasetArgs
- 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.
- Entity
Name object - The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Entity
Name interface{} - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Object - The logical name of the entity. 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.
- 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.
- description string
- Dataset description.
- entity
Name any - The logical name of the entity. 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.
- 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.
- description str
- Dataset description.
- entity_
name Any - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Any - The logical name of the entity. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
DynamicsCrmEntityDatasetResponse, DynamicsCrmEntityDatasetResponseArgs
- 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.
- Entity
Name object - The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Entity
Name interface{} - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Object - The logical name of the entity. 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.
- 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.
- description string
- Dataset description.
- entity
Name any - The logical name of the entity. 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.
- 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.
- description str
- Dataset description.
- entity_
name Any - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Any - The logical name of the entity. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
DynamicsEntityDataset, DynamicsEntityDatasetArgs
- 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.
- Entity
Name object - The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Entity
Name interface{} - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Object - The logical name of the entity. 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.
- 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.
- description string
- Dataset description.
- entity
Name any - The logical name of the entity. 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.
- 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.
- description str
- Dataset description.
- entity_
name Any - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Any - The logical name of the entity. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
DynamicsEntityDatasetResponse, DynamicsEntityDatasetResponseArgs
- 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.
- Entity
Name object - The logical name of the entity. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Entity
Name interface{} - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Object - The logical name of the entity. 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.
- 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.
- description string
- Dataset description.
- entity
Name any - The logical name of the entity. 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.
- 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.
- description str
- Dataset description.
- entity_
name Any - The logical name of the entity. 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.
- 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.
- description String
- Dataset description.
- entity
Name Any - The logical name of the entity. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
EloquaObjectDataset, EloquaObjectDatasetArgs
- 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).
EloquaObjectDatasetResponse, EloquaObjectDatasetResponseArgs
- 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).
ExcelDataset, ExcelDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the excel storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression - The data compression method used for the json dataset.
- Description string
- Dataset description.
- First
Row objectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Range object
- The partial data of one sheet. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Sheet
Index object - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- Sheet
Name object - The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the excel storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression - The data compression method used for the json dataset.
- Description string
- Dataset description.
- First
Row interface{}As Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value interface{} - The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification - Parameters for dataset.
- Range interface{}
- The partial data of one sheet. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Sheet
Index interface{} - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- Sheet
Name interface{} - The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the excel storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description String
- Dataset description.
- first
Row ObjectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Object - The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification> - Parameters for dataset.
- range Object
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet
Index Object - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet
Name Object - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the excel storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description string
- Dataset description.
- first
Row anyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- range any
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet
Index any - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet
Name any - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the excel storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description str
- Dataset description.
- first_
row_ Anyas_ header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- range Any
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet_
index Any - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet_
name Any - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the excel storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- first
Row AnyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- range Any
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet
Index Any - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet
Name Any - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ExcelDatasetResponse, ExcelDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the excel storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response - The data compression method used for the json dataset.
- Description string
- Dataset description.
- First
Row objectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Range object
- The partial data of one sheet. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Sheet
Index object - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- Sheet
Name object - The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the excel storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response - The data compression method used for the json dataset.
- Description string
- Dataset description.
- First
Row interface{}As Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value interface{} - The null value string. Type: string (or Expression with resultType string).
- Parameters
map[string]Parameter
Specification Response - Parameters for dataset.
- Range interface{}
- The partial data of one sheet. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Sheet
Index interface{} - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- Sheet
Name interface{} - The sheet name of excel file. Type: string (or Expression with resultType string).
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the excel storage.
- 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 json dataset.
- description String
- Dataset description.
- first
Row ObjectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Object - The null value string. Type: string (or Expression with resultType string).
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- range Object
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet
Index Object - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet
Name Object - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the excel storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response - The data compression method used for the json dataset.
- description string
- Dataset description.
- first
Row anyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- range any
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet
Index any - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet
Name any - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the excel storage.
- 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 json dataset.
- description str
- Dataset description.
- first_
row_ Anyas_ header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- range Any
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet_
index Any - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet_
name Any - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the excel storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- first
Row AnyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- range Any
- The partial data of one sheet. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- sheet
Index Any - The sheet index of excel file and default value is 0. Type: integer (or Expression with resultType integer)
- sheet
Name Any - The sheet name of excel file. Type: string (or Expression with resultType string).
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
FileServerLocation, FileServerLocationArgs
- 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)
FileServerLocationResponse, FileServerLocationResponseArgs
- 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)
FileShareDataset, FileShareDatasetArgs
- 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 file system.
- Description string
- Dataset description.
- File
Filter object - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- File
Name object - The name of the on-premises file system. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object - The path of the on-premises file system. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format - The format of the files.
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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 file system.
- Description string
- Dataset description.
- File
Filter interface{} - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- File
Name interface{} - The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat - The format of the files.
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file'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.
- 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 file system.
- description String
- Dataset description.
- file
Filter Object - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file
Name Object - The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat - The format of the files.
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file'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.
- 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 file system.
- description string
- Dataset description.
- file
Filter any - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file
Name any - The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder
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 on-premises file system. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat - The format of the files.
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[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 file system.
- description str
- Dataset description.
- file_
filter Any - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file_
name Any - The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder
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 on-premises file system. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonFormat | OrcFormat | ParquetFormat | TextFormat - The format of the files.
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, 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 file system.
- description String
- Dataset description.
- file
Filter Any - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file
Name Any - The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder 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 on-premises file system. Type: string (or Expression with resultType string).
- format Property Map | Property Map | Property Map | Property Map | Property Map
- The format of the files.
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
FileShareDatasetResponse, FileShareDatasetResponseArgs
- 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 file system.
- Description string
- Dataset description.
- File
Filter object - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- File
Name object - The name of the on-premises file system. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Folder
Path object - The path of the on-premises file system. Type: string (or Expression with resultType string).
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response - The format of the files.
- Modified
Datetime objectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime objectStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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 file system.
- Description string
- Dataset description.
- File
Filter interface{} - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- File
Name interface{} - The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- Format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response - The format of the files.
- Modified
Datetime interface{}End - The end of file's modified datetime. Type: string (or Expression with resultType string).
- Modified
Datetime interface{}Start - The start of file'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.
- 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 file system.
- description String
- Dataset description.
- file
Filter Object - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file
Name Object - The name of the on-premises file system. 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 on-premises file system. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response - The format of the files.
- modified
Datetime ObjectEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime ObjectStart - The start of file'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.
- 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 file system.
- description string
- Dataset description.
- file
Filter any - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file
Name any - The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder
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 on-premises file system. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response - The format of the files.
- modified
Datetime anyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime anyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters
{[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 file system.
- description str
- Dataset description.
- file_
filter Any - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file_
name Any - The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder
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 on-premises file system. Type: string (or Expression with resultType string).
- format
Avro
Format | JsonResponse Format | OrcResponse Format | ParquetResponse Format | TextResponse Format Response - The format of the files.
- modified_
datetime_ Anyend - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified_
datetime_ Anystart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters
Mapping[str, 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 file system.
- description String
- Dataset description.
- file
Filter Any - Specify a filter to be used to select a subset of files in the folderPath rather than all files. Type: string (or Expression with resultType string).
- file
Name Any - The name of the on-premises file system. Type: string (or Expression with resultType string).
- folder 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 on-premises file system. Type: string (or Expression with resultType string).
- format Property Map | Property Map | Property Map | Property Map | Property Map
- The format of the files.
- modified
Datetime AnyEnd - The end of file's modified datetime. Type: string (or Expression with resultType string).
- modified
Datetime AnyStart - The start of file's modified datetime. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
FtpServerLocation, FtpServerLocationArgs
- 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)
FtpServerLocationResponse, FtpServerLocationResponseArgs
- 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)
GoogleAdWordsObjectDataset, GoogleAdWordsObjectDatasetArgs
- 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).
GoogleAdWordsObjectDatasetResponse, GoogleAdWordsObjectDatasetResponseArgs
- 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).
GoogleBigQueryObjectDataset, GoogleBigQueryObjectDatasetArgs
- 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.
- Dataset object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
- The table name of the Google BigQuery. Type: string (or Expression with resultType string).
- Table
Name object - This property will be retired. Please consider using database + table properties instead.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Dataset interface{}
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
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 Google BigQuery. Type: string (or Expression with resultType string).
- Table
Name interface{} - This property will be retired. Please consider using database + 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.
- dataset Object
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- table
Name Object - This property will be retired. Please consider using database + table properties instead.
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- dataset any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description string
- Dataset description.
- folder
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 Google BigQuery. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using database + table properties instead.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
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 Google BigQuery. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using database + table properties instead.
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
- The table name of the Google BigQuery. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using database + table properties instead.
GoogleBigQueryObjectDatasetResponse, GoogleBigQueryObjectDatasetResponseArgs
- 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.
- Dataset object
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
- The table name of the Google BigQuery. Type: string (or Expression with resultType string).
- Table
Name object - This property will be retired. Please consider using database + 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.
- Dataset interface{}
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- Table
Name interface{} - This property will be retired. Please consider using database + 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.
- dataset Object
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- table
Name Object - This property will be retired. Please consider using database + 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.
- dataset any
- The database name of the Google BigQuery. 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 table name of the Google BigQuery. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using database + table properties instead.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
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 Google BigQuery. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using database + table properties instead.
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- dataset Any
- The database name of the Google BigQuery. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
- The table name of the Google BigQuery. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using database + table properties instead.
GoogleCloudStorageLocation, GoogleCloudStorageLocationArgs
- Bucket
Name object - Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- Bucket
Name interface{} - Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Object - Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name any - Specify the bucketName of Google Cloud Storage. Type: string (or Expression with resultType string)
- file
Name any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version any
- Specify the version of Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket_
name Any - Specify the bucketName of Google Cloud Storage. Type: string (or Expression with resultType string)
- file_
name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder_
path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Any - Specify the bucketName of Google Cloud Storage. Type: string (or Expression with resultType string)
- file
Name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Google Cloud Storage. Type: string (or Expression with resultType string).
GoogleCloudStorageLocationResponse, GoogleCloudStorageLocationResponseArgs
- Bucket
Name object - Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- Bucket
Name interface{} - Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Object - Specify the bucketName of Google Cloud Storage. 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 Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name any - Specify the bucketName of Google Cloud Storage. Type: string (or Expression with resultType string)
- file
Name any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version any
- Specify the version of Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket_
name Any - Specify the bucketName of Google Cloud Storage. Type: string (or Expression with resultType string)
- file_
name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder_
path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Google Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Any - Specify the bucketName of Google Cloud Storage. Type: string (or Expression with resultType string)
- file
Name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Google Cloud Storage. Type: string (or Expression with resultType string).
GreenplumTableDataset, GreenplumTableDatasetArgs
- 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 Greenplum. 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 table name of Greenplum. 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 table name of Greenplum. 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 table name of Greenplum. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Greenplum. 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 table name of Greenplum. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
GreenplumTableDatasetResponse, GreenplumTableDatasetResponseArgs
- 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 Greenplum. 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 table name of Greenplum. 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 table name of Greenplum. 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 table name of Greenplum. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Greenplum. 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 table name of Greenplum. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
HBaseObjectDataset, HBaseObjectDatasetArgs
- 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).
HBaseObjectDatasetResponse, HBaseObjectDatasetResponseArgs
- 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).
HdfsLocation, HdfsLocationArgs
- 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)
HdfsLocationResponse, HdfsLocationResponseArgs
- 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)
HiveObjectDataset, HiveObjectDatasetArgs
- 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 Hive. 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 table name of the Hive. 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 table name of the Hive. 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 table name of the Hive. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Hive. 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 table name of the Hive. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
HiveObjectDatasetResponse, HiveObjectDatasetResponseArgs
- 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 Hive. 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 table name of the Hive. 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 table name of the Hive. 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 table name of the Hive. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Hive. 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 table name of the Hive. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
HttpDataset, HttpDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Additional
Headers object - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression - The data compression method used on files.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Azure | Pulumi.Native. Data Factory. Inputs. Json Format Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Azure Native. Data Factory. Inputs. Text Format - The format of files.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Relative
Url object - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- Request
Body object - The body for the HTTP request. Type: string (or Expression with resultType string).
- Request
Method object - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Additional
Headers interface{} - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression - The data compression method used on files.
- 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.
- Parameters
map[string]Parameter
Specification - Parameters for dataset.
- Relative
Url interface{} - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- Request
Body interface{} - The body for the HTTP request. Type: string (or Expression with resultType string).
- Request
Method interface{} - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- additional
Headers Object - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used on files.
- 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.
- parameters
Map<String,Parameter
Specification> - Parameters for dataset.
- relative
Url Object - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request
Body Object - The body for the HTTP request. Type: string (or Expression with resultType string).
- request
Method Object - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- additional
Headers any - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used on files.
- 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.
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- relative
Url any - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request
Body any - The body for the HTTP request. Type: string (or Expression with resultType string).
- request
Method any - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- additional_
headers Any - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used on files.
- 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.
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- relative_
url Any - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request_
body Any - The body for the HTTP request. Type: string (or Expression with resultType string).
- request_
method Any - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- additional
Headers Any - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used on files.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format Property Map | Property Map | Property Map | Property Map | Property Map
- The format of files.
- parameters Map<Property Map>
- Parameters for dataset.
- relative
Url Any - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request
Body Any - The body for the HTTP request. Type: string (or Expression with resultType string).
- request
Method Any - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
HttpDatasetResponse, HttpDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Additional
Headers object - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response - The data compression method used on files.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Format
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Avro Format Response Azure | Pulumi.Native. Data Factory. Inputs. Json Format Response Azure | Pulumi.Native. Data Factory. Inputs. Orc Format Response Azure | Pulumi.Native. Data Factory. Inputs. Parquet Format Response Azure Native. Data Factory. Inputs. Text Format Response - The format of files.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Relative
Url object - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- Request
Body object - The body for the HTTP request. Type: string (or Expression with resultType string).
- Request
Method object - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Additional
Headers interface{} - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response - The data compression method used on files.
- 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.
- Parameters
map[string]Parameter
Specification Response - Parameters for dataset.
- Relative
Url interface{} - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- Request
Body interface{} - The body for the HTTP request. Type: string (or Expression with resultType string).
- Request
Method interface{} - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- additional
Headers Object - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response - The data compression method used on files.
- 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.
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- relative
Url Object - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request
Body Object - The body for the HTTP request. Type: string (or Expression with resultType string).
- request
Method Object - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- additional
Headers any - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response - The data compression method used on files.
- 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.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- relative
Url any - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request
Body any - The body for the HTTP request. Type: string (or Expression with resultType string).
- request
Method any - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- additional_
headers Any - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response - The data compression method used on files.
- 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.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- relative_
url Any - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request_
body Any - The body for the HTTP request. Type: string (or Expression with resultType string).
- request_
method Any - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- additional
Headers Any - The headers for the HTTP Request. e.g. request-header-name-1:request-header-value-1 ... request-header-name-n:request-header-value-n Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used on files.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- format Property Map | Property Map | Property Map | Property Map | Property Map
- The format of files.
- parameters Map<Property Map>
- Parameters for dataset.
- relative
Url Any - The relative URL based on the URL in the HttpLinkedService refers to an HTTP file Type: string (or Expression with resultType string).
- request
Body Any - The body for the HTTP request. Type: string (or Expression with resultType string).
- request
Method Any - The HTTP method for the HTTP request. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
HttpServerLocation, HttpServerLocationArgs
- 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)
- Relative
Url object - Specify the relativeUrl of http server. 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)
- Relative
Url interface{} - Specify the relativeUrl of http server. 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)
- relative
Url Object - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
- file
Name any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- relative
Url any - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
- file_
name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder_
path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- relative_
url Any - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
- file
Name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- relative
Url Any - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
HttpServerLocationResponse, HttpServerLocationResponseArgs
- 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)
- Relative
Url object - Specify the relativeUrl of http server. 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)
- Relative
Url interface{} - Specify the relativeUrl of http server. 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)
- relative
Url Object - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
- file
Name any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- relative
Url any - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
- file_
name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder_
path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- relative_
url Any - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
- file
Name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- relative
Url Any - Specify the relativeUrl of http server. Type: string (or Expression with resultType string)
HubspotObjectDataset, HubspotObjectDatasetArgs
- 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).
HubspotObjectDatasetResponse, HubspotObjectDatasetResponseArgs
- 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).
ImpalaObjectDataset, ImpalaObjectDatasetArgs
- 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 Impala. 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 table name of the Impala. 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 table name of the Impala. 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 table name of the Impala. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Impala. 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 table name of the Impala. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
ImpalaObjectDatasetResponse, ImpalaObjectDatasetResponseArgs
- 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 Impala. 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 table name of the Impala. 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 table name of the Impala. 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 table name of the Impala. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Impala. 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 table name of the Impala. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
InformixTableDataset, InformixTableDatasetArgs
- 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 Informix 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 Informix 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 Informix 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 Informix table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Informix 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 Informix table name. Type: string (or Expression with resultType string).
InformixTableDatasetResponse, InformixTableDatasetResponseArgs
- 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 Informix 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 Informix 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 Informix 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 Informix table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Informix 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 Informix table name. Type: string (or Expression with resultType string).
JiraObjectDataset, JiraObjectDatasetArgs
- 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).
JiraObjectDatasetResponse, JiraObjectDatasetResponseArgs
- 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).
JsonDataset, JsonDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name interface{} - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification - Parameters for dataset.
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description String
- Dataset description.
- encoding
Name Object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification> - Parameters for dataset.
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description string
- Dataset description.
- encoding
Name any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description str
- Dataset description.
- encoding_
name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encoding
Name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
JsonDatasetResponse, JsonDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name interface{} - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
map[string]Parameter
Specification Response - Parameters for dataset.
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- 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 json dataset.
- description String
- Dataset description.
- encoding
Name Object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response - The data compression method used for the json dataset.
- description string
- Dataset description.
- encoding
Name any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- 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 json dataset.
- description str
- Dataset description.
- encoding_
name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encoding
Name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
JsonFormat, JsonFormatArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name object - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- File
Pattern object - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- Json
Node objectReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- Json
Path objectDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- Nesting
Separator object - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name interface{} - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- File
Pattern interface{} - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- Json
Node interface{}Reference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- Json
Path interface{}Definition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- Nesting
Separator interface{} - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Object - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file
Pattern Object - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json
Node ObjectReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json
Path ObjectDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting
Separator Object - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name any - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file
Pattern any - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json
Node anyReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json
Path anyDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting
Separator any - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding_
name Any - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file_
pattern Any - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json_
node_ Anyreference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json_
path_ Anydefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting_
separator Any - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Any - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file
Pattern Any - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json
Node AnyReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json
Path AnyDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting
Separator Any - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
JsonFormatResponse, JsonFormatResponseArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name object - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- File
Pattern object - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- Json
Node objectReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- Json
Path objectDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- Nesting
Separator object - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name interface{} - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- File
Pattern interface{} - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- Json
Node interface{}Reference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- Json
Path interface{}Definition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- Nesting
Separator interface{} - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Object - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file
Pattern Object - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json
Node ObjectReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json
Path ObjectDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting
Separator Object - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name any - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file
Pattern any - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json
Node anyReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json
Path anyDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting
Separator any - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding_
name Any - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file_
pattern Any - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json_
node_ Anyreference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json_
path_ Anydefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting_
separator Any - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Any - The code page name of the preferred encoding. If not provided, the default value is 'utf-8', unless the byte order mark (BOM) denotes another Unicode encoding. The full list of supported values can be found in the 'Name' column of the table of encodings in the following reference: https://go.microsoft.com/fwlink/?linkid=861078. Type: string (or Expression with resultType string).
- file
Pattern Any - File pattern of JSON. To be more specific, the way of separating a collection of JSON objects. The default value is 'setOfObjects'. It is case-sensitive.
- json
Node AnyReference - The JSONPath of the JSON array element to be flattened. Example: "$.ArrayPath". Type: string (or Expression with resultType string).
- json
Path AnyDefinition - The JSONPath definition for each column mapping with a customized column name to extract data from JSON file. For fields under root object, start with "$"; for fields inside the array chosen by jsonNodeReference property, start from the array element. Example: {"Column1": "$.Column1Path", "Column2": "Column2PathInArray"}. Type: object (or Expression with resultType object).
- nesting
Separator Any - The character used to separate nesting levels. Default value is '.' (dot). Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
LinkedServiceReference, LinkedServiceReferenceArgs
- Reference
Name string - Reference LinkedService name.
- Type
string | Pulumi.
Azure Native. Data Factory. Type - Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- Reference
Name string - Reference LinkedService name.
- Type string | Type
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type String | Type
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- reference
Name string - Reference LinkedService name.
- type string | Type
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_
name str - Reference LinkedService name.
- type str | Type
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type
String | "Linked
Service Reference" - Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
LinkedServiceReferenceResponse, LinkedServiceReferenceResponseArgs
- Reference
Name string - Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- Reference
Name string - Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- reference
Name string - Reference LinkedService name.
- type string
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_
name str - Reference LinkedService name.
- type str
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- reference
Name String - Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
MagentoObjectDataset, MagentoObjectDatasetArgs
- 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).
MagentoObjectDatasetResponse, MagentoObjectDatasetResponseArgs
- 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).
MariaDBTableDataset, MariaDBTableDatasetArgs
- 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).
MariaDBTableDatasetResponse, MariaDBTableDatasetResponseArgs
- 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).
MarketoObjectDataset, MarketoObjectDatasetArgs
- 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).
MarketoObjectDatasetResponse, MarketoObjectDatasetResponseArgs
- 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).
MicrosoftAccessTableDataset, MicrosoftAccessTableDatasetArgs
- 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 Microsoft Access 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 Microsoft Access 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 Microsoft Access 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Microsoft Access 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 Microsoft Access table name. Type: string (or Expression with resultType string).
MicrosoftAccessTableDatasetResponse, MicrosoftAccessTableDatasetResponseArgs
- 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 Microsoft Access 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 Microsoft Access 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 Microsoft Access 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 Microsoft Access table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Microsoft Access 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 Microsoft Access table name. Type: string (or Expression with resultType string).
MongoDbAtlasCollectionDataset, MongoDbAtlasCollectionDatasetArgs
- Collection object
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- 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.
- Collection interface{}
- The collection name of the MongoDB Atlas 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.
- collection Object
- The collection name of the MongoDB Atlas 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.
- collection any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations 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.
- collection Any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection Any
- The collection name of the MongoDB Atlas 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.
MongoDbAtlasCollectionDatasetResponse, MongoDbAtlasCollectionDatasetResponseArgs
- Collection object
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection interface{}
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Annotations []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.
- collection Object
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations 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.
- collection any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations 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.
- collection Any
- The collection name of the MongoDB Atlas database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection Any
- The collection name of the MongoDB Atlas 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.
MongoDbCollectionDataset, MongoDbCollectionDatasetArgs
- Collection
Name object - The table name of the MongoDB database. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection
Name interface{} - The table name of the MongoDB 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.
- collection
Name Object - The table name of the MongoDB 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.
- collection
Name any - The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations 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.
- collection_
name Any - The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection
Name Any - The table name of the MongoDB 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.
MongoDbCollectionDatasetResponse, MongoDbCollectionDatasetResponseArgs
- Collection
Name object - The table name of the MongoDB database. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection
Name interface{} - The table name of the MongoDB 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.
- collection
Name Object - The table name of the MongoDB 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.
- collection
Name any - The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations 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.
- collection_
name Any - The table name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection
Name Any - The table name of the MongoDB 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.
MongoDbV2CollectionDataset, MongoDbV2CollectionDatasetArgs
- Collection object
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection interface{}
- The collection name of the MongoDB 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.
- collection Object
- The collection name of the MongoDB 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.
- collection any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- annotations 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.
- collection Any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection Any
- The collection name of the MongoDB 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.
MongoDbV2CollectionDatasetResponse, MongoDbV2CollectionDatasetResponseArgs
- Collection object
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Collection interface{}
- The collection name of the MongoDB 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.
- collection Object
- The collection name of the MongoDB 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.
- collection any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- annotations 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.
- collection Any
- The collection name of the MongoDB database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- collection Any
- The collection name of the MongoDB 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.
MySqlTableDataset, MySqlTableDatasetArgs
- 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 MySQL 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 MySQL 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 MySQL 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 MySQL table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 MySQL 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 MySQL table name. Type: string (or Expression with resultType string).
MySqlTableDatasetResponse, MySqlTableDatasetResponseArgs
- 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 MySQL 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 MySQL 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 MySQL 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 MySQL table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 MySQL 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 MySQL table name. Type: string (or Expression with resultType string).
NetezzaTableDataset, NetezzaTableDatasetArgs
- 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 Netezza. 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 table name of the Netezza. 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 table name of the Netezza. 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 table name of the Netezza. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Netezza. 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 table name of the Netezza. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
NetezzaTableDatasetResponse, NetezzaTableDatasetResponseArgs
- 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 Netezza. 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 table name of the Netezza. 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 table name of the Netezza. 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 table name of the Netezza. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Netezza. 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 table name of the Netezza. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
ODataResourceDataset, ODataResourceDatasetArgs
- 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.
- Path object
- The OData resource path. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Path interface{}
- The OData resource path. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- path Object
- The OData resource path. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- path any
- The OData resource path. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The OData resource path. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- path Any
- The OData resource path. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ODataResourceDatasetResponse, ODataResourceDatasetResponseArgs
- 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.
- Path object
- The OData resource path. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Path interface{}
- The OData resource path. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- path Object
- The OData resource path. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- path any
- The OData resource path. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The OData resource path. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- path Any
- The OData resource path. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
OdbcTableDataset, OdbcTableDatasetArgs
- 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 ODBC 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 ODBC 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 ODBC 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 ODBC table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 ODBC 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 ODBC table name. Type: string (or Expression with resultType string).
OdbcTableDatasetResponse, OdbcTableDatasetResponseArgs
- 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 ODBC 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 ODBC 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 ODBC 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 ODBC table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 ODBC 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 ODBC table name. Type: string (or Expression with resultType string).
Office365Dataset, Office365DatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Table
Name object - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Predicate object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Table
Name interface{} - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- Predicate interface{}
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- table
Name Object - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- predicate Object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- table
Name any - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations 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.
- predicate any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- table_
name Any - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- table
Name Any - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
Office365DatasetResponse, Office365DatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Table
Name object - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Predicate object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Table
Name interface{} - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- Predicate interface{}
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- table
Name Object - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- predicate Object
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- table
Name any - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations 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.
- predicate any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- table_
name Any - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- table
Name Any - Name of the dataset to extract from Office 365. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- predicate Any
- A predicate expression that can be used to filter the specific rows to extract from Office 365. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
OracleCloudStorageLocation, OracleCloudStorageLocationArgs
- Bucket
Name object - Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- Bucket
Name interface{} - Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Object - Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name any - Specify the bucketName of Oracle Cloud Storage. Type: string (or Expression with resultType string)
- file
Name any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version any
- Specify the version of Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket_
name Any - Specify the bucketName of Oracle Cloud Storage. Type: string (or Expression with resultType string)
- file_
name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder_
path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Any - Specify the bucketName of Oracle Cloud Storage. Type: string (or Expression with resultType string)
- file
Name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Oracle Cloud Storage. Type: string (or Expression with resultType string).
OracleCloudStorageLocationResponse, OracleCloudStorageLocationResponseArgs
- Bucket
Name object - Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- Bucket
Name interface{} - Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Object - Specify the bucketName of Oracle Cloud Storage. 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 Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name any - Specify the bucketName of Oracle Cloud Storage. Type: string (or Expression with resultType string)
- file
Name any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version any
- Specify the version of Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket_
name Any - Specify the bucketName of Oracle Cloud Storage. Type: string (or Expression with resultType string)
- file_
name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder_
path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Oracle Cloud Storage. Type: string (or Expression with resultType string).
- bucket
Name Any - Specify the bucketName of Oracle Cloud Storage. Type: string (or Expression with resultType string)
- file
Name Any - Specify the file name of dataset. Type: string (or Expression with resultType string).
- folder
Path Any - Specify the folder path of dataset. Type: string (or Expression with resultType string)
- version Any
- Specify the version of Oracle Cloud Storage. Type: string (or Expression with resultType string).
OracleServiceCloudObjectDataset, OracleServiceCloudObjectDatasetArgs
- 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).
OracleServiceCloudObjectDatasetResponse, OracleServiceCloudObjectDatasetResponseArgs
- 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).
OracleTableDataset, OracleTableDatasetArgs
- 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 on-premises Oracle database. 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 table name of the on-premises Oracle database. 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 table name of the on-premises Oracle database. 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 table name of the on-premises Oracle database. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
OracleTableDatasetResponse, OracleTableDatasetResponseArgs
- 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 on-premises Oracle database. 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 table name of the on-premises Oracle database. 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 table name of the on-premises Oracle database. 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 table name of the on-premises Oracle database. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 on-premises Oracle database. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
OrcDataset, OrcDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the ORC data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Orc
Compression objectCodec - The data orcCompressionCodec. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the ORC data storage.
- 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.
- Orc
Compression interface{}Codec - The data orcCompressionCodec. 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the ORC data storage.
- 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.
- orc
Compression ObjectCodec - The data orcCompressionCodec. 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the ORC data storage.
- 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.
- orc
Compression anyCodec - The data orcCompressionCodec. 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.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the ORC data storage.
- 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.
- orc_
compression_ Anycodec - The data orcCompressionCodec. 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.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the ORC data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- orc
Compression AnyCodec - The data orcCompressionCodec. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
OrcDatasetResponse, OrcDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the ORC data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Orc
Compression objectCodec - The data orcCompressionCodec. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the ORC data storage.
- 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.
- Orc
Compression interface{}Codec - The data orcCompressionCodec. 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the ORC data storage.
- 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.
- orc
Compression ObjectCodec - The data orcCompressionCodec. 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the ORC data storage.
- 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.
- orc
Compression anyCodec - The data orcCompressionCodec. 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.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the ORC data storage.
- 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.
- orc_
compression_ Anycodec - The data orcCompressionCodec. 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.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the ORC data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- orc
Compression AnyCodec - The data orcCompressionCodec. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
OrcFormat, OrcFormatArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
OrcFormatResponse, OrcFormatResponseArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
ParameterSpecification, ParameterSpecificationArgs
- Type
string | Pulumi.
Azure Native. Data Factory. Parameter Type - Parameter type.
- Default
Value object - Default value of parameter.
- Type
string | Parameter
Type - Parameter type.
- Default
Value interface{} - Default value of parameter.
- type
String | Parameter
Type - Parameter type.
- default
Value Object - Default value of parameter.
- type
string | Parameter
Type - Parameter type.
- default
Value any - Default value of parameter.
- type
str | Parameter
Type - Parameter type.
- default_
value Any - Default value of parameter.
- type
String | "Object" | "String" | "Int" | "Float" | "Bool" | "Array" | "Secure
String" - Parameter type.
- default
Value Any - Default value of parameter.
ParameterSpecificationResponse, ParameterSpecificationResponseArgs
- Type string
- Parameter type.
- Default
Value object - Default value of parameter.
- Type string
- Parameter type.
- Default
Value interface{} - Default value of parameter.
- type String
- Parameter type.
- default
Value Object - Default value of parameter.
- type string
- Parameter type.
- default
Value any - Default value of parameter.
- type str
- Parameter type.
- default_
value Any - Default value of parameter.
- type String
- Parameter type.
- default
Value Any - Default value of parameter.
ParameterType, ParameterTypeArgs
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- Secure
String - SecureString
- Parameter
Type Object - Object
- Parameter
Type String - String
- Parameter
Type Int - Int
- Parameter
Type Float - Float
- Parameter
Type Bool - Bool
- Parameter
Type Array - Array
- Parameter
Type Secure String - SecureString
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- Secure
String - SecureString
- Object
- Object
- String
- String
- Int
- Int
- Float
- Float
- Bool
- Bool
- Array
- Array
- Secure
String - SecureString
- OBJECT
- Object
- STRING
- String
- INT
- Int
- FLOAT
- Float
- BOOL
- Bool
- ARRAY
- Array
- SECURE_STRING
- SecureString
- "Object"
- Object
- "String"
- String
- "Int"
- Int
- "Float"
- Float
- "Bool"
- Bool
- "Array"
- Array
- "Secure
String" - SecureString
ParquetDataset, ParquetDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the parquet storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Codec object - The data compressionCodec. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the parquet storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Codec interface{} - The data compressionCodec. 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the parquet storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Codec Object - The data compressionCodec. 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the parquet storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Codec any - The data compressionCodec. Type: string (or Expression with resultType string).
- description string
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the parquet storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression_
codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the parquet storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression
Codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ParquetDatasetResponse, ParquetDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the parquet storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Codec object - The data compressionCodec. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the parquet storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Codec interface{} - The data compressionCodec. 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the parquet storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Codec Object - The data compressionCodec. 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the parquet storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Codec any - The data compressionCodec. Type: string (or Expression with resultType string).
- description string
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the parquet storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression_
codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the parquet storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression
Codec Any - The data compressionCodec. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ParquetFormat, ParquetFormatArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
ParquetFormatResponse, ParquetFormatResponseArgs
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
PaypalObjectDataset, PaypalObjectDatasetArgs
- 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).
PaypalObjectDatasetResponse, PaypalObjectDatasetResponseArgs
- 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).
PhoenixObjectDataset, PhoenixObjectDatasetArgs
- 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 Phoenix. 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 table name of the Phoenix. 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 table name of the Phoenix. 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 table name of the Phoenix. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Phoenix. 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 table name of the Phoenix. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
PhoenixObjectDatasetResponse, PhoenixObjectDatasetResponseArgs
- 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 Phoenix. 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 table name of the Phoenix. 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 table name of the Phoenix. 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 table name of the Phoenix. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Phoenix. 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 table name of the Phoenix. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
PostgreSqlTableDataset, PostgreSqlTableDatasetArgs
- 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 PostgreSQL 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 PostgreSQL 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 PostgreSQL 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
PostgreSqlTableDatasetResponse, PostgreSqlTableDatasetResponseArgs
- 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 PostgreSQL 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 PostgreSQL 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 PostgreSQL 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table_
name Any - This property will be retired. Please consider using schema + table properties instead.
- 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 PostgreSQL table name. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
PrestoObjectDataset, PrestoObjectDatasetArgs
- 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 Presto. 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 table name of the Presto. 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 table name of the Presto. 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 table name of the Presto. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Presto. 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 table name of the Presto. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
PrestoObjectDatasetResponse, PrestoObjectDatasetResponseArgs
- 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 Presto. 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 table name of the Presto. 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 table name of the Presto. 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 table name of the Presto. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Presto. 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 table name of the Presto. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
QuickBooksObjectDataset, QuickBooksObjectDatasetArgs
- 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).
QuickBooksObjectDatasetResponse, QuickBooksObjectDatasetResponseArgs
- 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).
RelationalTableDataset, RelationalTableDatasetArgs
- 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 relational 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 relational 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 relational 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 relational table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 relational 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 relational table name. Type: string (or Expression with resultType string).
RelationalTableDatasetResponse, RelationalTableDatasetResponseArgs
- 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 relational 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 relational 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 relational 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 relational table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 relational 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 relational table name. Type: string (or Expression with resultType string).
ResponsysObjectDataset, ResponsysObjectDatasetArgs
- 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).
ResponsysObjectDatasetResponse, ResponsysObjectDatasetResponseArgs
- 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).
RestResourceDataset, RestResourceDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Additional
Headers Dictionary<string, object> - The additional HTTP headers in the request to the RESTful API.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Pagination
Rules Dictionary<string, object> - The pagination rules to compose next page requests.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Relative
Url object - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- Request
Body object - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- Request
Method object - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Additional
Headers map[string]interface{} - The additional HTTP headers in the request to the RESTful API.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Pagination
Rules map[string]interface{} - The pagination rules to compose next page requests.
- Parameters
map[string]Parameter
Specification - Parameters for dataset.
- Relative
Url interface{} - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- Request
Body interface{} - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- Request
Method interface{} - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- additional
Headers Map<String,Object> - The additional HTTP headers in the request to the RESTful API.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination
Rules Map<String,Object> - The pagination rules to compose next page requests.
- parameters
Map<String,Parameter
Specification> - Parameters for dataset.
- relative
Url Object - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request
Body Object - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request
Method Object - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference - Linked service reference.
- additional
Headers {[key: string]: any} - The additional HTTP headers in the request to the RESTful API.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination
Rules {[key: string]: any} - The pagination rules to compose next page requests.
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- relative
Url any - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request
Body any - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request
Method any - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- additional_
headers Mapping[str, Any] - The additional HTTP headers in the request to the RESTful API.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination_
rules Mapping[str, Any] - The pagination rules to compose next page requests.
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- relative_
url Any - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request_
body Any - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request_
method Any - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- additional
Headers Map<Any> - The additional HTTP headers in the request to the RESTful API.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination
Rules Map<Any> - The pagination rules to compose next page requests.
- parameters Map<Property Map>
- Parameters for dataset.
- relative
Url Any - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request
Body Any - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request
Method Any - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
RestResourceDatasetResponse, RestResourceDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Additional
Headers Dictionary<string, object> - The additional HTTP headers in the request to the RESTful API.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Pagination
Rules Dictionary<string, object> - The pagination rules to compose next page requests.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Relative
Url object - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- Request
Body object - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- Request
Method object - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Additional
Headers map[string]interface{} - The additional HTTP headers in the request to the RESTful API.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Pagination
Rules map[string]interface{} - The pagination rules to compose next page requests.
- Parameters
map[string]Parameter
Specification Response - Parameters for dataset.
- Relative
Url interface{} - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- Request
Body interface{} - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- Request
Method interface{} - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- additional
Headers Map<String,Object> - The additional HTTP headers in the request to the RESTful API.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination
Rules Map<String,Object> - The pagination rules to compose next page requests.
- parameters
Map<String,Parameter
Specification Response> - Parameters for dataset.
- relative
Url Object - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request
Body Object - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request
Method Object - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- additional
Headers {[key: string]: any} - The additional HTTP headers in the request to the RESTful API.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination
Rules {[key: string]: any} - The pagination rules to compose next page requests.
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- relative
Url any - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request
Body any - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request
Method any - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- additional_
headers Mapping[str, Any] - The additional HTTP headers in the request to the RESTful API.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination_
rules Mapping[str, Any] - The pagination rules to compose next page requests.
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- relative_
url Any - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request_
body Any - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request_
method Any - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- additional
Headers Map<Any> - The additional HTTP headers in the request to the RESTful API.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- pagination
Rules Map<Any> - The pagination rules to compose next page requests.
- parameters Map<Property Map>
- Parameters for dataset.
- relative
Url Any - The relative URL to the resource that the RESTful API provides. Type: string (or Expression with resultType string).
- request
Body Any - The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string).
- request
Method Any - The HTTP method used to call the RESTful API. The default is GET. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SalesforceMarketingCloudObjectDataset, SalesforceMarketingCloudObjectDatasetArgs
- 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).
SalesforceMarketingCloudObjectDatasetResponse, SalesforceMarketingCloudObjectDatasetResponseArgs
- 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).
SalesforceObjectDataset, SalesforceObjectDatasetArgs
- 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.
- Object
Api objectName - The Salesforce object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Object
Api interface{}Name - The Salesforce object API name. 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.
- 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.
- object
Api ObjectName - The Salesforce object API name. 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.
- 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.
- object
Api anyName - The Salesforce object API name. 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.
- 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.
- object_
api_ Anyname - The Salesforce object API name. 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.
- 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.
- object
Api AnyName - The Salesforce object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SalesforceObjectDatasetResponse, SalesforceObjectDatasetResponseArgs
- 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.
- Object
Api objectName - The Salesforce object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Object
Api interface{}Name - The Salesforce object API name. 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.
- 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.
- object
Api ObjectName - The Salesforce object API name. 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.
- 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.
- object
Api anyName - The Salesforce object API name. 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.
- 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.
- object_
api_ Anyname - The Salesforce object API name. 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.
- 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.
- object
Api AnyName - The Salesforce object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SalesforceServiceCloudObjectDataset, SalesforceServiceCloudObjectDatasetArgs
- 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.
- Object
Api objectName - The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Object
Api interface{}Name - The Salesforce Service Cloud object API name. 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.
- 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.
- object
Api ObjectName - The Salesforce Service Cloud object API name. 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.
- 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.
- object
Api anyName - The Salesforce Service Cloud object API name. 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.
- 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.
- object_
api_ Anyname - The Salesforce Service Cloud object API name. 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.
- 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.
- object
Api AnyName - The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SalesforceServiceCloudObjectDatasetResponse, SalesforceServiceCloudObjectDatasetResponseArgs
- 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.
- Object
Api objectName - The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- Object
Api interface{}Name - The Salesforce Service Cloud object API name. 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.
- 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.
- object
Api ObjectName - The Salesforce Service Cloud object API name. 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.
- 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.
- object
Api anyName - The Salesforce Service Cloud object API name. 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.
- 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.
- object_
api_ Anyname - The Salesforce Service Cloud object API name. 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.
- 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.
- object
Api AnyName - The Salesforce Service Cloud object API name. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapBwCubeDataset, SapBwCubeDatasetArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
SapBwCubeDatasetResponse, SapBwCubeDatasetResponseArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
SapCloudForCustomerResourceDataset, SapCloudForCustomerResourceDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Path object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Path interface{}
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- path Object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- path any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapCloudForCustomerResourceDatasetResponse, SapCloudForCustomerResourceDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Path object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Path interface{}
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- path Object
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- path any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The path of the SAP Cloud for Customer OData entity. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapEccResourceDataset, SapEccResourceDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Path object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Path interface{}
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- path Object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- path any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapEccResourceDatasetResponse, SapEccResourceDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Path object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Path interface{}
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- path Object
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- path any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The path of the SAP ECC OData entity. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapHanaTableDataset, SapHanaTableDatasetArgs
- 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 SAP HANA. 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 SAP HANA. 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 SAP HANA. 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 SAP HANA. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 SAP HANA. 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 SAP HANA. Type: string (or Expression with resultType string).
SapHanaTableDatasetResponse, SapHanaTableDatasetResponseArgs
- 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 SAP HANA. 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 SAP HANA. 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 SAP HANA. 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 SAP HANA. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 SAP HANA. 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 SAP HANA. Type: string (or Expression with resultType string).
SapOdpResourceDataset, SapOdpResourceDatasetArgs
- Context object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Object
Name object - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Context interface{}
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference - Linked service reference.
- Object
Name interface{} - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- context Object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- object
Name Object - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- context any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference - Linked service reference.
- object
Name any - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations 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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- object_
name Any - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked
Service Property MapName - Linked service reference.
- object
Name Any - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapOdpResourceDatasetResponse, SapOdpResourceDatasetResponseArgs
- Context object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Object
Name object - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Context interface{}
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Object
Name interface{} - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- context Object
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- object
Name Object - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- context any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked
Service LinkedName Service Reference Response - Linked service reference.
- object
Name any - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations 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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- object_
name Any - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- context Any
- The context of the SAP ODP Object. Type: string (or Expression with resultType string).
- linked
Service Property MapName - Linked service reference.
- object
Name Any - The name of the SAP ODP Object. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapOpenHubTableDataset, SapOpenHubTableDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Open
Hub objectDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Base
Request objectId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- Exclude
Last objectRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Open
Hub interface{}Destination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Base
Request interface{}Id - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- Exclude
Last interface{}Request - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
- open
Hub ObjectDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- base
Request ObjectId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- exclude
Last ObjectRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
- open
Hub anyDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- base
Request anyId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description string
- Dataset description.
- exclude
Last anyRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder
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.
- open_
hub_ Anydestination_ name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- base_
request_ Anyid - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description str
- Dataset description.
- exclude_
last_ Anyrequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder
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.
- open
Hub AnyDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- base
Request AnyId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- exclude
Last AnyRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapOpenHubTableDatasetResponse, SapOpenHubTableDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Open
Hub objectDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Base
Request objectId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- Exclude
Last objectRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Open
Hub interface{}Destination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Base
Request interface{}Id - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- Description string
- Dataset description.
- Exclude
Last interface{}Request - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
- open
Hub ObjectDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- base
Request ObjectId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- exclude
Last ObjectRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- 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.
- open
Hub anyDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- base
Request anyId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description string
- Dataset description.
- exclude
Last anyRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder
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.
- open_
hub_ Anydestination_ name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- base_
request_ Anyid - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description str
- Dataset description.
- exclude_
last_ Anyrequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder
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.
- open
Hub AnyDestination Name - The name of the Open Hub Destination with destination type as Database Table. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- base
Request AnyId - The ID of request for delta loading. Once it is set, only data with requestId larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression with resultType integer ).
- description String
- Dataset description.
- exclude
Last AnyRequest - Whether to exclude the records of the last request. The default value is true. Type: boolean (or Expression with resultType boolean).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapTableResourceDataset, SapTableResourceDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Table
Name object - The name of the SAP Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Table
Name interface{} - The name of the SAP Table. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- table
Name Object - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- table
Name any - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- table_
name Any - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- table
Name Any - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SapTableResourceDatasetResponse, SapTableResourceDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Table
Name object - The name of the SAP Table. Type: string (or Expression with resultType string).
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Table
Name interface{} - The name of the SAP Table. Type: string (or Expression with resultType string).
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Description string
- Dataset description.
- Folder
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.
- table
Name Object - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder
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.
- table
Name any - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations any[]
- List of tags that can be used for describing the Dataset.
- description string
- Dataset description.
- folder
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.
- table_
name Any - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- table
Name Any - The name of the SAP Table. Type: string (or Expression with resultType string).
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ServiceNowObjectDataset, ServiceNowObjectDatasetArgs
- 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).
ServiceNowObjectDatasetResponse, ServiceNowObjectDatasetResponseArgs
- 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).
SftpLocation, SftpLocationArgs
- 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)
SftpLocationResponse, SftpLocationResponseArgs
- 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)
SharePointOnlineListResourceDataset, SharePointOnlineListResourceDatasetArgs
- 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.
- List
Name object - The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- List
Name interface{} - The name of the SharePoint Online list. 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.
- 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.
- list
Name Object - The name of the SharePoint Online list. 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.
- 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.
- list
Name any - The name of the SharePoint Online list. 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.
- 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.
- list_
name Any - The name of the SharePoint Online list. 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.
- 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.
- list
Name Any - The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
SharePointOnlineListResourceDatasetResponse, SharePointOnlineListResourceDatasetResponseArgs
- 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.
- List
Name object - The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- 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.
- List
Name interface{} - The name of the SharePoint Online list. 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.
- 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.
- list
Name Object - The name of the SharePoint Online list. 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.
- 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.
- list
Name any - The name of the SharePoint Online list. 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.
- 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.
- list_
name Any - The name of the SharePoint Online list. 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.
- 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.
- list
Name Any - The name of the SharePoint Online list. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ShopifyObjectDataset, ShopifyObjectDatasetArgs
- 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).
ShopifyObjectDatasetResponse, ShopifyObjectDatasetResponseArgs
- 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).
SnowflakeDataset, SnowflakeDatasetArgs
- 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 Snowflake 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 Snowflake 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 Snowflake 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 Snowflake database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Snowflake 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 Snowflake database. Type: string (or Expression with resultType string).
SnowflakeDatasetResponse, SnowflakeDatasetResponseArgs
- 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 Snowflake 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 Snowflake 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 Snowflake 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 Snowflake database. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Snowflake 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 Snowflake database. Type: string (or Expression with resultType string).
SparkObjectDataset, SparkObjectDatasetArgs
- 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 Spark. 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 table name of the Spark. 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 table name of the Spark. 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 table name of the Spark. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Spark. 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 table name of the Spark. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
SparkObjectDatasetResponse, SparkObjectDatasetResponseArgs
- 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 Spark. 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 table name of the Spark. 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 table name of the Spark. 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 table name of the Spark. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Spark. 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 table name of the Spark. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
SqlServerTableDataset, SqlServerTableDatasetArgs
- 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).
- 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 table name of the SQL Server dataset. 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 table name of the SQL Server dataset. 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 table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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).
- 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 table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
SqlServerTableDatasetResponse, SqlServerTableDatasetResponseArgs
- 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).
- 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 table name of the SQL Server dataset. 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 table name of the SQL Server dataset. 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 table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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).
- 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 table name of the SQL Server dataset. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
SquareObjectDataset, SquareObjectDatasetArgs
- 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).
SquareObjectDatasetResponse, SquareObjectDatasetResponseArgs
- 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).
SybaseTableDataset, SybaseTableDatasetArgs
- 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 Sybase 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 Sybase 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 Sybase 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 Sybase table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Sybase 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 Sybase table name. Type: string (or Expression with resultType string).
SybaseTableDatasetResponse, SybaseTableDatasetResponseArgs
- 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 Sybase 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 Sybase 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 Sybase 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 Sybase table name. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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 Sybase 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 Sybase table name. Type: string (or Expression with resultType string).
TeradataTableDataset, TeradataTableDatasetArgs
- 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 Teradata. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
- The table name of Teradata. Type: string (or Expression with resultType string).
- 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 Teradata. 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 table name of Teradata. 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 Teradata. 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 table name of Teradata. 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 Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- database Any
- The database name of Teradata. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
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 Teradata. 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 Teradata. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
- The table name of Teradata. Type: string (or Expression with resultType string).
TeradataTableDatasetResponse, TeradataTableDatasetResponseArgs
- 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 Teradata. Type: string (or Expression with resultType string).
- Description string
- Dataset description.
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Table object
- The table name of Teradata. Type: string (or Expression with resultType string).
- 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 Teradata. 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 table name of Teradata. 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 Teradata. 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 table name of Teradata. 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 Teradata. 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 table name of Teradata. Type: string (or Expression with resultType string).
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- database Any
- The database name of Teradata. Type: string (or Expression with resultType string).
- description str
- Dataset description.
- folder
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 Teradata. 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 Teradata. Type: string (or Expression with resultType string).
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- table Any
- The table name of Teradata. Type: string (or Expression with resultType string).
TextFormat, TextFormatArgs
- Column
Delimiter object - The column delimiter. Type: string (or Expression with resultType string).
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name object - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char object - The escape character. Type: string (or Expression with resultType string).
- First
Row objectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Quote
Char object - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter object - The row delimiter. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Skip
Line objectCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- Treat
Empty objectAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- Column
Delimiter interface{} - The column delimiter. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name interface{} - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char interface{} - The escape character. Type: string (or Expression with resultType string).
- First
Row interface{}As Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Null
Value interface{} - The null value string. Type: string (or Expression with resultType string).
- Quote
Char interface{} - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter interface{} - The row delimiter. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- Skip
Line interface{}Count - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- Treat
Empty interface{}As Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column
Delimiter Object - The column delimiter. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Object - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Object - The escape character. Type: string (or Expression with resultType string).
- first
Row ObjectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null
Value Object - The null value string. Type: string (or Expression with resultType string).
- quote
Char Object - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Object - The row delimiter. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- skip
Line ObjectCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat
Empty ObjectAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column
Delimiter any - The column delimiter. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name any - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char any - The escape character. Type: string (or Expression with resultType string).
- first
Row anyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- quote
Char any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter any - The row delimiter. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- skip
Line anyCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat
Empty anyAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column_
delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding_
name Any - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_
char Any - The escape character. Type: string (or Expression with resultType string).
- first_
row_ Anyas_ header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- quote_
char Any - The quote character. Type: string (or Expression with resultType string).
- row_
delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skip_
line_ Anycount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat_
empty_ Anyas_ null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column
Delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Any - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Any - The escape character. Type: string (or Expression with resultType string).
- first
Row AnyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- quote
Char Any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skip
Line AnyCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat
Empty AnyAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
TextFormatResponse, TextFormatResponseArgs
- Column
Delimiter object - The column delimiter. Type: string (or Expression with resultType string).
- Deserializer object
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name object - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char object - The escape character. Type: string (or Expression with resultType string).
- First
Row objectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Quote
Char object - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter object - The row delimiter. Type: string (or Expression with resultType string).
- Serializer object
- Serializer. Type: string (or Expression with resultType string).
- Skip
Line objectCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- Treat
Empty objectAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- Column
Delimiter interface{} - The column delimiter. Type: string (or Expression with resultType string).
- Deserializer interface{}
- Deserializer. Type: string (or Expression with resultType string).
- Encoding
Name interface{} - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Escape
Char interface{} - The escape character. Type: string (or Expression with resultType string).
- First
Row interface{}As Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- Null
Value interface{} - The null value string. Type: string (or Expression with resultType string).
- Quote
Char interface{} - The quote character. Type: string (or Expression with resultType string).
- Row
Delimiter interface{} - The row delimiter. Type: string (or Expression with resultType string).
- Serializer interface{}
- Serializer. Type: string (or Expression with resultType string).
- Skip
Line interface{}Count - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- Treat
Empty interface{}As Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column
Delimiter Object - The column delimiter. Type: string (or Expression with resultType string).
- deserializer Object
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Object - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Object - The escape character. Type: string (or Expression with resultType string).
- first
Row ObjectAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null
Value Object - The null value string. Type: string (or Expression with resultType string).
- quote
Char Object - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Object - The row delimiter. Type: string (or Expression with resultType string).
- serializer Object
- Serializer. Type: string (or Expression with resultType string).
- skip
Line ObjectCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat
Empty ObjectAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column
Delimiter any - The column delimiter. Type: string (or Expression with resultType string).
- deserializer any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name any - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char any - The escape character. Type: string (or Expression with resultType string).
- first
Row anyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- quote
Char any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter any - The row delimiter. Type: string (or Expression with resultType string).
- serializer any
- Serializer. Type: string (or Expression with resultType string).
- skip
Line anyCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat
Empty anyAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column_
delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding_
name Any - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape_
char Any - The escape character. Type: string (or Expression with resultType string).
- first_
row_ Anyas_ header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- quote_
char Any - The quote character. Type: string (or Expression with resultType string).
- row_
delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skip_
line_ Anycount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat_
empty_ Anyas_ null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
- column
Delimiter Any - The column delimiter. Type: string (or Expression with resultType string).
- deserializer Any
- Deserializer. Type: string (or Expression with resultType string).
- encoding
Name Any - The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- escape
Char Any - The escape character. Type: string (or Expression with resultType string).
- first
Row AnyAs Header - When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- quote
Char Any - The quote character. Type: string (or Expression with resultType string).
- row
Delimiter Any - The row delimiter. Type: string (or Expression with resultType string).
- serializer Any
- Serializer. Type: string (or Expression with resultType string).
- skip
Line AnyCount - The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).
- treat
Empty AnyAs Null - Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).
Type, TypeArgs
- Linked
Service Reference - LinkedServiceReference
- Type
Linked Service Reference - LinkedServiceReference
- Linked
Service Reference - LinkedServiceReference
- Linked
Service Reference - LinkedServiceReference
- LINKED_SERVICE_REFERENCE
- LinkedServiceReference
- "Linked
Service Reference" - LinkedServiceReference
VerticaTableDataset, VerticaTableDatasetArgs
- 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 Vertica. 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 table name of the Vertica. 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 table name of the Vertica. 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 table name of the Vertica. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Vertica. 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 table name of the Vertica. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
VerticaTableDatasetResponse, VerticaTableDatasetResponseArgs
- 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 Vertica. 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 table name of the Vertica. 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 table name of the Vertica. 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 table name of the Vertica. Type: string (or Expression with resultType string).
- table
Name any - This property will be retired. Please consider using schema + table properties instead.
- 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 Vertica. 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 table name of the Vertica. Type: string (or Expression with resultType string).
- table
Name Any - This property will be retired. Please consider using schema + table properties instead.
WebTableDataset, WebTableDatasetArgs
- Index object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- Path object
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Index interface{}
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- Path interface{}
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index Object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- path Object
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- path any
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- path Any
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
WebTableDatasetResponse, WebTableDatasetResponseArgs
- Index object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- Path object
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Index interface{}
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- Path interface{}
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- Schema interface{}
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure interface{}
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index Object
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- path Object
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema Object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- 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.
- path any
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- description str
- Dataset description.
- folder
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.
- path Any
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- index Any
- The zero-based index of the table in the web page. Type: integer (or Expression with resultType integer), minimum: 0.
- linked
Service Property MapName - Linked service reference.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- description String
- Dataset description.
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- parameters Map<Property Map>
- Parameters for dataset.
- path Any
- The relative URL to the web page from the linked service URL. Type: string (or Expression with resultType string).
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
XeroObjectDataset, XeroObjectDatasetArgs
- 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).
XeroObjectDatasetResponse, XeroObjectDatasetResponseArgs
- 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).
XmlDataset, XmlDatasetArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Azure Native. Data Factory. Inputs. Sftp Location - The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name interface{} - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value interface{} - The null value string. 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- annotations List<Object>
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description String
- Dataset description.
- encoding
Name Object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Object - The null value string. 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.
- linked
Service LinkedName Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description string
- Dataset description.
- encoding
Name any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation S3Location | AzureBlob | AzureFSLocation Blob | AzureStorage Location Data | AzureLake Store Location File | FileStorage Location Server | FtpLocation Server | GoogleLocation Cloud | HdfsStorage Location Location | HttpServer | OracleLocation Cloud | SftpStorage Location Location - The location of the json data storage.
- annotations Sequence[Any]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression - The data compression method used for the json dataset.
- description str
- Dataset description.
- encoding_
name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encoding
Name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
XmlDatasetResponse, XmlDatasetResponseArgs
- Linked
Service Pulumi.Name Azure Native. Data Factory. Inputs. Linked Service Reference Response - Linked service reference.
- Location
Pulumi.
Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Compatible Location Response Azure | Pulumi.Native. Data Factory. Inputs. Amazon S3Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob FSLocation Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Blob Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure Data Lake Store Location Response Azure | Pulumi.Native. Data Factory. Inputs. Azure File Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. File Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Ftp Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Google Cloud Storage Location Response Azure | Pulumi.Native. Data Factory. Inputs. Hdfs Location Response Azure | Pulumi.Native. Data Factory. Inputs. Http Server Location Response Azure | Pulumi.Native. Data Factory. Inputs. Oracle Cloud Storage Location Response Azure Native. Data Factory. Inputs. Sftp Location Response - The location of the json data storage.
- Annotations List<object>
- List of tags that can be used for describing the Dataset.
- Compression
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Compression Response - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Pulumi.
Azure Native. Data Factory. Inputs. Dataset Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value object - The null value string. Type: string (or Expression with resultType string).
- Parameters
Dictionary<string, Pulumi.
Azure Native. Data Factory. Inputs. Parameter Specification Response> - Parameters for dataset.
- Schema object
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- Structure object
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- Linked
Service LinkedName Service Reference Response - Linked service reference.
- Location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- Annotations []interface{}
- List of tags that can be used for describing the Dataset.
- Compression
Dataset
Compression Response - The data compression method used for the json dataset.
- Description string
- Dataset description.
- Encoding
Name interface{} - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- Folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- Null
Value interface{} - The null value string. 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- 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 json dataset.
- description String
- Dataset description.
- encoding
Name Object - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Object - The null value string. 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.
- linked
Service LinkedName Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- annotations any[]
- List of tags that can be used for describing the Dataset.
- compression
Dataset
Compression Response - The data compression method used for the json dataset.
- description string
- Dataset description.
- encoding
Name any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value any - The null value string. Type: string (or Expression with resultType string).
- parameters
{[key: string]: Parameter
Specification Response} - Parameters for dataset.
- schema any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked_
service_ Linkedname Service Reference Response - Linked service reference.
- location
Amazon
S3Compatible | AmazonLocation Response S3Location | AzureResponse Blob | AzureFSLocation Response Blob | AzureStorage Location Response Data | AzureLake Store Location Response File | FileStorage Location Response Server | FtpLocation Response Server | GoogleLocation Response Cloud | HdfsStorage Location Response Location | HttpResponse Server | OracleLocation Response Cloud | SftpStorage Location Response Location Response - The location of the json data storage.
- 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 json dataset.
- description str
- Dataset description.
- encoding_
name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder
Dataset
Response Folder - The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null_
value Any - The null value string. Type: string (or Expression with resultType string).
- parameters
Mapping[str, Parameter
Specification Response] - Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- linked
Service Property MapName - Linked service reference.
- location Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- The location of the json data storage.
- annotations List<Any>
- List of tags that can be used for describing the Dataset.
- compression Property Map
- The data compression method used for the json dataset.
- description String
- Dataset description.
- encoding
Name Any - The code page name of the preferred encoding. If not specified, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- folder Property Map
- The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- null
Value Any - The null value string. Type: string (or Expression with resultType string).
- parameters Map<Property Map>
- Parameters for dataset.
- schema Any
- Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- structure Any
- Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
ZohoObjectDataset, ZohoObjectDatasetArgs
- 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).
ZohoObjectDatasetResponse, ZohoObjectDatasetResponseArgs
- 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).
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datafactory:Dataset exampleDataset /subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/datasets/exampleDataset
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0