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 Drgs in Oracle Cloud Infrastructure Core service. * * Lists the DRGs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDrgs = oci.core.getDrgs({ * compartmentId: compartmentId, * }); * ``` */ export declare function getDrgs(args: GetDrgsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDrgs. */ export interface GetDrgsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.Core.GetDrgsFilter[]; } /** * A collection of values returned by getDrgs. */ export interface GetDrgsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the DRG. */ readonly compartmentId: string; /** * The list of drgs. */ readonly drgs: outputs.Core.GetDrgsDrg[]; readonly filters?: outputs.Core.GetDrgsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Drgs in Oracle Cloud Infrastructure Core service. * * Lists the DRGs in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDrgs = oci.core.getDrgs({ * compartmentId: compartmentId, * }); * ``` */ export declare function getDrgsOutput(args: GetDrgsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDrgs. */ export interface GetDrgsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDrgs.d.ts.map