
com.pulumi.azurenative.signalrservice.kotlin.SignalRPrivateEndpointConnectionArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.signalrservice.kotlin
import com.pulumi.azurenative.signalrservice.SignalRPrivateEndpointConnectionArgs.builder
import com.pulumi.azurenative.signalrservice.kotlin.inputs.PrivateEndpointArgs
import com.pulumi.azurenative.signalrservice.kotlin.inputs.PrivateEndpointArgsBuilder
import com.pulumi.azurenative.signalrservice.kotlin.inputs.PrivateLinkServiceConnectionStateArgs
import com.pulumi.azurenative.signalrservice.kotlin.inputs.PrivateLinkServiceConnectionStateArgsBuilder
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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* A private endpoint connection to an azure resource
* Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-05-01.
* Other available API versions: 2023-03-01-preview, 2023-06-01-preview, 2023-08-01-preview, 2024-01-01-preview, 2024-03-01, 2024-04-01-preview.
* ## Example Usage
* ### SignalRPrivateEndpointConnections_Update
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var signalRPrivateEndpointConnection = new AzureNative.SignalRService.SignalRPrivateEndpointConnection("signalRPrivateEndpointConnection", new()
* {
* PrivateEndpoint = new AzureNative.SignalRService.Inputs.PrivateEndpointArgs
* {
* Id = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint",
* },
* PrivateEndpointConnectionName = "mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e",
* PrivateLinkServiceConnectionState = new AzureNative.SignalRService.Inputs.PrivateLinkServiceConnectionStateArgs
* {
* ActionsRequired = "None",
* Status = AzureNative.SignalRService.PrivateLinkServiceConnectionStatus.Approved,
* },
* ResourceGroupName = "myResourceGroup",
* ResourceName = "mySignalRService",
* });
* });
* ```
* ```go
* package main
* import (
* signalrservice "github.com/pulumi/pulumi-azure-native-sdk/signalrservice/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := signalrservice.NewSignalRPrivateEndpointConnection(ctx, "signalRPrivateEndpointConnection", &signalrservice.SignalRPrivateEndpointConnectionArgs{
* PrivateEndpoint: &signalrservice.PrivateEndpointArgs{
* Id: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint"),
* },
* PrivateEndpointConnectionName: pulumi.String("mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e"),
* PrivateLinkServiceConnectionState: &signalrservice.PrivateLinkServiceConnectionStateArgs{
* ActionsRequired: pulumi.String("None"),
* Status: pulumi.String(signalrservice.PrivateLinkServiceConnectionStatusApproved),
* },
* ResourceGroupName: pulumi.String("myResourceGroup"),
* ResourceName: pulumi.String("mySignalRService"),
* })
* 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.signalrservice.SignalRPrivateEndpointConnection;
* import com.pulumi.azurenative.signalrservice.SignalRPrivateEndpointConnectionArgs;
* import com.pulumi.azurenative.signalrservice.inputs.PrivateEndpointArgs;
* import com.pulumi.azurenative.signalrservice.inputs.PrivateLinkServiceConnectionStateArgs;
* 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 signalRPrivateEndpointConnection = new SignalRPrivateEndpointConnection("signalRPrivateEndpointConnection", SignalRPrivateEndpointConnectionArgs.builder()
* .privateEndpoint(PrivateEndpointArgs.builder()
* .id("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint")
* .build())
* .privateEndpointConnectionName("mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e")
* .privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
* .actionsRequired("None")
* .status("Approved")
* .build())
* .resourceGroupName("myResourceGroup")
* .resourceName("mySignalRService")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:signalrservice:SignalRPrivateEndpointConnection mysignalrservice.1fa229cd-bf3f-47f0-8c49-afb36723997e /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SignalRService/signalR/{resourceName}/privateEndpointConnections/{privateEndpointConnectionName}
* ```
* @property privateEndpoint Private endpoint
* @property privateEndpointConnectionName The name of the private endpoint connection
* @property privateLinkServiceConnectionState Connection state of the private endpoint connection
* @property resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
* @property resourceName The name of the resource.
*/
public data class SignalRPrivateEndpointConnectionArgs(
public val privateEndpoint: Output? = null,
public val privateEndpointConnectionName: Output? = null,
public val privateLinkServiceConnectionState: Output? =
null,
public val resourceGroupName: Output? = null,
public val resourceName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.signalrservice.SignalRPrivateEndpointConnectionArgs = com.pulumi.azurenative.signalrservice.SignalRPrivateEndpointConnectionArgs.builder()
.privateEndpoint(privateEndpoint?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.privateEndpointConnectionName(privateEndpointConnectionName?.applyValue({ args0 -> args0 }))
.privateLinkServiceConnectionState(
privateLinkServiceConnectionState?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.resourceGroupName(resourceGroupName?.applyValue({ args0 -> args0 }))
.resourceName(resourceName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SignalRPrivateEndpointConnectionArgs].
*/
@PulumiTagMarker
public class SignalRPrivateEndpointConnectionArgsBuilder internal constructor() {
private var privateEndpoint: Output? = null
private var privateEndpointConnectionName: Output? = null
private var privateLinkServiceConnectionState: Output? =
null
private var resourceGroupName: Output? = null
private var resourceName: Output? = null
/**
* @param value Private endpoint
*/
@JvmName("dgwdpqbbsayrmvym")
public suspend fun privateEndpoint(`value`: Output) {
this.privateEndpoint = value
}
/**
* @param value The name of the private endpoint connection
*/
@JvmName("xgmrtoxvegqpbrvt")
public suspend fun privateEndpointConnectionName(`value`: Output) {
this.privateEndpointConnectionName = value
}
/**
* @param value Connection state of the private endpoint connection
*/
@JvmName("ppkmftagrubhnntp")
public suspend fun privateLinkServiceConnectionState(`value`: Output) {
this.privateLinkServiceConnectionState = value
}
/**
* @param value The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
@JvmName("wwbjhpwaghblhyab")
public suspend fun resourceGroupName(`value`: Output) {
this.resourceGroupName = value
}
/**
* @param value The name of the resource.
*/
@JvmName("wwfqedwdnagvqfds")
public suspend fun resourceName(`value`: Output) {
this.resourceName = value
}
/**
* @param value Private endpoint
*/
@JvmName("ikflfqfbhjtyymeg")
public suspend fun privateEndpoint(`value`: PrivateEndpointArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.privateEndpoint = mapped
}
/**
* @param argument Private endpoint
*/
@JvmName("wglwidtmnkhrcshh")
public suspend fun privateEndpoint(argument: suspend PrivateEndpointArgsBuilder.() -> Unit) {
val toBeMapped = PrivateEndpointArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.privateEndpoint = mapped
}
/**
* @param value The name of the private endpoint connection
*/
@JvmName("sfipetemrlytjrvu")
public suspend fun privateEndpointConnectionName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.privateEndpointConnectionName = mapped
}
/**
* @param value Connection state of the private endpoint connection
*/
@JvmName("lksomsqulyrvssto")
public suspend fun privateLinkServiceConnectionState(`value`: PrivateLinkServiceConnectionStateArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.privateLinkServiceConnectionState = mapped
}
/**
* @param argument Connection state of the private endpoint connection
*/
@JvmName("ufoshsvpggwimlle")
public suspend fun privateLinkServiceConnectionState(argument: suspend PrivateLinkServiceConnectionStateArgsBuilder.() -> Unit) {
val toBeMapped = PrivateLinkServiceConnectionStateArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.privateLinkServiceConnectionState = mapped
}
/**
* @param value The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*/
@JvmName("mxrcmfkhjjrrnbps")
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.
*/
@JvmName("fpytiacpeniqreel")
public suspend fun resourceName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceName = mapped
}
internal fun build(): SignalRPrivateEndpointConnectionArgs = SignalRPrivateEndpointConnectionArgs(
privateEndpoint = privateEndpoint,
privateEndpointConnectionName = privateEndpointConnectionName,
privateLinkServiceConnectionState = privateLinkServiceConnectionState,
resourceGroupName = resourceGroupName,
resourceName = resourceName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy