oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsCollectionAggregations
Explore with Pulumi AI
This data source provides the list of Managed Database Optimizer Statistics Collection Aggregations in Oracle Cloud Infrastructure Database Management service.
Gets a list of the optimizer statistics collection operations per hour, grouped by task or object status for the specified Managed Database. You must specify a value for the GroupByQueryParam to determine whether the data should be grouped by task status or task object status. Optionally, you can specify a date-time range (of seven days) to obtain collection aggregations within the specified time range. If the date-time range is not specified, then the operations in the last seven days are listed. You can further filter the results by providing the optional type of TaskTypeQueryParam. If the task type if not provided, then both Auto and Manual tasks are considered for aggregation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagedDatabaseOptimizerStatisticsCollectionAggregations = oci.DatabaseManagement.getManagedDatabaseOptimizerStatisticsCollectionAggregations({
    groupType: managedDatabaseOptimizerStatisticsCollectionAggregationGroupType,
    managedDatabaseId: testManagedDatabase.id,
    endTimeLessThanOrEqualTo: managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo,
    startTimeGreaterThanOrEqualTo: managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo,
    taskType: managedDatabaseOptimizerStatisticsCollectionAggregationTaskType,
});
import pulumi
import pulumi_oci as oci
test_managed_database_optimizer_statistics_collection_aggregations = oci.DatabaseManagement.get_managed_database_optimizer_statistics_collection_aggregations(group_type=managed_database_optimizer_statistics_collection_aggregation_group_type,
    managed_database_id=test_managed_database["id"],
    end_time_less_than_or_equal_to=managed_database_optimizer_statistics_collection_aggregation_end_time_less_than_or_equal_to,
    start_time_greater_than_or_equal_to=managed_database_optimizer_statistics_collection_aggregation_start_time_greater_than_or_equal_to,
    task_type=managed_database_optimizer_statistics_collection_aggregation_task_type)
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.GetManagedDatabaseOptimizerStatisticsCollectionAggregations(ctx, &databasemanagement.GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs{
			GroupType:                     managedDatabaseOptimizerStatisticsCollectionAggregationGroupType,
			ManagedDatabaseId:             testManagedDatabase.Id,
			EndTimeLessThanOrEqualTo:      pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo),
			StartTimeGreaterThanOrEqualTo: pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo),
			TaskType:                      pulumi.StringRef(managedDatabaseOptimizerStatisticsCollectionAggregationTaskType),
		}, 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 testManagedDatabaseOptimizerStatisticsCollectionAggregations = Oci.DatabaseManagement.GetManagedDatabaseOptimizerStatisticsCollectionAggregations.Invoke(new()
    {
        GroupType = managedDatabaseOptimizerStatisticsCollectionAggregationGroupType,
        ManagedDatabaseId = testManagedDatabase.Id,
        EndTimeLessThanOrEqualTo = managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo,
        StartTimeGreaterThanOrEqualTo = managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo,
        TaskType = managedDatabaseOptimizerStatisticsCollectionAggregationTaskType,
    });
});
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.GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs;
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 testManagedDatabaseOptimizerStatisticsCollectionAggregations = DatabaseManagementFunctions.getManagedDatabaseOptimizerStatisticsCollectionAggregations(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs.builder()
            .groupType(managedDatabaseOptimizerStatisticsCollectionAggregationGroupType)
            .managedDatabaseId(testManagedDatabase.id())
            .endTimeLessThanOrEqualTo(managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo)
            .startTimeGreaterThanOrEqualTo(managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo)
            .taskType(managedDatabaseOptimizerStatisticsCollectionAggregationTaskType)
            .build());
    }
}
variables:
  testManagedDatabaseOptimizerStatisticsCollectionAggregations:
    fn::invoke:
      function: oci:DatabaseManagement:getManagedDatabaseOptimizerStatisticsCollectionAggregations
      arguments:
        groupType: ${managedDatabaseOptimizerStatisticsCollectionAggregationGroupType}
        managedDatabaseId: ${testManagedDatabase.id}
        endTimeLessThanOrEqualTo: ${managedDatabaseOptimizerStatisticsCollectionAggregationEndTimeLessThanOrEqualTo}
        startTimeGreaterThanOrEqualTo: ${managedDatabaseOptimizerStatisticsCollectionAggregationStartTimeGreaterThanOrEqualTo}
        taskType: ${managedDatabaseOptimizerStatisticsCollectionAggregationTaskType}
