1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. ManagementDashboard
  6. getManagementSavedSearches
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.13.0
published on Thursday, May 28, 2026 by Pulumi

    This data source provides the list of Management Saved Searches in Oracle Cloud Infrastructure Management Dashboard service.

    Gets the list of saved searches in a compartment with pagination. Returned properties are the summary.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagementSavedSearches = oci.managementdashboard.getManagementSavedSearches({
        compartmentId: compartmentId,
        displayName: managementSavedSearchDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_management_saved_searches = oci.managementdashboard.get_management_saved_searches(compartment_id=compartment_id,
        display_name=management_saved_search_display_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/managementdashboard"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := managementdashboard.GetManagementSavedSearches(ctx, &managementdashboard.GetManagementSavedSearchesArgs{
    			CompartmentId: compartmentId,
    			DisplayName:   pulumi.StringRef(managementSavedSearchDisplayName),
    		}, 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 testManagementSavedSearches = Oci.ManagementDashboard.GetManagementSavedSearches.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = managementSavedSearchDisplayName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ManagementDashboard.ManagementDashboardFunctions;
    import com.pulumi.oci.ManagementDashboard.inputs.GetManagementSavedSearchesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 testManagementSavedSearches = ManagementDashboardFunctions.getManagementSavedSearches(GetManagementSavedSearchesArgs.builder()
                .compartmentId(compartmentId)
                .displayName(managementSavedSearchDisplayName)
                .build());
    
        }
    }
    
    variables:
      testManagementSavedSearches:
        fn::invoke:
          function: oci:ManagementDashboard:getManagementSavedSearches
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${managementSavedSearchDisplayName}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_managementdashboard_getmanagementsavedsearches" "testManagementSavedSearches" {
      compartment_id = compartmentId
      display_name   = managementSavedSearchDisplayName
    }
    

    Using getManagementSavedSearches

    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 getManagementSavedSearches(args: GetManagementSavedSearchesArgs, opts?: InvokeOptions): Promise<GetManagementSavedSearchesResult>
    function getManagementSavedSearchesOutput(args: GetManagementSavedSearchesOutputArgs, opts?: InvokeOptions): Output<GetManagementSavedSearchesResult>
    def get_management_saved_searches(compartment_id: Optional[str] = None,
                                      display_name: Optional[str] = None,
                                      filters: Optional[Sequence[GetManagementSavedSearchesFilter]] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetManagementSavedSearchesResult
    def get_management_saved_searches_output(compartment_id: pulumi.Input[Optional[str]] = None,
                                      display_name: pulumi.Input[Optional[str]] = None,
                                      filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetManagementSavedSearchesFilterArgs]]]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetManagementSavedSearchesResult]
    func GetManagementSavedSearches(ctx *Context, args *GetManagementSavedSearchesArgs, opts ...InvokeOption) (*GetManagementSavedSearchesResult, error)
    func GetManagementSavedSearchesOutput(ctx *Context, args *GetManagementSavedSearchesOutputArgs, opts ...InvokeOption) GetManagementSavedSearchesResultOutput

    > Note: This function is named GetManagementSavedSearches in the Go SDK.

    public static class GetManagementSavedSearches 
    {
        public static Task<GetManagementSavedSearchesResult> InvokeAsync(GetManagementSavedSearchesArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementSavedSearchesResult> Invoke(GetManagementSavedSearchesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementSavedSearchesResult> getManagementSavedSearches(GetManagementSavedSearchesArgs args, InvokeOptions options)
    public static Output<GetManagementSavedSearchesResult> getManagementSavedSearches(GetManagementSavedSearchesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:ManagementDashboard/getManagementSavedSearches:getManagementSavedSearches
      arguments:
        # arguments dictionary
    data "oci_managementdashboard_getmanagementsavedsearches" "name" {
        # arguments
    }

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetManagementSavedSearchesFilter>
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetManagementSavedSearchesFilter
    compartment_id string
    The ID of the compartment in which to list resources.
    display_name string
    A filter to return only resources that match the entire display name given.
    filters list(object)
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetManagementSavedSearchesFilter>
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetManagementSavedSearchesFilter[]
    compartment_id str
    The ID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetManagementSavedSearchesFilter]
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>

    getManagementSavedSearches Result

    The following output properties are available:

    CompartmentId string
    OCID of the compartment in which the saved search resides.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagementSavedSearchCollections List<GetManagementSavedSearchesManagementSavedSearchCollection>
    The list of management_saved_search_collection.
    DisplayName string
    Display name of the saved search.
    Filters List<GetManagementSavedSearchesFilter>
    CompartmentId string
    OCID of the compartment in which the saved search resides.
    Id string
    The provider-assigned unique ID for this managed resource.
    ManagementSavedSearchCollections []GetManagementSavedSearchesManagementSavedSearchCollection
    The list of management_saved_search_collection.
    DisplayName string
    Display name of the saved search.
    Filters []GetManagementSavedSearchesFilter
    compartment_id string
    OCID of the compartment in which the saved search resides.
    id string
    The provider-assigned unique ID for this managed resource.
    management_saved_search_collections list(object)
    The list of management_saved_search_collection.
    display_name string
    Display name of the saved search.
    filters list(object)
    compartmentId String
    OCID of the compartment in which the saved search resides.
    id String
    The provider-assigned unique ID for this managed resource.
    managementSavedSearchCollections List<GetManagementSavedSearchesManagementSavedSearchCollection>
    The list of management_saved_search_collection.
    displayName String
    Display name of the saved search.
    filters List<GetManagementSavedSearchesFilter>
    compartmentId string
    OCID of the compartment in which the saved search resides.
    id string
    The provider-assigned unique ID for this managed resource.
    managementSavedSearchCollections GetManagementSavedSearchesManagementSavedSearchCollection[]
    The list of management_saved_search_collection.
    displayName string
    Display name of the saved search.
    filters GetManagementSavedSearchesFilter[]
    compartment_id str
    OCID of the compartment in which the saved search resides.
    id str
    The provider-assigned unique ID for this managed resource.
    management_saved_search_collections Sequence[GetManagementSavedSearchesManagementSavedSearchCollection]
    The list of management_saved_search_collection.
    display_name str
    Display name of the saved search.
    filters Sequence[GetManagementSavedSearchesFilter]
    compartmentId String
    OCID of the compartment in which the saved search resides.
    id String
    The provider-assigned unique ID for this managed resource.
    managementSavedSearchCollections List<Property Map>
    The list of management_saved_search_collection.
    displayName String
    Display name of the saved search.
    filters List<Property Map>

    Supporting Types

    GetManagementSavedSearchesFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name string
    values list(string)
    regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetManagementSavedSearchesManagementSavedSearchCollection

    GetManagementSavedSearchesManagementSavedSearchCollectionItem

    CompartmentId string
    The ID of the compartment in which to list resources.
    CreatedBy string
    The principle id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value.
    DataConfig string
    It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description of the saved search.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DrilldownConfig string
    Drill-down configuration to define the destination of a drill-down action.
    FreeformTags 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
    ID of the saved search.
    IsOobSavedSearch bool
    Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified.
    MetadataVersion string
    The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    Nls string
    JSON that contains internationalization options.
    ParametersConfig string
    Defines parameters for the saved search.
    ProviderId string
    ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    ProviderName string
    Name of the service (for example, Logging Analytics) that owns the saved search.
    ProviderVersion string
    Version of the service that owns this saved search.
    ScreenImage string
    Screen image of the saved search.
    State string
    Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system.
    SystemTags Dictionary<string, string>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Date and time the saved search was created.
    TimeUpdated string
    Date and time the saved search was updated.
    Type string
    Determines how the saved search is displayed in a dashboard.
    UiConfig string
    It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    UpdatedBy string
    The principle id of the user that updated this saved search.
    WidgetTemplate string
    The UI template that the saved search uses to render itself.
    WidgetVm string
    The View Model that the saved search uses to render itself.
    CompartmentId string
    The ID of the compartment in which to list resources.
    CreatedBy string
    The principle id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value.
    DataConfig string
    It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description of the saved search.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DrilldownConfig string
    Drill-down configuration to define the destination of a drill-down action.
    FreeformTags 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
    ID of the saved search.
    IsOobSavedSearch bool
    Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified.
    MetadataVersion string
    The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    Nls string
    JSON that contains internationalization options.
    ParametersConfig string
    Defines parameters for the saved search.
    ProviderId string
    ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    ProviderName string
    Name of the service (for example, Logging Analytics) that owns the saved search.
    ProviderVersion string
    Version of the service that owns this saved search.
    ScreenImage string
    Screen image of the saved search.
    State string
    Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system.
    SystemTags map[string]string
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Date and time the saved search was created.
    TimeUpdated string
    Date and time the saved search was updated.
    Type string
    Determines how the saved search is displayed in a dashboard.
    UiConfig string
    It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    UpdatedBy string
    The principle id of the user that updated this saved search.
    WidgetTemplate string
    The UI template that the saved search uses to render itself.
    WidgetVm string
    The View Model that the saved search uses to render itself.
    compartment_id string
    The ID of the compartment in which to list resources.
    created_by string
    The principle id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value.
    data_config string
    It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.
    defined_tags map(string)
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Description of the saved search.
    display_name string
    A filter to return only resources that match the entire display name given.
    drilldown_config string
    Drill-down configuration to define the destination of a drill-down action.
    freeform_tags 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
    ID of the saved search.
    is_oob_saved_search bool
    Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified.
    metadata_version string
    The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls string
    JSON that contains internationalization options.
    parameters_config string
    Defines parameters for the saved search.
    provider_id string
    ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    provider_name string
    Name of the service (for example, Logging Analytics) that owns the saved search.
    provider_version string
    Version of the service that owns this saved search.
    screen_image string
    Screen image of the saved search.
    state string
    Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system.
    system_tags map(string)
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created string
    Date and time the saved search was created.
    time_updated string
    Date and time the saved search was updated.
    type string
    Determines how the saved search is displayed in a dashboard.
    ui_config string
    It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    updated_by string
    The principle id of the user that updated this saved search.
    widget_template string
    The UI template that the saved search uses to render itself.
    widget_vm string
    The View Model that the saved search uses to render itself.
    compartmentId String
    The ID of the compartment in which to list resources.
    createdBy String
    The principle id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value.
    dataConfig String
    It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description of the saved search.
    displayName String
    A filter to return only resources that match the entire display name given.
    drilldownConfig String
    Drill-down configuration to define the destination of a drill-down action.
    freeformTags 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
    ID of the saved search.
    isOobSavedSearch Boolean
    Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified.
    metadataVersion String
    The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls String
    JSON that contains internationalization options.
    parametersConfig String
    Defines parameters for the saved search.
    providerId String
    ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName String
    Name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion String
    Version of the service that owns this saved search.
    screenImage String
    Screen image of the saved search.
    state String
    Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system.
    systemTags Map<String,String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Date and time the saved search was created.
    timeUpdated String
    Date and time the saved search was updated.
    type String
    Determines how the saved search is displayed in a dashboard.
    uiConfig String
    It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    updatedBy String
    The principle id of the user that updated this saved search.
    widgetTemplate String
    The UI template that the saved search uses to render itself.
    widgetVm String
    The View Model that the saved search uses to render itself.
    compartmentId string
    The ID of the compartment in which to list resources.
    createdBy string
    The principle id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value.
    dataConfig string
    It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Description of the saved search.
    displayName string
    A filter to return only resources that match the entire display name given.
    drilldownConfig string
    Drill-down configuration to define the destination of a drill-down action.
    freeformTags {[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
    ID of the saved search.
    isOobSavedSearch boolean
    Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified.
    metadataVersion string
    The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls string
    JSON that contains internationalization options.
    parametersConfig string
    Defines parameters for the saved search.
    providerId string
    ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName string
    Name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion string
    Version of the service that owns this saved search.
    screenImage string
    Screen image of the saved search.
    state string
    Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system.
    systemTags {[key: string]: string}
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Date and time the saved search was created.
    timeUpdated string
    Date and time the saved search was updated.
    type string
    Determines how the saved search is displayed in a dashboard.
    uiConfig string
    It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    updatedBy string
    The principle id of the user that updated this saved search.
    widgetTemplate string
    The UI template that the saved search uses to render itself.
    widgetVm string
    The View Model that the saved search uses to render itself.
    compartment_id str
    The ID of the compartment in which to list resources.
    created_by str
    The principle id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value.
    data_config str
    It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Description of the saved search.
    display_name str
    A filter to return only resources that match the entire display name given.
    drilldown_config str
    Drill-down configuration to define the destination of a drill-down action.
    freeform_tags 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
    ID of the saved search.
    is_oob_saved_search bool
    Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified.
    metadata_version str
    The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls str
    JSON that contains internationalization options.
    parameters_config str
    Defines parameters for the saved search.
    provider_id str
    ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    provider_name str
    Name of the service (for example, Logging Analytics) that owns the saved search.
    provider_version str
    Version of the service that owns this saved search.
    screen_image str
    Screen image of the saved search.
    state str
    Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system.
    system_tags Mapping[str, str]
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    Date and time the saved search was created.
    time_updated str
    Date and time the saved search was updated.
    type str
    Determines how the saved search is displayed in a dashboard.
    ui_config str
    It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    updated_by str
    The principle id of the user that updated this saved search.
    widget_template str
    The UI template that the saved search uses to render itself.
    widget_vm str
    The View Model that the saved search uses to render itself.
    compartmentId String
    The ID of the compartment in which to list resources.
    createdBy String
    The principle id of the user that created this saved search. This is automatically managed by the system. In Oracle Cloud Infrastructure the value is ignored. In EM it can skipped or otherwise it is ignored in both create and update API and system automatically sets its value.
    dataConfig String
    It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description of the saved search.
    displayName String
    A filter to return only resources that match the entire display name given.
    drilldownConfig String
    Drill-down configuration to define the destination of a drill-down action.
    freeformTags 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
    ID of the saved search.
    isOobSavedSearch Boolean
    Determines whether the saved search is an Out-of-the-Box (OOB) saved search. Note that OOB saved searches are only provided by Oracle and cannot be modified.
    metadataVersion String
    The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls String
    JSON that contains internationalization options.
    parametersConfig String
    Defines parameters for the saved search.
    providerId String
    ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName String
    Name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion String
    Version of the service that owns this saved search.
    screenImage String
    Screen image of the saved search.
    state String
    Oracle Cloud Infrastructure lifecycle status. This is automatically managed by the system.
    systemTags Map<String>
    Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Date and time the saved search was created.
    timeUpdated String
    Date and time the saved search was updated.
    type String
    Determines how the saved search is displayed in a dashboard.
    uiConfig String
    It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    updatedBy String
    The principle id of the user that updated this saved search.
    widgetTemplate String
    The UI template that the saved search uses to render itself.
    widgetVm String
    The View Model that the saved search uses to render itself.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.13.0
    published on Thursday, May 28, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial