Job Private Endpoint Args
data class JobPrivateEndpointArgs(val jobAgentName: Output<String>? = null, val privateEndpointName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val serverName: Output<String>? = null, val targetServerAzureResourceId: Output<String>? = null) : ConvertibleToJava<JobPrivateEndpointArgs>
A job agent private endpoint. Uses Azure REST API version 2023-05-01-preview. Other available API versions: 2023-08-01, 2023-08-01-preview, 2024-05-01-preview.
Example Usage
Create a private endpoint.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var jobPrivateEndpoint = new AzureNative.Sql.JobPrivateEndpoint("jobPrivateEndpoint", new()
{
JobAgentName = "agent1",
PrivateEndpointName = "endpoint1",
ResourceGroupName = "group1",
ServerName = "server1",
TargetServerAzureResourceId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/targetserver1",
});
});
Content copied to clipboard
package main
import (
sql "github.com/pulumi/pulumi-azure-native-sdk/sql/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sql.NewJobPrivateEndpoint(ctx, "jobPrivateEndpoint", &sql.JobPrivateEndpointArgs{
JobAgentName: pulumi.String("agent1"),
PrivateEndpointName: pulumi.String("endpoint1"),
ResourceGroupName: pulumi.String("group1"),
ServerName: pulumi.String("server1"),
TargetServerAzureResourceId: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/targetserver1"),
})
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.sql.JobPrivateEndpoint;
import com.pulumi.azurenative.sql.JobPrivateEndpointArgs;
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 jobPrivateEndpoint = new JobPrivateEndpoint("jobPrivateEndpoint", JobPrivateEndpointArgs.builder()
.jobAgentName("agent1")
.privateEndpointName("endpoint1")
.resourceGroupName("group1")
.serverName("server1")
.targetServerAzureResourceId("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/group1/providers/Microsoft.Sql/servers/targetserver1")
.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:sql:JobPrivateEndpoint endpoint1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/jobAgents/{jobAgentName}/privateEndpoints/{privateEndpointName}
Content copied to clipboard
Constructors
Properties
Link copied to clipboard
The name of the job agent.
Link copied to clipboard
The name of the private endpoint.
Link copied to clipboard
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
Link copied to clipboard
The name of the server.
Link copied to clipboard
ARM resource id of the server the private endpoint will target.