oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsCollectionOperations
Explore with Pulumi AI
This data source provides the list of Managed Database Optimizer Statistics Collection Operations in Oracle Cloud Infrastructure Database Management service.
Lists the optimizer statistics (Auto and Manual) task operation summary for the specified Managed Database. The summary includes the details of each operation and the number of tasks grouped by status: Completed, In Progress, Failed, and so on. Optionally, you can specify a date-time range (of seven days) to obtain the list of operations that fall within the specified time range. If the date-time range is not specified, then the operations in the last seven days are listed. This API also enables the pagination of results and the opc-next-page response header indicates whether there is a next page. If you use the same header value in a consecutive request, the next page records are returned. To obtain the required results, you can apply the different types of filters supported by this API.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabaseOptimizerStatisticsCollectionOperations = oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsCollectionOperations({
managedDatabaseId: testManagedDatabase.id,
endTimeLessThanOrEqualTo: managedDatabaseOptimizerStatisticsCollectionOperationEndTimeLessThanOrEqualTo,
filterBy: managedDatabaseOptimizerStatisticsCollectionOperationFilterBy,
startTimeGreaterThanOrEqualTo: managedDatabaseOptimizerStatisticsCollectionOperationStartTimeGreaterThanOrEqualTo,
taskType: managedDatabaseOptimizerStatisticsCollectionOperationTaskType,
});
import pulumi
import pulumi_oci as oci
test_managed_database_optimizer_statistics_collection_operations = oci.DatabaseManagement.get_managed_database_optimizer_statistics_collection_operations(managed_database_id=test_managed_database["id"],
end_time_less_than_or_equal_to=managed_database_optimizer_statistics_collection_operation_end_time_less_than_or_equal_to,
filter_by=managed_database_optimizer_statistics_collection_operation_filter_by,
start_time_greater_than_or_equal_to=managed_database_optimizer_statistics_collection_operation_start_time_greater_than_or_equal_to,
task_type=managed_database_optimizer_statistics_collection_operation_task_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DatabaseManagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DatabaseManagement.GetManagedDatabaseOptimizerStatisticsCollectionOperations(ctx, &databasemanagement.GetManagedDatabaseOptimizerStatisticsCollectionOperationsArgs{
ManagedDatabaseId: testManagedDatabase.Id,
EndTimeLessThanOrEqualTo: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionOperationEndTimeLessThanOrEqualTo),
FilterBy: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionOperationFilterBy),
StartTimeGreaterThanOrEqualTo: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionOperationStartTimeGreaterThanOrEqualTo),
TaskType: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionOperationTaskType),
}, 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 testManagedDatabaseOptimizerStatisticsCollectionOperations = Oci.DatabaseManagement.GetManagedDatabaseOptimizerStatisticsCollectionOperations.Invoke(new()
{
ManagedDatabaseId = testManagedDatabase.Id,
EndTimeLessThanOrEqualTo = managedDatabaseOptimizerStatisticsCollectionOperationEndTimeLessThanOrEqualTo,
FilterBy = managedDatabaseOptimizerStatisticsCollectionOperationFilterBy,
StartTimeGreaterThanOrEqualTo = managedDatabaseOptimizerStatisticsCollectionOperationStartTimeGreaterThanOrEqualTo,
TaskType = managedDatabaseOptimizerStatisticsCollectionOperationTaskType,
});
});
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.GetManagedDatabaseOptimizerStatisticsCollectionOperationsArgs;
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 testManagedDatabaseOptimizerStatisticsCollectionOperations = DatabaseManagementFunctions.getManagedDatabaseOptimizerStatisticsCollectionOperations(GetManagedDatabaseOptimizerStatisticsCollectionOperationsArgs.builder()
.managedDatabaseId(testManagedDatabase.id())
.endTimeLessThanOrEqualTo(managedDatabaseOptimizerStatisticsCollectionOperationEndTimeLessThanOrEqualTo)
.filterBy(managedDatabaseOptimizerStatisticsCollectionOperationFilterBy)
.startTimeGreaterThanOrEqualTo(managedDatabaseOptimizerStatisticsCollectionOperationStartTimeGreaterThanOrEqualTo)
.taskType(managedDatabaseOptimizerStatisticsCollectionOperationTaskType)
.build());
}
}
variables:
testManagedDatabaseOptimizerStatisticsCollectionOperations:
fn::invoke:
Function: oci:DatabaseManagement:getManagedDatabaseOptimizerStatisticsCollectionOperations
Arguments:
managedDatabaseId: ${testManagedDatabase.id}
endTimeLessThanOrEqualTo: ${managedDatabaseOptimizerStatisticsCollectionOperationEndTimeLessThanOrEqualTo}
filterBy: ${managedDatabaseOptimizerStatisticsCollectionOperationFilterBy}
startTimeGreaterThanOrEqualTo: ${managedDatabaseOptimizerStatisticsCollectionOperationStartTimeGreaterThanOrEqualTo}
taskType: ${managedDatabaseOptimizerStatisticsCollectionOperationTaskType}
Using getManagedDatabaseOptimizerStatisticsCollectionOperations
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 getManagedDatabaseOptimizerStatisticsCollectionOperations(args: GetManagedDatabaseOptimizerStatisticsCollectionOperationsArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult>
function getManagedDatabaseOptimizerStatisticsCollectionOperationsOutput(args: GetManagedDatabaseOptimizerStatisticsCollectionOperationsOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult>
def get_managed_database_optimizer_statistics_collection_operations(end_time_less_than_or_equal_to: Optional[str] = None,
filter_by: Optional[str] = None,
filters: Optional[Sequence[_databasemanagement.GetManagedDatabaseOptimizerStatisticsCollectionOperationsFilter]] = None,
limit: Optional[int] = None,
managed_database_id: Optional[str] = None,
start_time_greater_than_or_equal_to: Optional[str] = None,
task_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult
def get_managed_database_optimizer_statistics_collection_operations_output(end_time_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
filter_by: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_databasemanagement.GetManagedDatabaseOptimizerStatisticsCollectionOperationsFilterArgs]]]] = None,
limit: Optional[pulumi.Input[int]] = None,
managed_database_id: Optional[pulumi.Input[str]] = None,
start_time_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
task_type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult]
func GetManagedDatabaseOptimizerStatisticsCollectionOperations(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsCollectionOperationsArgs, opts ...InvokeOption) (*GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult, error)
func GetManagedDatabaseOptimizerStatisticsCollectionOperationsOutput(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsCollectionOperationsOutputArgs, opts ...InvokeOption) GetManagedDatabaseOptimizerStatisticsCollectionOperationsResultOutput
> Note: This function is named GetManagedDatabaseOptimizerStatisticsCollectionOperations
in the Go SDK.
public static class GetManagedDatabaseOptimizerStatisticsCollectionOperations
{
public static Task<GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult> InvokeAsync(GetManagedDatabaseOptimizerStatisticsCollectionOperationsArgs args, InvokeOptions? opts = null)
public static Output<GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult> Invoke(GetManagedDatabaseOptimizerStatisticsCollectionOperationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagedDatabaseOptimizerStatisticsCollectionOperationsResult> getManagedDatabaseOptimizerStatisticsCollectionOperations(GetManagedDatabaseOptimizerStatisticsCollectionOperationsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:DatabaseManagement/getManagedDatabaseOptimizerStatisticsCollectionOperations:getManagedDatabaseOptimizerStatisticsCollectionOperations
arguments:
# arguments dictionary
The following arguments are supported:
- Managed
Database stringId - The OCID of the Managed Database.
- End
Time 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'".
- Filter
By string - The parameter used to filter the optimizer statistics operations. Any property of the OptimizerStatisticsCollectionOperationSummary can be used to define the filter condition. The allowed conditional operators are AND or OR, and the allowed binary operators are are >, < and =. Any other operator is regarded invalid. Example: jobName= AND status=
- Filters
List<Get
Managed Database Optimizer Statistics Collection Operations Filter> - Limit int
- Start
Time 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'".
- Task
Type string - The filter types of the optimizer statistics tasks.
- Managed
Database stringId - The OCID of the Managed Database.
- End
Time 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'".
- Filter
By string - The parameter used to filter the optimizer statistics operations. Any property of the OptimizerStatisticsCollectionOperationSummary can be used to define the filter condition. The allowed conditional operators are AND or OR, and the allowed binary operators are are >, < and =. Any other operator is regarded invalid. Example: jobName= AND status=
- Filters
[]Get
Managed Database Optimizer Statistics Collection Operations Filter - Limit int
- Start
Time 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'".
- Task
Type string - The filter types of the optimizer statistics tasks.
- managed
Database StringId - The OCID of the Managed Database.
- end
Time 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'".
- filter
By String - The parameter used to filter the optimizer statistics operations. Any property of the OptimizerStatisticsCollectionOperationSummary can be used to define the filter condition. The allowed conditional operators are AND or OR, and the allowed binary operators are are >, < and =. Any other operator is regarded invalid. Example: jobName= AND status=
- filters
List<Get
Managed Database Optimizer Statistics Collection Operations Filter> - limit Integer
- start
Time 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'".
- task
Type String - The filter types of the optimizer statistics tasks.
- managed
Database stringId - The OCID of the Managed Database.
- end
Time 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'".
- filter
By string - The parameter used to filter the optimizer statistics operations. Any property of the OptimizerStatisticsCollectionOperationSummary can be used to define the filter condition. The allowed conditional operators are AND or OR, and the allowed binary operators are are >, < and =. Any other operator is regarded invalid. Example: jobName= AND status=
- filters
Get
Managed Database Optimizer Statistics Collection Operations Filter[] - limit number
- start
Time 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'".
- task
Type string - The filter types of the optimizer statistics tasks.
- 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'".
- filter_
by str - The parameter used to filter the optimizer statistics operations. Any property of the OptimizerStatisticsCollectionOperationSummary can be used to define the filter condition. The allowed conditional operators are AND or OR, and the allowed binary operators are are >, < and =. Any other operator is regarded invalid. Example: jobName= AND status=
- filters
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Collection Operations Filter] - limit int
- 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'".
- task_
type str - The filter types of the optimizer statistics tasks.
- managed
Database StringId - The OCID of the Managed Database.
- end
Time 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'".
- filter
By String - The parameter used to filter the optimizer statistics operations. Any property of the OptimizerStatisticsCollectionOperationSummary can be used to define the filter condition. The allowed conditional operators are AND or OR, and the allowed binary operators are are >, < and =. Any other operator is regarded invalid. Example: jobName= AND status=
- filters List<Property Map>
- limit Number
- start
Time 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'".
- task
Type String - The filter types of the optimizer statistics tasks.
getManagedDatabaseOptimizerStatisticsCollectionOperations Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Database stringId - Optimizer
Statistics List<GetCollection Operations Collections Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection> - The list of optimizer_statistics_collection_operations_collection.
- End
Time stringLess Than Or Equal To - Filter
By string - Filters
List<Get
Managed Database Optimizer Statistics Collection Operations Filter> - Limit int
- Start
Time stringGreater Than Or Equal To - Task
Type string
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Database stringId - Optimizer
Statistics []GetCollection Operations Collections Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection - The list of optimizer_statistics_collection_operations_collection.
- End
Time stringLess Than Or Equal To - Filter
By string - Filters
[]Get
Managed Database Optimizer Statistics Collection Operations Filter - Limit int
- Start
Time stringGreater Than Or Equal To - Task
Type string
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Database StringId - optimizer
Statistics List<GetCollection Operations Collections Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection> - The list of optimizer_statistics_collection_operations_collection.
- end
Time StringLess Than Or Equal To - filter
By String - filters
List<Get
Managed Database Optimizer Statistics Collection Operations Filter> - limit Integer
- start
Time StringGreater Than Or Equal To - task
Type String
- id string
- The provider-assigned unique ID for this managed resource.
- managed
Database stringId - optimizer
Statistics GetCollection Operations Collections Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection[] - The list of optimizer_statistics_collection_operations_collection.
- end
Time stringLess Than Or Equal To - filter
By string - filters
Get
Managed Database Optimizer Statistics Collection Operations Filter[] - limit number
- start
Time stringGreater Than Or Equal To - task
Type string
- id str
- The provider-assigned unique ID for this managed resource.
- managed_
database_ strid - optimizer_
statistics_ Sequence[databasemanagement.collection_ operations_ collections Get Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection] - The list of optimizer_statistics_collection_operations_collection.
- end_
time_ strless_ than_ or_ equal_ to - filter_
by str - filters
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Collection Operations Filter] - limit int
- start_
time_ strgreater_ than_ or_ equal_ to - task_
type str
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Database StringId - optimizer
Statistics List<Property Map>Collection Operations Collections - The list of optimizer_statistics_collection_operations_collection.
- end
Time StringLess Than Or Equal To - filter
By String - filters List<Property Map>
- limit Number
- start
Time StringGreater Than Or Equal To - task
Type String
Supporting Types
GetManagedDatabaseOptimizerStatisticsCollectionOperationsFilter
GetManagedDatabaseOptimizerStatisticsCollectionOperationsOptimizerStatisticsCollectionOperationsCollection
GetManagedDatabaseOptimizerStatisticsCollectionOperationsOptimizerStatisticsCollectionOperationsCollectionItem
- Completed
Count int - The number of objects for which statistics collection is completed.
- Databases
List<Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Database> - The summary of the Managed Database resource.
- Duration
In doubleSeconds - The time it takes to complete the operation (in seconds).
- End
Time string - The end time of the operation.
- Failed
Count int - The number of objects for which statistics collection failed.
- Id int
- The ID of the operation.
- In
Progress intCount - The number of objects for which statistics collection is in progress.
- Job
Name string - The name of the job.
- Operation
Name string - The name of the operation.
- Start
Time string - The start time of the operation.
- Status string
- The status of the Optimizer Statistics Collection task.
- Target string
- The name of the target object for which statistics are gathered.
- Tasks
List<Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Task> - An array of Optimizer Statistics Collection task details.
- Timed
Out intCount - The number of objects for which statistics collection timed out.
- Total
Objects intCount - The total number of objects for which statistics is collected. This number is the sum of all the objects with various statuses: completed, inProgress, failed, and timedOut.
- Completed
Count int - The number of objects for which statistics collection is completed.
- Databases
[]Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Database - The summary of the Managed Database resource.
- Duration
In float64Seconds - The time it takes to complete the operation (in seconds).
- End
Time string - The end time of the operation.
- Failed
Count int - The number of objects for which statistics collection failed.
- Id int
- The ID of the operation.
- In
Progress intCount - The number of objects for which statistics collection is in progress.
- Job
Name string - The name of the job.
- Operation
Name string - The name of the operation.
- Start
Time string - The start time of the operation.
- Status string
- The status of the Optimizer Statistics Collection task.
- Target string
- The name of the target object for which statistics are gathered.
- Tasks
[]Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Task - An array of Optimizer Statistics Collection task details.
- Timed
Out intCount - The number of objects for which statistics collection timed out.
- Total
Objects intCount - The total number of objects for which statistics is collected. This number is the sum of all the objects with various statuses: completed, inProgress, failed, and timedOut.
- completed
Count Integer - The number of objects for which statistics collection is completed.
- databases
List<Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Database> - The summary of the Managed Database resource.
- duration
In DoubleSeconds - The time it takes to complete the operation (in seconds).
- end
Time String - The end time of the operation.
- failed
Count Integer - The number of objects for which statistics collection failed.
- id Integer
- The ID of the operation.
- in
Progress IntegerCount - The number of objects for which statistics collection is in progress.
- job
Name String - The name of the job.
- operation
Name String - The name of the operation.
- start
Time String - The start time of the operation.
- status String
- The status of the Optimizer Statistics Collection task.
- target String
- The name of the target object for which statistics are gathered.
- tasks
List<Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Task> - An array of Optimizer Statistics Collection task details.
- timed
Out IntegerCount - The number of objects for which statistics collection timed out.
- total
Objects IntegerCount - The total number of objects for which statistics is collected. This number is the sum of all the objects with various statuses: completed, inProgress, failed, and timedOut.
- completed
Count number - The number of objects for which statistics collection is completed.
- databases
Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Database[] - The summary of the Managed Database resource.
- duration
In numberSeconds - The time it takes to complete the operation (in seconds).
- end
Time string - The end time of the operation.
- failed
Count number - The number of objects for which statistics collection failed.
- id number
- The ID of the operation.
- in
Progress numberCount - The number of objects for which statistics collection is in progress.
- job
Name string - The name of the job.
- operation
Name string - The name of the operation.
- start
Time string - The start time of the operation.
- status string
- The status of the Optimizer Statistics Collection task.
- target string
- The name of the target object for which statistics are gathered.
- tasks
Get
Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Task[] - An array of Optimizer Statistics Collection task details.
- timed
Out numberCount - The number of objects for which statistics collection timed out.
- total
Objects numberCount - The total number of objects for which statistics is collected. This number is the sum of all the objects with various statuses: completed, inProgress, failed, and timedOut.
- completed_
count int - The number of objects for which statistics collection is completed.
- databases
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Database] - The summary of the Managed Database resource.
- duration_
in_ floatseconds - The time it takes to complete the operation (in seconds).
- end_
time str - The end time of the operation.
- failed_
count int - The number of objects for which statistics collection failed.
- id int
- The ID of the operation.
- in_
progress_ intcount - The number of objects for which statistics collection is in progress.
- job_
name str - The name of the job.
- operation_
name str - The name of the operation.
- start_
time str - The start time of the operation.
- status str
- The status of the Optimizer Statistics Collection task.
- target str
- The name of the target object for which statistics are gathered.
- tasks
Sequence[databasemanagement.
Get Managed Database Optimizer Statistics Collection Operations Optimizer Statistics Collection Operations Collection Item Task] - An array of Optimizer Statistics Collection task details.
- timed_
out_ intcount - The number of objects for which statistics collection timed out.
- total_
objects_ intcount - The total number of objects for which statistics is collected. This number is the sum of all the objects with various statuses: completed, inProgress, failed, and timedOut.
- completed
Count Number - The number of objects for which statistics collection is completed.
- databases List<Property Map>
- The summary of the Managed Database resource.
- duration
In NumberSeconds - The time it takes to complete the operation (in seconds).
- end
Time String - The end time of the operation.
- failed
Count Number - The number of objects for which statistics collection failed.
- id Number
- The ID of the operation.
- in
Progress NumberCount - The number of objects for which statistics collection is in progress.
- job
Name String - The name of the job.
- operation
Name String - The name of the operation.
- start
Time String - The start time of the operation.
- status String
- The status of the Optimizer Statistics Collection task.
- target String
- The name of the target object for which statistics are gathered.
- tasks List<Property Map>
- An array of Optimizer Statistics Collection task details.
- timed
Out NumberCount - The number of objects for which statistics collection timed out.
- total
Objects NumberCount - The total number of objects for which statistics is collected. This number is the sum of all the objects with various statuses: completed, inProgress, failed, and timedOut.
GetManagedDatabaseOptimizerStatisticsCollectionOperationsOptimizerStatisticsCollectionOperationsCollectionItemDatabase
- 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 ID of the operation.
- Name string
- The name of the Managed Database.
- 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 ID of the operation.
- Name string
- The name of the Managed Database.
- 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 ID of the operation.
- name String
- The name of the Managed Database.
- 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 ID of the operation.
- name string
- The name of the Managed Database.
- 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 ID of the operation.
- name str
- The name of the Managed Database.
- 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 ID of the operation.
- name String
- The name of the Managed Database.
GetManagedDatabaseOptimizerStatisticsCollectionOperationsOptimizerStatisticsCollectionOperationsCollectionItemTask
- Status string
- The status of the Optimizer Statistics Collection task.
- Target string
- The name of the target object for which statistics are gathered.
- Target
Type string - The type of target object.
- Time
End string - The end time of the Optimizer Statistics Collection task.
- Time
Start string - The start time of the Optimizer Statistics Collection task.
- Status string
- The status of the Optimizer Statistics Collection task.
- Target string
- The name of the target object for which statistics are gathered.
- Target
Type string - The type of target object.
- Time
End string - The end time of the Optimizer Statistics Collection task.
- Time
Start string - The start time of the Optimizer Statistics Collection task.
- status String
- The status of the Optimizer Statistics Collection task.
- target String
- The name of the target object for which statistics are gathered.
- target
Type String - The type of target object.
- time
End String - The end time of the Optimizer Statistics Collection task.
- time
Start String - The start time of the Optimizer Statistics Collection task.
- status string
- The status of the Optimizer Statistics Collection task.
- target string
- The name of the target object for which statistics are gathered.
- target
Type string - The type of target object.
- time
End string - The end time of the Optimizer Statistics Collection task.
- time
Start string - The start time of the Optimizer Statistics Collection task.
- status str
- The status of the Optimizer Statistics Collection task.
- target str
- The name of the target object for which statistics are gathered.
- target_
type str - The type of target object.
- time_
end str - The end time of the Optimizer Statistics Collection task.
- time_
start str - The start time of the Optimizer Statistics Collection task.
- status String
- The status of the Optimizer Statistics Collection task.
- target String
- The name of the target object for which statistics are gathered.
- target
Type String - The type of target object.
- time
End String - The end time of the Optimizer Statistics Collection task.
- time
Start String - The start time of the Optimizer Statistics Collection task.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.