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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
variables:
  testManagedDatabaseOptimizerStatisticsAdvisorExecution:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseOptimizerStatisticsAdvisorExecution
      arguments:
        executionName: ${managedDatabaseOptimizerStatisticsAdvisorExecutionExecutionName}
        managedDatabaseId: ${testManagedDatabase.id}
        taskName: ${managedDatabaseOptimizerStatisticsAdvisorExecutionTaskName}
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>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]func GetManagedDatabaseOptimizerStatisticsAdvisorExecution(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs, opts ...InvokeOption) (*GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult, error)
func GetManagedDatabaseOptimizerStatisticsAdvisorExecutionOutput(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsAdvisorExecutionOutputArgs, opts ...InvokeOption) GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResultOutput> 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)
}public static CompletableFuture<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult> getManagedDatabaseOptimizerStatisticsAdvisorExecution(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseOptimizerStatisticsAdvisorExecutionResult> getManagedDatabaseOptimizerStatisticsAdvisorExecution(GetManagedDatabaseOptimizerStatisticsAdvisorExecutionArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseOptimizerStatisticsAdvisorExecution:getManagedDatabaseOptimizerStatisticsAdvisorExecution
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Execution
Name string - The name of the Optimizer Statistics Advisor execution.
 - Managed
Database stringId  - The OCID of the Managed Database.
 - Task
Name string - The name of the optimizer statistics collection execution task.
 
- Execution
Name string - The name of the Optimizer Statistics Advisor execution.
 - Managed
Database stringId  - The OCID of the Managed Database.
 - Task
Name string - The name of the optimizer statistics collection execution task.
 
- execution
Name String - The name of the Optimizer Statistics Advisor execution.
 - managed
Database StringId  - The OCID of the Managed Database.
 - task
Name String - The name of the optimizer statistics collection execution task.
 
- execution
Name string - The name of the Optimizer Statistics Advisor execution.
 - managed
Database stringId  - The OCID of the Managed Database.
 - task
Name string - The name of the optimizer statistics collection execution task.
 
- execution_
name str - The name of the Optimizer Statistics Advisor execution.
 - managed_
database_ strid  - The OCID of the Managed Database.
 - task_
name str - The name of the optimizer statistics collection execution task.
 
- execution
Name String - The name of the Optimizer Statistics Advisor execution.
 - managed
Database StringId  - The OCID of the Managed Database.
 - task
Name String - The name of the optimizer statistics collection execution task.
 
getManagedDatabaseOptimizerStatisticsAdvisorExecution Result
The following output properties are available:
- Databases
List<Get
Managed Database Optimizer Statistics Advisor Execution Database>  - The summary of the Managed Database resource.
 - Error
Message string - The errors in the Optimizer Statistics Advisor execution, if any.
 - Execution
Name 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.
 - Managed
Database stringId  - Reports
List<Get
Managed Database Optimizer Statistics Advisor Execution 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.
 - Status
Message string - The Optimizer Statistics Advisor execution status message, if any.
 - Task
Name string - The name of the Optimizer Statistics Advisor task.
 - Time
End 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'".
 - Time
Start 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
[]Get
Managed Database Optimizer Statistics Advisor Execution Database  - The summary of the Managed Database resource.
 - Error
Message string - The errors in the Optimizer Statistics Advisor execution, if any.
 - Execution
Name 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.
 - Managed
Database stringId  - Reports
[]Get
Managed Database Optimizer Statistics Advisor Execution 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.
 - Status
Message string - The Optimizer Statistics Advisor execution status message, if any.
 - Task
Name string - The name of the Optimizer Statistics Advisor task.
 - Time
End 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'".
 - Time
Start 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<Get
Managed Database Optimizer Statistics Advisor Execution Database>  - The summary of the Managed Database resource.
 - error
Message String - The errors in the Optimizer Statistics Advisor execution, if any.
 - execution
Name 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.
 - managed
Database StringId  - reports
List<Get
Managed Database Optimizer Statistics Advisor Execution 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.
 - status
Message String - The Optimizer Statistics Advisor execution status message, if any.
 - task
Name String - The name of the Optimizer Statistics Advisor task.
 - time
End 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'".
 - time
Start 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
Get
Managed Database Optimizer Statistics Advisor Execution Database[]  - The summary of the Managed Database resource.
 - error
Message string - The errors in the Optimizer Statistics Advisor execution, if any.
 - execution
Name 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.
 - managed
Database stringId  - reports
Get
Managed Database Optimizer Statistics Advisor Execution 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.
 - status
Message string - The Optimizer Statistics Advisor execution status message, if any.
 - task
Name string - The name of the Optimizer Statistics Advisor task.
 - time
End 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'".
 - time
Start 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.
Get Managed Database Optimizer Statistics Advisor Execution 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.
 - id str
 - The provider-assigned unique ID for this managed resource.
 - managed_
database_ strid  - reports
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution 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.
 - error
Message String - The errors in the Optimizer Statistics Advisor execution, if any.
 - execution
Name 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.
 - managed
Database StringId  - 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.
 - status
Message String - The Optimizer Statistics Advisor execution status message, if any.
 - task
Name String - The name of the Optimizer Statistics Advisor task.
 - time
End 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'".
 - time
Start 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       
- Compartment
Id string - The OCID of the compartment in which the Managed Database resides.
 - Db
Deployment stringType  - The infrastructure used to deploy the Oracle Database.
 - Db
Sub 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.
 - Db
Type string - The type of Oracle Database installation.
 - Db
Version string - The version of the Oracle Database.
 - Id string
 - The OCID of the Managed Database.
 - Name string
 - The name of the rule.
 
- Compartment
Id string - The OCID of the compartment in which the Managed Database resides.
 - Db
Deployment stringType  - The infrastructure used to deploy the Oracle Database.
 - Db
Sub 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.
 - Db
Type string - The type of Oracle Database installation.
 - Db
Version string - The version of the Oracle Database.
 - Id string
 - The OCID of the Managed Database.
 - Name string
 - The name of the rule.
 
- compartment
Id String - The OCID of the compartment in which the Managed Database resides.
 - db
Deployment StringType  - The infrastructure used to deploy the Oracle Database.
 - db
Sub 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.
 - db
Type String - The type of Oracle Database installation.
 - db
Version String - The version of the Oracle Database.
 - id String
 - The OCID of the Managed Database.
 - name String
 - The name of the rule.
 
- compartment
Id string - The OCID of the compartment in which the Managed Database resides.
 - db
Deployment stringType  - The infrastructure used to deploy the Oracle Database.
 - db
Sub 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.
 - db
Type string - The type of Oracle Database installation.
 - db
Version 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.
 
- compartment
Id String - The OCID of the compartment in which the Managed Database resides.
 - db
Deployment StringType  - The infrastructure used to deploy the Oracle Database.
 - db
Sub 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.
 - db
Type String - The type of Oracle Database installation.
 - db
Version String - The version of the Oracle Database.
 - id String
 - The OCID of the Managed Database.
 - name String
 - The name of the rule.
 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReport       
- Rules
List<Get
Managed Database Optimizer Statistics Advisor Execution 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
[]Get
Managed Database Optimizer Statistics Advisor Execution 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<Get
Managed Database Optimizer Statistics Advisor Execution 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
Get
Managed Database Optimizer Statistics Advisor Execution 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[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution 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.
 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRule        
- Description string
 - The description of the rule.
 - Findings
List<Get
Managed Database Optimizer Statistics Advisor Execution 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
[]Get
Managed Database Optimizer Statistics Advisor Execution 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<Get
Managed Database Optimizer Statistics Advisor Execution 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
Get
Managed Database Optimizer Statistics Advisor Execution 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[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution 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.
 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFinding         
- Details
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Detail>  - The details of the schema or operation.
 - Message string
 - The message of the rationale.
 - Recommendations
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation>  - The list of recommendations.
 
- Details
[]Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Detail  - The details of the schema or operation.
 - Message string
 - The message of the rationale.
 - Recommendations
[]Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation  - The list of recommendations.
 
- details
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Detail>  - The details of the schema or operation.
 - message String
 - The message of the rationale.
 - recommendations
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation>  - The list of recommendations.
 
- details
Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Detail[]  - The details of the schema or operation.
 - message string
 - The message of the rationale.
 - recommendations
Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation[]  - The list of recommendations.
 
- details
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Detail]  - The details of the schema or operation.
 - message str
 - The message of the rationale.
 - recommendations
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution 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.
 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetail          
- Operations List<string>
 - The list of operation details.
 - Schemas
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Detail Schema>  - The names of the impacted database schemas and their objects.
 
- Operations []string
 - The list of operation details.
 - Schemas
[]Get
Managed Database Optimizer Statistics Advisor Execution 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<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Detail Schema>  - The names of the impacted database schemas and their objects.
 
- operations string[]
 - The list of operation details.
 - schemas
Get
Managed Database Optimizer Statistics Advisor Execution 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[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution 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.
 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingDetailSchema           
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendation          
- Examples
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example>  - An example of the recommendation.
 - Message string
 - The message of the rationale.
 - Rationales
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Rationale>  - The rationale of the recommendation.
 
- Examples
[]Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example  - An example of the recommendation.
 - Message string
 - The message of the rationale.
 - Rationales
[]Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Rationale  - The rationale of the recommendation.
 
- examples
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example>  - An example of the recommendation.
 - message String
 - The message of the rationale.
 - rationales
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Rationale>  - The rationale of the recommendation.
 
- examples
Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example[]  - An example of the recommendation.
 - message string
 - The message of the rationale.
 - rationales
Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Rationale[]  - The rationale of the recommendation.
 
- examples
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example]  - An example of the recommendation.
 - message str
 - The message of the rationale.
 - rationales
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution 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.
 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExample           
- Lines
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example Line>  - The list of examples for the recommendation.
 
- Lines
[]Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example Line  - The list of examples for the recommendation.
 
- lines
List<Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example Line>  - The list of examples for the recommendation.
 
- lines
Get
Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example Line[]  - The list of examples for the recommendation.
 
- lines
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Advisor Execution Report Rule Finding Recommendation Example Line]  - The list of examples for the recommendation.
 
- lines List<Property Map>
 - The list of examples for the recommendation.
 
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationExampleLine            
GetManagedDatabaseOptimizerStatisticsAdvisorExecutionReportRuleFindingRecommendationRationale           
- 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.