1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getManagedDatabaseOptimizerStatisticsAdvisorExecution
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsAdvisorExecution

Explore with Pulumi AI

This data source provides details about a specific Managed Database Optimizer Statistics Advisor Execution resource in Oracle Cloud Infrastructure Database Management service.

Gets a comprehensive report of the Optimizer Statistics Advisor execution, which includes details of the Managed Database, findings, recommendations, rationale, and examples.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testManagedDatabaseOptimizerStatisticsAdvisorExecution = oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsAdvisorExecution({
    executionName: managedDatabaseOptimizerStatisticsAdvisorExecutionExecutionName,
    managedDatabaseId: testManagedDatabase.id,
    taskName: managedDatabaseOptimizerStatisticsAdvisorExecutionTaskName,
});
Copy
import pulumi
import pulumi_oci as oci

test_managed_database_optimizer_statistics_advisor_execution = oci.DatabaseManagement.get_managed_database_optimizer_statistics_advisor_execution(execution_name=managed_database_optimizer_statistics_advisor_execution_execution_name,
    managed_database_id=test_managed_database["id"],
    task_name=managed_database_optimizer_statistics_advisor_execution_task_name)
Copy
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.GetManagedDatabaseOptimizerStatisticsAdvisorExecution(ctx, &databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs{
			ExecutionName:     managedDatabaseOptimizerStatisticsAdvisorExecutionExecutionName,
			ManagedDatabaseId: testManagedDatabase.Id,
			TaskName:          managedDatabaseOptimizerStatisticsAdvisorExecutionTaskName,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testManagedDatabaseOptimizerStatisticsAdvisorExecution = Oci.DatabaseManagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecution.Invoke(new()
    {
        ExecutionName = managedDatabaseOptimizerStatisticsAdvisorExecutionExecutionName,
        ManagedDatabaseId = testManagedDatabase.Id,
        TaskName = managedDatabaseOptimizerStatisticsAdvisorExecutionTaskName,
    });

});
Copy
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.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs;
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 testManagedDatabaseOptimizerStatisticsAdvisorExecution = DatabaseManagementFunctions.getManagedDatabaseOptimizerStatisticsAdvisorExecution(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs.builder()
            .executionName(managedDatabaseOptimizerStatisticsAdvisorExecutionExecutionName)
            .managedDatabaseId(testManagedDatabase.id())
            .taskName(managedDatabaseOptimizerStatisticsAdvisorExecutionTaskName)
            .build());

    }
}
Copy
variables:
  testManagedDatabaseOptimizerStatisticsAdvisorExecution:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseOptimizerStatisticsAdvisorExecution
      arguments:
        executionName: ${managedDatabaseOptimizerStatisticsAdvisorExecutionExecutionName}
        managedDatabaseId: ${testManagedDatabase.id}
        taskName: ${managedDatabaseOptimizerStatisticsAdvisorExecutionTaskName}
Copy

