oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsAdvisorExecutions
Explore with Pulumi AI
This data source provides the list of Managed Database Optimizer Statistics Advisor Executions in Oracle Cloud Infrastructure Database Management service.
Lists the details of the Optimizer Statistics Advisor task executions, such as their duration, and the number of findings, if any. Optionally, you can specify a date-time range (of seven days) to obtain the list of executions that fall within the specified time range. If the date-time range is not specified, then the executions in the last seven days are listed.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabaseOptimizerStatisticsAdvisorExecutions = oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsAdvisorExecutions({
    managedDatabaseId: testManagedDatabase.id,
    endTimeLessThanOrEqualTo: managedDatabaseOptimizerStatisticsAdvisorExecutionEndTimeLessThanOrEqualTo,
    startTimeGreaterThanOrEqualTo: managedDatabaseOptimizerStatisticsAdvisorExecutionStartTimeGreaterThanOrEqualTo,
});
import pulumi
import pulumi_oci as oci
test_managed_database_optimizer_statistics_advisor_executions = oci.DatabaseManagement.get_managed_database_optimizer_statistics_advisor_executions(managed_database_id=test_managed_database["id"],
    end_time_less_than_or_equal_to=managed_database_optimizer_statistics_advisor_execution_end_time_less_than_or_equal_to,
    start_time_greater_than_or_equal_to=managed_database_optimizer_statistics_advisor_execution_start_time_greater_than_or_equal_to)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/databasemanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutions(ctx, &databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs{
			ManagedDatabaseId:             testManagedDatabase.Id,
			EndTimeLessThanOrEqualTo:      pulumi.StringRef(managedDatabaseOptimizerStatisticsAdvisorExecutionEndTimeLessThanOrEqualTo),
			StartTimeGreaterThanOrEqualTo: pulumi.StringRef(managedDatabaseOptimizerStatisticsAdvisorExecutionStartTimeGreaterThanOrEqualTo),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testManagedDatabaseOptimizerStatisticsAdvisorExecutions = Oci.DatabaseManagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutions.Invoke(new()
    {
        ManagedDatabaseId = testManagedDatabase.Id,
        EndTimeLessThanOrEqualTo = managedDatabaseOptimizerStatisticsAdvisorExecutionEndTimeLessThanOrEqualTo,
        StartTimeGreaterThanOrEqualTo = managedDatabaseOptimizerStatisticsAdvisorExecutionStartTimeGreaterThanOrEqualTo,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
import com.pulumi.oci.DatabaseManagement.inputs.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testManagedDatabaseOptimizerStatisticsAdvisorExecutions = DatabaseManagementFunctions.getManagedDatabaseOptimizerStatisticsAdvisorExecutions(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs.builder()
            .managedDatabaseId(testManagedDatabase.id())
            .endTimeLessThanOrEqualTo(managedDatabaseOptimizerStatisticsAdvisorExecutionEndTimeLessThanOrEqualTo)
            .startTimeGreaterThanOrEqualTo(managedDatabaseOptimizerStatisticsAdvisorExecutionStartTimeGreaterThanOrEqualTo)
            .build());
    }
}
variables:
  testManagedDatabaseOptimizerStatisticsAdvisorExecutions:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseOptimizerStatisticsAdvisorExecutions
      arguments:
        managedDatabaseId: ${testManagedDatabase.id}
        endTimeLessThanOrEqualTo: ${managedDatabaseOptimizerStatisticsAdvisorExecutionEndTimeLessThanOrEqualTo}
        startTimeGreaterThanOrEqualTo: ${managedDatabaseOptimizerStatisticsAdvisorExecutionStartTimeGreaterThanOrEqualTo}
Using getManagedDatabaseOptimizerStatisticsAdvisorExecutions
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getManagedDatabaseOptimizerStatisticsAdvisorExecutions(args: GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult>
function getManagedDatabaseOptimizerStatisticsAdvisorExecutionsOutput(args: GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult>def get_managed_database_optimizer_statistics_advisor_executions(end_time_less_than_or_equal_to: Optional[str] = None,
                                                                 filters: Optional[Sequence[GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsFilter]] = None,
                                                                 managed_database_id: Optional[str] = None,
                                                                 start_time_greater_than_or_equal_to: Optional[str] = None,
                                                                 opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult
def get_managed_database_optimizer_statistics_advisor_executions_output(end_time_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsFilterArgs]]]] = None,
                                                                 managed_database_id: Optional[pulumi.Input[str]] = None,
                                                                 start_time_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                                                 opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult]func GetManagedDatabaseOptimizerStatisticsAdvisorExecutions(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs, opts ...InvokeOption) (*GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult, error)
func GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOutput(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOutputArgs, opts ...InvokeOption) GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResultOutput> Note: This function is named GetManagedDatabaseOptimizerStatisticsAdvisorExecutions in the Go SDK.
public static class GetManagedDatabaseOptimizerStatisticsAdvisorExecutions 
{
    public static Task<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult> InvokeAsync(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult> Invoke(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult> getManagedDatabaseOptimizerStatisticsAdvisorExecutions(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsResult> getManagedDatabaseOptimizerStatisticsAdvisorExecutions(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseOptimizerStatisticsAdvisorExecutions:getManagedDatabaseOptimizerStatisticsAdvisorExecutions
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- EndTime stringLess Than Or Equal To 
- The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- Filters
List<GetManaged Database Optimizer Statistics Advisor Executions Filter> 
- StartTime stringGreater Than Or Equal To 
- The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- EndTime stringLess Than Or Equal To 
- The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- Filters
[]GetManaged Database Optimizer Statistics Advisor Executions Filter 
- StartTime stringGreater Than Or Equal To 
- The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- managedDatabase StringId 
- The OCID of the Managed Database.
- endTime StringLess Than Or Equal To 
- The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters
List<GetManaged Database Optimizer Statistics Advisor Executions Filter> 
- startTime StringGreater Than Or Equal To 
- The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- managedDatabase stringId 
- The OCID of the Managed Database.
- endTime stringLess Than Or Equal To 
- The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters
GetManaged Database Optimizer Statistics Advisor Executions Filter[] 
- startTime stringGreater Than Or Equal To 
- The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- managed_database_ strid 
- The OCID of the Managed Database.
- end_time_ strless_ than_ or_ equal_ to 
- The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Filter] 
- start_time_ strgreater_ than_ or_ equal_ to 
- The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- managedDatabase StringId 
- The OCID of the Managed Database.
- endTime StringLess Than Or Equal To 
- The end time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- filters List<Property Map>
- startTime StringGreater Than Or Equal To 
- The start time of the time range to retrieve the optimizer statistics of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
getManagedDatabaseOptimizerStatisticsAdvisorExecutions Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- OptimizerStatistics List<GetAdvisor Executions Collections Managed Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection> 
- The list of optimizer_statistics_advisor_executions_collection.
- EndTime stringLess Than Or Equal To 
- Filters
List<GetManaged Database Optimizer Statistics Advisor Executions Filter> 
- StartTime stringGreater Than Or Equal To 
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- OptimizerStatistics []GetAdvisor Executions Collections Managed Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection 
- The list of optimizer_statistics_advisor_executions_collection.
- EndTime stringLess Than Or Equal To 
- Filters
[]GetManaged Database Optimizer Statistics Advisor Executions Filter 
- StartTime stringGreater Than Or Equal To 
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- optimizerStatistics List<GetAdvisor Executions Collections Managed Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection> 
- The list of optimizer_statistics_advisor_executions_collection.
- endTime StringLess Than Or Equal To 
- filters
List<GetManaged Database Optimizer Statistics Advisor Executions Filter> 
- startTime StringGreater Than Or Equal To 
- id string
- The provider-assigned unique ID for this managed resource.
- managedDatabase stringId 
- optimizerStatistics GetAdvisor Executions Collections Managed Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection[] 
- The list of optimizer_statistics_advisor_executions_collection.
- endTime stringLess Than Or Equal To 
- filters
GetManaged Database Optimizer Statistics Advisor Executions Filter[] 
- startTime stringGreater Than Or Equal To 
- id str
- The provider-assigned unique ID for this managed resource.
- managed_database_ strid 
- optimizer_statistics_ Sequence[Getadvisor_ executions_ collections Managed Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection] 
- The list of optimizer_statistics_advisor_executions_collection.
- end_time_ strless_ than_ or_ equal_ to 
- filters
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Filter] 
- start_time_ strgreater_ than_ or_ equal_ to 
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- optimizerStatistics List<Property Map>Advisor Executions Collections 
- The list of optimizer_statistics_advisor_executions_collection.
- endTime StringLess Than Or Equal To 
- filters List<Property Map>
- startTime StringGreater Than Or Equal To 
Supporting Types
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsFilter       
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollection           
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItem            
- Databases
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Database> 
- The summary of the Managed Database resource.
- ErrorMessage string
- The errors in the Optimizer Statistics Advisor execution, if any.
- ExecutionName string
- The name of the Optimizer Statistics Advisor execution.
- Findings int
- The list of findings for the rule.
- Reports
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report> 
- A report that includes the rules, findings, recommendations, and actions discovered during the execution of the Optimizer Statistics Advisor.
- Status string
- The status of the Optimizer Statistics Advisor execution.
- StatusMessage string
- The Optimizer Statistics Advisor execution status message, if any.
- TaskName string
- The name of the Optimizer Statistics Advisor task.
- TimeEnd string
- The end time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- TimeStart string
- The start time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- Databases
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Database 
- The summary of the Managed Database resource.
- ErrorMessage string
- The errors in the Optimizer Statistics Advisor execution, if any.
- ExecutionName string
- The name of the Optimizer Statistics Advisor execution.
- Findings int
- The list of findings for the rule.
- Reports
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report 
- A report that includes the rules, findings, recommendations, and actions discovered during the execution of the Optimizer Statistics Advisor.
- Status string
- The status of the Optimizer Statistics Advisor execution.
- StatusMessage string
- The Optimizer Statistics Advisor execution status message, if any.
- TaskName string
- The name of the Optimizer Statistics Advisor task.
- TimeEnd string
- The end time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- TimeStart string
- The start time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- databases
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Database> 
- The summary of the Managed Database resource.
- errorMessage String
- The errors in the Optimizer Statistics Advisor execution, if any.
- executionName String
- The name of the Optimizer Statistics Advisor execution.
- findings Integer
- The list of findings for the rule.
- reports
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report> 
- A report that includes the rules, findings, recommendations, and actions discovered during the execution of the Optimizer Statistics Advisor.
- status String
- The status of the Optimizer Statistics Advisor execution.
- statusMessage String
- The Optimizer Statistics Advisor execution status message, if any.
- taskName String
- The name of the Optimizer Statistics Advisor task.
- timeEnd String
- The end time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- timeStart String
- The start time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- databases
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Database[] 
- The summary of the Managed Database resource.
- errorMessage string
- The errors in the Optimizer Statistics Advisor execution, if any.
- executionName string
- The name of the Optimizer Statistics Advisor execution.
- findings number
- The list of findings for the rule.
- reports
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report[] 
- A report that includes the rules, findings, recommendations, and actions discovered during the execution of the Optimizer Statistics Advisor.
- status string
- The status of the Optimizer Statistics Advisor execution.
- statusMessage string
- The Optimizer Statistics Advisor execution status message, if any.
- taskName string
- The name of the Optimizer Statistics Advisor task.
- timeEnd string
- The end time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- timeStart string
- The start time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- databases
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Database] 
- The summary of the Managed Database resource.
- error_message str
- The errors in the Optimizer Statistics Advisor execution, if any.
- execution_name str
- The name of the Optimizer Statistics Advisor execution.
- findings int
- The list of findings for the rule.
- reports
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report] 
- A report that includes the rules, findings, recommendations, and actions discovered during the execution of the Optimizer Statistics Advisor.
- status str
- The status of the Optimizer Statistics Advisor execution.
- status_message str
- The Optimizer Statistics Advisor execution status message, if any.
- task_name str
- The name of the Optimizer Statistics Advisor task.
- time_end str
- The end time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- time_start str
- The start time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- databases List<Property Map>
- The summary of the Managed Database resource.
- errorMessage String
- The errors in the Optimizer Statistics Advisor execution, if any.
- executionName String
- The name of the Optimizer Statistics Advisor execution.
- findings Number
- The list of findings for the rule.
- reports List<Property Map>
- A report that includes the rules, findings, recommendations, and actions discovered during the execution of the Optimizer Statistics Advisor.
- status String
- The status of the Optimizer Statistics Advisor execution.
- statusMessage String
- The Optimizer Statistics Advisor execution status message, if any.
- taskName String
- The name of the Optimizer Statistics Advisor task.
- timeEnd String
- The end time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
- timeStart String
- The start time of the time range to retrieve the Optimizer Statistics Advisor execution of a Managed Database in UTC in ISO-8601 format, which is "yyyy-MM-dd'T'hh:mm:ss.sss'Z'".
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemDatabase             
- CompartmentId string
- The OCID of the compartment in which the Managed Database resides.
- DbDeployment stringType 
- The infrastructure used to deploy the Oracle Database.
- DbSub stringType 
- The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- DbType string
- The type of Oracle Database installation.
- DbVersion string
- The version of the Oracle Database.
- Id string
- The OCID of the Managed Database.
- Name string
- The name of the rule.
- CompartmentId string
- The OCID of the compartment in which the Managed Database resides.
- DbDeployment stringType 
- The infrastructure used to deploy the Oracle Database.
- DbSub stringType 
- The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- DbType string
- The type of Oracle Database installation.
- DbVersion string
- The version of the Oracle Database.
- Id string
- The OCID of the Managed Database.
- Name string
- The name of the rule.
- compartmentId String
- The OCID of the compartment in which the Managed Database resides.
- dbDeployment StringType 
- The infrastructure used to deploy the Oracle Database.
- dbSub StringType 
- The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- dbType String
- The type of Oracle Database installation.
- dbVersion String
- The version of the Oracle Database.
- id String
- The OCID of the Managed Database.
- name String
- The name of the rule.
- compartmentId string
- The OCID of the compartment in which the Managed Database resides.
- dbDeployment stringType 
- The infrastructure used to deploy the Oracle Database.
- dbSub stringType 
- The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- dbType string
- The type of Oracle Database installation.
- dbVersion string
- The version of the Oracle Database.
- id string
- The OCID of the Managed Database.
- name string
- The name of the rule.
- compartment_id str
- The OCID of the compartment in which the Managed Database resides.
- db_deployment_ strtype 
- The infrastructure used to deploy the Oracle Database.
- db_sub_ strtype 
- The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- db_type str
- The type of Oracle Database installation.
- db_version str
- The version of the Oracle Database.
- id str
- The OCID of the Managed Database.
- name str
- The name of the rule.
- compartmentId String
- The OCID of the compartment in which the Managed Database resides.
- dbDeployment StringType 
- The infrastructure used to deploy the Oracle Database.
- dbSub StringType 
- The subtype of the Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, Non-container Database, Autonomous Database, or Autonomous Container Database.
- dbType String
- The type of Oracle Database installation.
- dbVersion String
- The version of the Oracle Database.
- id String
- The OCID of the Managed Database.
- name String
- The name of the rule.
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReport             
- Rules
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule> 
- The list of rules that were not adhered to by the Optimizer Statistics Collection.
- Summary string
- A summary of the Optimizer Statistics Advisor execution.
- Rules
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule 
- The list of rules that were not adhered to by the Optimizer Statistics Collection.
- Summary string
- A summary of the Optimizer Statistics Advisor execution.
- rules
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule> 
- The list of rules that were not adhered to by the Optimizer Statistics Collection.
- summary String
- A summary of the Optimizer Statistics Advisor execution.
- rules
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule[] 
- The list of rules that were not adhered to by the Optimizer Statistics Collection.
- summary string
- A summary of the Optimizer Statistics Advisor execution.
- rules
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule] 
- The list of rules that were not adhered to by the Optimizer Statistics Collection.
- summary str
- A summary of the Optimizer Statistics Advisor execution.
- rules List<Property Map>
- The list of rules that were not adhered to by the Optimizer Statistics Collection.
- summary String
- A summary of the Optimizer Statistics Advisor execution.
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRule              
- Description string
- The description of the rule.
- Findings
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding> 
- The list of findings for the rule.
- Name string
- The name of the rule.
- Description string
- The description of the rule.
- Findings
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding 
- The list of findings for the rule.
- Name string
- The name of the rule.
- description String
- The description of the rule.
- findings
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding> 
- The list of findings for the rule.
- name String
- The name of the rule.
- description string
- The description of the rule.
- findings
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding[] 
- The list of findings for the rule.
- name string
- The name of the rule.
- description str
- The description of the rule.
- findings
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding] 
- The list of findings for the rule.
- name str
- The name of the rule.
- description String
- The description of the rule.
- findings List<Property Map>
- The list of findings for the rule.
- name String
- The name of the rule.
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRuleFinding               
- Details
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail> 
- The details of the schema or operation.
- Message string
- The message of the rationale.
- Recommendations
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation> 
- The list of recommendations.
- Details
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail 
- The details of the schema or operation.
- Message string
- The message of the rationale.
- Recommendations
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation 
- The list of recommendations.
- details
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail> 
- The details of the schema or operation.
- message String
- The message of the rationale.
- recommendations
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation> 
- The list of recommendations.
- details
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail[] 
- The details of the schema or operation.
- message string
- The message of the rationale.
- recommendations
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation[] 
- The list of recommendations.
- details
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail] 
- The details of the schema or operation.
- message str
- The message of the rationale.
- recommendations
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation] 
- The list of recommendations.
- details List<Property Map>
- The details of the schema or operation.
- message String
- The message of the rationale.
- recommendations List<Property Map>
- The list of recommendations.
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRuleFindingDetail                
- Operations List<string>
- The list of operation details.
- Schemas
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail Schema> 
- The names of the impacted database schemas and their objects.
- Operations []string
- The list of operation details.
- Schemas
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail Schema 
- The names of the impacted database schemas and their objects.
- operations List<String>
- The list of operation details.
- schemas
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail Schema> 
- The names of the impacted database schemas and their objects.
- operations string[]
- The list of operation details.
- schemas
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail Schema[] 
- The names of the impacted database schemas and their objects.
- operations Sequence[str]
- The list of operation details.
- schemas
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Detail Schema] 
- The names of the impacted database schemas and their objects.
- operations List<String>
- The list of operation details.
- schemas List<Property Map>
- The names of the impacted database schemas and their objects.
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRuleFindingDetailSchema                 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRuleFindingRecommendation                
- Examples
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example> 
- An example of the recommendation.
- Message string
- The message of the rationale.
- Rationales
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Rationale> 
- The rationale of the recommendation.
- Examples
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example 
- An example of the recommendation.
- Message string
- The message of the rationale.
- Rationales
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Rationale 
- The rationale of the recommendation.
- examples
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example> 
- An example of the recommendation.
- message String
- The message of the rationale.
- rationales
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Rationale> 
- The rationale of the recommendation.
- examples
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example[] 
- An example of the recommendation.
- message string
- The message of the rationale.
- rationales
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Rationale[] 
- The rationale of the recommendation.
- examples
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example] 
- An example of the recommendation.
- message str
- The message of the rationale.
- rationales
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Rationale] 
- The rationale of the recommendation.
- examples List<Property Map>
- An example of the recommendation.
- message String
- The message of the rationale.
- rationales List<Property Map>
- The rationale of the recommendation.
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRuleFindingRecommendationExample                 
- Lines
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example Line> 
- The list of examples for the recommendation.
- Lines
[]GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example Line 
- The list of examples for the recommendation.
- lines
List<GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example Line> 
- The list of examples for the recommendation.
- lines
GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example Line[] 
- The list of examples for the recommendation.
- lines
Sequence[GetManaged Database Optimizer Statistics Advisor Executions Optimizer Statistics Advisor Executions Collection Item Report Rule Finding Recommendation Example Line] 
- The list of examples for the recommendation.
- lines List<Property Map>
- The list of examples for the recommendation.
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRuleFindingRecommendationExampleLine                  
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionsOptimizerStatisticsAdvisorExecutionsCollectionItemReportRuleFindingRecommendationRationale                 
- Message string
- The message of the rationale.
- Message string
- The message of the rationale.
- message String
- The message of the rationale.
- message string
- The message of the rationale.
- message str
- The message of the rationale.
- message String
- The message of the rationale.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.