import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets information about an Azure Private Link connection for an Aiven service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getAzurePrivatelink({ * project: "my-project", * serviceName: "foo", * }); * ``` */ export declare function getAzurePrivatelink(args: GetAzurePrivatelinkArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAzurePrivatelink. */ export interface GetAzurePrivatelinkArgs { /** * Project name. */ project: string; /** * Service name. */ serviceName: string; timeouts?: inputs.GetAzurePrivatelinkTimeouts; } /** * A collection of values returned by getAzurePrivatelink. */ export interface GetAzurePrivatelinkResult { /** * Azure Privatelink service alias. */ readonly azureServiceAlias: string; /** * Azure Privatelink service ID. */ readonly azureServiceId: string; /** * Resource ID composed as: `project/service_name`. */ readonly id: string; /** * Legacy response message retained for backward compatibility. **Deprecated**: This attribute is retained only for compatibility with state created by older provider versions and is no longer populated. * * @deprecated This attribute is retained only for compatibility with state created by older provider versions and is no longer populated. */ readonly message: string; /** * Project name. */ readonly project: string; /** * Service name. */ readonly serviceName: string; /** * Privatelink resource state. The possible values are `active`, `creating` and `deleting`. */ readonly state: string; readonly timeouts?: outputs.GetAzurePrivatelinkTimeouts; /** * IDs of Azure subscriptions allowed to connect to the service. */ readonly userSubscriptionIds: string[]; } /** * Gets information about an Azure Private Link connection for an Aiven service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getAzurePrivatelink({ * project: "my-project", * serviceName: "foo", * }); * ``` */ export declare function getAzurePrivatelinkOutput(args: GetAzurePrivatelinkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAzurePrivatelink. */ export interface GetAzurePrivatelinkOutputArgs { /** * Project name. */ project: pulumi.Input; /** * Service name. */ serviceName: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=getAzurePrivatelink.d.ts.map