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 Operations Insights Warehouses in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Ops Insights warehouses. Either compartmentId or id must be specified. * There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouses = oci.opsi.getOperationsInsightsWarehouses({ * compartmentId: compartmentId, * displayName: operationsInsightsWarehouseDisplayName, * id: operationsInsightsWarehouseId, * states: operationsInsightsWarehouseState, * }); * ``` */ export declare function getOperationsInsightsWarehouses(args?: GetOperationsInsightsWarehousesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOperationsInsightsWarehouses. */ export interface GetOperationsInsightsWarehousesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * A filter to return only resources that match the entire display name. */ displayName?: string; filters?: inputs.Opsi.GetOperationsInsightsWarehousesFilter[]; /** * Unique Ops Insights Warehouse identifier */ id?: string; /** * Lifecycle states */ states?: string[]; } /** * A collection of values returned by getOperationsInsightsWarehouses. */ export interface GetOperationsInsightsWarehousesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * User-friedly name of Ops Insights Warehouse that does not have to be unique. */ readonly displayName?: string; readonly filters?: outputs.Opsi.GetOperationsInsightsWarehousesFilter[]; /** * OPSI Warehouse OCID */ readonly id?: string; /** * The list of operations_insights_warehouse_summary_collection. */ readonly operationsInsightsWarehouseSummaryCollections: outputs.Opsi.GetOperationsInsightsWarehousesOperationsInsightsWarehouseSummaryCollection[]; /** * Possible lifecycle states */ readonly states?: string[]; } /** * This data source provides the list of Operations Insights Warehouses in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Ops Insights warehouses. Either compartmentId or id must be specified. * There is only expected to be 1 warehouse per tenant. The warehouse is expected to be in the root compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouses = oci.opsi.getOperationsInsightsWarehouses({ * compartmentId: compartmentId, * displayName: operationsInsightsWarehouseDisplayName, * id: operationsInsightsWarehouseId, * states: operationsInsightsWarehouseState, * }); * ``` */ export declare function getOperationsInsightsWarehousesOutput(args?: GetOperationsInsightsWarehousesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOperationsInsightsWarehouses. */ export interface GetOperationsInsightsWarehousesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the entire display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Ops Insights Warehouse identifier */ id?: pulumi.Input; /** * Lifecycle states */ states?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getOperationsInsightsWarehouses.d.ts.map