import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing PostgreSQL Azure Database Server. * * > **Note:** The `azure.postgresql.Server` data source is deprecated and will be removed in v5.0 of the AzureRM Provider. Azure Database for PostgreSQL Single Server and its sub resources have been retired as of 2025-03-28, please use the `azure.postgresql.FlexibleServer` data source instead. For more information, see https://techcommunity.microsoft.com/blog/adforpostgresql/retiring-azure-database-for-postgresql-single-server-in-2025/3783783. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.postgresql.getServer({ * name: "postgresql-server-1", * resourceGroupName: "api-rg-pro", * }); * export const postgresqlServerId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DBforPostgreSQL` - 2017-12-01 */ export declare function getServer(args: GetServerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServer. */ export interface GetServerArgs { /** * The name of the PostgreSQL Server. */ name: string; /** * Specifies the name of the Resource Group where the PostgreSQL Server exists. */ resourceGroupName: string; } /** * A collection of values returned by getServer. */ export interface GetServerResult { /** * The administrator username of the PostgreSQL Server. */ readonly administratorLogin: string; /** * The fully qualified domain name of the PostgreSQL Server. */ readonly fqdn: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An `identity` block as defined below. */ readonly identities: outputs.postgresql.GetServerIdentity[]; /** * The location of the Resource Group in which the PostgreSQL Server exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * The SKU name of the PostgreSQL Server. */ readonly skuName: string; /** * A mapping of tags assigned to the resource. */ readonly tags: { [key: string]: string; }; /** * The version of the PostgreSQL Server. */ readonly version: string; } /** * Use this data source to access information about an existing PostgreSQL Azure Database Server. * * > **Note:** The `azure.postgresql.Server` data source is deprecated and will be removed in v5.0 of the AzureRM Provider. Azure Database for PostgreSQL Single Server and its sub resources have been retired as of 2025-03-28, please use the `azure.postgresql.FlexibleServer` data source instead. For more information, see https://techcommunity.microsoft.com/blog/adforpostgresql/retiring-azure-database-for-postgresql-single-server-in-2025/3783783. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.postgresql.getServer({ * name: "postgresql-server-1", * resourceGroupName: "api-rg-pro", * }); * export const postgresqlServerId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DBforPostgreSQL` - 2017-12-01 */ export declare function getServerOutput(args: GetServerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServer. */ export interface GetServerOutputArgs { /** * The name of the PostgreSQL Server. */ name: pulumi.Input; /** * Specifies the name of the Resource Group where the PostgreSQL Server exists. */ resourceGroupName: pulumi.Input; }