import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Cpes in Oracle Cloud Infrastructure Core service. * * Lists the customer-premises equipment objects (CPEs) in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCpes = oci.core.getCpes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCpes(args: GetCpesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCpes. */ export interface GetCpesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Core.GetCpesFilter[]; } /** * A collection of values returned by getCpes. */ export interface GetCpesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the CPE. */ readonly compartmentId: string; /** * The list of cpes. */ readonly cpes: outputs.Core.GetCpesCpe[]; readonly filters?: outputs.Core.GetCpesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cpes in Oracle Cloud Infrastructure Core service. * * Lists the customer-premises equipment objects (CPEs) in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCpes = oci.core.getCpes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getCpesOutput(args: GetCpesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCpes. */ export interface GetCpesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCpes.d.ts.map