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

com.pulumi.gcp.activedirectory.kotlin.DomainArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.activedirectory.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.activedirectory.DomainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Creates a Microsoft AD domain
 * To get more information about Domain, see:
 * * [API documentation](https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains)
 * * How-to Guides
 *     * [Managed Microsoft Active Directory Quickstart](https://cloud.google.com/managed-microsoft-ad/docs/quickstarts)
 * ## Example Usage
 * ### Active Directory Domain Basic
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as gcp from "@pulumi/gcp";
 * const ad_domain = new gcp.activedirectory.Domain("ad-domain", {
 *     domainName: "tfgen.org.com",
 *     locations: ["us-central1"],
 *     reservedIpRange: "192.168.255.0/24",
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_gcp as gcp
 * ad_domain = gcp.activedirectory.Domain("ad-domain",
 *     domain_name="tfgen.org.com",
 *     locations=["us-central1"],
 *     reserved_ip_range="192.168.255.0/24")
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Gcp = Pulumi.Gcp;
 * return await Deployment.RunAsync(() =>
 * {
 *     var ad_domain = new Gcp.ActiveDirectory.Domain("ad-domain", new()
 *     {
 *         DomainName = "tfgen.org.com",
 *         Locations = new[]
 *         {
 *             "us-central1",
 *         },
 *         ReservedIpRange = "192.168.255.0/24",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/activedirectory"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := activedirectory.NewDomain(ctx, "ad-domain", &activedirectory.DomainArgs{
 * 			DomainName: pulumi.String("tfgen.org.com"),
 * 			Locations: pulumi.StringArray{
 * 				pulumi.String("us-central1"),
 * 			},
 * 			ReservedIpRange: pulumi.String("192.168.255.0/24"),
 * 		})
 * 		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.gcp.activedirectory.Domain;
 * import com.pulumi.gcp.activedirectory.DomainArgs;
 * 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 ad_domain = new Domain("ad-domain", DomainArgs.builder()
 *             .domainName("tfgen.org.com")
 *             .locations("us-central1")
 *             .reservedIpRange("192.168.255.0/24")
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   ad-domain:
 *     type: gcp:activedirectory:Domain
 *     properties:
 *       domainName: tfgen.org.com
 *       locations:
 *         - us-central1
 *       reservedIpRange: 192.168.255.0/24
 * ```
 * 
 * ## Import
 * Domain can be imported using any of these accepted formats:
 * * `{{name}}`
 * When using the `pulumi import` command, Domain can be imported using one of the formats above. For example:
 * ```sh
 * $ pulumi import gcp:activedirectory/domain:Domain default {{name}}
 * ```
 * @property admin The name of delegated administrator account used to perform Active Directory operations.
 * If not specified, setupadmin will be used.
 * @property authorizedNetworks The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
 * If CIDR subnets overlap between networks, domain creation will fail.
 * @property domainName The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions,
 * https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
 * - - -
 * @property labels Resource labels that can contain user-provided metadata
 * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
 * Please refer to the field `effective_labels` for all of the labels present on the resource.
 * @property locations Locations where domain needs to be provisioned. [regions][compute/docs/regions-zones/]
 * e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block.
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 * @property reservedIpRange The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger.
 * Ranges must be unique and non-overlapping with existing subnets in authorizedNetworks
 */
public data class DomainArgs(
    public val admin: Output? = null,
    public val authorizedNetworks: Output>? = null,
    public val domainName: Output? = null,
    public val labels: Output>? = null,
    public val locations: Output>? = null,
    public val project: Output? = null,
    public val reservedIpRange: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.activedirectory.DomainArgs =
        com.pulumi.gcp.activedirectory.DomainArgs.builder()
            .admin(admin?.applyValue({ args0 -> args0 }))
            .authorizedNetworks(authorizedNetworks?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .domainName(domainName?.applyValue({ args0 -> args0 }))
            .labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .locations(locations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .project(project?.applyValue({ args0 -> args0 }))
            .reservedIpRange(reservedIpRange?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DomainArgs].
 */
@PulumiTagMarker
public class DomainArgsBuilder internal constructor() {
    private var admin: Output? = null

    private var authorizedNetworks: Output>? = null

    private var domainName: Output? = null

    private var labels: Output>? = null

    private var locations: Output>? = null

    private var project: Output? = null

    private var reservedIpRange: Output? = null

    /**
     * @param value The name of delegated administrator account used to perform Active Directory operations.
     * If not specified, setupadmin will be used.
     */
    @JvmName("rftfxyphdnsuvlbu")
    public suspend fun admin(`value`: Output) {
        this.admin = value
    }

    /**
     * @param value The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
     * If CIDR subnets overlap between networks, domain creation will fail.
     */
    @JvmName("nvkyybppbiohopsu")
    public suspend fun authorizedNetworks(`value`: Output>) {
        this.authorizedNetworks = value
    }

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

    /**
     * @param values The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
     * If CIDR subnets overlap between networks, domain creation will fail.
     */
    @JvmName("dfumdjbskbnaqcgv")
    public suspend fun authorizedNetworks(values: List>) {
        this.authorizedNetworks = Output.all(values)
    }

    /**
     * @param value The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions,
     * https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
     * - - -
     */
    @JvmName("skwlokybtrfonfxl")
    public suspend fun domainName(`value`: Output) {
        this.domainName = value
    }

    /**
     * @param value Resource labels that can contain user-provided metadata
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("ohrwcvpocsoroerm")
    public suspend fun labels(`value`: Output>) {
        this.labels = value
    }

    /**
     * @param value Locations where domain needs to be provisioned. [regions][compute/docs/regions-zones/]
     * e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block.
     */
    @JvmName("wcccgthprpactmwy")
    public suspend fun locations(`value`: Output>) {
        this.locations = value
    }

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

    /**
     * @param values Locations where domain needs to be provisioned. [regions][compute/docs/regions-zones/]
     * e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block.
     */
    @JvmName("jifqxdrhmvycmtxq")
    public suspend fun locations(values: List>) {
        this.locations = Output.all(values)
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("tutftjfjdvvxqyop")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger.
     * Ranges must be unique and non-overlapping with existing subnets in authorizedNetworks
     */
    @JvmName("qersgiffvuniovkm")
    public suspend fun reservedIpRange(`value`: Output) {
        this.reservedIpRange = value
    }

    /**
     * @param value The name of delegated administrator account used to perform Active Directory operations.
     * If not specified, setupadmin will be used.
     */
    @JvmName("ijishmtvwspkhyhe")
    public suspend fun admin(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.admin = mapped
    }

    /**
     * @param value The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
     * If CIDR subnets overlap between networks, domain creation will fail.
     */
    @JvmName("pahlpnfvorajuavv")
    public suspend fun authorizedNetworks(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.authorizedNetworks = mapped
    }

    /**
     * @param values The full names of the Google Compute Engine networks the domain instance is connected to. The domain is only available on networks listed in authorizedNetworks.
     * If CIDR subnets overlap between networks, domain creation will fail.
     */
    @JvmName("oixddgrmljqydrvm")
    public suspend fun authorizedNetworks(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.authorizedNetworks = mapped
    }

    /**
     * @param value The fully qualified domain name. e.g. mydomain.myorganization.com, with the restrictions,
     * https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains.
     * - - -
     */
    @JvmName("autwyefunlpodnlp")
    public suspend fun domainName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.domainName = mapped
    }

    /**
     * @param value Resource labels that can contain user-provided metadata
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("omdpioanytlmghqp")
    public suspend fun labels(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param values Resource labels that can contain user-provided metadata
     * **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
     * Please refer to the field `effective_labels` for all of the labels present on the resource.
     */
    @JvmName("cxjmyajoxfsfhacm")
    public fun labels(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param value Locations where domain needs to be provisioned. [regions][compute/docs/regions-zones/]
     * e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block.
     */
    @JvmName("xfwjurbnoxxnmutv")
    public suspend fun locations(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.locations = mapped
    }

    /**
     * @param values Locations where domain needs to be provisioned. [regions][compute/docs/regions-zones/]
     * e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block.
     */
    @JvmName("qkdurrrkfukckopt")
    public suspend fun locations(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.locations = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("khfavrhxfqpkfsnx")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    /**
     * @param value The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger.
     * Ranges must be unique and non-overlapping with existing subnets in authorizedNetworks
     */
    @JvmName("xjwrsmqmagpehlgb")
    public suspend fun reservedIpRange(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.reservedIpRange = mapped
    }

    internal fun build(): DomainArgs = DomainArgs(
        admin = admin,
        authorizedNetworks = authorizedNetworks,
        domainName = domainName,
        labels = labels,
        locations = locations,
        project = project,
        reservedIpRange = reservedIpRange,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy