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

com.pulumi.azurenative.delegatednetwork.kotlin.OrchestratorInstanceServiceDetailsArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.delegatednetwork.kotlin

import com.pulumi.azurenative.delegatednetwork.OrchestratorInstanceServiceDetailsArgs.builder
import com.pulumi.azurenative.delegatednetwork.kotlin.enums.OrchestratorKind
import com.pulumi.azurenative.delegatednetwork.kotlin.inputs.ControllerDetailsArgs
import com.pulumi.azurenative.delegatednetwork.kotlin.inputs.ControllerDetailsArgsBuilder
import com.pulumi.azurenative.delegatednetwork.kotlin.inputs.OrchestratorIdentityArgs
import com.pulumi.azurenative.delegatednetwork.kotlin.inputs.OrchestratorIdentityArgsBuilder
import com.pulumi.core.Either
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.Map
import kotlin.jvm.JvmName

/**
 * Represents an instance of a orchestrator.
 * Azure REST API version: 2021-03-15. Prior API version in Azure Native 1.x: 2021-03-15.
 * Other available API versions: 2023-05-18-preview, 2023-06-27-preview.
 * ## Example Usage
 * ### Create orchestrator instance
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using AzureNative = Pulumi.AzureNative;
 * return await Deployment.RunAsync(() =>
 * {
 *     var orchestratorInstanceServiceDetails = new AzureNative.DelegatedNetwork.OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetails", new()
 *     {
 *         ApiServerEndpoint = "https://testk8s.cloudapp.net",
 *         ClusterRootCA = "ddsadsad344mfdsfdl",
 *         ControllerDetails = new AzureNative.DelegatedNetwork.Inputs.ControllerDetailsArgs
 *         {
 *             Id = "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller",
 *         },
 *         Identity = new AzureNative.DelegatedNetwork.Inputs.OrchestratorIdentityArgs
 *         {
 *             Type = AzureNative.DelegatedNetwork.ResourceIdentityType.SystemAssigned,
 *         },
 *         Kind = AzureNative.DelegatedNetwork.OrchestratorKind.Kubernetes,
 *         Location = "West US",
 *         OrchestratorAppId = "546192d7-503f-477a-9cfe-4efc3ee2b6e1",
 *         OrchestratorTenantId = "da6192d7-503f-477a-9cfe-4efc3ee2b6c3",
 *         PrivateLinkResourceId = "/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1",
 *         ResourceGroupName = "TestRG",
 *         ResourceName = "testk8s1",
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	delegatednetwork "github.com/pulumi/pulumi-azure-native-sdk/delegatednetwork/v2"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		_, err := delegatednetwork.NewOrchestratorInstanceServiceDetails(ctx, "orchestratorInstanceServiceDetails", &delegatednetwork.OrchestratorInstanceServiceDetailsArgs{
 * 			ApiServerEndpoint: pulumi.String("https://testk8s.cloudapp.net"),
 * 			ClusterRootCA:     pulumi.String("ddsadsad344mfdsfdl"),
 * 			ControllerDetails: &delegatednetwork.ControllerDetailsTypeArgs{
 * 				Id: pulumi.String("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller"),
 * 			},
 * 			Identity: &delegatednetwork.OrchestratorIdentityArgs{
 * 				Type: delegatednetwork.ResourceIdentityTypeSystemAssigned,
 * 			},
 * 			Kind:                  pulumi.String(delegatednetwork.OrchestratorKindKubernetes),
 * 			Location:              pulumi.String("West US"),
 * 			OrchestratorAppId:     pulumi.String("546192d7-503f-477a-9cfe-4efc3ee2b6e1"),
 * 			OrchestratorTenantId:  pulumi.String("da6192d7-503f-477a-9cfe-4efc3ee2b6c3"),
 * 			PrivateLinkResourceId: pulumi.String("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1"),
 * 			ResourceGroupName:     pulumi.String("TestRG"),
 * 			ResourceName:          pulumi.String("testk8s1"),
 * 		})
 * 		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.delegatednetwork.OrchestratorInstanceServiceDetails;
 * import com.pulumi.azurenative.delegatednetwork.OrchestratorInstanceServiceDetailsArgs;
 * import com.pulumi.azurenative.delegatednetwork.inputs.ControllerDetailsArgs;
 * import com.pulumi.azurenative.delegatednetwork.inputs.OrchestratorIdentityArgs;
 * 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 orchestratorInstanceServiceDetails = new OrchestratorInstanceServiceDetails("orchestratorInstanceServiceDetails", OrchestratorInstanceServiceDetailsArgs.builder()
 *             .apiServerEndpoint("https://testk8s.cloudapp.net")
 *             .clusterRootCA("ddsadsad344mfdsfdl")
 *             .controllerDetails(ControllerDetailsArgs.builder()
 *                 .id("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.DelegatedNetwork/controller/testcontroller")
 *                 .build())
 *             .identity(OrchestratorIdentityArgs.builder()
 *                 .type("SystemAssigned")
 *                 .build())
 *             .kind("Kubernetes")
 *             .location("West US")
 *             .orchestratorAppId("546192d7-503f-477a-9cfe-4efc3ee2b6e1")
 *             .orchestratorTenantId("da6192d7-503f-477a-9cfe-4efc3ee2b6c3")
 *             .privateLinkResourceId("/subscriptions/613192d7-503f-477a-9cfe-4efc3ee2bd60/resourceGroups/TestRG/providers/Microsoft.Network/privateLinkServices/plresource1")
 *             .resourceGroupName("TestRG")
 *             .resourceName("testk8s1")
 *             .build());
 *     }
 * }
 * ```
 * ## Import
 * An existing resource can be imported using its type token, name, and identifier, e.g.
 * ```sh
 * $ pulumi import azure-native:delegatednetwork:OrchestratorInstanceServiceDetails testk8s1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DelegatedNetwork/orchestrators/{resourceName}
 * ```
 * @property apiServerEndpoint K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
 * @property clusterRootCA RootCA certificate of kubernetes cluster base64 encoded
 * @property controllerDetails Properties of the controller.
 * @property identity The identity of the orchestrator
 * @property kind The kind of workbook. Choices are user and shared.
 * @property location Location of the resource.
 * @property orchestratorAppId AAD ID used with apiserver
 * @property orchestratorTenantId TenantID of server App ID
 * @property privateLinkResourceId private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
 * @property resourceGroupName The name of the resource group. The name is case insensitive.
 * @property resourceName The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
 * @property tags The resource tags.
 */
public data class OrchestratorInstanceServiceDetailsArgs(
    public val apiServerEndpoint: Output? = null,
    public val clusterRootCA: Output? = null,
    public val controllerDetails: Output? = null,
    public val identity: Output? = null,
    public val kind: Output>? = null,
    public val location: Output? = null,
    public val orchestratorAppId: Output? = null,
    public val orchestratorTenantId: Output? = null,
    public val privateLinkResourceId: Output? = null,
    public val resourceGroupName: Output? = null,
    public val resourceName: Output? = null,
    public val tags: Output>? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.delegatednetwork.OrchestratorInstanceServiceDetailsArgs =
        com.pulumi.azurenative.delegatednetwork.OrchestratorInstanceServiceDetailsArgs.builder()
            .apiServerEndpoint(apiServerEndpoint?.applyValue({ args0 -> args0 }))
            .clusterRootCA(clusterRootCA?.applyValue({ args0 -> args0 }))
            .controllerDetails(controllerDetails?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .identity(identity?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .kind(
                kind?.applyValue({ args0 ->
                    args0.transform({ args0 -> args0 }, { args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .location(location?.applyValue({ args0 -> args0 }))
            .orchestratorAppId(orchestratorAppId?.applyValue({ args0 -> args0 }))
            .orchestratorTenantId(orchestratorTenantId?.applyValue({ args0 -> args0 }))
            .privateLinkResourceId(privateLinkResourceId?.applyValue({ args0 -> args0 }))
            .resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
            .resourceName(resourceName?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            ).build()
}

/**
 * Builder for [OrchestratorInstanceServiceDetailsArgs].
 */
@PulumiTagMarker
public class OrchestratorInstanceServiceDetailsArgsBuilder internal constructor() {
    private var apiServerEndpoint: Output? = null

    private var clusterRootCA: Output? = null

    private var controllerDetails: Output? = null

    private var identity: Output? = null

    private var kind: Output>? = null

    private var location: Output? = null

    private var orchestratorAppId: Output? = null

    private var orchestratorTenantId: Output? = null

    private var privateLinkResourceId: Output? = null

    private var resourceGroupName: Output? = null

    private var resourceName: Output? = null

    private var tags: Output>? = null

    /**
     * @param value K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
     */
    @JvmName("dtnvdrlngxktxcol")
    public suspend fun apiServerEndpoint(`value`: Output) {
        this.apiServerEndpoint = value
    }

    /**
     * @param value RootCA certificate of kubernetes cluster base64 encoded
     */
    @JvmName("yihjskgdyaxutkgf")
    public suspend fun clusterRootCA(`value`: Output) {
        this.clusterRootCA = value
    }

    /**
     * @param value Properties of the controller.
     */
    @JvmName("cstmdrtcihedkbhu")
    public suspend fun controllerDetails(`value`: Output) {
        this.controllerDetails = value
    }

    /**
     * @param value The identity of the orchestrator
     */
    @JvmName("xhatjqiaasepnkae")
    public suspend fun identity(`value`: Output) {
        this.identity = value
    }

    /**
     * @param value The kind of workbook. Choices are user and shared.
     */
    @JvmName("ogjlckxtwtwbjsvt")
    public suspend fun kind(`value`: Output>) {
        this.kind = value
    }

    /**
     * @param value Location of the resource.
     */
    @JvmName("ecatmoclyqfmvsbu")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value AAD ID used with apiserver
     */
    @JvmName("kbtwortnbqabjgeb")
    public suspend fun orchestratorAppId(`value`: Output) {
        this.orchestratorAppId = value
    }

    /**
     * @param value TenantID of server App ID
     */
    @JvmName("cqldypayhufjsgot")
    public suspend fun orchestratorTenantId(`value`: Output) {
        this.orchestratorTenantId = value
    }

    /**
     * @param value private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
     */
    @JvmName("nnxnshipjumaabua")
    public suspend fun privateLinkResourceId(`value`: Output) {
        this.privateLinkResourceId = value
    }

    /**
     * @param value The name of the resource group. The name is case insensitive.
     */
    @JvmName("sjkjgvyokwholurh")
    public suspend fun resourceGroupName(`value`: Output) {
        this.resourceGroupName = value
    }

    /**
     * @param value The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
     */
    @JvmName("sobtmldwfivhqgka")
    public suspend fun resourceName(`value`: Output) {
        this.resourceName = value
    }

    /**
     * @param value The resource tags.
     */
    @JvmName("ynrlxqpscdhupamm")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value K8s APIServer url. Either one of apiServerEndpoint or privateLinkResourceId can be specified
     */
    @JvmName("vbignjnvamwmmqyr")
    public suspend fun apiServerEndpoint(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.apiServerEndpoint = mapped
    }

    /**
     * @param value RootCA certificate of kubernetes cluster base64 encoded
     */
    @JvmName("epvnqqsirjkngudw")
    public suspend fun clusterRootCA(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clusterRootCA = mapped
    }

    /**
     * @param value Properties of the controller.
     */
    @JvmName("gdgkaotrnmxrhjrd")
    public suspend fun controllerDetails(`value`: ControllerDetailsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.controllerDetails = mapped
    }

    /**
     * @param argument Properties of the controller.
     */
    @JvmName("xourfjghyfmldayc")
    public suspend fun controllerDetails(argument: suspend ControllerDetailsArgsBuilder.() -> Unit) {
        val toBeMapped = ControllerDetailsArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.controllerDetails = mapped
    }

    /**
     * @param value The identity of the orchestrator
     */
    @JvmName("bucprmwyfkqdyrue")
    public suspend fun identity(`value`: OrchestratorIdentityArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.identity = mapped
    }

    /**
     * @param argument The identity of the orchestrator
     */
    @JvmName("aggaeplaxtycfyai")
    public suspend fun identity(argument: suspend OrchestratorIdentityArgsBuilder.() -> Unit) {
        val toBeMapped = OrchestratorIdentityArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.identity = mapped
    }

    /**
     * @param value The kind of workbook. Choices are user and shared.
     */
    @JvmName("bkqkaochwninchgv")
    public suspend fun kind(`value`: Either?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.kind = mapped
    }

    /**
     * @param value The kind of workbook. Choices are user and shared.
     */
    @JvmName("nbvccjfxemrfacty")
    public fun kind(`value`: String) {
        val toBeMapped = Either.ofLeft(value)
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.kind = mapped
    }

    /**
     * @param value The kind of workbook. Choices are user and shared.
     */
    @JvmName("antmijjrnojvdhvn")
    public fun kind(`value`: OrchestratorKind) {
        val toBeMapped = Either.ofRight(value)
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.kind = mapped
    }

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

    /**
     * @param value AAD ID used with apiserver
     */
    @JvmName("borhjjorxrfijyej")
    public suspend fun orchestratorAppId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.orchestratorAppId = mapped
    }

    /**
     * @param value TenantID of server App ID
     */
    @JvmName("nvfwlowtykgmfncb")
    public suspend fun orchestratorTenantId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.orchestratorTenantId = mapped
    }

    /**
     * @param value private link arm resource id. Either one of apiServerEndpoint or privateLinkResourceId can be specified
     */
    @JvmName("sxluwdtvlgbhugpr")
    public suspend fun privateLinkResourceId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.privateLinkResourceId = mapped
    }

    /**
     * @param value The name of the resource group. The name is case insensitive.
     */
    @JvmName("uwagjkbjdoynxtul")
    public suspend fun resourceGroupName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceGroupName = mapped
    }

    /**
     * @param value The name of the resource. It must be a minimum of 3 characters, and a maximum of 63.
     */
    @JvmName("plqerlovntthisfr")
    public suspend fun resourceName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.resourceName = mapped
    }

    /**
     * @param value The resource tags.
     */
    @JvmName("ycvoqtumqqxsujqq")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values The resource tags.
     */
    @JvmName("srpalwtpbrxgnvej")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): OrchestratorInstanceServiceDetailsArgs =
        OrchestratorInstanceServiceDetailsArgs(
            apiServerEndpoint = apiServerEndpoint,
            clusterRootCA = clusterRootCA,
            controllerDetails = controllerDetails,
            identity = identity,
            kind = kind,
            location = location,
            orchestratorAppId = orchestratorAppId,
            orchestratorTenantId = orchestratorTenantId,
            privateLinkResourceId = privateLinkResourceId,
            resourceGroupName = resourceGroupName,
            resourceName = resourceName,
            tags = tags,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy