UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

98 lines (97 loc) 3.62 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets properties of an inbound endpoint for a DNS resolver. * * Uses Azure REST API version 2023-07-01-preview. * * Other available API versions: 2020-04-01-preview, 2022-07-01, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native dnsresolver [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getInboundEndpoint(args: GetInboundEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetInboundEndpointResult>; export interface GetInboundEndpointArgs { /** * The name of the DNS resolver. */ dnsResolverName: string; /** * The name of the inbound endpoint for the DNS resolver. */ inboundEndpointName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Describes an inbound endpoint for a DNS resolver. */ export interface GetInboundEndpointResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * ETag of the inbound endpoint. */ readonly etag: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * IP configurations for the inbound endpoint. */ readonly ipConfigurations: outputs.dnsresolver.IpConfigurationResponse[]; /** * The geo-location where the resource lives */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * The current provisioning state of the inbound endpoint. This is a read-only property and any attempt to set this value will be ignored. */ readonly provisioningState: string; /** * The resourceGuid property of the inbound endpoint resource. */ readonly resourceGuid: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.dnsresolver.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Gets properties of an inbound endpoint for a DNS resolver. * * Uses Azure REST API version 2023-07-01-preview. * * Other available API versions: 2020-04-01-preview, 2022-07-01, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native dnsresolver [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getInboundEndpointOutput(args: GetInboundEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInboundEndpointResult>; export interface GetInboundEndpointOutputArgs { /** * The name of the DNS resolver. */ dnsResolverName: pulumi.Input<string>; /** * The name of the inbound endpoint for the DNS resolver. */ inboundEndpointName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }