Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azure.datafactory.kotlin.DatasetJsonArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.datafactory.kotlin
import com.pulumi.azure.datafactory.DatasetJsonArgs.builder
import com.pulumi.azure.datafactory.kotlin.inputs.DatasetJsonAzureBlobStorageLocationArgs
import com.pulumi.azure.datafactory.kotlin.inputs.DatasetJsonAzureBlobStorageLocationArgsBuilder
import com.pulumi.azure.datafactory.kotlin.inputs.DatasetJsonHttpServerLocationArgs
import com.pulumi.azure.datafactory.kotlin.inputs.DatasetJsonHttpServerLocationArgsBuilder
import com.pulumi.azure.datafactory.kotlin.inputs.DatasetJsonSchemaColumnArgs
import com.pulumi.azure.datafactory.kotlin.inputs.DatasetJsonSchemaColumnArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Manages an Azure JSON Dataset inside an Azure Data Factory.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "West Europe",
* });
* const exampleFactory = new azure.datafactory.Factory("example", {
* name: "example",
* location: example.location,
* resourceGroupName: example.name,
* });
* const exampleLinkedServiceWeb = new azure.datafactory.LinkedServiceWeb("example", {
* name: "example",
* dataFactoryId: exampleFactory.id,
* authenticationType: "Anonymous",
* url: "https://www.bing.com",
* });
* const exampleDatasetJson = new azure.datafactory.DatasetJson("example", {
* name: "example",
* dataFactoryId: exampleFactory.id,
* linkedServiceName: exampleLinkedServiceWeb.name,
* httpServerLocation: {
* relativeUrl: "/fizz/buzz/",
* path: "foo/bar/",
* filename: "foo.txt",
* },
* encoding: "UTF-8",
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_factory = azure.datafactory.Factory("example",
* name="example",
* location=example.location,
* resource_group_name=example.name)
* example_linked_service_web = azure.datafactory.LinkedServiceWeb("example",
* name="example",
* data_factory_id=example_factory.id,
* authentication_type="Anonymous",
* url="https://www.bing.com")
* example_dataset_json = azure.datafactory.DatasetJson("example",
* name="example",
* data_factory_id=example_factory.id,
* linked_service_name=example_linked_service_web.name,
* http_server_location={
* "relative_url": "/fizz/buzz/",
* "path": "foo/bar/",
* "filename": "foo.txt",
* },
* encoding="UTF-8")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "example-resources",
* Location = "West Europe",
* });
* var exampleFactory = new Azure.DataFactory.Factory("example", new()
* {
* Name = "example",
* Location = example.Location,
* ResourceGroupName = example.Name,
* });
* var exampleLinkedServiceWeb = new Azure.DataFactory.LinkedServiceWeb("example", new()
* {
* Name = "example",
* DataFactoryId = exampleFactory.Id,
* AuthenticationType = "Anonymous",
* Url = "https://www.bing.com",
* });
* var exampleDatasetJson = new Azure.DataFactory.DatasetJson("example", new()
* {
* Name = "example",
* DataFactoryId = exampleFactory.Id,
* LinkedServiceName = exampleLinkedServiceWeb.Name,
* HttpServerLocation = new Azure.DataFactory.Inputs.DatasetJsonHttpServerLocationArgs
* {
* RelativeUrl = "/fizz/buzz/",
* Path = "foo/bar/",
* Filename = "foo.txt",
* },
* Encoding = "UTF-8",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/datafactory"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* exampleFactory, err := datafactory.NewFactory(ctx, "example", &datafactory.FactoryArgs{
* Name: pulumi.String("example"),
* Location: example.Location,
* ResourceGroupName: example.Name,
* })
* if err != nil {
* return err
* }
* exampleLinkedServiceWeb, err := datafactory.NewLinkedServiceWeb(ctx, "example", &datafactory.LinkedServiceWebArgs{
* Name: pulumi.String("example"),
* DataFactoryId: exampleFactory.ID(),
* AuthenticationType: pulumi.String("Anonymous"),
* Url: pulumi.String("https://www.bing.com"),
* })
* if err != nil {
* return err
* }
* _, err = datafactory.NewDatasetJson(ctx, "example", &datafactory.DatasetJsonArgs{
* Name: pulumi.String("example"),
* DataFactoryId: exampleFactory.ID(),
* LinkedServiceName: exampleLinkedServiceWeb.Name,
* HttpServerLocation: &datafactory.DatasetJsonHttpServerLocationArgs{
* RelativeUrl: pulumi.String("/fizz/buzz/"),
* Path: pulumi.String("foo/bar/"),
* Filename: pulumi.String("foo.txt"),
* },
* Encoding: pulumi.String("UTF-8"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.datafactory.Factory;
* import com.pulumi.azure.datafactory.FactoryArgs;
* import com.pulumi.azure.datafactory.LinkedServiceWeb;
* import com.pulumi.azure.datafactory.LinkedServiceWebArgs;
* import com.pulumi.azure.datafactory.DatasetJson;
* import com.pulumi.azure.datafactory.DatasetJsonArgs;
* import com.pulumi.azure.datafactory.inputs.DatasetJsonHttpServerLocationArgs;
* 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("West Europe")
* .build());
* var exampleFactory = new Factory("exampleFactory", FactoryArgs.builder()
* .name("example")
* .location(example.location())
* .resourceGroupName(example.name())
* .build());
* var exampleLinkedServiceWeb = new LinkedServiceWeb("exampleLinkedServiceWeb", LinkedServiceWebArgs.builder()
* .name("example")
* .dataFactoryId(exampleFactory.id())
* .authenticationType("Anonymous")
* .url("https://www.bing.com")
* .build());
* var exampleDatasetJson = new DatasetJson("exampleDatasetJson", DatasetJsonArgs.builder()
* .name("example")
* .dataFactoryId(exampleFactory.id())
* .linkedServiceName(exampleLinkedServiceWeb.name())
* .httpServerLocation(DatasetJsonHttpServerLocationArgs.builder()
* .relativeUrl("/fizz/buzz/")
* .path("foo/bar/")
* .filename("foo.txt")
* .build())
* .encoding("UTF-8")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleFactory:
* type: azure:datafactory:Factory
* name: example
* properties:
* name: example
* location: ${example.location}
* resourceGroupName: ${example.name}
* exampleLinkedServiceWeb:
* type: azure:datafactory:LinkedServiceWeb
* name: example
* properties:
* name: example
* dataFactoryId: ${exampleFactory.id}
* authenticationType: Anonymous
* url: https://www.bing.com
* exampleDatasetJson:
* type: azure:datafactory:DatasetJson
* name: example
* properties:
* name: example
* dataFactoryId: ${exampleFactory.id}
* linkedServiceName: ${exampleLinkedServiceWeb.name}
* httpServerLocation:
* relativeUrl: /fizz/buzz/
* path: foo/bar/
* filename: foo.txt
* encoding: UTF-8
* ```
*
* ## Import
* Data Factory Datasets can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:datafactory/datasetJson:DatasetJson example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/datasets/example
* ```
* @property additionalProperties A map of additional properties to associate with the Data Factory Dataset.
* The following supported arguments are specific to JSON Dataset:
* @property annotations List of tags that can be used for describing the Data Factory Dataset.
* @property azureBlobStorageLocation A `azure_blob_storage_location` block as defined below.
* The following supported arguments are specific to Delimited Text Dataset:
* @property dataFactoryId The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
* @property description The description for the Data Factory Dataset.
* @property encoding The encoding format for the file.
* @property folder The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
* @property httpServerLocation A `http_server_location` block as defined below.
* @property linkedServiceName The Data Factory Linked Service name in which to associate the Dataset with.
* @property name Specifies the name of the Data Factory Dataset. Changing this forces a new resource to be created. Must be globally unique. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions.
* @property parameters A map of parameters to associate with the Data Factory Dataset.
* @property schemaColumns A `schema_column` block as defined below.
*/
public data class DatasetJsonArgs(
public val additionalProperties: Output>? = null,
public val annotations: Output>? = null,
public val azureBlobStorageLocation: Output? = null,
public val dataFactoryId: Output? = null,
public val description: Output? = null,
public val encoding: Output? = null,
public val folder: Output? = null,
public val httpServerLocation: Output? = null,
public val linkedServiceName: Output? = null,
public val name: Output? = null,
public val parameters: Output>? = null,
public val schemaColumns: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datafactory.DatasetJsonArgs =
com.pulumi.azure.datafactory.DatasetJsonArgs.builder()
.additionalProperties(
additionalProperties?.applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}),
)
.annotations(annotations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.azureBlobStorageLocation(
azureBlobStorageLocation?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.dataFactoryId(dataFactoryId?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.encoding(encoding?.applyValue({ args0 -> args0 }))
.folder(folder?.applyValue({ args0 -> args0 }))
.httpServerLocation(
httpServerLocation?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.linkedServiceName(linkedServiceName?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.parameters(
parameters?.applyValue({ args0 ->
args0.map({ args0 ->
args0.key.to(args0.value)
}).toMap()
}),
)
.schemaColumns(
schemaColumns?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [DatasetJsonArgs].
*/
@PulumiTagMarker
public class DatasetJsonArgsBuilder internal constructor() {
private var additionalProperties: Output>? = null
private var annotations: Output>? = null
private var azureBlobStorageLocation: Output? = null
private var dataFactoryId: Output? = null
private var description: Output? = null
private var encoding: Output? = null
private var folder: Output? = null
private var httpServerLocation: Output? = null
private var linkedServiceName: Output? = null
private var name: Output? = null
private var parameters: Output>? = null
private var schemaColumns: Output>? = null
/**
* @param value A map of additional properties to associate with the Data Factory Dataset.
* The following supported arguments are specific to JSON Dataset:
*/
@JvmName("qgxmhkglonxgnaay")
public suspend fun additionalProperties(`value`: Output>) {
this.additionalProperties = value
}
/**
* @param value List of tags that can be used for describing the Data Factory Dataset.
*/
@JvmName("qeetxqrkvoxsxajb")
public suspend fun annotations(`value`: Output>) {
this.annotations = value
}
@JvmName("hdylnusnyqmnstop")
public suspend fun annotations(vararg values: Output) {
this.annotations = Output.all(values.asList())
}
/**
* @param values List of tags that can be used for describing the Data Factory Dataset.
*/
@JvmName("cbeeeoeqmiqgvhdn")
public suspend fun annotations(values: List>) {
this.annotations = Output.all(values)
}
/**
* @param value A `azure_blob_storage_location` block as defined below.
* The following supported arguments are specific to Delimited Text Dataset:
*/
@JvmName("sipyakhpovsxtggi")
public suspend fun azureBlobStorageLocation(`value`: Output) {
this.azureBlobStorageLocation = value
}
/**
* @param value The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
*/
@JvmName("iwosykaywruhbiuv")
public suspend fun dataFactoryId(`value`: Output) {
this.dataFactoryId = value
}
/**
* @param value The description for the Data Factory Dataset.
*/
@JvmName("kxjftaltstwfvcme")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value The encoding format for the file.
*/
@JvmName("clicpwydcjluxntq")
public suspend fun encoding(`value`: Output) {
this.encoding = value
}
/**
* @param value The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
*/
@JvmName("disicidyswvgxjdb")
public suspend fun folder(`value`: Output) {
this.folder = value
}
/**
* @param value A `http_server_location` block as defined below.
*/
@JvmName("fjnbkabyccyieqmw")
public suspend fun httpServerLocation(`value`: Output) {
this.httpServerLocation = value
}
/**
* @param value The Data Factory Linked Service name in which to associate the Dataset with.
*/
@JvmName("ndkcuvfcxvlubmhy")
public suspend fun linkedServiceName(`value`: Output) {
this.linkedServiceName = value
}
/**
* @param value Specifies the name of the Data Factory Dataset. Changing this forces a new resource to be created. Must be globally unique. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions.
*/
@JvmName("qglyrhplpnssarfp")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value A map of parameters to associate with the Data Factory Dataset.
*/
@JvmName("oxhxtorxnsodsbke")
public suspend fun parameters(`value`: Output>) {
this.parameters = value
}
/**
* @param value A `schema_column` block as defined below.
*/
@JvmName("sdflaoiccfcpsuga")
public suspend fun schemaColumns(`value`: Output>) {
this.schemaColumns = value
}
@JvmName("nnweumqwuqcswpof")
public suspend fun schemaColumns(vararg values: Output) {
this.schemaColumns = Output.all(values.asList())
}
/**
* @param values A `schema_column` block as defined below.
*/
@JvmName("vuccbosihclighlc")
public suspend fun schemaColumns(values: List>) {
this.schemaColumns = Output.all(values)
}
/**
* @param value A map of additional properties to associate with the Data Factory Dataset.
* The following supported arguments are specific to JSON Dataset:
*/
@JvmName("khsjrwrqjssfxuql")
public suspend fun additionalProperties(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.additionalProperties = mapped
}
/**
* @param values A map of additional properties to associate with the Data Factory Dataset.
* The following supported arguments are specific to JSON Dataset:
*/
@JvmName("bwbovhlpteakhwet")
public fun additionalProperties(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.additionalProperties = mapped
}
/**
* @param value List of tags that can be used for describing the Data Factory Dataset.
*/
@JvmName("yicbqnfqtervaasy")
public suspend fun annotations(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.annotations = mapped
}
/**
* @param values List of tags that can be used for describing the Data Factory Dataset.
*/
@JvmName("tgeuhfmglhfoxwqp")
public suspend fun annotations(vararg values: String) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.annotations = mapped
}
/**
* @param value A `azure_blob_storage_location` block as defined below.
* The following supported arguments are specific to Delimited Text Dataset:
*/
@JvmName("qnxpjrdbbbvavjdx")
public suspend fun azureBlobStorageLocation(`value`: DatasetJsonAzureBlobStorageLocationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.azureBlobStorageLocation = mapped
}
/**
* @param argument A `azure_blob_storage_location` block as defined below.
* The following supported arguments are specific to Delimited Text Dataset:
*/
@JvmName("jncgcqggqalsmjnm")
public suspend fun azureBlobStorageLocation(argument: suspend DatasetJsonAzureBlobStorageLocationArgsBuilder.() -> Unit) {
val toBeMapped = DatasetJsonAzureBlobStorageLocationArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.azureBlobStorageLocation = mapped
}
/**
* @param value The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
*/
@JvmName("ntwoqttejuatondm")
public suspend fun dataFactoryId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.dataFactoryId = mapped
}
/**
* @param value The description for the Data Factory Dataset.
*/
@JvmName("jdolmxtwyhnuahjs")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value The encoding format for the file.
*/
@JvmName("vwfgemvijxvdklxc")
public suspend fun encoding(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.encoding = mapped
}
/**
* @param value The folder that this Dataset is in. If not specified, the Dataset will appear at the root level.
*/
@JvmName("elpcrqyomslcuiqq")
public suspend fun folder(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.folder = mapped
}
/**
* @param value A `http_server_location` block as defined below.
*/
@JvmName("womclqemirrvwgao")
public suspend fun httpServerLocation(`value`: DatasetJsonHttpServerLocationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.httpServerLocation = mapped
}
/**
* @param argument A `http_server_location` block as defined below.
*/
@JvmName("iypyteyeliuhbwrm")
public suspend fun httpServerLocation(argument: suspend DatasetJsonHttpServerLocationArgsBuilder.() -> Unit) {
val toBeMapped = DatasetJsonHttpServerLocationArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.httpServerLocation = mapped
}
/**
* @param value The Data Factory Linked Service name in which to associate the Dataset with.
*/
@JvmName("fkxmdhiijwbjqqyl")
public suspend fun linkedServiceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.linkedServiceName = mapped
}
/**
* @param value Specifies the name of the Data Factory Dataset. Changing this forces a new resource to be created. Must be globally unique. See the [Microsoft documentation](https://docs.microsoft.com/azure/data-factory/naming-rules) for all restrictions.
*/
@JvmName("vnoqytiqtudrfsxy")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value A map of parameters to associate with the Data Factory Dataset.
*/
@JvmName("osgvrakgngvoiotm")
public suspend fun parameters(`value`: Map?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.parameters = mapped
}
/**
* @param values A map of parameters to associate with the Data Factory Dataset.
*/
@JvmName("eopoqitwymwljcyn")
public fun parameters(vararg values: Pair) {
val toBeMapped = values.toMap()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.parameters = mapped
}
/**
* @param value A `schema_column` block as defined below.
*/
@JvmName("rwnswtsbggwunwlt")
public suspend fun schemaColumns(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.schemaColumns = mapped
}
/**
* @param argument A `schema_column` block as defined below.
*/
@JvmName("ckrkmapgqfveypnj")
public suspend fun schemaColumns(argument: List Unit>) {
val toBeMapped = argument.toList().map {
DatasetJsonSchemaColumnArgsBuilder().applySuspend {
it()
}.build()
}
val mapped = of(toBeMapped)
this.schemaColumns = mapped
}
/**
* @param argument A `schema_column` block as defined below.
*/
@JvmName("trwijsgllqnerfkk")
public suspend fun schemaColumns(vararg argument: suspend DatasetJsonSchemaColumnArgsBuilder.() -> Unit) {
val toBeMapped = argument.toList().map {
DatasetJsonSchemaColumnArgsBuilder().applySuspend {
it()
}.build()
}
val mapped = of(toBeMapped)
this.schemaColumns = mapped
}
/**
* @param argument A `schema_column` block as defined below.
*/
@JvmName("npowrjvybjsdqdtj")
public suspend fun schemaColumns(argument: suspend DatasetJsonSchemaColumnArgsBuilder.() -> Unit) {
val toBeMapped = listOf(
DatasetJsonSchemaColumnArgsBuilder().applySuspend {
argument()
}.build(),
)
val mapped = of(toBeMapped)
this.schemaColumns = mapped
}
/**
* @param values A `schema_column` block as defined below.
*/
@JvmName("uyxbirfiamkosaii")
public suspend fun schemaColumns(vararg values: DatasetJsonSchemaColumnArgs) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.schemaColumns = mapped
}
internal fun build(): DatasetJsonArgs = DatasetJsonArgs(
additionalProperties = additionalProperties,
annotations = annotations,
azureBlobStorageLocation = azureBlobStorageLocation,
dataFactoryId = dataFactoryId,
description = description,
encoding = encoding,
folder = folder,
httpServerLocation = httpServerLocation,
linkedServiceName = linkedServiceName,
name = name,
parameters = parameters,
schemaColumns = schemaColumns,
)
}