published on Thursday, May 28, 2026 by Pulumi
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:
- 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 boolSaved Search - (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
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - 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"} - Management
Dashboard stringManagement Saved Search Id - 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 boolSaved Search - (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
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - 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"} - Management
Dashboard stringManagement Saved Search Id - 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_ boolsaved_ search - (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
- map(string)
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - 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_ stringmanagement_ saved_ search_ id - 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 BooleanSaved Search - (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
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - 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"} - management
Dashboard StringManagement Saved Search Id - 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 booleanSaved Search - (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
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - {[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"} - management
Dashboard stringManagement Saved Search Id - 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_ boolsaved_ search - (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
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - 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_ strmanagement_ saved_ search_ id - 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 BooleanSaved Search - (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
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - 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 StringManagement Saved Search Id - 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:
- 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.
- Dictionary<string, 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.
- 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.
- map[string]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.
- 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.
- 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.
- 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.
- Map<String,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.
- 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.
- {[key: string]: 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.
- 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.
- 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.
- 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.
- 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.
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) -> ManagementSavedSearchfunc 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.
- 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.
- 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.
- 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.
- 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"} - Is
Oob boolSaved Search - (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 stringManagement Saved Search Id - 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.
- Dictionary<string, 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
- 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.
- 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.
- 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.
- 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"} - Is
Oob boolSaved Search - (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 stringManagement Saved Search Id - 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.
- map[string]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
- 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.
- 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.
- 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_ boolsaved_ search - (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_ stringmanagement_ saved_ search_ id - 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.
- 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
- 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.
- 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.
- 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.
- 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"} - is
Oob BooleanSaved Search - (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 StringManagement Saved Search Id - 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.
- Map<String,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
- 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.
- {[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.
- 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.
- {[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"} - is
Oob booleanSaved Search - (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 stringManagement Saved Search Id - 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.
- {[key: string]: 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
- 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.
- 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.
- 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_ boolsaved_ search - (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_ strmanagement_ saved_ search_ id - 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.
- 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
- 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.
- 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.
- 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 BooleanSaved Search - (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 StringManagement Saved Search Id - 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.
- 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
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
ociTerraform Provider.
published on Thursday, May 28, 2026 by Pulumi