All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.datafactory.kotlin.FactoryArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.datafactory.kotlin

import com.pulumi.azure.datafactory.FactoryArgs.builder
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryGithubConfigurationArgs
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryGithubConfigurationArgsBuilder
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryGlobalParameterArgs
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryGlobalParameterArgsBuilder
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryIdentityArgs
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryIdentityArgsBuilder
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryVstsConfigurationArgs
import com.pulumi.azure.datafactory.kotlin.inputs.FactoryVstsConfigurationArgsBuilder
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.Boolean
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 Data Factory (Version 2).
 * ## 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,
 * });
 * ```
 * ```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)
 * ```
 * ```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,
 *     });
 * });
 * ```
 * ```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
 * 		}
 * 		_, err = datafactory.NewFactory(ctx, "example", &datafactory.FactoryArgs{
 * 			Name:              pulumi.String("example"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 		})
 * 		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 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());
 *     }
 * }
 * ```
 * ```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}
 * ```
 * 
 * ## Import
 * Data Factory can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:datafactory/factory:Factory example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example
 * ```
 * @property customerManagedKeyId Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.
 * @property customerManagedKeyIdentityId Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if `customer_managed_key_id` is set.
 * @property githubConfiguration A `github_configuration` block as defined below.
 * @property globalParameters A list of `global_parameter` blocks as defined above.
 * @property identity An `identity` block as defined below.
 * @property location Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
 * @property managedVirtualNetworkEnabled Is Managed Virtual Network enabled?
 * @property name Specifies the name of the Data Factory. 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 publicNetworkEnabled Is the Data Factory visible to the public network? Defaults to `true`.
 * @property purviewId Specifies the ID of the purview account resource associated with the Data Factory.
 * @property resourceGroupName The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.
 * @property tags A mapping of tags to assign to the resource.
 * @property vstsConfiguration A `vsts_configuration` block as defined below.
 */
