import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Operations Insights Warehouse User resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of an Operations Insights Warehouse User. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouseUser = oci.opsi.getOperationsInsightsWarehouseUser({ * operationsInsightsWarehouseUserId: testOperationsInsightsWarehouseUserOciOpsiOperationsInsightsWarehouseUser.id, * }); * ``` */ export declare function getOperationsInsightsWarehouseUser(args: GetOperationsInsightsWarehouseUserArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOperationsInsightsWarehouseUser. */ export interface GetOperationsInsightsWarehouseUserArgs { /** * Unique Operations Insights Warehouse User identifier */ operationsInsightsWarehouseUserId: string; } /** * A collection of values returned by getOperationsInsightsWarehouseUser. */ export interface GetOperationsInsightsWarehouseUserResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub. */ readonly connectionPassword: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * Hub User OCID */ readonly id: string; /** * Indicate whether user has access to AWR data. */ readonly isAwrDataAccess: boolean; /** * Indicate whether user has access to EM data. */ readonly isEmDataAccess: boolean; /** * Indicate whether user has access to OPSI data. */ readonly isOpsiDataAccess: boolean; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub. */ readonly name: string; /** * OPSI Warehouse OCID */ readonly operationsInsightsWarehouseId: string; readonly operationsInsightsWarehouseUserId: string; /** * Possible lifecycle states */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time at which the resource was first created. An RFC3339 formatted datetime string */ readonly timeCreated: string; /** * The time at which the resource was last updated. An RFC3339 formatted datetime string */ readonly timeUpdated: string; } /** * This data source provides details about a specific Operations Insights Warehouse User resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of an Operations Insights Warehouse User. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOperationsInsightsWarehouseUser = oci.opsi.getOperationsInsightsWarehouseUser({ * operationsInsightsWarehouseUserId: testOperationsInsightsWarehouseUserOciOpsiOperationsInsightsWarehouseUser.id, * }); * ``` */ export declare function getOperationsInsightsWarehouseUserOutput(args: GetOperationsInsightsWarehouseUserOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOperationsInsightsWarehouseUser. */ export interface GetOperationsInsightsWarehouseUserOutputArgs { /** * Unique Operations Insights Warehouse User identifier */ operationsInsightsWarehouseUserId: pulumi.Input; } //# sourceMappingURL=getOperationsInsightsWarehouseUser.d.ts.map