import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Gets information about an existing VPC in an Aiven organization. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getOrganizationVpc({ * organizationId: "org1a23f456789", * organizationVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * }); * ``` */ export declare function getOrganizationVpc(args: GetOrganizationVpcArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOrganizationVpc. */ export interface GetOrganizationVpcArgs { /** * ID of an organization. */ organizationId: string; /** * The ID of the Aiven Organization VPC. */ organizationVpcId: string; timeouts?: inputs.GetOrganizationVpcTimeouts; } /** * A collection of values returned by getOrganizationVpc. */ export interface GetOrganizationVpcResult { /** * The cloud provider and region where the service is hosted in the format `CLOUD_PROVIDER-REGION_NAME`. For example, `google-europe-west1` or `aws-us-east-2`. */ readonly cloudName: string; /** * VPC creation timestamp. */ readonly createTime: string; /** * User defined display name for this VPC. */ readonly displayName: string; /** * Resource ID composed as: `organization_id/organization_vpc_id`. */ readonly id: string; /** * Network address range used by the VPC. For example, `192.168.0.0/24`. */ readonly networkCidr: string; /** * ID of an organization. */ readonly organizationId: string; /** * The ID of the Aiven Organization VPC. */ readonly organizationVpcId: string; /** * State of the VPC. The possible values are `ACTIVE`, `APPROVED`, `DELETED` and `DELETING`. */ readonly state: string; readonly timeouts?: outputs.GetOrganizationVpcTimeouts; /** * Timestamp of last change to VPC. */ readonly updateTime: string; } /** * Gets information about an existing VPC in an Aiven organization. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = aiven.getOrganizationVpc({ * organizationId: "org1a23f456789", * organizationVpcId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d", * }); * ``` */ export declare function getOrganizationVpcOutput(args: GetOrganizationVpcOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOrganizationVpc. */ export interface GetOrganizationVpcOutputArgs { /** * ID of an organization. */ organizationId: pulumi.Input; /** * The ID of the Aiven Organization VPC. */ organizationVpcId: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=getOrganizationVpc.d.ts.map