@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.28 kB
TypeScript
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>;