import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Managed Database Sql Tuning Set resource in Oracle Cloud Infrastructure Database Management service. * * Lists the SQL tuning sets for the specified Managed Database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedDatabaseSqlTuningSet = oci.databasemanagement.getManagedDatabaseSqlTuningSet({ * managedDatabaseId: testManagedDatabase.id, * nameContains: managedDatabaseSqlTuningSetNameContains, * owner: managedDatabaseSqlTuningSetOwner, * }); * ``` */ export declare function getManagedDatabaseSqlTuningSet(args: GetManagedDatabaseSqlTuningSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedDatabaseSqlTuningSet. */ export interface GetManagedDatabaseSqlTuningSetArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ managedDatabaseId: string; /** * Allow searching the name of the SQL tuning set by partial matching. The search is case insensitive. */ nameContains?: string; /** * The owner of the SQL tuning set. */ owner?: string; } /** * A collection of values returned by getManagedDatabaseSqlTuningSet. */ export interface GetManagedDatabaseSqlTuningSetResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The details in the SQL tuning set summary. */ readonly items: outputs.DatabaseManagement.GetManagedDatabaseSqlTuningSetItem[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ readonly managedDatabaseId: string; readonly nameContains?: string; /** * The owner of the SQL tuning set. */ readonly owner?: string; } /** * This data source provides details about a specific Managed Database Sql Tuning Set resource in Oracle Cloud Infrastructure Database Management service. * * Lists the SQL tuning sets for the specified Managed Database. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedDatabaseSqlTuningSet = oci.databasemanagement.getManagedDatabaseSqlTuningSet({ * managedDatabaseId: testManagedDatabase.id, * nameContains: managedDatabaseSqlTuningSetNameContains, * owner: managedDatabaseSqlTuningSetOwner, * }); * ``` */ export declare function getManagedDatabaseSqlTuningSetOutput(args: GetManagedDatabaseSqlTuningSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedDatabaseSqlTuningSet. */ export interface GetManagedDatabaseSqlTuningSetOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ managedDatabaseId: pulumi.Input; /** * Allow searching the name of the SQL tuning set by partial matching. The search is case insensitive. */ nameContains?: pulumi.Input; /** * The owner of the SQL tuning set. */ owner?: pulumi.Input; } //# sourceMappingURL=getManagedDatabaseSqlTuningSet.d.ts.map