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 Warehouse Users in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Operations Insights Warehouse users. Either compartmentId or id must be specified. All these resources are expected to be in root compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouseUsers = oci.opsi.getOperationsInsightsWarehouseUsers({ * operationsInsightsWarehouseId: testOperationsInsightsWarehouse.id, * compartmentId: compartmentId, * displayName: operationsInsightsWarehouseUserDisplayName, * id: operationsInsightsWarehouseUserId, * states: operationsInsightsWarehouseUserState, * }); * ``` */ export declare function getOperationsInsightsWarehouseUsers(args: GetOperationsInsightsWarehouseUsersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOperationsInsightsWarehouseUsers. */ export interface GetOperationsInsightsWarehouseUsersArgs { /** * 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.GetOperationsInsightsWarehouseUsersFilter[]; /** * Unique Operations Insights Warehouse User identifier */ id?: string; /** * Unique Operations Insights Warehouse identifier */ operationsInsightsWarehouseId: string; /** * Lifecycle states */ states?: string[]; } /** * A collection of values returned by getOperationsInsightsWarehouseUsers. */ export interface GetOperationsInsightsWarehouseUsersResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; readonly displayName?: string; readonly filters?: outputs.Opsi.GetOperationsInsightsWarehouseUsersFilter[]; /** * Hub User OCID */ readonly id?: string; /** * OPSI Warehouse OCID */ readonly operationsInsightsWarehouseId: string; /** * The list of operations_insights_warehouse_user_summary_collection. */ readonly operationsInsightsWarehouseUserSummaryCollections: outputs.Opsi.GetOperationsInsightsWarehouseUsersOperationsInsightsWarehouseUserSummaryCollection[]; /** * Possible lifecycle states */ readonly states?: string[]; } /** * This data source provides the list of Operations Insights Warehouse Users in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Operations Insights Warehouse users. Either compartmentId or id must be specified. All these resources are expected to be in root compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouseUsers = oci.opsi.getOperationsInsightsWarehouseUsers({ * operationsInsightsWarehouseId: testOperationsInsightsWarehouse.id, * compartmentId: compartmentId, * displayName: operationsInsightsWarehouseUserDisplayName, * id: operationsInsightsWarehouseUserId, * states: operationsInsightsWarehouseUserState, * }); * ``` */ export declare function getOperationsInsightsWarehouseUsersOutput(args: GetOperationsInsightsWarehouseUsersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOperationsInsightsWarehouseUsers. */ export interface GetOperationsInsightsWarehouseUsersOutputArgs { /** * 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 Operations Insights Warehouse User identifier */ id?: pulumi.Input; /** * Unique Operations Insights Warehouse identifier */ operationsInsightsWarehouseId: pulumi.Input; /** * Lifecycle states */ states?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getOperationsInsightsWarehouseUsers.d.ts.map