InboundEndpoint

class InboundEndpoint : KotlinCustomResource

Describes an inbound endpoint for a DNS resolver. Uses Azure REST API version 2022-07-01. In version 1.x of the Azure Native provider, it used API version 2020-04-01-preview. Other available API versions: 2020-04-01-preview, 2023-07-01-preview.

Example Usage

Upsert inbound endpoint for DNS resolver

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var inboundEndpoint = new AzureNative.Network.InboundEndpoint("inboundEndpoint", new()
{
DnsResolverName = "sampleDnsResolver",
InboundEndpointName = "sampleInboundEndpoint",
IpConfigurations = new[]
{
new AzureNative.Network.Inputs.InboundEndpointIPConfigurationArgs
{
PrivateIpAllocationMethod = AzureNative.Network.IpAllocationMethod.Dynamic,
Subnet = new AzureNative.Network.Inputs.SubResourceArgs
{
Id = "/subscriptions/0403cfa9-9659-4f33-9f30-1f191c51d111/resourceGroups/sampleVnetResourceGroupName/providers/Microsoft.Network/virtualNetworks/sampleVirtualNetwork/subnets/sampleSubnet",
},
},
},
Location = "westus2",
ResourceGroupName = "sampleResourceGroup",
Tags =
{
{ "key1", "value1" },
},
});
});
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewInboundEndpoint(ctx, "inboundEndpoint", &network.InboundEndpointArgs{
DnsResolverName: pulumi.String("sampleDnsResolver"),
InboundEndpointName: pulumi.String("sampleInboundEndpoint"),
IpConfigurations: network.InboundEndpointIPConfigurationArray{
&network.InboundEndpointIPConfigurationArgs{
PrivateIpAllocationMethod: pulumi.String(network.IpAllocationMethodDynamic),
Subnet: &network.SubResourceArgs{
Id: pulumi.String("/subscriptions/0403cfa9-9659-4f33-9f30-1f191c51d111/resourceGroups/sampleVnetResourceGroupName/providers/Microsoft.Network/virtualNetworks/sampleVirtualNetwork/subnets/sampleSubnet"),
},
},
},
Location: pulumi.String("westus2"),
ResourceGroupName: pulumi.String("sampleResourceGroup"),
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
})
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.network.InboundEndpoint;
import com.pulumi.azurenative.network.InboundEndpointArgs;
import com.pulumi.azurenative.network.inputs.InboundEndpointIPConfigurationArgs;
import com.pulumi.azurenative.network.inputs.SubResourceArgs;
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 inboundEndpoint = new InboundEndpoint("inboundEndpoint", InboundEndpointArgs.builder()
.dnsResolverName("sampleDnsResolver")
.inboundEndpointName("sampleInboundEndpoint")
.ipConfigurations(InboundEndpointIPConfigurationArgs.builder()
.privateIpAllocationMethod("Dynamic")
.subnet(SubResourceArgs.builder()
.id("/subscriptions/0403cfa9-9659-4f33-9f30-1f191c51d111/resourceGroups/sampleVnetResourceGroupName/providers/Microsoft.Network/virtualNetworks/sampleVirtualNetwork/subnets/sampleSubnet")
.build())
.build())
.location("westus2")
.resourceGroupName("sampleResourceGroup")
.tags(Map.of("key1", "value1"))
.build());
}
}

Import

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

$ pulumi import azure-native:network:InboundEndpoint sampleInboundEndpoint /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/dnsResolvers/{dnsResolverName}/inboundEndpoints/{inboundEndpointName}

Properties

Link copied to clipboard
val etag: Output<String>

ETag of the inbound endpoint.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

IP configurations for the inbound endpoint.

Link copied to clipboard
val location: Output<String>

The geo-location where the resource lives

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

The current provisioning state of the inbound endpoint. This is a read-only property and any attempt to set this value will be ignored.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val resourceGuid: Output<String>

The resourceGuid property of the inbound endpoint resource.

Link copied to clipboard

Metadata pertaining to creation and last modification of the resource.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Resource tags.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>