@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.67 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get private DNS zone suffix in the cloud.
*
* Uses Azure REST API version 2024-10-01-preview.
*
* Other available API versions: 2022-01-01, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-12-01-preview, 2023-12-30, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native dbformysql [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getGetPrivateDnsZoneSuffixExecute(args?: GetGetPrivateDnsZoneSuffixExecuteArgs, opts?: pulumi.InvokeOptions): Promise<GetGetPrivateDnsZoneSuffixExecuteResult>;
export interface GetGetPrivateDnsZoneSuffixExecuteArgs {
}
/**
* The response of get private dns zone suffix.
*/
export interface GetGetPrivateDnsZoneSuffixExecuteResult {
/**
* Represents the private DNS zone suffix.
*/
readonly privateDnsZoneSuffix?: string;
}
/**
* Get private DNS zone suffix in the cloud.
*
* Uses Azure REST API version 2024-10-01-preview.
*
* Other available API versions: 2022-01-01, 2022-09-30-preview, 2023-06-01-preview, 2023-06-30, 2023-12-01-preview, 2023-12-30, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native dbformysql [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getGetPrivateDnsZoneSuffixExecuteOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGetPrivateDnsZoneSuffixExecuteResult>;