public data class FactoryArgs(
    public val customerManagedKeyId: Output? = null,
    public val customerManagedKeyIdentityId: Output? = null,
    public val githubConfiguration: Output? = null,
    public val globalParameters: Output>? = null,
    public val identity: Output? = null,
    public val location: Output? = null,
    public val managedVirtualNetworkEnabled: Output? = null,
    public val name: Output? = null,
    public val publicNetworkEnabled: Output? = null,
    public val purviewId: Output? = null,
    public val resourceGroupName: Output? = null,
    public val tags: Output>? = null,
    public val vstsConfiguration: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.datafactory.FactoryArgs =
        com.pulumi.azure.datafactory.FactoryArgs.builder()
            .customerManagedKeyId(customerManagedKeyId?.applyValue({ args0 -> args0 }))
            .customerManagedKeyIdentityId(customerManagedKeyIdentityId?.applyValue({ args0 -> args0 }))
            .githubConfiguration(
                githubConfiguration?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .globalParameters(
                globalParameters?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .identity(identity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .location(location?.applyValue({ args0 -> args0 }))
            .managedVirtualNetworkEnabled(managedVirtualNetworkEnabled?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .publicNetworkEnabled(publicNetworkEnabled?.applyValue({ args0 -> args0 }))
            .purviewId(purviewId?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .vstsConfiguration(
                vstsConfiguration?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [FactoryArgs].
 */
@PulumiTagMarker
public class FactoryArgsBuilder internal constructor() {
    private var customerManagedKeyId: Output? = null

    private var customerManagedKeyIdentityId: Output? = null

    private var githubConfiguration: Output? = null

    private var globalParameters: Output>? = null

    private var identity: Output? = null

    private var location: Output? = null

    private var managedVirtualNetworkEnabled: Output? = null

    private var name: Output? = null

    private var publicNetworkEnabled: Output? = null

    private var purviewId: Output? = null

    private var resourceGroupName: Output? = null

    private var tags: Output>? = null

    private var vstsConfiguration: Output? = null

    /**
     * @param value Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.
     */
    @JvmName("jwdtcmlldfbbfnxj")
    public suspend fun customerManagedKeyId(`value`: Output) {
        this.customerManagedKeyId = value
    }

    /**
     * @param value Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if `customer_managed_key_id` is set.
     */
    @JvmName("vckuqudofjpehhge")
    public suspend fun customerManagedKeyIdentityId(`value`: Output) {
        this.customerManagedKeyIdentityId = value
    }

    /**
     * @param value A `github_configuration` block as defined below.
     */
    @JvmName("lgoedymvcdbkdoid")
    public suspend fun githubConfiguration(`value`: Output) {
        this.githubConfiguration = value
    }

    /**
     * @param value A list of `global_parameter` blocks as defined above.
     */
    @JvmName("dfcexivyorfyhsdi")
    public suspend fun globalParameters(`value`: Output>) {
        this.globalParameters = value
    }

    @JvmName("ieyjkyereswpckid")
    public suspend fun globalParameters(vararg values: Output) {
        this.globalParameters = Output.all(values.asList())
    }

    /**
     * @param values A list of `global_parameter` blocks as defined above.
     */
    @JvmName("csnprdefmxggqkwg")
    public suspend fun globalParameters(values: List>) {
        this.globalParameters = Output.all(values)
    }

    /**
     * @param value An `identity` block as defined below.
     */
    @JvmName("sqhwtqcuweujuhyl")
    public suspend fun identity(`value`: Output) {
        this.identity = value
    }

    /**
     * @param value Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
     */
    @JvmName("efqcoshqmyjqtolt")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value Is Managed Virtual Network enabled?
     */
    @JvmName("kxynyvfkgdyuulsn")
    public suspend fun managedVirtualNetworkEnabled(`value`: Output) {
        this.managedVirtualNetworkEnabled = value
    }

    /**
     * @param value Specifies the name of the Data Factory. 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("wewjclrxpprnwqpn")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Is the Data Factory visible to the public network? Defaults to `true`.
     */
    @JvmName("ahgysututbmfrftb")
    public suspend fun publicNetworkEnabled(`value`: Output) {
        this.publicNetworkEnabled = value
    }

    /**
     * @param value Specifies the ID of the purview account resource associated with the Data Factory.
     */
    @JvmName("erphihjyjbnqpwko")
    public suspend fun purviewId(`value`: Output) {
        this.purviewId = value
    }

    /**
     * @param value The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.
     */
    @JvmName("rgmghwnvouusvkyp")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value A mapping of tags to assign to the resource.
     */
    @JvmName("qxfesckvaimvciar")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value A `vsts_configuration` block as defined below.
     */
    @JvmName("eixrilthcdfntvnw")
    public suspend fun vstsConfiguration(`value`: Output) {
        this.vstsConfiguration = value
    }

    /**
     * @param value Specifies the Azure Key Vault Key ID to be used as the Customer Managed Key (CMK) for double encryption. Required with user assigned identity.
     */
    @JvmName("iplaeovajlcmnvjd")
    public suspend fun customerManagedKeyId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.customerManagedKeyId = mapped
    }

    /**
     * @param value Specifies the ID of the user assigned identity associated with the Customer Managed Key. Must be supplied if `customer_managed_key_id` is set.
     */
    @JvmName("bsdbrksnxfcguiay")
    public suspend fun customerManagedKeyIdentityId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.customerManagedKeyIdentityId = mapped
    }

    /**
     * @param value A `github_configuration` block as defined below.
     */
    @JvmName("ltmpkfljtfrpjvgy")
    public suspend fun githubConfiguration(`value`: FactoryGithubConfigurationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.githubConfiguration = mapped
    }

    /**
     * @param argument A `github_configuration` block as defined below.
     */
    @JvmName("msffistychnkcasm")
    public suspend fun githubConfiguration(argument: suspend FactoryGithubConfigurationArgsBuilder.() -> Unit) {
        val toBeMapped = FactoryGithubConfigurationArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.githubConfiguration = mapped
    }

    /**
     * @param value A list of `global_parameter` blocks as defined above.
     */
    @JvmName("fuiglvuwmjgfjldd")
    public suspend fun globalParameters(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.globalParameters = mapped
    }

    /**
     * @param argument A list of `global_parameter` blocks as defined above.
     */
    @JvmName("kevkqbaisspwmghi")
    public suspend fun globalParameters(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            FactoryGlobalParameterArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.globalParameters = mapped
    }

    /**
     * @param argument A list of `global_parameter` blocks as defined above.
     */
    @JvmName("woppvshbwivhkqsl")
    public suspend fun globalParameters(vararg argument: suspend FactoryGlobalParameterArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            FactoryGlobalParameterArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.globalParameters = mapped
    }

    /**
     * @param argument A list of `global_parameter` blocks as defined above.
     */
    @JvmName("jpysyqtbpojivqqx")
    public suspend fun globalParameters(argument: suspend FactoryGlobalParameterArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(FactoryGlobalParameterArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.globalParameters = mapped
    }

    /**
     * @param values A list of `global_parameter` blocks as defined above.
     */
    @JvmName("ncqimqhkgdxyafrh")
    public suspend fun globalParameters(vararg values: FactoryGlobalParameterArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.globalParameters = mapped
    }

    /**
     * @param value An `identity` block as defined below.
     */
    @JvmName("xcocmuuvxdrmkmsf")
    public suspend fun identity(`value`: FactoryIdentityArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identity = mapped
    }

    /**
     * @param argument An `identity` block as defined below.
     */
    @JvmName("vvyjrtjtpiujyqhb")
    public suspend fun identity(argument: suspend FactoryIdentityArgsBuilder.() -> Unit) {
        val toBeMapped = FactoryIdentityArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.identity = mapped
    }

    /**
     * @param value Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
     */
    @JvmName("wwftktsdjqlrpbxy")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value Is Managed Virtual Network enabled?
     */
    @JvmName("gxsihxmpmduomeal")
    public suspend fun managedVirtualNetworkEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.managedVirtualNetworkEnabled = mapped
    }

    /**
     * @param value Specifies the name of the Data Factory. 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("ywusleeojcjxvsyk")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Is the Data Factory visible to the public network? Defaults to `true`.
     */
    @JvmName("borphnofsvjxlqgi")
    public suspend fun publicNetworkEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.publicNetworkEnabled = mapped
    }

    /**
     * @param value Specifies the ID of the purview account resource associated with the Data Factory.
     */
    @JvmName("deijyocqlqgbxtuh")
    public suspend fun purviewId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.purviewId = mapped
    }

    /**
     * @param value The name of the resource group in which to create the Data Factory. Changing this forces a new resource to be created.
     */
    @JvmName("varpvoegcwvytmxy")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value A mapping of tags to assign to the resource.
     */
    @JvmName("wggqbddimyxggqsv")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values A mapping of tags to assign to the resource.
     */
    @JvmName("wihuvimmxwxcewaj")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value A `vsts_configuration` block as defined below.
     */
    @JvmName("ofjilldmswrvmfvx")
    public suspend fun vstsConfiguration(`value`: FactoryVstsConfigurationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.vstsConfiguration = mapped
    }

    /**
     * @param argument A `vsts_configuration` block as defined below.
     */
    @JvmName("iroeqtgsrlsdlcew")
    public suspend fun vstsConfiguration(argument: suspend FactoryVstsConfigurationArgsBuilder.() -> Unit) {
        val toBeMapped = FactoryVstsConfigurationArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.vstsConfiguration = mapped
    }

    internal fun build(): FactoryArgs = FactoryArgs(
        customerManagedKeyId = customerManagedKeyId,
        customerManagedKeyIdentityId = customerManagedKeyIdentityId,
        githubConfiguration = githubConfiguration,
        globalParameters = globalParameters,
        identity = identity,
        location = location,
        managedVirtualNetworkEnabled = managedVirtualNetworkEnabled,
        name = name,
        publicNetworkEnabled = publicNetworkEnabled,
        purviewId = purviewId,
        resourceGroupName = resourceGroupName,
        tags = tags,
        vstsConfiguration = vstsConfiguration,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy