Private Endpoint Connection Args
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-02-28-preview. Other available API versions: 2024-09-20.
Example Usage
PrivateEndpointConnections_Create - generated by MaximumSet rule - generated by MaximumSet rule
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",
});
});
Content copied to clipboard
package main
import (
healthdataaiservices "github.com/pulumi/pulumi-azure-native-sdk/healthdataaiservices/v2"
"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
})
}
Content copied to clipboard
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());
}
}
Content copied to clipboard
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}
Content copied to clipboard
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
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
The name of the resource group. The name is case insensitive.