Using getManagedDatabaseOptimizerStatisticsCollectionAggregations
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 getManagedDatabaseOptimizerStatisticsCollectionAggregations(args: GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs, opts?: InvokeOptions): Promise<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult>
function getManagedDatabaseOptimizerStatisticsCollectionAggregationsOutput(args: GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOutputArgs, opts?: InvokeOptions): Output<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult>def get_managed_database_optimizer_statistics_collection_aggregations(end_time_less_than_or_equal_to: Optional[str] = None,
                                                                      filters: Optional[Sequence[GetManagedDatabaseOptimizerStatisticsCollectionAggregationsFilter]] = None,
                                                                      group_type: Optional[str] = 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) -> GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult
def get_managed_database_optimizer_statistics_collection_aggregations_output(end_time_less_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedDatabaseOptimizerStatisticsCollectionAggregationsFilterArgs]]]] = None,
                                                                      group_type: Optional[pulumi.Input[str]] = 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[GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult]func GetManagedDatabaseOptimizerStatisticsCollectionAggregations(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs, opts ...InvokeOption) (*GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult, error)
func GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOutput(ctx *Context, args *GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOutputArgs, opts ...InvokeOption) GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResultOutput> Note: This function is named GetManagedDatabaseOptimizerStatisticsCollectionAggregations in the Go SDK.
public static class GetManagedDatabaseOptimizerStatisticsCollectionAggregations 
{
    public static Task<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult> InvokeAsync(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs args, InvokeOptions? opts = null)
    public static Output<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult> Invoke(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult> getManagedDatabaseOptimizerStatisticsCollectionAggregations(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs args, InvokeOptions options)
public static Output<GetManagedDatabaseOptimizerStatisticsCollectionAggregationsResult> getManagedDatabaseOptimizerStatisticsCollectionAggregations(GetManagedDatabaseOptimizerStatisticsCollectionAggregationsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DatabaseManagement/getManagedDatabaseOptimizerStatisticsCollectionAggregations:getManagedDatabaseOptimizerStatisticsCollectionAggregations
  arguments:
    # arguments dictionaryThe following arguments are supported:
- GroupType string
- The optimizer statistics tasks grouped by type.
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- EndTime 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'".
- Filters
List<GetManaged Database Optimizer Statistics Collection Aggregations Filter> 
- Limit int
- StartTime 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'".
- TaskType string
- The filter types of the optimizer statistics tasks.
- GroupType string
- The optimizer statistics tasks grouped by type.
- ManagedDatabase stringId 
- The OCID of the Managed Database.
- EndTime 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'".
- Filters
[]GetManaged Database Optimizer Statistics Collection Aggregations Filter 
- Limit int
- StartTime 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'".
- TaskType string
- The filter types of the optimizer statistics tasks.
- groupType String
- The optimizer statistics tasks grouped by type.
- managedDatabase StringId 
- The OCID of the Managed Database.
- endTime 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'".
- filters
List<GetManaged Database Optimizer Statistics Collection Aggregations Filter> 
- limit Integer
- startTime 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'".
- taskType String
- The filter types of the optimizer statistics tasks.
- groupType string
- The optimizer statistics tasks grouped by type.
- managedDatabase stringId 
- The OCID of the Managed Database.
- endTime 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'".
- filters
GetManaged Database Optimizer Statistics Collection Aggregations Filter[] 
- limit number
- startTime 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'".
- taskType string
- The filter types of the optimizer statistics tasks.
- group_type str
- The optimizer statistics tasks grouped by type.
- 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'".
- filters
Sequence[GetManaged Database Optimizer Statistics Collection Aggregations 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.
- groupType String
- The optimizer statistics tasks grouped by type.
- managedDatabase StringId 
- The OCID of the Managed Database.
- endTime 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'".
- filters List<Property Map>
- limit Number
- startTime 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'".
- taskType String
- The filter types of the optimizer statistics tasks.
getManagedDatabaseOptimizerStatisticsCollectionAggregations Result
The following output properties are available:
- GroupType string
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- OptimizerStatistics List<GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection> 
- The list of optimizer_statistics_collection_aggregations_collection.
- EndTime stringLess Than Or Equal To 
- Filters
List<GetManaged Database Optimizer Statistics Collection Aggregations Filter> 
- Limit int
- StartTime stringGreater Than Or Equal To 
- TaskType string
- GroupType string
- Id string
- The provider-assigned unique ID for this managed resource.
- ManagedDatabase stringId 
- OptimizerStatistics []GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection 
- The list of optimizer_statistics_collection_aggregations_collection.
- EndTime stringLess Than Or Equal To 
- Filters
[]GetManaged Database Optimizer Statistics Collection Aggregations Filter 
- Limit int
- StartTime stringGreater Than Or Equal To 
- TaskType string
- groupType String
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- optimizerStatistics List<GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection> 
- The list of optimizer_statistics_collection_aggregations_collection.
- endTime StringLess Than Or Equal To 
- filters
List<GetManaged Database Optimizer Statistics Collection Aggregations Filter> 
- limit Integer
- startTime StringGreater Than Or Equal To 
- taskType String
- groupType string
- id string
- The provider-assigned unique ID for this managed resource.
- managedDatabase stringId 
- optimizerStatistics GetCollection Aggregations Collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection[] 
- The list of optimizer_statistics_collection_aggregations_collection.
- endTime stringLess Than Or Equal To 
- filters
GetManaged Database Optimizer Statistics Collection Aggregations Filter[] 
- limit number
- startTime stringGreater Than Or Equal To 
- taskType string
- group_type str
- id str
- The provider-assigned unique ID for this managed resource.
- managed_database_ strid 
- optimizer_statistics_ Sequence[Getcollection_ aggregations_ collections Managed Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection] 
- The list of optimizer_statistics_collection_aggregations_collection.
- end_time_ strless_ than_ or_ equal_ to 
- filters
Sequence[GetManaged Database Optimizer Statistics Collection Aggregations Filter] 
- limit int
- start_time_ strgreater_ than_ or_ equal_ to 
- task_type str
- groupType String
- id String
- The provider-assigned unique ID for this managed resource.
- managedDatabase StringId 
- optimizerStatistics List<Property Map>Collection Aggregations Collections 
- The list of optimizer_statistics_collection_aggregations_collection.
- endTime StringLess Than Or Equal To 
- filters List<Property Map>
- limit Number
- startTime StringGreater Than Or Equal To 
- taskType String
Supporting Types
GetManagedDatabaseOptimizerStatisticsCollectionAggregationsFilter       
GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOptimizerStatisticsCollectionAggregationsCollection           
- Items
List<GetManaged Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item> 
- The list of Optimizer Statistics Collection details.
- Items
[]GetManaged Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item 
- The list of Optimizer Statistics Collection details.
- items
List<GetManaged Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item> 
- The list of Optimizer Statistics Collection details.
- items
GetManaged Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item[] 
- The list of Optimizer Statistics Collection details.
- items
Sequence[GetManaged Database Optimizer Statistics Collection Aggregations Optimizer Statistics Collection Aggregations Collection Item] 
- The list of Optimizer Statistics Collection details.
- items List<Property Map>
- The list of Optimizer Statistics Collection details.
GetManagedDatabaseOptimizerStatisticsCollectionAggregationsOptimizerStatisticsCollectionAggregationsCollectionItem            
- Completed int
- The number of tasks or objects for which statistics gathering is completed.
- Failed int
- The number of tasks or objects for which statistics gathering failed.
- GroupBy string
- The optimizer statistics tasks grouped by type.
- InProgress int
- The number of tasks or objects for which statistics gathering is in progress.
- Pending int
- The number of tasks or objects for which statistics are yet to be gathered.
- Skipped int
- The number of tasks or objects for which statistics gathering was skipped.
- TimeEnd string
- Indicates the end of the hour as the statistics are aggregated per hour.
- TimeStart string
- Indicates the start of the hour as the statistics are aggregated per hour.
- TimedOut int
- The number of tasks or objects for which statistics gathering timed out.
- Total int
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- Unknown int
- The number of tasks or objects for which the status of statistics gathering is unknown.
- Completed int
- The number of tasks or objects for which statistics gathering is completed.
- Failed int
- The number of tasks or objects for which statistics gathering failed.
- GroupBy string
- The optimizer statistics tasks grouped by type.
- InProgress int
- The number of tasks or objects for which statistics gathering is in progress.
- Pending int
- The number of tasks or objects for which statistics are yet to be gathered.
- Skipped int
- The number of tasks or objects for which statistics gathering was skipped.
- TimeEnd string
- Indicates the end of the hour as the statistics are aggregated per hour.
- TimeStart string
- Indicates the start of the hour as the statistics are aggregated per hour.
- TimedOut int
- The number of tasks or objects for which statistics gathering timed out.
- Total int
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- Unknown int
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed Integer
- The number of tasks or objects for which statistics gathering is completed.
- failed Integer
- The number of tasks or objects for which statistics gathering failed.
- groupBy String
- The optimizer statistics tasks grouped by type.
- inProgress Integer
- The number of tasks or objects for which statistics gathering is in progress.
- pending Integer
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped Integer
- The number of tasks or objects for which statistics gathering was skipped.
- timeEnd String
- Indicates the end of the hour as the statistics are aggregated per hour.
- timeStart String
- Indicates the start of the hour as the statistics are aggregated per hour.
- timedOut Integer
- The number of tasks or objects for which statistics gathering timed out.
- total Integer
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown Integer
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed number
- The number of tasks or objects for which statistics gathering is completed.
- failed number
- The number of tasks or objects for which statistics gathering failed.
- groupBy string
- The optimizer statistics tasks grouped by type.
- inProgress number
- The number of tasks or objects for which statistics gathering is in progress.
- pending number
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped number
- The number of tasks or objects for which statistics gathering was skipped.
- timeEnd string
- Indicates the end of the hour as the statistics are aggregated per hour.
- timeStart string
- Indicates the start of the hour as the statistics are aggregated per hour.
- timedOut number
- The number of tasks or objects for which statistics gathering timed out.
- total number
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown number
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed int
- The number of tasks or objects for which statistics gathering is completed.
- failed int
- The number of tasks or objects for which statistics gathering failed.
- group_by str
- The optimizer statistics tasks grouped by type.
- in_progress int
- The number of tasks or objects for which statistics gathering is in progress.
- pending int
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped int
- The number of tasks or objects for which statistics gathering was skipped.
- time_end str
- Indicates the end of the hour as the statistics are aggregated per hour.
- time_start str
- Indicates the start of the hour as the statistics are aggregated per hour.
- timed_out int
- The number of tasks or objects for which statistics gathering timed out.
- total int
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown int
- The number of tasks or objects for which the status of statistics gathering is unknown.
- completed Number
- The number of tasks or objects for which statistics gathering is completed.
- failed Number
- The number of tasks or objects for which statistics gathering failed.
- groupBy String
- The optimizer statistics tasks grouped by type.
- inProgress Number
- The number of tasks or objects for which statistics gathering is in progress.
- pending Number
- The number of tasks or objects for which statistics are yet to be gathered.
- skipped Number
- The number of tasks or objects for which statistics gathering was skipped.
- timeEnd String
- Indicates the end of the hour as the statistics are aggregated per hour.
- timeStart String
- Indicates the start of the hour as the statistics are aggregated per hour.
- timedOut Number
- The number of tasks or objects for which statistics gathering timed out.
- total Number
- The total number of tasks or objects for which statistics collection is finished. This number is the sum of all the tasks or objects with various statuses: pending, inProgress, completed, failed, skipped, timedOut, and unknown.
- unknown Number
- The number of tasks or objects for which the status of statistics gathering is unknown.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.