import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * The GCP VPC Peering Connection data source provides information about the existing Aiven VPC Peering Connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getGcpOrgVpcPeeringConnection({ * organizationId: "org1a23f456789", * organizationVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * gcpProjectId: "my-gcp-project", * peerVpc: "my-vpc", * }); * ``` */ export declare function getGcpOrgVpcPeeringConnection(args: GetGcpOrgVpcPeeringConnectionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getGcpOrgVpcPeeringConnection. */ export interface GetGcpOrgVpcPeeringConnectionArgs { /** * Google Cloud project ID. */ gcpProjectId: string; /** * ID of an organization. */ organizationId: string; /** * Organization VPC ID. */ organizationVpcId: string; /** * Google Cloud VPC network name. */ peerVpc: string; timeouts?: inputs.GetGcpOrgVpcPeeringConnectionTimeouts; } /** * A collection of values returned by getGcpOrgVpcPeeringConnection. */ export interface GetGcpOrgVpcPeeringConnectionResult { /** * Google Cloud project ID. */ readonly gcpProjectId: string; /** * Resource ID composed as: `organization_id/organization_vpc_id/gcp_project_id/peer_vpc`. */ readonly id: string; /** * ID of an organization. */ readonly organizationId: string; /** * Organization VPC ID. */ readonly organizationVpcId: string; /** * Google Cloud VPC network name. */ readonly peerVpc: string; /** * Computed Google Cloud network peering link. */ readonly selfLink: string; /** * State of the peering connection. The possible values are `ACTIVE`, `APPROVED`, `APPROVED_PEER_REQUESTED`, `DELETED`, `DELETED_BY_PEER`, `DELETING`, `ERROR`, `INVALID_SPECIFICATION`, `PENDING_PEER` and `REJECTED_BY_PEER`. */ readonly state: string; readonly timeouts?: outputs.GetGcpOrgVpcPeeringConnectionTimeouts; } /** * The GCP VPC Peering Connection data source provides information about the existing Aiven VPC Peering Connection. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getGcpOrgVpcPeeringConnection({ * organizationId: "org1a23f456789", * organizationVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * gcpProjectId: "my-gcp-project", * peerVpc: "my-vpc", * }); * ``` */ export declare function getGcpOrgVpcPeeringConnectionOutput(args: GetGcpOrgVpcPeeringConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getGcpOrgVpcPeeringConnection. */ export interface GetGcpOrgVpcPeeringConnectionOutputArgs { /** * Google Cloud project ID. */ gcpProjectId: pulumi.Input; /** * ID of an organization. */ organizationId: pulumi.Input; /** * Organization VPC ID. */ organizationVpcId: pulumi.Input; /** * Google Cloud VPC network name. */ peerVpc: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=getGcpOrgVpcPeeringConnection.d.ts.map