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

com.pulumi.azurenative.domainregistration.kotlin.DomainOwnershipIdentifierArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.domainregistration.kotlin

import com.pulumi.azurenative.domainregistration.DomainOwnershipIdentifierArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Domain ownership Identifier.
 * Azure REST API version: 2022-09-01. Prior API version in Azure Native 1.x: 2020-10-01.
 * Other available API versions: 2020-10-01, 2023-01-01, 2023-12-01.
 * ## Example Usage
 * ### Create App Service Domain OwnershipIdentifier
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using AzureNative = Pulumi.AzureNative;
 * return await Deployment.RunAsync(() =>
 * {
 *     var domainOwnershipIdentifier = new AzureNative.DomainRegistration.DomainOwnershipIdentifier("domainOwnershipIdentifier", new()
 *     {
 *         DomainName = "example.com",
 *         Name = "SampleOwnershipId",
 *         OwnershipId = "SampleOwnershipId",
 *         ResourceGroupName = "testrg123",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	domainregistration "github.com/pulumi/pulumi-azure-native-sdk/domainregistration/v2"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := domainregistration.NewDomainOwnershipIdentifier(ctx, "domainOwnershipIdentifier", &domainregistration.DomainOwnershipIdentifierArgs{
 * 			DomainName:        pulumi.String("example.com"),
 * 			Name:              pulumi.String("SampleOwnershipId"),
 * 			OwnershipId:       pulumi.String("SampleOwnershipId"),
 * 			ResourceGroupName: pulumi.String("testrg123"),
 * 		})
 * 		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.azurenative.domainregistration.DomainOwnershipIdentifier;
 * import com.pulumi.azurenative.domainregistration.DomainOwnershipIdentifierArgs;
 * 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 domainOwnershipIdentifier = new DomainOwnershipIdentifier("domainOwnershipIdentifier", DomainOwnershipIdentifierArgs.builder()
 *             .domainName("example.com")
 *             .name("SampleOwnershipId")
 *             .ownershipId("SampleOwnershipId")
 *             .resourceGroupName("testrg123")
 *             .build());
 *     }
 * }
 * ```
 * ## Import
 * An existing resource can be imported using its type token, name, and identifier, e.g.
 * ```sh
 * $ pulumi import azure-native:domainregistration:DomainOwnershipIdentifier SampleOwnershipId /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DomainRegistration/domains/{domainName}/domainOwnershipIdentifiers/{name}
 * ```
 * @property domainName Name of domain.
 * @property kind Kind of resource.
 * @property name Name of identifier.
 * @property ownershipId Ownership Id.
 * @property resourceGroupName Name of the resource group to which the resource belongs.
 */
public data class DomainOwnershipIdentifierArgs(
    public val domainName: Output? = null,
    public val kind: Output? = null,
    public val name: Output? = null,
    public val ownershipId: Output? = null,
    public val resourceGroupName: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.domainregistration.DomainOwnershipIdentifierArgs =
        com.pulumi.azurenative.domainregistration.DomainOwnershipIdentifierArgs.builder()
            .domainName(domainName?.applyValue({ args0 -> args0 }))
            .kind(kind?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .ownershipId(ownershipId?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DomainOwnershipIdentifierArgs].
 */
@PulumiTagMarker
public class DomainOwnershipIdentifierArgsBuilder internal constructor() {
    private var domainName: Output? = null

    private var kind: Output? = null

    private var name: Output? = null

    private var ownershipId: Output? = null

    private var resourceGroupName: Output? = null

    /**
     * @param value Name of domain.
     */
    @JvmName("ngjlscqjrtmyegkj")
    public suspend fun domainName(`value`: Output) {
        this.domainName = value
    }

    /**
     * @param value Kind of resource.
     */
    @JvmName("tcjcoxcftfktpwjq")
    public suspend fun kind(`value`: Output) {
        this.kind = value
    }

    /**
     * @param value Name of identifier.
     */
    @JvmName("wnsydrcjvqannbui")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Ownership Id.
     */
    @JvmName("cwpruavxaplywuhw")
    public suspend fun ownershipId(`value`: Output) {
        this.ownershipId = value
    }

    /**
     * @param value Name of the resource group to which the resource belongs.
     */
    @JvmName("qoyehyehoucbakga")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value Name of domain.
     */
    @JvmName("abicmqlcmrffhddp")
    public suspend fun domainName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.domainName = mapped
    }

    /**
     * @param value Kind of resource.
     */
    @JvmName("srgpagcffnstrlic")
    public suspend fun kind(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.kind = mapped
    }

    /**
     * @param value Name of identifier.
     */
    @JvmName("wilsrqeskdjdqiou")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Ownership Id.
     */
    @JvmName("xpdkobkgoajbqfca")
    public suspend fun ownershipId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ownershipId = mapped
    }

    /**
     * @param value Name of the resource group to which the resource belongs.
     */
    @JvmName("ppeaxnwvibgukhvg")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    internal fun build(): DomainOwnershipIdentifierArgs = DomainOwnershipIdentifierArgs(
        domainName = domainName,
        kind = kind,
        name = name,
        ownershipId = ownershipId,
        resourceGroupName = resourceGroupName,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy