import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets information about the VPC for an Aiven project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getProjectVpc({ * project: "my-project", * projectVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * }); * ``` */ export declare function getProjectVpc(args?: GetProjectVpcArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProjectVpc. */ export interface GetProjectVpcArgs { /** * Target cloud. The field is required with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. */ cloudName?: string; /** * Project name. */ project?: string; /** * Project VPC ID. The field is required with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. */ projectVpcId?: string; timeouts?: inputs.GetProjectVpcTimeouts; /** * The ID of the VPC in `project/project_vpc_id` format. The field conflicts with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. **Deprecated**: This attribute is deprecated and will be removed in a future version. Use `projectVpcId` instead. * * @deprecated This attribute is deprecated and will be removed in a future version. Use `projectVpcId` instead. */ vpcId?: string; } /** * A collection of values returned by getProjectVpc. */ export interface GetProjectVpcResult { /** * Target cloud. The field is required with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. */ readonly cloudName: string; /** * Resource ID composed as: `project/project_vpc_id`. */ readonly id: string; /** * IPv4 network range CIDR. */ readonly networkCidr: string; /** * Project name. */ readonly project: string; /** * Project VPC ID. The field is required with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. */ readonly projectVpcId: string; /** * Project VPC state. The possible values are `ACTIVE`, `APPROVED`, `DELETED` and `DELETING`. */ readonly state: string; readonly timeouts?: outputs.GetProjectVpcTimeouts; /** * The ID of the VPC in `project/project_vpc_id` format. The field conflicts with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. **Deprecated**: This attribute is deprecated and will be removed in a future version. Use `projectVpcId` instead. * * @deprecated This attribute is deprecated and will be removed in a future version. Use `projectVpcId` instead. */ readonly vpcId?: string; } /** * Gets information about the VPC for an Aiven project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getProjectVpc({ * project: "my-project", * projectVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * }); * ``` */ export declare function getProjectVpcOutput(args?: GetProjectVpcOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProjectVpc. */ export interface GetProjectVpcOutputArgs { /** * Target cloud. The field is required with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. */ cloudName?: pulumi.Input; /** * Project name. */ project?: pulumi.Input; /** * Project VPC ID. The field is required with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. */ projectVpcId?: pulumi.Input; timeouts?: pulumi.Input; /** * The ID of the VPC in `project/project_vpc_id` format. The field conflicts with `project`. Exactly one of the fields must be specified: `projectVpcId`, `cloudName` or `vpcId`. **Deprecated**: This attribute is deprecated and will be removed in a future version. Use `projectVpcId` instead. * * @deprecated This attribute is deprecated and will be removed in a future version. Use `projectVpcId` instead. */ vpcId?: pulumi.Input; } //# sourceMappingURL=getProjectVpc.d.ts.map