All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.azurenative.eventhub.kotlin.PrivateEndpointConnection.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.eventhub.kotlin
import com.pulumi.azurenative.eventhub.kotlin.outputs.ConnectionStateResponse
import com.pulumi.azurenative.eventhub.kotlin.outputs.PrivateEndpointResponse
import com.pulumi.azurenative.eventhub.kotlin.outputs.SystemDataResponse
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import com.pulumi.azurenative.eventhub.kotlin.outputs.ConnectionStateResponse.Companion.toKotlin as connectionStateResponseToKotlin
import com.pulumi.azurenative.eventhub.kotlin.outputs.PrivateEndpointResponse.Companion.toKotlin as privateEndpointResponseToKotlin
import com.pulumi.azurenative.eventhub.kotlin.outputs.SystemDataResponse.Companion.toKotlin as systemDataResponseToKotlin
/**
* Builder for [PrivateEndpointConnection].
*/
@PulumiTagMarker
public class PrivateEndpointConnectionResourceBuilder internal constructor() {
public var name: String? = null
public var args: PrivateEndpointConnectionArgs = PrivateEndpointConnectionArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend PrivateEndpointConnectionArgsBuilder.() -> Unit) {
val builder = PrivateEndpointConnectionArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): PrivateEndpointConnection {
val builtJavaResource =
com.pulumi.azurenative.eventhub.PrivateEndpointConnection(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return PrivateEndpointConnection(builtJavaResource)
}
}
/**
* Properties of the PrivateEndpointConnection.
* Azure REST API version: 2022-10-01-preview. Prior API version in Azure Native 1.x: 2018-01-01-preview.
* Other available API versions: 2023-01-01-preview, 2024-01-01, 2024-05-01-preview.
* ## Example Usage
* ### NameSpacePrivateEndPointConnectionCreate
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using AzureNative = Pulumi.AzureNative;
* return await Deployment.RunAsync(() =>
* {
* var privateEndpointConnection = new AzureNative.EventHub.PrivateEndpointConnection("privateEndpointConnection", new()
* {
* NamespaceName = "sdk-Namespace-2924",
* PrivateEndpoint = new AzureNative.EventHub.Inputs.PrivateEndpointArgs
* {
* Id = "/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-EventHub-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847",
* },
* PrivateEndpointConnectionName = "privateEndpointConnectionName",
* PrivateLinkServiceConnectionState = new AzureNative.EventHub.Inputs.ConnectionStateArgs
* {
* Description = "testing",
* Status = AzureNative.EventHub.PrivateLinkConnectionStatus.Rejected,
* },
* ProvisioningState = AzureNative.EventHub.EndPointProvisioningState.Succeeded,
* ResourceGroupName = "ArunMonocle",
* });
* });
* ```
* ```go
* package main
* import (
* eventhub "github.com/pulumi/pulumi-azure-native-sdk/eventhub/v2"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := eventhub.NewPrivateEndpointConnection(ctx, "privateEndpointConnection", &eventhub.PrivateEndpointConnectionArgs{
* NamespaceName: pulumi.String("sdk-Namespace-2924"),
* PrivateEndpoint: &eventhub.PrivateEndpointArgs{
* Id: pulumi.String("/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-EventHub-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847"),
* },
* PrivateEndpointConnectionName: pulumi.String("privateEndpointConnectionName"),
* PrivateLinkServiceConnectionState: &eventhub.ConnectionStateArgs{
* Description: pulumi.String("testing"),
* Status: pulumi.String(eventhub.PrivateLinkConnectionStatusRejected),
* },
* ProvisioningState: pulumi.String(eventhub.EndPointProvisioningStateSucceeded),
* ResourceGroupName: pulumi.String("ArunMonocle"),
* })
* 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.eventhub.PrivateEndpointConnection;
* import com.pulumi.azurenative.eventhub.PrivateEndpointConnectionArgs;
* import com.pulumi.azurenative.eventhub.inputs.PrivateEndpointArgs;
* import com.pulumi.azurenative.eventhub.inputs.ConnectionStateArgs;
* 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 privateEndpointConnection = new PrivateEndpointConnection("privateEndpointConnection", PrivateEndpointConnectionArgs.builder()
* .namespaceName("sdk-Namespace-2924")
* .privateEndpoint(PrivateEndpointArgs.builder()
* .id("/subscriptions/dbedb4e0-40e6-4145-81f3-f1314c150774/resourceGroups/SDK-EventHub-8396/providers/Microsoft.Network/privateEndpoints/sdk-Namespace-2847")
* .build())
* .privateEndpointConnectionName("privateEndpointConnectionName")
* .privateLinkServiceConnectionState(ConnectionStateArgs.builder()
* .description("testing")
* .status("Rejected")
* .build())
* .provisioningState("Succeeded")
* .resourceGroupName("ArunMonocle")
* .build());
* }
* }
* ```
* ## Import
* An existing resource can be imported using its type token, name, and identifier, e.g.
* ```sh
* $ pulumi import azure-native:eventhub:PrivateEndpointConnection 928c44d5-b7c6-423b-b6fa-811e0c27b3e0 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/privateEndpointConnections/{privateEndpointConnectionName}
* ```
*/
public class PrivateEndpointConnection internal constructor(
override val javaResource: com.pulumi.azurenative.eventhub.PrivateEndpointConnection,
) : KotlinCustomResource(javaResource, PrivateEndpointConnectionMapper) {
/**
* The geo-location where the resource lives
*/
public val location: Output
get() = javaResource.location().applyValue({ args0 -> args0 })
/**
* The name of the resource
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The Private Endpoint resource for this Connection.
*/
public val privateEndpoint: Output?
get() = javaResource.privateEndpoint().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> privateEndpointResponseToKotlin(args0) })
}).orElse(null)
})
/**
* Details about the state of the connection.
*/
public val privateLinkServiceConnectionState: Output?
get() = javaResource.privateLinkServiceConnectionState().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
connectionStateResponseToKotlin(args0)
})
}).orElse(null)
})
/**
* Provisioning state of the Private Endpoint Connection.
*/
public val provisioningState: Output?
get() = javaResource.provisioningState().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The system meta data relating to this resource.
*/
public val systemData: Output
get() = javaResource.systemData().applyValue({ args0 ->
args0.let({ args0 ->
systemDataResponseToKotlin(args0)
})
})
/**
* The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 -> args0 })
}
public object PrivateEndpointConnectionMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.azurenative.eventhub.PrivateEndpointConnection::class == javaResource::class
override fun map(javaResource: Resource): PrivateEndpointConnection =
PrivateEndpointConnection(
javaResource as
com.pulumi.azurenative.eventhub.PrivateEndpointConnection,
)
}
/**
* @see [PrivateEndpointConnection].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [PrivateEndpointConnection].
*/
public suspend fun privateEndpointConnection(
name: String,
block: suspend PrivateEndpointConnectionResourceBuilder.() -> Unit,
): PrivateEndpointConnection {
val builder = PrivateEndpointConnectionResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [PrivateEndpointConnection].
* @param name The _unique_ name of the resulting resource.
*/
public fun privateEndpointConnection(name: String): PrivateEndpointConnection {
val builder = PrivateEndpointConnectionResourceBuilder()
builder.name(name)
return builder.build()
}