1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. ManagementDashboard
  6. ManagementSavedSearch
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 resource provides the Management Saved Search resource in Oracle Cloud Infrastructure Management Dashboard service.

    Creates a new saved search. Here’s an example of how you can use CLI to create a saved search. For information on the details that must be passed to CREATE, you can use the GET API to obtain the Create.json file: oci management-dashboard saved-search get --management-saved-search-id ocid1.managementsavedsearch.oc1..savedsearchId1 --query data > Create.json. You can then modify the Create.json file by removing the id attribute and making other required changes, and use the oci management-dashboard saved-search create command.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testManagementSavedSearch = new oci.managementdashboard.ManagementSavedSearch("test_management_saved_search", {
        compartmentId: compartmentId,
        dataConfig: managementSavedSearchDataConfig,
        description: managementSavedSearchDescription,
        displayName: managementSavedSearchDisplayName,
        isOobSavedSearch: managementSavedSearchIsOobSavedSearch === "true",
        metadataVersion: managementSavedSearchMetadataVersion,
        nls: managementSavedSearchNls,
        providerId: testProvider.id,
        providerName: managementSavedSearchProviderName,
        providerVersion: managementSavedSearchProviderVersion,
        screenImage: managementSavedSearchScreenImage,
        type: managementSavedSearchType,
        uiConfig: managementSavedSearchUiConfig,
        widgetTemplate: managementSavedSearchWidgetTemplate,
        widgetVm: managementSavedSearchWidgetVm,
        drilldownConfig: managementSavedSearchDrilldownConfig,
        parametersConfig: managementSavedSearchParametersConfig,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
        managementDashboardManagementSavedSearchId: managementSavedSearchId,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_management_saved_search = oci.managementdashboard.ManagementSavedSearch("test_management_saved_search",
        compartment_id=compartment_id,
        data_config=management_saved_search_data_config,
        description=management_saved_search_description,
        display_name=management_saved_search_display_name,
        is_oob_saved_search=management_saved_search_is_oob_saved_search == "true",
        metadata_version=management_saved_search_metadata_version,
        nls=management_saved_search_nls,
        provider_id=test_provider["id"],
        provider_name=management_saved_search_provider_name,
        provider_version=management_saved_search_provider_version,
        screen_image=management_saved_search_screen_image,
        type=management_saved_search_type,
        ui_config=management_saved_search_ui_config,
        widget_template=management_saved_search_widget_template,
        widget_vm=management_saved_search_widget_vm,
        drilldown_config=management_saved_search_drilldown_config,
        parameters_config=management_saved_search_parameters_config,
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        },
        management_dashboard_management_saved_search_id=management_saved_search_id)
    
    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.NewManagementSavedSearch(ctx, "test_management_saved_search", &managementdashboard.ManagementSavedSearchArgs{
    			CompartmentId:    pulumi.Any(compartmentId),
    			DataConfig:       pulumi.Any(managementSavedSearchDataConfig),
    			Description:      pulumi.Any(managementSavedSearchDescription),
    			DisplayName:      pulumi.Any(managementSavedSearchDisplayName),
    			IsOobSavedSearch: pulumi.Any(managementSavedSearchIsOobSavedSearch),
    			MetadataVersion:  pulumi.Any(managementSavedSearchMetadataVersion),
    			Nls:              pulumi.Any(managementSavedSearchNls),
    			ProviderId:       pulumi.Any(testProvider.Id),
    			ProviderName:     pulumi.Any(managementSavedSearchProviderName),
    			ProviderVersion:  pulumi.Any(managementSavedSearchProviderVersion),
    			ScreenImage:      pulumi.Any(managementSavedSearchScreenImage),
    			Type:             pulumi.Any(managementSavedSearchType),
    			UiConfig:         pulumi.Any(managementSavedSearchUiConfig),
    			WidgetTemplate:   pulumi.Any(managementSavedSearchWidgetTemplate),
    			WidgetVm:         pulumi.Any(managementSavedSearchWidgetVm),
    			DrilldownConfig:  pulumi.Any(managementSavedSearchDrilldownConfig),
    			ParametersConfig: pulumi.Any(managementSavedSearchParametersConfig),
    			DefinedTags: pulumi.StringMap{
    				"foo-namespace.bar-key": pulumi.String("value"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"bar-key": pulumi.String("value"),
    			},
    			ManagementDashboardManagementSavedSearchId: pulumi.Any(managementSavedSearchId),
    		})
    		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 testManagementSavedSearch = new Oci.ManagementDashboard.ManagementSavedSearch("test_management_saved_search", new()
        {
            CompartmentId = compartmentId,
            DataConfig = managementSavedSearchDataConfig,
            Description = managementSavedSearchDescription,
            DisplayName = managementSavedSearchDisplayName,
            IsOobSavedSearch = managementSavedSearchIsOobSavedSearch,
            MetadataVersion = managementSavedSearchMetadataVersion,
            Nls = managementSavedSearchNls,
            ProviderId = testProvider.Id,
            ProviderName = managementSavedSearchProviderName,
            ProviderVersion = managementSavedSearchProviderVersion,
            ScreenImage = managementSavedSearchScreenImage,
            Type = managementSavedSearchType,
            UiConfig = managementSavedSearchUiConfig,
            WidgetTemplate = managementSavedSearchWidgetTemplate,
            WidgetVm = managementSavedSearchWidgetVm,
            DrilldownConfig = managementSavedSearchDrilldownConfig,
            ParametersConfig = managementSavedSearchParametersConfig,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            ManagementDashboardManagementSavedSearchId = managementSavedSearchId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ManagementDashboard.ManagementSavedSearch;
    import com.pulumi.oci.ManagementDashboard.ManagementSavedSearchArgs;
    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) {
            var testManagementSavedSearch = new ManagementSavedSearch("testManagementSavedSearch", ManagementSavedSearchArgs.builder()
                .compartmentId(compartmentId)
                .dataConfig(managementSavedSearchDataConfig)
                .description(managementSavedSearchDescription)
                .displayName(managementSavedSearchDisplayName)
                .isOobSavedSearch(managementSavedSearchIsOobSavedSearch)
                .metadataVersion(managementSavedSearchMetadataVersion)
                .nls(managementSavedSearchNls)
                .providerId(testProvider.id())
                .providerName(managementSavedSearchProviderName)
                .providerVersion(managementSavedSearchProviderVersion)
                .screenImage(managementSavedSearchScreenImage)
                .type(managementSavedSearchType)
                .uiConfig(managementSavedSearchUiConfig)
                .widgetTemplate(managementSavedSearchWidgetTemplate)
                .widgetVm(managementSavedSearchWidgetVm)
                .drilldownConfig(managementSavedSearchDrilldownConfig)
                .parametersConfig(managementSavedSearchParametersConfig)
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .managementDashboardManagementSavedSearchId(managementSavedSearchId)
                .build());
    
        }
    }
    
    resources:
      testManagementSavedSearch:
        type: oci:ManagementDashboard:ManagementSavedSearch
        name: test_management_saved_search
        properties:
          compartmentId: ${compartmentId}
          dataConfig: ${managementSavedSearchDataConfig}
          description: ${managementSavedSearchDescription}
          displayName: ${managementSavedSearchDisplayName}
          isOobSavedSearch: ${managementSavedSearchIsOobSavedSearch}
          metadataVersion: ${managementSavedSearchMetadataVersion}
          nls: ${managementSavedSearchNls}
          providerId: ${testProvider.id}
          providerName: ${managementSavedSearchProviderName}
          providerVersion: ${managementSavedSearchProviderVersion}
          screenImage: ${managementSavedSearchScreenImage}
          type: ${managementSavedSearchType}
          uiConfig: ${managementSavedSearchUiConfig}
          widgetTemplate: ${managementSavedSearchWidgetTemplate}
          widgetVm: ${managementSavedSearchWidgetVm}
          drilldownConfig: ${managementSavedSearchDrilldownConfig}
          parametersConfig: ${managementSavedSearchParametersConfig}
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
          managementDashboardManagementSavedSearchId: ${managementSavedSearchId}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    resource "oci_managementdashboard_managementsavedsearch" "test_management_saved_search" {
      compartment_id      = compartmentId
      data_config         = managementSavedSearchDataConfig
      description         = managementSavedSearchDescription
      display_name        = managementSavedSearchDisplayName
      is_oob_saved_search = managementSavedSearchIsOobSavedSearch
      metadata_version    = managementSavedSearchMetadataVersion
      nls                 = managementSavedSearchNls
      provider_id         = testProvider.id
      provider_name       = managementSavedSearchProviderName
      provider_version    = managementSavedSearchProviderVersion
      screen_image        = managementSavedSearchScreenImage
      type                = managementSavedSearchType
      ui_config           = managementSavedSearchUiConfig
      widget_template     = managementSavedSearchWidgetTemplate
      widget_vm           = managementSavedSearchWidgetVm
      drilldown_config    = managementSavedSearchDrilldownConfig
      parameters_config   = managementSavedSearchParametersConfig
      defined_tags = {
        "foo-namespace.bar-key" = "value"
      }
      freeform_tags = {
        "bar-key" = "value"
      }
      management_dashboard_management_saved_search_id = managementSavedSearchId
    }
    

    Create ManagementSavedSearch Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ManagementSavedSearch(name: string, args: ManagementSavedSearchArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementSavedSearch(resource_name: str,
                              args: ManagementSavedSearchArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementSavedSearch(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              nls: Optional[str] = None,
                              data_config: Optional[str] = None,
                              widget_vm: Optional[str] = None,
                              description: Optional[str] = None,
                              display_name: Optional[str] = None,
                              drilldown_config: Optional[str] = None,
                              widget_template: Optional[str] = None,
                              is_oob_saved_search: Optional[bool] = None,
                              metadata_version: Optional[str] = None,
                              ui_config: Optional[str] = None,
                              provider_id: Optional[str] = None,
                              parameters_config: Optional[str] = None,
                              compartment_id: Optional[str] = None,
                              provider_name: Optional[str] = None,
                              provider_version: Optional[str] = None,
                              screen_image: Optional[str] = None,
                              type: Optional[str] = None,
                              management_dashboard_management_saved_search_id: Optional[str] = None,
                              freeform_tags: Optional[Mapping[str, str]] = None,
                              defined_tags: Optional[Mapping[str, str]] = None)
    func NewManagementSavedSearch(ctx *Context, name string, args ManagementSavedSearchArgs, opts ...ResourceOption) (*ManagementSavedSearch, error)
    public ManagementSavedSearch(string name, ManagementSavedSearchArgs args, CustomResourceOptions? opts = null)
    public ManagementSavedSearch(String name, ManagementSavedSearchArgs args)
    public ManagementSavedSearch(String name, ManagementSavedSearchArgs args, CustomResourceOptions options)
    
    type: oci:ManagementDashboard:ManagementSavedSearch
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "oci_managementdashboard_managementsavedsearch" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ManagementSavedSearchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ManagementSavedSearchArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ManagementSavedSearchArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementSavedSearchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementSavedSearchArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var managementSavedSearchResource = new Oci.ManagementDashboard.ManagementSavedSearch("managementSavedSearchResource", new()
    {
        Nls = "string",
        DataConfig = "string",
        WidgetVm = "string",
        Description = "string",
        DisplayName = "string",
        DrilldownConfig = "string",
        WidgetTemplate = "string",
        IsOobSavedSearch = false,
        MetadataVersion = "string",
        UiConfig = "string",
        ProviderId = "string",
        ParametersConfig = "string",
        CompartmentId = "string",
        ProviderName = "string",
        ProviderVersion = "string",
        ScreenImage = "string",
        Type = "string",
        ManagementDashboardManagementSavedSearchId = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        DefinedTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := managementdashboard.NewManagementSavedSearch(ctx, "managementSavedSearchResource", &managementdashboard.ManagementSavedSearchArgs{
    	Nls:              pulumi.String("string"),
    	DataConfig:       pulumi.String("string"),
    	WidgetVm:         pulumi.String("string"),
    	Description:      pulumi.String("string"),
    	DisplayName:      pulumi.String("string"),
    	DrilldownConfig:  pulumi.String("string"),
    	WidgetTemplate:   pulumi.String("string"),
    	IsOobSavedSearch: pulumi.Bool(false),
    	MetadataVersion:  pulumi.String("string"),
    	UiConfig:         pulumi.String("string"),
    	ProviderId:       pulumi.String("string"),
    	ParametersConfig: pulumi.String("string"),
    	CompartmentId:    pulumi.String("string"),
    	ProviderName:     pulumi.String("string"),
    	ProviderVersion:  pulumi.String("string"),
    	ScreenImage:      pulumi.String("string"),
    	Type:             pulumi.String("string"),
    	ManagementDashboardManagementSavedSearchId: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "oci_managementdashboard_managementsavedsearch" "managementSavedSearchResource" {
      nls                                             = "string"
      data_config                                     = "string"
      widget_vm                                       = "string"
      description                                     = "string"
      display_name                                    = "string"
      drilldown_config                                = "string"
      widget_template                                 = "string"
      is_oob_saved_search                             = false
      metadata_version                                = "string"
      ui_config                                       = "string"
      provider_id                                     = "string"
      parameters_config                               = "string"
      compartment_id                                  = "string"
      provider_name                                   = "string"
      provider_version                                = "string"
      screen_image                                    = "string"
      type                                            = "string"
      management_dashboard_management_saved_search_id = "string"
      freeform_tags = {
        "string" = "string"
      }
      defined_tags = {
        "string" = "string"
      }
    }
    
    var managementSavedSearchResource = new ManagementSavedSearch("managementSavedSearchResource", ManagementSavedSearchArgs.builder()
        .nls("string")
        .dataConfig("string")
        .widgetVm("string")
        .description("string")
        .displayName("string")
        .drilldownConfig("string")
        .widgetTemplate("string")
        .isOobSavedSearch(false)
        .metadataVersion("string")
        .uiConfig("string")
        .providerId("string")
        .parametersConfig("string")
        .compartmentId("string")
        .providerName("string")
        .providerVersion("string")
        .screenImage("string")
        .type("string")
        .managementDashboardManagementSavedSearchId("string")
        .freeformTags(Map.of("string", "string"))
        .definedTags(Map.of("string", "string"))
        .build());
    
    management_saved_search_resource = oci.managementdashboard.ManagementSavedSearch("managementSavedSearchResource",
        nls="string",
        data_config="string",
        widget_vm="string",
        description="string",
        display_name="string",
        drilldown_config="string",
        widget_template="string",
        is_oob_saved_search=False,
        metadata_version="string",
        ui_config="string",
        provider_id="string",
        parameters_config="string",
        compartment_id="string",
        provider_name="string",
        provider_version="string",
        screen_image="string",
        type="string",
        management_dashboard_management_saved_search_id="string",
        freeform_tags={
            "string": "string",
        },
        defined_tags={
            "string": "string",
        })
    
    const managementSavedSearchResource = new oci.managementdashboard.ManagementSavedSearch("managementSavedSearchResource", {
        nls: "string",
        dataConfig: "string",
        widgetVm: "string",
        description: "string",
        displayName: "string",
        drilldownConfig: "string",
        widgetTemplate: "string",
        isOobSavedSearch: false,
        metadataVersion: "string",
        uiConfig: "string",
        providerId: "string",
        parametersConfig: "string",
        compartmentId: "string",
        providerName: "string",
        providerVersion: "string",
        screenImage: "string",
        type: "string",
        managementDashboardManagementSavedSearchId: "string",
        freeformTags: {
            string: "string",
        },
        definedTags: {
            string: "string",
        },
    });
    
    type: oci:ManagementDashboard:ManagementSavedSearch
    properties:
        compartmentId: string
        dataConfig: string
        definedTags:
            string: string
        description: string
        displayName: string
        drilldownConfig: string
        freeformTags:
            string: string
        isOobSavedSearch: false
        managementDashboardManagementSavedSearchId: string
        metadataVersion: string
        nls: string
        parametersConfig: string
        providerId: string
        providerName: string
        providerVersion: string
        screenImage: string
        type: string
        uiConfig: string
        widgetTemplate: string
        widgetVm: string
    

    ManagementSavedSearch Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ManagementSavedSearch resource accepts the following input properties:

    CompartmentId string
    (Updatable) OCID of the compartment in which the saved search resides.
    DataConfig string
    (Updatable) 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.
    Description string
    (Updatable) Description of the saved search.
    DisplayName string
    (Updatable) Display name of the saved search.
    DrilldownConfig string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    IsOobSavedSearch bool
    (Updatable) 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
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    Nls string
    (Updatable) JSON that contains internationalization options.
    ParametersConfig string
    (Updatable) Defines parameters for the saved search.
    ProviderId string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    ProviderName string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    ProviderVersion string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    ScreenImage string
    (Updatable) Screen image of the saved search.
    Type string
    (Updatable) Determines how the saved search is displayed in a dashboard.
    UiConfig string
    (Updatable) It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    WidgetTemplate string
    (Updatable) The UI template that the saved search uses to render itself.
    WidgetVm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, string>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ManagementDashboardManagementSavedSearchId string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    CompartmentId string
    (Updatable) OCID of the compartment in which the saved search resides.
    DataConfig string
    (Updatable) 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.
    Description string
    (Updatable) Description of the saved search.
    DisplayName string
    (Updatable) Display name of the saved search.
    DrilldownConfig string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    IsOobSavedSearch bool
    (Updatable) 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
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    Nls string
    (Updatable) JSON that contains internationalization options.
    ParametersConfig string
    (Updatable) Defines parameters for the saved search.
    ProviderId string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    ProviderName string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    ProviderVersion string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    ScreenImage string
    (Updatable) Screen image of the saved search.
    Type string
    (Updatable) Determines how the saved search is displayed in a dashboard.
    UiConfig string
    (Updatable) It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    WidgetTemplate string
    (Updatable) The UI template that the saved search uses to render itself.
    WidgetVm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]string
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ManagementDashboardManagementSavedSearchId string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    compartment_id string
    (Updatable) OCID of the compartment in which the saved search resides.
    data_config string
    (Updatable) 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.
    description string
    (Updatable) Description of the saved search.
    display_name string
    (Updatable) Display name of the saved search.
    drilldown_config string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    is_oob_saved_search bool
    (Updatable) 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
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls string
    (Updatable) JSON that contains internationalization options.
    parameters_config string
    (Updatable) Defines parameters for the saved search.
    provider_id string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    provider_name string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    provider_version string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screen_image string
    (Updatable) Screen image of the saved search.
    type string
    (Updatable) Determines how the saved search is displayed in a dashboard.
    ui_config string
    (Updatable) It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    widget_template string
    (Updatable) The UI template that the saved search uses to render itself.
    widget_vm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    defined_tags map(string)
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags map(string)
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    management_dashboard_management_saved_search_id string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    compartmentId String
    (Updatable) OCID of the compartment in which the saved search resides.
    dataConfig String
    (Updatable) 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.
    description String
    (Updatable) Description of the saved search.
    displayName String
    (Updatable) Display name of the saved search.
    drilldownConfig String
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    isOobSavedSearch Boolean
    (Updatable) 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
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls String
    (Updatable) JSON that contains internationalization options.
    parametersConfig String
    (Updatable) Defines parameters for the saved search.
    providerId String
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName String
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion String
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screenImage String
    (Updatable) Screen image of the saved search.
    type String
    (Updatable) Determines how the saved search is displayed in a dashboard.
    uiConfig String
    (Updatable) It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    widgetTemplate String
    (Updatable) The UI template that the saved search uses to render itself.
    widgetVm String

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    managementDashboardManagementSavedSearchId String
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    compartmentId string
    (Updatable) OCID of the compartment in which the saved search resides.
    dataConfig string
    (Updatable) 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.
    description string
    (Updatable) Description of the saved search.
    displayName string
    (Updatable) Display name of the saved search.
    drilldownConfig string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    isOobSavedSearch boolean
    (Updatable) 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
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls string
    (Updatable) JSON that contains internationalization options.
    parametersConfig string
    (Updatable) Defines parameters for the saved search.
    providerId string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screenImage string
    (Updatable) Screen image of the saved search.
    type string
    (Updatable) Determines how the saved search is displayed in a dashboard.
    uiConfig string
    (Updatable) It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    widgetTemplate string
    (Updatable) The UI template that the saved search uses to render itself.
    widgetVm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: string}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    managementDashboardManagementSavedSearchId string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    compartment_id str
    (Updatable) OCID of the compartment in which the saved search resides.
    data_config str
    (Updatable) 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.
    description str
    (Updatable) Description of the saved search.
    display_name str
    (Updatable) Display name of the saved search.
    drilldown_config str
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    is_oob_saved_search bool
    (Updatable) 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
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls str
    (Updatable) JSON that contains internationalization options.
    parameters_config str
    (Updatable) Defines parameters for the saved search.
    provider_id str
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    provider_name str
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    provider_version str
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screen_image str
    (Updatable) Screen image of the saved search.
    type str
    (Updatable) Determines how the saved search is displayed in a dashboard.
    ui_config str
    (Updatable) It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    widget_template str
    (Updatable) The UI template that the saved search uses to render itself.
    widget_vm str

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, str]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    management_dashboard_management_saved_search_id str
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    compartmentId String
    (Updatable) OCID of the compartment in which the saved search resides.
    dataConfig String
    (Updatable) 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.
    description String
    (Updatable) Description of the saved search.
    displayName String
    (Updatable) Display name of the saved search.
    drilldownConfig String
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    isOobSavedSearch Boolean
    (Updatable) 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
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls String
    (Updatable) JSON that contains internationalization options.
    parametersConfig String
    (Updatable) Defines parameters for the saved search.
    providerId String
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName String
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion String
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screenImage String
    (Updatable) Screen image of the saved search.
    type String
    (Updatable) Determines how the saved search is displayed in a dashboard.
    uiConfig String
    (Updatable) It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.
    widgetTemplate String
    (Updatable) The UI template that the saved search uses to render itself.
    widgetVm String

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    managementDashboardManagementSavedSearchId String
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementSavedSearch resource produces the following output properties:

    CreatedBy string
    The principal 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.
    Id string
    The provider-assigned unique ID for this managed resource.
    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.
    UpdatedBy string
    The principle id of the user that updated this saved search.
    CreatedBy string
    The principal 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.
    Id string
    The provider-assigned unique ID for this managed resource.
    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.
    UpdatedBy string
    The principle id of the user that updated this saved search.
    created_by string
    The principal 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.
    id string
    The provider-assigned unique ID for this managed resource.
    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.
    updated_by string
    The principle id of the user that updated this saved search.
    createdBy String
    The principal 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.
    id String
    The provider-assigned unique ID for this managed resource.
    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.
    updatedBy String
    The principle id of the user that updated this saved search.
    createdBy string
    The principal 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.
    id string
    The provider-assigned unique ID for this managed resource.
    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.
    updatedBy string
    The principle id of the user that updated this saved search.
    created_by str
    The principal 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.
    id str
    The provider-assigned unique ID for this managed resource.
    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.
    updated_by str
    The principle id of the user that updated this saved search.
    createdBy String
    The principal 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.
    id String
    The provider-assigned unique ID for this managed resource.
    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.
    updatedBy String
    The principle id of the user that updated this saved search.

    Look up Existing ManagementSavedSearch Resource

    Get an existing ManagementSavedSearch resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ManagementSavedSearchState, opts?: CustomResourceOptions): ManagementSavedSearch
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            created_by: Optional[str] = None,
            data_config: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            drilldown_config: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            is_oob_saved_search: Optional[bool] = None,
            management_dashboard_management_saved_search_id: Optional[str] = None,
            metadata_version: Optional[str] = None,
            nls: Optional[str] = None,
            parameters_config: Optional[str] = None,
            provider_id: Optional[str] = None,
            provider_name: Optional[str] = None,
            provider_version: Optional[str] = None,
            screen_image: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            type: Optional[str] = None,
            ui_config: Optional[str] = None,
            updated_by: Optional[str] = None,
            widget_template: Optional[str] = None,
            widget_vm: Optional[str] = None) -> ManagementSavedSearch
    func GetManagementSavedSearch(ctx *Context, name string, id IDInput, state *ManagementSavedSearchState, opts ...ResourceOption) (*ManagementSavedSearch, error)
    public static ManagementSavedSearch Get(string name, Input<string> id, ManagementSavedSearchState? state, CustomResourceOptions? opts = null)
    public static ManagementSavedSearch get(String name, Output<String> id, ManagementSavedSearchState state, CustomResourceOptions options)
    resources:  _:    type: oci:ManagementDashboard:ManagementSavedSearch    get:      id: ${id}
    import {
      to = oci_managementdashboard_managementsavedsearch.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) OCID of the compartment in which the saved search resides.
    CreatedBy string
    The principal 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
    (Updatable) 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>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Description of the saved search.
    DisplayName string
    (Updatable) Display name of the saved search.
    DrilldownConfig string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    FreeformTags Dictionary<string, string>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsOobSavedSearch bool
    (Updatable) 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.
    ManagementDashboardManagementSavedSearchId string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    MetadataVersion string
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    Nls string
    (Updatable) JSON that contains internationalization options.
    ParametersConfig string
    (Updatable) Defines parameters for the saved search.
    ProviderId string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    ProviderName string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    ProviderVersion string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    ScreenImage string
    (Updatable) 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
    (Updatable) Determines how the saved search is displayed in a dashboard.
    UiConfig string
    (Updatable) 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
    (Updatable) The UI template that the saved search uses to render itself.
    WidgetVm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    (Updatable) OCID of the compartment in which the saved search resides.
    CreatedBy string
    The principal 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
    (Updatable) 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
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    (Updatable) Description of the saved search.
    DisplayName string
    (Updatable) Display name of the saved search.
    DrilldownConfig string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    FreeformTags map[string]string
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IsOobSavedSearch bool
    (Updatable) 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.
    ManagementDashboardManagementSavedSearchId string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    MetadataVersion string
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    Nls string
    (Updatable) JSON that contains internationalization options.
    ParametersConfig string
    (Updatable) Defines parameters for the saved search.
    ProviderId string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    ProviderName string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    ProviderVersion string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    ScreenImage string
    (Updatable) 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
    (Updatable) Determines how the saved search is displayed in a dashboard.
    UiConfig string
    (Updatable) 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
    (Updatable) The UI template that the saved search uses to render itself.
    WidgetVm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id string
    (Updatable) OCID of the compartment in which the saved search resides.
    created_by string
    The principal 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
    (Updatable) 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)
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    (Updatable) Description of the saved search.
    display_name string
    (Updatable) Display name of the saved search.
    drilldown_config string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    freeform_tags map(string)
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    is_oob_saved_search bool
    (Updatable) 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.
    management_dashboard_management_saved_search_id string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    metadata_version string
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls string
    (Updatable) JSON that contains internationalization options.
    parameters_config string
    (Updatable) Defines parameters for the saved search.
    provider_id string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    provider_name string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    provider_version string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screen_image string
    (Updatable) 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
    (Updatable) Determines how the saved search is displayed in a dashboard.
    ui_config string
    (Updatable) 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
    (Updatable) The UI template that the saved search uses to render itself.
    widget_vm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) OCID of the compartment in which the saved search resides.
    createdBy String
    The principal 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
    (Updatable) 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>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Description of the saved search.
    displayName String
    (Updatable) Display name of the saved search.
    drilldownConfig String
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    freeformTags Map<String,String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isOobSavedSearch Boolean
    (Updatable) 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.
    managementDashboardManagementSavedSearchId String
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    metadataVersion String
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls String
    (Updatable) JSON that contains internationalization options.
    parametersConfig String
    (Updatable) Defines parameters for the saved search.
    providerId String
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName String
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion String
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screenImage String
    (Updatable) 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
    (Updatable) Determines how the saved search is displayed in a dashboard.
    uiConfig String
    (Updatable) 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
    (Updatable) The UI template that the saved search uses to render itself.
    widgetVm String

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId string
    (Updatable) OCID of the compartment in which the saved search resides.
    createdBy string
    The principal 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
    (Updatable) 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}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    (Updatable) Description of the saved search.
    displayName string
    (Updatable) Display name of the saved search.
    drilldownConfig string
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    freeformTags {[key: string]: string}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isOobSavedSearch boolean
    (Updatable) 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.
    managementDashboardManagementSavedSearchId string
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    metadataVersion string
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls string
    (Updatable) JSON that contains internationalization options.
    parametersConfig string
    (Updatable) Defines parameters for the saved search.
    providerId string
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName string
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion string
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screenImage string
    (Updatable) 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
    (Updatable) Determines how the saved search is displayed in a dashboard.
    uiConfig string
    (Updatable) 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
    (Updatable) The UI template that the saved search uses to render itself.
    widgetVm string

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id str
    (Updatable) OCID of the compartment in which the saved search resides.
    created_by str
    The principal 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
    (Updatable) 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]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    (Updatable) Description of the saved search.
    display_name str
    (Updatable) Display name of the saved search.
    drilldown_config str
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    freeform_tags Mapping[str, str]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    is_oob_saved_search bool
    (Updatable) 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.
    management_dashboard_management_saved_search_id str
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    metadata_version str
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls str
    (Updatable) JSON that contains internationalization options.
    parameters_config str
    (Updatable) Defines parameters for the saved search.
    provider_id str
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    provider_name str
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    provider_version str
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screen_image str
    (Updatable) 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
    (Updatable) Determines how the saved search is displayed in a dashboard.
    ui_config str
    (Updatable) 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
    (Updatable) The UI template that the saved search uses to render itself.
    widget_vm str

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) OCID of the compartment in which the saved search resides.
    createdBy String
    The principal 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
    (Updatable) 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>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    (Updatable) Description of the saved search.
    displayName String
    (Updatable) Display name of the saved search.
    drilldownConfig String
    (Updatable) Drill-down configuration to define the destination of a drill-down action.
    freeformTags Map<String>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    isOobSavedSearch Boolean
    (Updatable) 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.
    managementDashboardManagementSavedSearchId String
    ID of the saved search, which must only be provided for Out-of-the-Box (OOB) saved search.
    metadataVersion String
    (Updatable) The version of the metadata defined in the API. This is maintained and enforced by dashboard server. Currently it is 2.0.
    nls String
    (Updatable) JSON that contains internationalization options.
    parametersConfig String
    (Updatable) Defines parameters for the saved search.
    providerId String
    (Updatable) ID of the service (for example log-analytics) that owns the saved search. Each service has a unique ID.
    providerName String
    (Updatable) The user friendly name of the service (for example, Logging Analytics) that owns the saved search.
    providerVersion String
    (Updatable) The version of the metadata of the provider. This is useful for provider to version its features and metadata. Any newly created saved search (or dashboard) should use providerVersion 3.0.0.
    screenImage String
    (Updatable) 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
    (Updatable) Determines how the saved search is displayed in a dashboard.
    uiConfig String
    (Updatable) 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
    (Updatable) The UI template that the saved search uses to render itself.
    widgetVm String

    (Updatable) The View Model that the saved search uses to render itself.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Import

    ManagementSavedSearches can be imported using the id, e.g.

    $ pulumi import oci:ManagementDashboard/managementSavedSearch:ManagementSavedSearch test_management_saved_search "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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