import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets information about a Google Private Service Connect connection for an Aiven service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getGcpPrivatelink({ * project: "my-project", * serviceName: "foo", * }); * ``` */ export declare function getGcpPrivatelink(args: GetGcpPrivatelinkArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGcpPrivatelink. */ export interface GetGcpPrivatelinkArgs { /** * Project name. */ project: string; /** * Service name. */ serviceName: string; timeouts?: inputs.GetGcpPrivatelinkTimeouts; } /** * A collection of values returned by getGcpPrivatelink. */ export interface GetGcpPrivatelinkResult { /** * Google Private Service Connect service attachment. */ readonly googleServiceAttachment: 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; /** * The state of the Private Service Connect resource. The possible values are `active`, `creating` and `deleting`. */ readonly state: string; readonly timeouts?: outputs.GetGcpPrivatelinkTimeouts; } /** * Gets information about a Google Private Service Connect connection for an Aiven service. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getGcpPrivatelink({ * project: "my-project", * serviceName: "foo", * }); * ``` */ export declare function getGcpPrivatelinkOutput(args: GetGcpPrivatelinkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGcpPrivatelink. */ export interface GetGcpPrivatelinkOutputArgs { /** * Project name. */ project: pulumi.Input; /** * Service name. */ serviceName: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=getGcpPrivatelink.d.ts.map