Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Opsi.getOperationsInsightsWarehouseUsers
Explore with Pulumi AI
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
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,
});
import pulumi
import pulumi_oci as oci
test_operations_insights_warehouse_users = oci.Opsi.get_operations_insights_warehouse_users(operations_insights_warehouse_id=test_operations_insights_warehouse["id"],
    compartment_id=compartment_id,
    display_name=operations_insights_warehouse_user_display_name,
    id=operations_insights_warehouse_user_id,
    states=operations_insights_warehouse_user_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/opsi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := opsi.GetOperationsInsightsWarehouseUsers(ctx, &opsi.GetOperationsInsightsWarehouseUsersArgs{
			OperationsInsightsWarehouseId: testOperationsInsightsWarehouse.Id,
			CompartmentId:                 pulumi.StringRef(compartmentId),
			DisplayName:                   pulumi.StringRef(operationsInsightsWarehouseUserDisplayName),
			Id:                            pulumi.StringRef(operationsInsightsWarehouseUserId),
			States:                        operationsInsightsWarehouseUserState,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testOperationsInsightsWarehouseUsers = Oci.Opsi.GetOperationsInsightsWarehouseUsers.Invoke(new()
    {
        OperationsInsightsWarehouseId = testOperationsInsightsWarehouse.Id,
        CompartmentId = compartmentId,
        DisplayName = operationsInsightsWarehouseUserDisplayName,
        Id = operationsInsightsWarehouseUserId,
        States = operationsInsightsWarehouseUserState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Opsi.OpsiFunctions;
import com.pulumi.oci.Opsi.inputs.GetOperationsInsightsWarehouseUsersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testOperationsInsightsWarehouseUsers = OpsiFunctions.getOperationsInsightsWarehouseUsers(GetOperationsInsightsWarehouseUsersArgs.builder()
            .operationsInsightsWarehouseId(testOperationsInsightsWarehouse.id())
            .compartmentId(compartmentId)
            .displayName(operationsInsightsWarehouseUserDisplayName)
            .id(operationsInsightsWarehouseUserId)
            .states(operationsInsightsWarehouseUserState)
            .build());
    }
}
variables:
  testOperationsInsightsWarehouseUsers:
    fn::invoke:
      function: oci:Opsi:getOperationsInsightsWarehouseUsers
      arguments:
        operationsInsightsWarehouseId: ${testOperationsInsightsWarehouse.id}
        compartmentId: ${compartmentId}
        displayName: ${operationsInsightsWarehouseUserDisplayName}
        id: ${operationsInsightsWarehouseUserId}
        states: ${operationsInsightsWarehouseUserState}
Using getOperationsInsightsWarehouseUsers
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getOperationsInsightsWarehouseUsers(args: GetOperationsInsightsWarehouseUsersArgs, opts?: InvokeOptions): Promise<GetOperationsInsightsWarehouseUsersResult>
function getOperationsInsightsWarehouseUsersOutput(args: GetOperationsInsightsWarehouseUsersOutputArgs, opts?: InvokeOptions): Output<GetOperationsInsightsWarehouseUsersResult>def get_operations_insights_warehouse_users(compartment_id: Optional[str] = None,
                                            display_name: Optional[str] = None,
                                            filters: Optional[Sequence[GetOperationsInsightsWarehouseUsersFilter]] = None,
                                            id: Optional[str] = None,
                                            operations_insights_warehouse_id: Optional[str] = None,
                                            states: Optional[Sequence[str]] = None,
                                            opts: Optional[InvokeOptions] = None) -> GetOperationsInsightsWarehouseUsersResult
def get_operations_insights_warehouse_users_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                            display_name: Optional[pulumi.Input[str]] = None,
                                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetOperationsInsightsWarehouseUsersFilterArgs]]]] = None,
                                            id: Optional[pulumi.Input[str]] = None,
                                            operations_insights_warehouse_id: Optional[pulumi.Input[str]] = None,
                                            states: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                            opts: Optional[InvokeOptions] = None) -> Output[GetOperationsInsightsWarehouseUsersResult]func GetOperationsInsightsWarehouseUsers(ctx *Context, args *GetOperationsInsightsWarehouseUsersArgs, opts ...InvokeOption) (*GetOperationsInsightsWarehouseUsersResult, error)
func GetOperationsInsightsWarehouseUsersOutput(ctx *Context, args *GetOperationsInsightsWarehouseUsersOutputArgs, opts ...InvokeOption) GetOperationsInsightsWarehouseUsersResultOutput> Note: This function is named GetOperationsInsightsWarehouseUsers in the Go SDK.
public static class GetOperationsInsightsWarehouseUsers 
{
    public static Task<GetOperationsInsightsWarehouseUsersResult> InvokeAsync(GetOperationsInsightsWarehouseUsersArgs args, InvokeOptions? opts = null)
    public static Output<GetOperationsInsightsWarehouseUsersResult> Invoke(GetOperationsInsightsWarehouseUsersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOperationsInsightsWarehouseUsersResult> getOperationsInsightsWarehouseUsers(GetOperationsInsightsWarehouseUsersArgs args, InvokeOptions options)
public static Output<GetOperationsInsightsWarehouseUsersResult> getOperationsInsightsWarehouseUsers(GetOperationsInsightsWarehouseUsersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Opsi/getOperationsInsightsWarehouseUsers:getOperationsInsightsWarehouseUsers
  arguments:
    # arguments dictionaryThe following arguments are supported:
- OperationsInsights stringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- CompartmentId string
- The OCID of the compartment.
- DisplayName string
- A filter to return only resources that match the entire display name.
- Filters
List<GetOperations Insights Warehouse Users Filter> 
- Id string
- Unique Operations Insights Warehouse User identifier
- States List<string>
- Lifecycle states
- OperationsInsights stringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- CompartmentId string
- The OCID of the compartment.
- DisplayName string
- A filter to return only resources that match the entire display name.
- Filters
[]GetOperations Insights Warehouse Users Filter 
- Id string
- Unique Operations Insights Warehouse User identifier
- States []string
- Lifecycle states
- operationsInsights StringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- compartmentId String
- The OCID of the compartment.
- displayName String
- A filter to return only resources that match the entire display name.
- filters
List<GetOperations Insights Warehouse Users Filter> 
- id String
- Unique Operations Insights Warehouse User identifier
- states List<String>
- Lifecycle states
- operationsInsights stringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- compartmentId string
- The OCID of the compartment.
- displayName string
- A filter to return only resources that match the entire display name.
- filters
GetOperations Insights Warehouse Users Filter[] 
- id string
- Unique Operations Insights Warehouse User identifier
- states string[]
- Lifecycle states
- operations_insights_ strwarehouse_ id 
- Unique Operations Insights Warehouse identifier
- compartment_id str
- The OCID of the compartment.
- display_name str
- A filter to return only resources that match the entire display name.
- filters
Sequence[GetOperations Insights Warehouse Users Filter] 
- id str
- Unique Operations Insights Warehouse User identifier
- states Sequence[str]
- Lifecycle states
- operationsInsights StringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- compartmentId String
- The OCID of the compartment.
- displayName String
- A filter to return only resources that match the entire display name.
- filters List<Property Map>
- id String
- Unique Operations Insights Warehouse User identifier
- states List<String>
- Lifecycle states
getOperationsInsightsWarehouseUsers Result
The following output properties are available:
- OperationsInsights stringWarehouse Id 
- OPSI Warehouse OCID
- OperationsInsights List<GetWarehouse User Summary Collections Operations Insights Warehouse Users Operations Insights Warehouse User Summary Collection> 
- The list of operations_insights_warehouse_user_summary_collection.
- CompartmentId string
- The OCID of the compartment.
- DisplayName string
- Filters
List<GetOperations Insights Warehouse Users Filter> 
- Id string
- Hub User OCID
- States List<string>
- Possible lifecycle states
- OperationsInsights stringWarehouse Id 
- OPSI Warehouse OCID
- OperationsInsights []GetWarehouse User Summary Collections Operations Insights Warehouse Users Operations Insights Warehouse User Summary Collection 
- The list of operations_insights_warehouse_user_summary_collection.
- CompartmentId string
- The OCID of the compartment.
- DisplayName string
- Filters
[]GetOperations Insights Warehouse Users Filter 
- Id string
- Hub User OCID
- States []string
- Possible lifecycle states
- operationsInsights StringWarehouse Id 
- OPSI Warehouse OCID
- operationsInsights List<GetWarehouse User Summary Collections Operations Insights Warehouse Users Operations Insights Warehouse User Summary Collection> 
- The list of operations_insights_warehouse_user_summary_collection.
- compartmentId String
- The OCID of the compartment.
- displayName String
- filters
List<GetOperations Insights Warehouse Users Filter> 
- id String
- Hub User OCID
- states List<String>
- Possible lifecycle states
- operationsInsights stringWarehouse Id 
- OPSI Warehouse OCID
- operationsInsights GetWarehouse User Summary Collections Operations Insights Warehouse Users Operations Insights Warehouse User Summary Collection[] 
- The list of operations_insights_warehouse_user_summary_collection.
- compartmentId string
- The OCID of the compartment.
- displayName string
- filters
GetOperations Insights Warehouse Users Filter[] 
- id string
- Hub User OCID
- states string[]
- Possible lifecycle states
- operations_insights_ strwarehouse_ id 
- OPSI Warehouse OCID
- operations_insights_ Sequence[Getwarehouse_ user_ summary_ collections Operations Insights Warehouse Users Operations Insights Warehouse User Summary Collection] 
- The list of operations_insights_warehouse_user_summary_collection.
- compartment_id str
- The OCID of the compartment.
- display_name str
- filters
Sequence[GetOperations Insights Warehouse Users Filter] 
- id str
- Hub User OCID
- states Sequence[str]
- Possible lifecycle states
- operationsInsights StringWarehouse Id 
- OPSI Warehouse OCID
- operationsInsights List<Property Map>Warehouse User Summary Collections 
- The list of operations_insights_warehouse_user_summary_collection.
- compartmentId String
- The OCID of the compartment.
- displayName String
- filters List<Property Map>
- id String
- Hub User OCID
- states List<String>
- Possible lifecycle states
Supporting Types
GetOperationsInsightsWarehouseUsersFilter     
GetOperationsInsightsWarehouseUsersOperationsInsightsWarehouseUserSummaryCollection          
GetOperationsInsightsWarehouseUsersOperationsInsightsWarehouseUserSummaryCollectionItem           
- CompartmentId string
- The OCID of the compartment.
- ConnectionPassword string
- User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Dictionary<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"}
- Id string
- Unique Operations Insights Warehouse User identifier
- IsAwr boolData Access 
- Indicate whether user has access to AWR data.
- IsEm boolData Access 
- Indicate whether user has access to EM data.
- IsOpsi boolData Access 
- Indicate whether user has access to OPSI data.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Name string
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- OperationsInsights stringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- State string
- Lifecycle states
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time at which the resource was first created. An RFC3339 formatted datetime string
- TimeUpdated string
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- CompartmentId string
- The OCID of the compartment.
- ConnectionPassword string
- User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- map[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"}
- Id string
- Unique Operations Insights Warehouse User identifier
- IsAwr boolData Access 
- Indicate whether user has access to AWR data.
- IsEm boolData Access 
- Indicate whether user has access to EM data.
- IsOpsi boolData Access 
- Indicate whether user has access to OPSI data.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Name string
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- OperationsInsights stringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- State string
- Lifecycle states
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The time at which the resource was first created. An RFC3339 formatted datetime string
- TimeUpdated string
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- connectionPassword String
- User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<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"}
- id String
- Unique Operations Insights Warehouse User identifier
- isAwr BooleanData Access 
- Indicate whether user has access to AWR data.
- isEm BooleanData Access 
- Indicate whether user has access to EM data.
- isOpsi BooleanData Access 
- Indicate whether user has access to OPSI data.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name String
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- operationsInsights StringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- state String
- Lifecycle states
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time at which the resource was first created. An RFC3339 formatted datetime string
- timeUpdated String
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartmentId string
- The OCID of the compartment.
- connectionPassword string
- User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- {[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"}
- id string
- Unique Operations Insights Warehouse User identifier
- isAwr booleanData Access 
- Indicate whether user has access to AWR data.
- isEm booleanData Access 
- Indicate whether user has access to EM data.
- isOpsi booleanData Access 
- Indicate whether user has access to OPSI data.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name string
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- operationsInsights stringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- state string
- Lifecycle states
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The time at which the resource was first created. An RFC3339 formatted datetime string
- timeUpdated string
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartment_id str
- The OCID of the compartment.
- connection_password str
- User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- Unique Operations Insights Warehouse User identifier
- is_awr_ booldata_ access 
- Indicate whether user has access to AWR data.
- is_em_ booldata_ access 
- Indicate whether user has access to EM data.
- is_opsi_ booldata_ access 
- Indicate whether user has access to OPSI data.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name str
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- operations_insights_ strwarehouse_ id 
- Unique Operations Insights Warehouse identifier
- state str
- Lifecycle states
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The time at which the resource was first created. An RFC3339 formatted datetime string
- time_updated str
- The time at which the resource was last updated. An RFC3339 formatted datetime string
- compartmentId String
- The OCID of the compartment.
- connectionPassword String
- User provided connection password for the AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- Unique Operations Insights Warehouse User identifier
- isAwr BooleanData Access 
- Indicate whether user has access to AWR data.
- isEm BooleanData Access 
- Indicate whether user has access to EM data.
- isOpsi BooleanData Access 
- Indicate whether user has access to OPSI data.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- name String
- Username for schema which would have access to AWR Data, Enterprise Manager Data and Ops Insights OPSI Hub.
- operationsInsights StringWarehouse Id 
- Unique Operations Insights Warehouse identifier
- state String
- Lifecycle states
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The time at which the resource was first created. An RFC3339 formatted datetime string
- timeUpdated String
- The time at which the resource was last updated. An RFC3339 formatted datetime string
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.