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

26 lines (25 loc) 1.28 kB
import * as pulumi from "@pulumi/pulumi"; /** * Gets the private DNS zone suffix. * * Uses Azure REST API version 2025-06-01-preview. * * Other available API versions: 2025-08-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native dbforpostgresql [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getPrivateDnsZoneSuffix(args?: GetPrivateDnsZoneSuffixArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateDnsZoneSuffixResult>; export interface GetPrivateDnsZoneSuffixArgs { } /** * Private DNS suffix. */ export interface GetPrivateDnsZoneSuffixResult { readonly value?: string; } /** * Gets the private DNS zone suffix. * * Uses Azure REST API version 2025-06-01-preview. * * Other available API versions: 2025-08-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native dbforpostgresql [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getPrivateDnsZoneSuffixOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateDnsZoneSuffixResult>;