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 Inventories in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of inventories. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInventories = oci.cloudbridge.getInventories({ * compartmentId: compartmentId, * state: inventoryState, * }); * ``` */ export declare function getInventories(args: GetInventoriesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInventories. */ export interface GetInventoriesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.CloudBridge.GetInventoriesFilter[]; /** * A filter to return inventory if the lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getInventories. */ export interface GetInventoriesResult { /** * The OCID of the tenantId. */ readonly compartmentId: string; readonly filters?: outputs.CloudBridge.GetInventoriesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of inventory_collection. */ readonly inventoryCollections: outputs.CloudBridge.GetInventoriesInventoryCollection[]; /** * The current state of the inventory. */ readonly state?: string; } /** * This data source provides the list of Inventories in Oracle Cloud Infrastructure Cloud Bridge service. * * Returns a list of inventories. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInventories = oci.cloudbridge.getInventories({ * compartmentId: compartmentId, * state: inventoryState, * }); * ``` */ export declare function getInventoriesOutput(args: GetInventoriesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInventories. */ export interface GetInventoriesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return inventory if the lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getInventories.d.ts.map