Using getManagedDatabaseOptimizerStatisticsAdvisorExecution

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 getManagedDatabaseOptimizerStatisticsAdvisorExecution(args: GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult>
function getManagedDatabaseOptimizerStatisticsAdvisorExecutionOutput(args: GetManagedDatabaseOptimizerStatisticsAdvisorExecutionOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult>
Copy
def get_managed_database_optimizer_statistics_advisor_execution(execution_name: Optional[str] = None,
                                                                managed_database_id: Optional[str] = None,
                                                                task_name: Optional[str] = None,
                                                                opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult
def get_managed_database_optimizer_statistics_advisor_execution_output(execution_name: Optional[pulumi.Input[str]] = None,
                                                                managed_database_id: Optional[pulumi.Input[str]] = None,
                                                                task_name: Optional[pulumi.Input[str]] = None,
                                                                opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult]
Copy
func GetManagedDatabaseOptimizerStatisticsAdvisorExecution(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs, opts ...InvokeOption) (*GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult, error)
func GetManagedDatabaseOptimizerStatisticsAdvisorExecutionOutput(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsAdvisorExecutionOutputArgs, opts ...InvokeOption) GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResultOutput
Copy

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

public static class GetManagedDatabaseOptimizerStatisticsAdvisorExecution 
{
    public static Task<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult> InvokeAsync(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult> Invoke(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult> getManagedDatabaseOptimizerStatisticsAdvisorExecution(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult> getManagedDatabaseOptimizerStatisticsAdvisorExecution(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseOptimizerStatisticsAdvisorExecution:getManagedDatabaseOptimizerStatisticsAdvisorExecution
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ExecutionName This property is required. string
The name of the Optimizer Statistics Advisor execution.
ManagedDatabaseId This property is required. string
The OCID of the Managed Database.
TaskName This property is required. string
The name of the optimizer statistics collection execution task.
ExecutionName This property is required. string
The name of the Optimizer Statistics Advisor execution.
ManagedDatabaseId This property is required. string
The OCID of the Managed Database.
TaskName This property is required. string
The name of the optimizer statistics collection execution task.
executionName This property is required. String
The name of the Optimizer Statistics Advisor execution.
managedDatabaseId This property is required. String
The OCID of the Managed Database.
taskName This property is required. String
The name of the optimizer statistics collection execution task.
executionName This property is required. string
The name of the Optimizer Statistics Advisor execution.
managedDatabaseId This property is required. string
The OCID of the Managed Database.
taskName This property is required. string
The name of the optimizer statistics collection execution task.
execution_name This property is required. str
The name of the Optimizer Statistics Advisor execution.
managed_database_id This property is required. str
The OCID of the Managed Database.
task_name This property is required. str
The name of the optimizer statistics collection execution task.
executionName This property is required. String
The name of the Optimizer Statistics Advisor execution.
managedDatabaseId This property is required. String
The OCID of the Managed Database.
taskName This property is required. String
The name of the optimizer statistics collection execution task.

getManagedDatabaseOptimizerStatisticsAdvisorExecution Result

The following output properties are available:

Databases List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionDatabase>
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.
Id string
The provider-assigned unique ID for this managed resource.
ManagedDatabaseId string
Reports List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReport>
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 []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionDatabase
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.
Id string
The provider-assigned unique ID for this managed resource.
ManagedDatabaseId string
Reports []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReport
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<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionDatabase>
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.
id String
The provider-assigned unique ID for this managed resource.
managedDatabaseId String
reports List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReport>
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 GetManagedDatabaseOptimizerStatisticsAdvisorExecutionDatabase[]
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.
id string
The provider-assigned unique ID for this managed resource.
managedDatabaseId string
reports GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReport[]
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[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionDatabase]
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.
id str
The provider-assigned unique ID for this managed resource.
managed_database_id str
reports Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReport]
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.
id String
The provider-assigned unique ID for this managed resource.
managedDatabaseId String
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'".

Supporting Types

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionDatabase

CompartmentId This property is required. string
The OCID of the compartment in which the Managed Database resides.
DbDeploymentType This property is required. string
The infrastructure used to deploy the Oracle Database.
DbSubType This property is required. string
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 This property is required. string
The type of Oracle Database installation.
DbVersion This property is required. string
The version of the Oracle Database.
Id This property is required. string
The OCID of the Managed Database.
Name This property is required. string
The name of the rule.
CompartmentId This property is required. string
The OCID of the compartment in which the Managed Database resides.
DbDeploymentType This property is required. string
The infrastructure used to deploy the Oracle Database.
DbSubType This property is required. string
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 This property is required. string
The type of Oracle Database installation.
DbVersion This property is required. string
The version of the Oracle Database.
Id This property is required. string
The OCID of the Managed Database.
Name This property is required. string
The name of the rule.
compartmentId This property is required. String
The OCID of the compartment in which the Managed Database resides.
dbDeploymentType This property is required. String
The infrastructure used to deploy the Oracle Database.
dbSubType This property is required. String
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 This property is required. String
The type of Oracle Database installation.
dbVersion This property is required. String
The version of the Oracle Database.
id This property is required. String
The OCID of the Managed Database.
name This property is required. String
The name of the rule.
compartmentId This property is required. string
The OCID of the compartment in which the Managed Database resides.
dbDeploymentType This property is required. string
The infrastructure used to deploy the Oracle Database.
dbSubType This property is required. string
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 This property is required. string
The type of Oracle Database installation.
dbVersion This property is required. string
The version of the Oracle Database.
id This property is required. string
The OCID of the Managed Database.
name This property is required. string
The name of the rule.
compartment_id This property is required. str
The OCID of the compartment in which the Managed Database resides.
db_deployment_type This property is required. str
The infrastructure used to deploy the Oracle Database.
db_sub_type This property is required. str
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 This property is required. str
The type of Oracle Database installation.
db_version This property is required. str
The version of the Oracle Database.
id This property is required. str
The OCID of the Managed Database.
name This property is required. str
The name of the rule.
compartmentId This property is required. String
The OCID of the compartment in which the Managed Database resides.
dbDeploymentType This property is required. String
The infrastructure used to deploy the Oracle Database.
dbSubType This property is required. String
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 This property is required. String
The type of Oracle Database installation.
dbVersion This property is required. String
The version of the Oracle Database.
id This property is required. String
The OCID of the Managed Database.
name This property is required. String
The name of the rule.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReport

Rules This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRule>
The list of rules that were not adhered to by the Optimizer Statistics Collection.
Summary This property is required. string
A summary of the Optimizer Statistics Advisor execution.
Rules This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRule
The list of rules that were not adhered to by the Optimizer Statistics Collection.
Summary This property is required. string
A summary of the Optimizer Statistics Advisor execution.
rules This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRule>
The list of rules that were not adhered to by the Optimizer Statistics Collection.
summary This property is required. String
A summary of the Optimizer Statistics Advisor execution.
rules This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRule[]
The list of rules that were not adhered to by the Optimizer Statistics Collection.
summary This property is required. string
A summary of the Optimizer Statistics Advisor execution.
rules This property is required. Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRule]
The list of rules that were not adhered to by the Optimizer Statistics Collection.
summary This property is required. str
A summary of the Optimizer Statistics Advisor execution.
rules This property is required. List<Property Map>
The list of rules that were not adhered to by the Optimizer Statistics Collection.
summary This property is required. String
A summary of the Optimizer Statistics Advisor execution.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRule

Description This property is required. string
The description of the rule.
Findings This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFinding>
The list of findings for the rule.
Name This property is required. string
The name of the rule.
Description This property is required. string
The description of the rule.
Findings This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFinding
The list of findings for the rule.
Name This property is required. string
The name of the rule.
description This property is required. String
The description of the rule.
findings This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFinding>
The list of findings for the rule.
name This property is required. String
The name of the rule.
description This property is required. string
The description of the rule.
findings This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFinding[]
The list of findings for the rule.
name This property is required. string
The name of the rule.
description This property is required. str
The description of the rule.
findings This property is required. Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFinding]
The list of findings for the rule.
name This property is required. str
The name of the rule.
description This property is required. String
The description of the rule.
findings This property is required. List<Property Map>
The list of findings for the rule.
name This property is required. String
The name of the rule.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFinding

Details This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetail>
The details of the schema or operation.
Message This property is required. string
The message of the rationale.
Recommendations This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendation>
The list of recommendations.
Details This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetail
The details of the schema or operation.
Message This property is required. string
The message of the rationale.
Recommendations This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendation
The list of recommendations.
details This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetail>
The details of the schema or operation.
message This property is required. String
The message of the rationale.
recommendations This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendation>
The list of recommendations.
details This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetail[]
The details of the schema or operation.
message This property is required. string
The message of the rationale.
recommendations This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendation[]
The list of recommendations.
details This property is required. Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetail]
The details of the schema or operation.
message This property is required. str
The message of the rationale.
recommendations This property is required. Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendation]
The list of recommendations.
details This property is required. List<Property Map>
The details of the schema or operation.
message This property is required. String
The message of the rationale.
recommendations This property is required. List<Property Map>
The list of recommendations.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetail

Operations This property is required. List<string>
The list of operation details.
Schemas This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetailSchema>
The names of the impacted database schemas and their objects.
Operations This property is required. []string
The list of operation details.
Schemas This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetailSchema
The names of the impacted database schemas and their objects.
operations This property is required. List<String>
The list of operation details.
schemas This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetailSchema>
The names of the impacted database schemas and their objects.
operations This property is required. string[]
The list of operation details.
schemas This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetailSchema[]
The names of the impacted database schemas and their objects.
operations This property is required. Sequence[str]
The list of operation details.
schemas This property is required. Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetailSchema]
The names of the impacted database schemas and their objects.
operations This property is required. List<String>
The list of operation details.
schemas This property is required. List<Property Map>
The names of the impacted database schemas and their objects.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetailSchema

Name This property is required. string
The name of the rule.
Objects This property is required. List<string>
The names of schema objects.
Name This property is required. string
The name of the rule.
Objects This property is required. []string
The names of schema objects.
name This property is required. String
The name of the rule.
objects This property is required. List<String>
The names of schema objects.
name This property is required. string
The name of the rule.
objects This property is required. string[]
The names of schema objects.
name This property is required. str
The name of the rule.
objects This property is required. Sequence[str]
The names of schema objects.
name This property is required. String
The name of the rule.
objects This property is required. List<String>
The names of schema objects.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendation

Examples This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExample>
An example of the recommendation.
Message This property is required. string
The message of the rationale.
Rationales This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationRationale>
The rationale of the recommendation.
Examples This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExample
An example of the recommendation.
Message This property is required. string
The message of the rationale.
Rationales This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationRationale
The rationale of the recommendation.
examples This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExample>
An example of the recommendation.
message This property is required. String
The message of the rationale.
rationales This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationRationale>
The rationale of the recommendation.
examples This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExample[]
An example of the recommendation.
message This property is required. string
The message of the rationale.
rationales This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationRationale[]
The rationale of the recommendation.
examples This property is required. Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExample]
An example of the recommendation.
message This property is required. str
The message of the rationale.
rationales This property is required. Sequence[databasemanagement.GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationRationale]
The rationale of the recommendation.
examples This property is required. List<Property Map>
An example of the recommendation.
message This property is required. String
The message of the rationale.
rationales This property is required. List<Property Map>
The rationale of the recommendation.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExample

Lines This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExampleLine>
The list of examples for the recommendation.
Lines This property is required. []GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExampleLine
The list of examples for the recommendation.
lines This property is required. List<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExampleLine>
The list of examples for the recommendation.
lines This property is required. GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExampleLine[]
The list of examples for the recommendation.
lines This property is required. List<Property Map>
The list of examples for the recommendation.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExampleLine

Comment This property is required. string
The comments about the operation.
Operation This property is required. string
The details of the example operation.
Comment This property is required. string
The comments about the operation.
Operation This property is required. string
The details of the example operation.
comment This property is required. String
The comments about the operation.
operation This property is required. String
The details of the example operation.
comment This property is required. string
The comments about the operation.
operation This property is required. string
The details of the example operation.
comment This property is required. str
The comments about the operation.
operation This property is required. str
The details of the example operation.
comment This property is required. String
The comments about the operation.
operation This property is required. String
The details of the example operation.

GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationRationale

Message This property is required. string
The message of the rationale.
Message This property is required. string
The message of the rationale.
message This property is required. String
The message of the rationale.
message This property is required. string
The message of the rationale.
message This property is required. str
The message of the rationale.
message This property is required. 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 oci Terraform Provider.