PrivateEndpointConnectionArgs

data class PrivateEndpointConnectionArgs(val deidServiceName: Output<String>? = null, val privateEndpointConnectionName: Output<String>? = null, val properties: Output<PrivateEndpointConnectionPropertiesArgs>? = null, val resourceGroupName: Output<String>? = null) : ConvertibleToJava<PrivateEndpointConnectionArgs>

Holder for private endpoint connections Uses Azure REST API version 2024-09-20. In version 2.x of the Azure Native provider, it used API version 2024-02-28-preview. Other available API versions: 2024-02-28-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native healthdataaiservices [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

Example Usage

PrivateEndpointConnections_Create - generated by MaximumSet rule. stable

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var privateEndpointConnection = new AzureNative.HealthDataAIServices.PrivateEndpointConnection("privateEndpointConnection", new()
{
DeidServiceName = "deidTest",
PrivateEndpointConnectionName = "kgwgrrpabvrsrrvpcgcnfmyfgyrl",
Properties = new AzureNative.HealthDataAIServices.Inputs.PrivateEndpointConnectionPropertiesArgs
{
PrivateLinkServiceConnectionState = new AzureNative.HealthDataAIServices.Inputs.PrivateLinkServiceConnectionStateArgs
{
ActionsRequired = "ulb",
Description = "xr",
Status = AzureNative.HealthDataAIServices.PrivateEndpointServiceConnectionStatus.Pending,
},
},
ResourceGroupName = "rgopenapi",
});
});
package main
import (
healthdataaiservices "github.com/pulumi/pulumi-azure-native-sdk/healthdataaiservices/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := healthdataaiservices.NewPrivateEndpointConnection(ctx, "privateEndpointConnection", &healthdataaiservices.PrivateEndpointConnectionArgs{
DeidServiceName: pulumi.String("deidTest"),
PrivateEndpointConnectionName: pulumi.String("kgwgrrpabvrsrrvpcgcnfmyfgyrl"),
Properties: &healthdataaiservices.PrivateEndpointConnectionPropertiesArgs{
PrivateLinkServiceConnectionState: &healthdataaiservices.PrivateLinkServiceConnectionStateArgs{
ActionsRequired: pulumi.String("ulb"),
Description: pulumi.String("xr"),
Status: pulumi.String(healthdataaiservices.PrivateEndpointServiceConnectionStatusPending),
},
},
ResourceGroupName: pulumi.String("rgopenapi"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.healthdataaiservices.PrivateEndpointConnection;
import com.pulumi.azurenative.healthdataaiservices.PrivateEndpointConnectionArgs;
import com.pulumi.azurenative.healthdataaiservices.inputs.PrivateEndpointConnectionPropertiesArgs;
import com.pulumi.azurenative.healthdataaiservices.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 privateEndpointConnection = new PrivateEndpointConnection("privateEndpointConnection", PrivateEndpointConnectionArgs.builder()
.deidServiceName("deidTest")
.privateEndpointConnectionName("kgwgrrpabvrsrrvpcgcnfmyfgyrl")
.properties(PrivateEndpointConnectionPropertiesArgs.builder()
.privateLinkServiceConnectionState(PrivateLinkServiceConnectionStateArgs.builder()
.actionsRequired("ulb")
.description("xr")
.status("Pending")
.build())
.build())
.resourceGroupName("rgopenapi")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:healthdataaiservices:PrivateEndpointConnection aduyb /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}/privateEndpointConnections/{privateEndpointConnectionName}

Constructors

Link copied to clipboard
constructor(deidServiceName: Output<String>? = null, privateEndpointConnectionName: Output<String>? = null, properties: Output<PrivateEndpointConnectionPropertiesArgs>? = null, resourceGroupName: Output<String>? = null)

Properties

Link copied to clipboard
val deidServiceName: Output<String>? = null

The name of the deid service

Link copied to clipboard

The name of the private endpoint connection associated with the Azure resource.

Link copied to clipboard

The resource-specific properties for this resource.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group. The name is case insensitive.

Functions

Link copied to clipboard
open override fun toJava(): PrivateEndpointConnectionArgs