Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DatabaseManagement.getManagedDatabaseSqlTuningAdvisorTask
Explore with Pulumi AI
This data source provides details about a specific Managed Database Sql Tuning Advisor Task resource in Oracle Cloud Infrastructure Database Management service.
Lists the SQL Tuning Advisor tasks for the specified Managed Database.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabaseSqlTuningAdvisorTask = oci.DatabaseManagement.getManagedDatabaseSqlTuningAdvisorTask({
    managedDatabaseId: testManagedDatabase.id,
    name: managedDatabaseSqlTuningAdvisorTaskName,
    status: managedDatabaseSqlTuningAdvisorTaskStatus,
    timeGreaterThanOrEqualTo: managedDatabaseSqlTuningAdvisorTaskTimeGreaterThanOrEqualTo,
    timeLessThanOrEqualTo: managedDatabaseSqlTuningAdvisorTaskTimeLessThanOrEqualTo,
});
import pulumi
import pulumi_oci as oci
test_managed_database_sql_tuning_advisor_task = oci.DatabaseManagement.get_managed_database_sql_tuning_advisor_task(managed_database_id=test_managed_database["id"],
    name=managed_database_sql_tuning_advisor_task_name,
    status=managed_database_sql_tuning_advisor_task_status,
    time_greater_than_or_equal_to=managed_database_sql_tuning_advisor_task_time_greater_than_or_equal_to,
    time_less_than_or_equal_to=managed_database_sql_tuning_advisor_task_time_less_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.GetManagedDatabaseSqlTuningAdvisorTask(ctx, &databasemanagement.GetManagedDatabaseSqlTuningAdvisorTaskArgs{
			ManagedDatabaseId:        testManagedDatabase.Id,
			Name:                     pulumi.StringRef(managedDatabaseSqlTuningAdvisorTaskName),
			Status:                   pulumi.StringRef(managedDatabaseSqlTuningAdvisorTaskStatus),
			TimeGreaterThanOrEqualTo: pulumi.StringRef(managedDatabaseSqlTuningAdvisorTaskTimeGreaterThanOrEqualTo),
			TimeLessThanOrEqualTo:    pulumi.StringRef(managedDatabaseSqlTuningAdvisorTaskTimeLessThanOrEqualTo),
		}, 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 testManagedDatabaseSqlTuningAdvisorTask = Oci.DatabaseManagement.GetManagedDatabaseSqlTuningAdvisorTask.Invoke(new()
    {
        ManagedDatabaseId = testManagedDatabase.Id,
        Name = managedDatabaseSqlTuningAdvisorTaskName,
        Status = managedDatabaseSqlTuningAdvisorTaskStatus,
        TimeGreaterThanOrEqualTo = managedDatabaseSqlTuningAdvisorTaskTimeGreaterThanOrEqualTo,
        TimeLessThanOrEqualTo = managedDatabaseSqlTuningAdvisorTaskTimeLessThanOrEqualTo,
    });
});
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.GetManagedDatabaseSqlTuningAdvisorTaskArgs;
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 testManagedDatabaseSqlTuningAdvisorTask = DatabaseManagementFunctions.getManagedDatabaseSqlTuningAdvisorTask(GetManagedDatabaseSqlTuningAdvisorTaskArgs.builder()
            .managedDatabaseId(testManagedDatabase.id())
            .name(managedDatabaseSqlTuningAdvisorTaskName)
            .status(managedDatabaseSqlTuningAdvisorTaskStatus)
            .timeGreaterThanOrEqualTo(managedDatabaseSqlTuningAdvisorTaskTimeGreaterThanOrEqualTo)
            .timeLessThanOrEqualTo(managedDatabaseSqlTuningAdvisorTaskTimeLessThanOrEqualTo)
            .build());
    }
}
variables:
  testManagedDatabaseSqlTuningAdvisorTask:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseSqlTuningAdvisorTask
      arguments:
        managedDatabaseId: ${testManagedDatabase.id}
        name: ${managedDatabaseSqlTuningAdvisorTaskName}
        status: ${managedDatabaseSqlTuningAdvisorTaskStatus}
        timeGreaterThanOrEqualTo: ${managedDatabaseSqlTuningAdvisorTaskTimeGreaterThanOrEqualTo}
        timeLessThanOrEqualTo: ${managedDatabaseSqlTuningAdvisorTaskTimeLessThanOrEqualTo}
Using getManagedDatabaseSqlTuningAdvisorTask
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 getManagedDatabaseSqlTuningAdvisorTask(args: GetManagedDatabaseSqlTuningAdvisorTaskArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseSqlTuningAdvisorTaskResult>
function getManagedDatabaseSqlTuningAdvisorTaskOutput(args: GetManagedDatabaseSqlTuningAdvisorTaskOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseSqlTuningAdvisorTaskResult>def get_managed_database_sql_tuning_advisor_task(managed_database_id: Optional[str] = None,
                                                 name: Optional[str] = None,
                                                 status: Optional[str] = None,
                                                 time_greater_than_or_equal_to: Optional[str] = None,
                                                 time_less_than_or_equal_to: Optional[str] = None,
                                                 opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseSqlTuningAdvisorTaskResult
def get_managed_database_sql_tuning_advisor_task_output(managed_database_id: Optional[pulumi.Input[str]] = None,
                                                 name: Optional[pulumi.Input[str]] = None,
                                                 status: Optional[pulumi.Input[str]] = None,
                                                 time_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                                 time_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                                 opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseSqlTuningAdvisorTaskResult]func GetManagedDatabaseSqlTuningAdvisorTask(ctx *Context, args *GetManagedDatabaseSqlTuningAdvisorTaskArgs, opts ...InvokeOption) (*GetManagedDatabaseSqlTuningAdvisorTaskResult, error)
func GetManagedDatabaseSqlTuningAdvisorTaskOutput(ctx *Context, args *GetManagedDatabaseSqlTuningAdvisorTaskOutputArgs, opts ...InvokeOption) GetManagedDatabaseSqlTuningAdvisorTaskResultOutput> Note: This function is named GetManagedDatabaseSqlTuningAdvisorTask in the Go SDK.
public static class GetManagedDatabaseSqlTuningAdvisorTask 
{
    public static Task<GetManagedDatabaseSqlTuningAdvisorTaskResult> InvokeAsync(GetManagedDatabaseSqlTuningAdvisorTaskArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabaseSqlTuningAdvisorTaskResult> Invoke(GetManagedDatabaseSqlTuningAdvisorTaskInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedDatabaseSqlTuningAdvisorTaskResult> getManagedDatabaseSqlTuningAdvisorTask(GetManagedDatabaseSqlTuningAdvisorTaskArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseSqlTuningAdvisorTaskResult> getManagedDatabaseSqlTuningAdvisorTask(GetManagedDatabaseSqlTuningAdvisorTaskArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseSqlTuningAdvisorTask:getManagedDatabaseSqlTuningAdvisorTask
  arguments:
    # arguments dictionaryThe following arguments are supported:
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- Name string
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- Status string
- The optional query parameter to filter the SQL Tuning Advisor task list by status.
- TimeGreater stringThan Or Equal To 
- The optional greater than or equal to query parameter to filter the timestamp.
- TimeLess stringThan Or Equal To 
- The optional less than or equal to query parameter to filter the timestamp.
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- Name string
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- Status string
- The optional query parameter to filter the SQL Tuning Advisor task list by status.
- TimeGreater stringThan Or Equal To 
- The optional greater than or equal to query parameter to filter the timestamp.
- TimeLess stringThan Or Equal To 
- The optional less than or equal to query parameter to filter the timestamp.
- managedDatabase StringId 
- The OCID of the Managed Database.
- name String
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- status String
- The optional query parameter to filter the SQL Tuning Advisor task list by status.
- timeGreater StringThan Or Equal To 
- The optional greater than or equal to query parameter to filter the timestamp.
- timeLess StringThan Or Equal To 
- The optional less than or equal to query parameter to filter the timestamp.
- managedDatabase stringId 
- The OCID of the Managed Database.
- name string
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- status string
- The optional query parameter to filter the SQL Tuning Advisor task list by status.
- timeGreater stringThan Or Equal To 
- The optional greater than or equal to query parameter to filter the timestamp.
- timeLess stringThan Or Equal To 
- The optional less than or equal to query parameter to filter the timestamp.
- managed_database_ strid 
- The OCID of the Managed Database.
- name str
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- status str
- The optional query parameter to filter the SQL Tuning Advisor task list by status.
- time_greater_ strthan_ or_ equal_ to 
- The optional greater than or equal to query parameter to filter the timestamp.
- time_less_ strthan_ or_ equal_ to 
- The optional less than or equal to query parameter to filter the timestamp.
- managedDatabase StringId 
- The OCID of the Managed Database.
- name String
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- status String
- The optional query parameter to filter the SQL Tuning Advisor task list by status.
- timeGreater StringThan Or Equal To 
- The optional greater than or equal to query parameter to filter the timestamp.
- timeLess StringThan Or Equal To 
- The optional less than or equal to query parameter to filter the timestamp.
getManagedDatabaseSqlTuningAdvisorTask Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<GetManaged Database Sql Tuning Advisor Task Item> 
- A list of SQL Tuning Advisor tasks.
- ManagedDatabase stringId 
- Name string
- The name of the SQL Tuning Advisor task.
- Status string
- TimeGreater stringThan Or Equal To 
- TimeLess stringThan Or Equal To 
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]GetManaged Database Sql Tuning Advisor Task Item 
- A list of SQL Tuning Advisor tasks.
- ManagedDatabase stringId 
- Name string
- The name of the SQL Tuning Advisor task.
- Status string
- TimeGreater stringThan Or Equal To 
- TimeLess stringThan Or Equal To 
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<GetManaged Database Sql Tuning Advisor Task Item> 
- A list of SQL Tuning Advisor tasks.
- managedDatabase StringId 
- name String
- The name of the SQL Tuning Advisor task.
- status String
- timeGreater StringThan Or Equal To 
- timeLess StringThan Or Equal To 
- id string
- The provider-assigned unique ID for this managed resource.
- items
GetManaged Database Sql Tuning Advisor Task Item[] 
- A list of SQL Tuning Advisor tasks.
- managedDatabase stringId 
- name string
- The name of the SQL Tuning Advisor task.
- status string
- timeGreater stringThan Or Equal To 
- timeLess stringThan Or Equal To 
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[GetManaged Database Sql Tuning Advisor Task Item] 
- A list of SQL Tuning Advisor tasks.
- managed_database_ strid 
- name str
- The name of the SQL Tuning Advisor task.
- status str
- time_greater_ strthan_ or_ equal_ to 
- time_less_ strthan_ or_ equal_ to 
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- A list of SQL Tuning Advisor tasks.
- managedDatabase StringId 
- name String
- The name of the SQL Tuning Advisor task.
- status String
- timeGreater StringThan Or Equal To 
- timeLess StringThan Or Equal To 
Supporting Types
GetManagedDatabaseSqlTuningAdvisorTaskItem       
- DaysTo intExpire 
- The number of days left before the task expires. If the value equals -1, then the task has no expiration time (UNLIMITED).
- Description string
- The description of the SQL Tuning Advisor task.
- InstanceId int
- The instance ID of the SQL Tuning Advisor task. This is not the OCID.
- Name string
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- Owner string
- The owner of the SQL Tuning Advisor task.
- RecommendationCount int
- The number of recommendations provided for the SQL Tuning Advisor task.
- SqlTuning stringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- TaskStatus string
- The status of the SQL Tuning Advisor task.
- TimeCreated string
- The Creation date of the SQL Tuning Advisor task.
- TimeExecution stringEnded 
- The end time of the task execution.
- TimeExecution stringStarted 
- The start time of the task execution.
- TotalSql intStatements 
- The total number of SQL statements related to the SQL Tuning Advisor task.
- DaysTo intExpire 
- The number of days left before the task expires. If the value equals -1, then the task has no expiration time (UNLIMITED).
- Description string
- The description of the SQL Tuning Advisor task.
- InstanceId int
- The instance ID of the SQL Tuning Advisor task. This is not the OCID.
- Name string
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- Owner string
- The owner of the SQL Tuning Advisor task.
- RecommendationCount int
- The number of recommendations provided for the SQL Tuning Advisor task.
- SqlTuning stringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- TaskStatus string
- The status of the SQL Tuning Advisor task.
- TimeCreated string
- The Creation date of the SQL Tuning Advisor task.
- TimeExecution stringEnded 
- The end time of the task execution.
- TimeExecution stringStarted 
- The start time of the task execution.
- TotalSql intStatements 
- The total number of SQL statements related to the SQL Tuning Advisor task.
- daysTo IntegerExpire 
- The number of days left before the task expires. If the value equals -1, then the task has no expiration time (UNLIMITED).
- description String
- The description of the SQL Tuning Advisor task.
- instanceId Integer
- The instance ID of the SQL Tuning Advisor task. This is not the OCID.
- name String
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- owner String
- The owner of the SQL Tuning Advisor task.
- recommendationCount Integer
- The number of recommendations provided for the SQL Tuning Advisor task.
- sqlTuning StringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- taskStatus String
- The status of the SQL Tuning Advisor task.
- timeCreated String
- The Creation date of the SQL Tuning Advisor task.
- timeExecution StringEnded 
- The end time of the task execution.
- timeExecution StringStarted 
- The start time of the task execution.
- totalSql IntegerStatements 
- The total number of SQL statements related to the SQL Tuning Advisor task.
- daysTo numberExpire 
- The number of days left before the task expires. If the value equals -1, then the task has no expiration time (UNLIMITED).
- description string
- The description of the SQL Tuning Advisor task.
- instanceId number
- The instance ID of the SQL Tuning Advisor task. This is not the OCID.
- name string
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- owner string
- The owner of the SQL Tuning Advisor task.
- recommendationCount number
- The number of recommendations provided for the SQL Tuning Advisor task.
- sqlTuning stringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- taskStatus string
- The status of the SQL Tuning Advisor task.
- timeCreated string
- The Creation date of the SQL Tuning Advisor task.
- timeExecution stringEnded 
- The end time of the task execution.
- timeExecution stringStarted 
- The start time of the task execution.
- totalSql numberStatements 
- The total number of SQL statements related to the SQL Tuning Advisor task.
- days_to_ intexpire 
- The number of days left before the task expires. If the value equals -1, then the task has no expiration time (UNLIMITED).
- description str
- The description of the SQL Tuning Advisor task.
- instance_id int
- The instance ID of the SQL Tuning Advisor task. This is not the OCID.
- name str
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- owner str
- The owner of the SQL Tuning Advisor task.
- recommendation_count int
- The number of recommendations provided for the SQL Tuning Advisor task.
- sql_tuning_ stradvisor_ task_ id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- task_status str
- The status of the SQL Tuning Advisor task.
- time_created str
- The Creation date of the SQL Tuning Advisor task.
- time_execution_ strended 
- The end time of the task execution.
- time_execution_ strstarted 
- The start time of the task execution.
- total_sql_ intstatements 
- The total number of SQL statements related to the SQL Tuning Advisor task.
- daysTo NumberExpire 
- The number of days left before the task expires. If the value equals -1, then the task has no expiration time (UNLIMITED).
- description String
- The description of the SQL Tuning Advisor task.
- instanceId Number
- The instance ID of the SQL Tuning Advisor task. This is not the OCID.
- name String
- The optional query parameter to filter the SQL Tuning Advisor task list by name.
- owner String
- The owner of the SQL Tuning Advisor task.
- recommendationCount Number
- The number of recommendations provided for the SQL Tuning Advisor task.
- sqlTuning StringAdvisor Task Id 
- The unique identifier of the SQL Tuning Advisor task. This is not the OCID.
- taskStatus String
- The status of the SQL Tuning Advisor task.
- timeCreated String
- The Creation date of the SQL Tuning Advisor task.
- timeExecution StringEnded 
- The end time of the task execution.
- timeExecution StringStarted 
- The start time of the task execution.
- totalSql NumberStatements 
- The total number of SQL statements related to the SQL Tuning Advisor task.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.