1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getMaintenanceRuns
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Database.getMaintenanceRuns

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

This data source provides the list of Maintenance Runs in Oracle Cloud Infrastructure Database service.

Gets a list of the maintenance runs in the specified compartment.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testMaintenanceRuns = oci.Database.getMaintenanceRuns({
    compartmentId: compartmentId,
    availabilityDomain: maintenanceRunAvailabilityDomain,
    isLocalAdg: maintenanceRunIsLocalAdg,
    maintenanceSubtype: maintenanceRunMaintenanceSubtype,
    maintenanceType: maintenanceRunMaintenanceType,
    state: maintenanceRunState,
    targetResourceId: testTargetResource.id,
    targetResourceType: maintenanceRunTargetResourceType,
});
Copy
import pulumi
import pulumi_oci as oci

test_maintenance_runs = oci.Database.get_maintenance_runs(compartment_id=compartment_id,
    availability_domain=maintenance_run_availability_domain,
    is_local_adg=maintenance_run_is_local_adg,
    maintenance_subtype=maintenance_run_maintenance_subtype,
    maintenance_type=maintenance_run_maintenance_type,
    state=maintenance_run_state,
    target_resource_id=test_target_resource["id"],
    target_resource_type=maintenance_run_target_resource_type)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetMaintenanceRuns(ctx, &database.GetMaintenanceRunsArgs{
			CompartmentId:      compartmentId,
			AvailabilityDomain: pulumi.StringRef(maintenanceRunAvailabilityDomain),
			IsLocalAdg:         pulumi.BoolRef(maintenanceRunIsLocalAdg),
			MaintenanceSubtype: pulumi.StringRef(maintenanceRunMaintenanceSubtype),
			MaintenanceType:    pulumi.StringRef(maintenanceRunMaintenanceType),
			State:              pulumi.StringRef(maintenanceRunState),
			TargetResourceId:   pulumi.StringRef(testTargetResource.Id),
			TargetResourceType: pulumi.StringRef(maintenanceRunTargetResourceType),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testMaintenanceRuns = Oci.Database.GetMaintenanceRuns.Invoke(new()
    {
        CompartmentId = compartmentId,
        AvailabilityDomain = maintenanceRunAvailabilityDomain,
        IsLocalAdg = maintenanceRunIsLocalAdg,
        MaintenanceSubtype = maintenanceRunMaintenanceSubtype,
        MaintenanceType = maintenanceRunMaintenanceType,
        State = maintenanceRunState,
        TargetResourceId = testTargetResource.Id,
        TargetResourceType = maintenanceRunTargetResourceType,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetMaintenanceRunsArgs;
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 testMaintenanceRuns = DatabaseFunctions.getMaintenanceRuns(GetMaintenanceRunsArgs.builder()
            .compartmentId(compartmentId)
            .availabilityDomain(maintenanceRunAvailabilityDomain)
            .isLocalAdg(maintenanceRunIsLocalAdg)
            .maintenanceSubtype(maintenanceRunMaintenanceSubtype)
            .maintenanceType(maintenanceRunMaintenanceType)
            .state(maintenanceRunState)
            .targetResourceId(testTargetResource.id())
            .targetResourceType(maintenanceRunTargetResourceType)
            .build());

    }
}
Copy
variables:
  testMaintenanceRuns:
    fn::invoke:
      function: oci:Database:getMaintenanceRuns
      arguments:
        compartmentId: ${compartmentId}
        availabilityDomain: ${maintenanceRunAvailabilityDomain}
        isLocalAdg: ${maintenanceRunIsLocalAdg}
        maintenanceSubtype: ${maintenanceRunMaintenanceSubtype}
        maintenanceType: ${maintenanceRunMaintenanceType}
        state: ${maintenanceRunState}
        targetResourceId: ${testTargetResource.id}
        targetResourceType: ${maintenanceRunTargetResourceType}
Copy

Using getMaintenanceRuns

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 getMaintenanceRuns(args: GetMaintenanceRunsArgs, opts?: InvokeOptions): Promise<GetMaintenanceRunsResult>
function getMaintenanceRunsOutput(args: GetMaintenanceRunsOutputArgs, opts?: InvokeOptions): Output<GetMaintenanceRunsResult>
Copy
def get_maintenance_runs(availability_domain: Optional[str] = None,
                         compartment_id: Optional[str] = None,
                         filters: Optional[Sequence[_database.GetMaintenanceRunsFilter]] = None,
                         is_local_adg: Optional[bool] = None,
                         maintenance_subtype: Optional[str] = None,
                         maintenance_type: Optional[str] = None,
                         state: Optional[str] = None,
                         target_resource_id: Optional[str] = None,
                         target_resource_type: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetMaintenanceRunsResult
def get_maintenance_runs_output(availability_domain: Optional[pulumi.Input[str]] = None,
                         compartment_id: Optional[pulumi.Input[str]] = None,
                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetMaintenanceRunsFilterArgs]]]] = None,
                         is_local_adg: Optional[pulumi.Input[bool]] = None,
                         maintenance_subtype: Optional[pulumi.Input[str]] = None,
                         maintenance_type: Optional[pulumi.Input[str]] = None,
                         state: Optional[pulumi.Input[str]] = None,
                         target_resource_id: Optional[pulumi.Input[str]] = None,
                         target_resource_type: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetMaintenanceRunsResult]
Copy
func GetMaintenanceRuns(ctx *Context, args *GetMaintenanceRunsArgs, opts ...InvokeOption) (*GetMaintenanceRunsResult, error)
func GetMaintenanceRunsOutput(ctx *Context, args *GetMaintenanceRunsOutputArgs, opts ...InvokeOption) GetMaintenanceRunsResultOutput
Copy

> Note: This function is named GetMaintenanceRuns in the Go SDK.

public static class GetMaintenanceRuns 
{
    public static Task<GetMaintenanceRunsResult> InvokeAsync(GetMaintenanceRunsArgs args, InvokeOptions? opts = null)
    public static Output<GetMaintenanceRunsResult> Invoke(GetMaintenanceRunsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetMaintenanceRunsResult> getMaintenanceRuns(GetMaintenanceRunsArgs args, InvokeOptions options)
public static Output<GetMaintenanceRunsResult> getMaintenanceRuns(GetMaintenanceRunsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Database/getMaintenanceRuns:getMaintenanceRuns
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The compartment OCID.
AvailabilityDomain string
A filter to return only resources that match the given availability domain exactly.
Filters Changes to this property will trigger replacement. List<GetMaintenanceRunsFilter>
IsLocalAdg bool
A filter to return the maintenance history results for the local standby Autonomous Database Serverless only.
MaintenanceSubtype string
The sub-type of the maintenance run.
MaintenanceType string
The maintenance type.
State string
A filter to return only resources that match the given lifecycle state exactly.
TargetResourceId string
The target resource ID.
TargetResourceType string
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
CompartmentId This property is required. string
The compartment OCID.
AvailabilityDomain string
A filter to return only resources that match the given availability domain exactly.
Filters Changes to this property will trigger replacement. []GetMaintenanceRunsFilter
IsLocalAdg bool
A filter to return the maintenance history results for the local standby Autonomous Database Serverless only.
MaintenanceSubtype string
The sub-type of the maintenance run.
MaintenanceType string
The maintenance type.
State string
A filter to return only resources that match the given lifecycle state exactly.
TargetResourceId string
The target resource ID.
TargetResourceType string
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
compartmentId This property is required. String
The compartment OCID.
availabilityDomain String
A filter to return only resources that match the given availability domain exactly.
filters Changes to this property will trigger replacement. List<GetMaintenanceRunsFilter>
isLocalAdg Boolean
A filter to return the maintenance history results for the local standby Autonomous Database Serverless only.
maintenanceSubtype String
The sub-type of the maintenance run.
maintenanceType String
The maintenance type.
state String
A filter to return only resources that match the given lifecycle state exactly.
targetResourceId String
The target resource ID.
targetResourceType String
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
compartmentId This property is required. string
The compartment OCID.
availabilityDomain string
A filter to return only resources that match the given availability domain exactly.
filters Changes to this property will trigger replacement. GetMaintenanceRunsFilter[]
isLocalAdg boolean
A filter to return the maintenance history results for the local standby Autonomous Database Serverless only.
maintenanceSubtype string
The sub-type of the maintenance run.
maintenanceType string
The maintenance type.
state string
A filter to return only resources that match the given lifecycle state exactly.
targetResourceId string
The target resource ID.
targetResourceType string
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
compartment_id This property is required. str
The compartment OCID.
availability_domain str
A filter to return only resources that match the given availability domain exactly.
filters Changes to this property will trigger replacement. Sequence[database.GetMaintenanceRunsFilter]
is_local_adg bool
A filter to return the maintenance history results for the local standby Autonomous Database Serverless only.
maintenance_subtype str
The sub-type of the maintenance run.
maintenance_type str
The maintenance type.
state str
A filter to return only resources that match the given lifecycle state exactly.
target_resource_id str
The target resource ID.
target_resource_type str
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
compartmentId This property is required. String
The compartment OCID.
availabilityDomain String
A filter to return only resources that match the given availability domain exactly.
filters Changes to this property will trigger replacement. List<Property Map>
isLocalAdg Boolean
A filter to return the maintenance history results for the local standby Autonomous Database Serverless only.
maintenanceSubtype String
The sub-type of the maintenance run.
maintenanceType String
The maintenance type.
state String
A filter to return only resources that match the given lifecycle state exactly.
targetResourceId String
The target resource ID.
targetResourceType String
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM

getMaintenanceRuns Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
MaintenanceRuns List<GetMaintenanceRunsMaintenanceRun>
The list of maintenance_runs.
AvailabilityDomain string
Filters List<GetMaintenanceRunsFilter>
IsLocalAdg bool
MaintenanceSubtype string
Maintenance sub-type.
MaintenanceType string
Maintenance type.
State string
The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
TargetResourceId string
The ID of the target resource on which the maintenance run occurs.
TargetResourceType string
The type of the target resource on which the maintenance run occurs.
CompartmentId string
The OCID of the compartment.
Id string
The provider-assigned unique ID for this managed resource.
MaintenanceRuns []GetMaintenanceRunsMaintenanceRun
The list of maintenance_runs.
AvailabilityDomain string
Filters []GetMaintenanceRunsFilter
IsLocalAdg bool
MaintenanceSubtype string
Maintenance sub-type.
MaintenanceType string
Maintenance type.
State string
The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
TargetResourceId string
The ID of the target resource on which the maintenance run occurs.
TargetResourceType string
The type of the target resource on which the maintenance run occurs.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
maintenanceRuns List<GetMaintenanceRunsMaintenanceRun>
The list of maintenance_runs.
availabilityDomain String
filters List<GetMaintenanceRunsFilter>
isLocalAdg Boolean
maintenanceSubtype String
Maintenance sub-type.
maintenanceType String
Maintenance type.
state String
The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
targetResourceId String
The ID of the target resource on which the maintenance run occurs.
targetResourceType String
The type of the target resource on which the maintenance run occurs.
compartmentId string
The OCID of the compartment.
id string
The provider-assigned unique ID for this managed resource.
maintenanceRuns GetMaintenanceRunsMaintenanceRun[]
The list of maintenance_runs.
availabilityDomain string
filters GetMaintenanceRunsFilter[]
isLocalAdg boolean
maintenanceSubtype string
Maintenance sub-type.
maintenanceType string
Maintenance type.
state string
The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
targetResourceId string
The ID of the target resource on which the maintenance run occurs.
targetResourceType string
The type of the target resource on which the maintenance run occurs.
compartment_id str
The OCID of the compartment.
id str
The provider-assigned unique ID for this managed resource.
maintenance_runs Sequence[database.GetMaintenanceRunsMaintenanceRun]
The list of maintenance_runs.
availability_domain str
filters Sequence[database.GetMaintenanceRunsFilter]
is_local_adg bool
maintenance_subtype str
Maintenance sub-type.
maintenance_type str
Maintenance type.
state str
The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
target_resource_id str
The ID of the target resource on which the maintenance run occurs.
target_resource_type str
The type of the target resource on which the maintenance run occurs.
compartmentId String
The OCID of the compartment.
id String
The provider-assigned unique ID for this managed resource.
maintenanceRuns List<Property Map>
The list of maintenance_runs.
availabilityDomain String
filters List<Property Map>
isLocalAdg Boolean
maintenanceSubtype String
Maintenance sub-type.
maintenanceType String
Maintenance type.
state String
The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
targetResourceId String
The ID of the target resource on which the maintenance run occurs.
targetResourceType String
The type of the target resource on which the maintenance run occurs.

Supporting Types

GetMaintenanceRunsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetMaintenanceRunsMaintenanceRun

CompartmentId This property is required. string
The compartment OCID.
CurrentCustomActionTimeoutInMins This property is required. int
Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
CurrentPatchingComponent This property is required. string
The name of the current infrastruture component that is getting patched.
CustomActionTimeoutInMins This property is required. int
Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
DatabaseSoftwareImageId This property is required. string
The Autonomous Database Software Image OCID
Description This property is required. string
Description of the maintenance run.
DisplayName This property is required. string
The user-friendly name for the maintenance run.
EstimatedComponentPatchingStartTime This property is required. string
The estimated start time of the next infrastruture component patching operation.
EstimatedPatchingTimes This property is required. List<GetMaintenanceRunsMaintenanceRunEstimatedPatchingTime>
The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching).
Id This property is required. string
The OCID of the maintenance run.
IsCustomActionTimeoutEnabled This property is required. bool
If true, enables the configuration of a custom action timeout (waiting period) between database servers patching operations.
IsDstFileUpdateEnabled This property is required. bool
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
IsMaintenanceRunGranular This property is required. bool
If FALSE, the maintenance run doesn't support granular maintenance.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaintenanceSubtype This property is required. string
The sub-type of the maintenance run.
MaintenanceType This property is required. string
The maintenance type.
PatchFailureCount This property is required. int
Contain the patch failure count.
PatchId This property is required. string
The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier ru_patch_19.9.0.0_201030 is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
PatchType This property is required. string
PatchingEndTime This property is required. string
The time when the patching operation ended.
PatchingMode This property is required. string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
PatchingStartTime This property is required. string
The time when the patching operation started.
PatchingStatus This property is required. string
The status of the patching operation.
PeerMaintenanceRunId This property is required. string
The OCID of the maintenance run for the Autonomous Data Guard association's peer container database.
PeerMaintenanceRunIds This property is required. List<string>
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TargetDbServerVersion This property is required. string
The target software version for the database server patching operation.
TargetResourceId This property is required. string
The target resource ID.
TargetResourceType This property is required. string
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
TargetStorageServerVersion This property is required. string
The target Cell version that is to be patched to.
TimeEnded This property is required. string
The date and time the maintenance run was completed.
TimeScheduled This property is required. string
The date and time the maintenance run is scheduled to occur.
TimeStarted This property is required. string
The date and time the maintenance run starts.
TotalTimeTakenInMins This property is required. int
The total time taken by corresponding resource activity in minutes.
CompartmentId This property is required. string
The compartment OCID.
CurrentCustomActionTimeoutInMins This property is required. int
Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
CurrentPatchingComponent This property is required. string
The name of the current infrastruture component that is getting patched.
CustomActionTimeoutInMins This property is required. int
Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
DatabaseSoftwareImageId This property is required. string
The Autonomous Database Software Image OCID
Description This property is required. string
Description of the maintenance run.
DisplayName This property is required. string
The user-friendly name for the maintenance run.
EstimatedComponentPatchingStartTime This property is required. string
The estimated start time of the next infrastruture component patching operation.
EstimatedPatchingTimes This property is required. []GetMaintenanceRunsMaintenanceRunEstimatedPatchingTime
The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching).
Id This property is required. string
The OCID of the maintenance run.
IsCustomActionTimeoutEnabled This property is required. bool
If true, enables the configuration of a custom action timeout (waiting period) between database servers patching operations.
IsDstFileUpdateEnabled This property is required. bool
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
IsMaintenanceRunGranular This property is required. bool
If FALSE, the maintenance run doesn't support granular maintenance.
LifecycleDetails This property is required. string
Additional information about the current lifecycle state.
MaintenanceSubtype This property is required. string
The sub-type of the maintenance run.
MaintenanceType This property is required. string
The maintenance type.
PatchFailureCount This property is required. int
Contain the patch failure count.
PatchId This property is required. string
The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier ru_patch_19.9.0.0_201030 is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
PatchType This property is required. string
PatchingEndTime This property is required. string
The time when the patching operation ended.
PatchingMode This property is required. string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
PatchingStartTime This property is required. string
The time when the patching operation started.
PatchingStatus This property is required. string
The status of the patching operation.
PeerMaintenanceRunId This property is required. string
The OCID of the maintenance run for the Autonomous Data Guard association's peer container database.
PeerMaintenanceRunIds This property is required. []string
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
State This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
TargetDbServerVersion This property is required. string
The target software version for the database server patching operation.
TargetResourceId This property is required. string
The target resource ID.
TargetResourceType This property is required. string
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
TargetStorageServerVersion This property is required. string
The target Cell version that is to be patched to.
TimeEnded This property is required. string
The date and time the maintenance run was completed.
TimeScheduled This property is required. string
The date and time the maintenance run is scheduled to occur.
TimeStarted This property is required. string
The date and time the maintenance run starts.
TotalTimeTakenInMins This property is required. int
The total time taken by corresponding resource activity in minutes.
compartmentId This property is required. String
The compartment OCID.
currentCustomActionTimeoutInMins This property is required. Integer
Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
currentPatchingComponent This property is required. String
The name of the current infrastruture component that is getting patched.
customActionTimeoutInMins This property is required. Integer
Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
databaseSoftwareImageId This property is required. String
The Autonomous Database Software Image OCID
description This property is required. String
Description of the maintenance run.
displayName This property is required. String
The user-friendly name for the maintenance run.
estimatedComponentPatchingStartTime This property is required. String
The estimated start time of the next infrastruture component patching operation.
estimatedPatchingTimes This property is required. List<GetMaintenanceRunsMaintenanceRunEstimatedPatchingTime>
The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching).
id This property is required. String
The OCID of the maintenance run.
isCustomActionTimeoutEnabled This property is required. Boolean
If true, enables the configuration of a custom action timeout (waiting period) between database servers patching operations.
isDstFileUpdateEnabled This property is required. Boolean
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
isMaintenanceRunGranular This property is required. Boolean
If FALSE, the maintenance run doesn't support granular maintenance.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
maintenanceSubtype This property is required. String
The sub-type of the maintenance run.
maintenanceType This property is required. String
The maintenance type.
patchFailureCount This property is required. Integer
Contain the patch failure count.
patchId This property is required. String
The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier ru_patch_19.9.0.0_201030 is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
patchType This property is required. String
patchingEndTime This property is required. String
The time when the patching operation ended.
patchingMode This property is required. String
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
patchingStartTime This property is required. String
The time when the patching operation started.
patchingStatus This property is required. String
The status of the patching operation.
peerMaintenanceRunId This property is required. String
The OCID of the maintenance run for the Autonomous Data Guard association's peer container database.
peerMaintenanceRunIds This property is required. List<String>
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
targetDbServerVersion This property is required. String
The target software version for the database server patching operation.
targetResourceId This property is required. String
The target resource ID.
targetResourceType This property is required. String
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
targetStorageServerVersion This property is required. String
The target Cell version that is to be patched to.
timeEnded This property is required. String
The date and time the maintenance run was completed.
timeScheduled This property is required. String
The date and time the maintenance run is scheduled to occur.
timeStarted This property is required. String
The date and time the maintenance run starts.
totalTimeTakenInMins This property is required. Integer
The total time taken by corresponding resource activity in minutes.
compartmentId This property is required. string
The compartment OCID.
currentCustomActionTimeoutInMins This property is required. number
Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
currentPatchingComponent This property is required. string
The name of the current infrastruture component that is getting patched.
customActionTimeoutInMins This property is required. number
Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
databaseSoftwareImageId This property is required. string
The Autonomous Database Software Image OCID
description This property is required. string
Description of the maintenance run.
displayName This property is required. string
The user-friendly name for the maintenance run.
estimatedComponentPatchingStartTime This property is required. string
The estimated start time of the next infrastruture component patching operation.
estimatedPatchingTimes This property is required. GetMaintenanceRunsMaintenanceRunEstimatedPatchingTime[]
The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching).
id This property is required. string
The OCID of the maintenance run.
isCustomActionTimeoutEnabled This property is required. boolean
If true, enables the configuration of a custom action timeout (waiting period) between database servers patching operations.
isDstFileUpdateEnabled This property is required. boolean
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
isMaintenanceRunGranular This property is required. boolean
If FALSE, the maintenance run doesn't support granular maintenance.
lifecycleDetails This property is required. string
Additional information about the current lifecycle state.
maintenanceSubtype This property is required. string
The sub-type of the maintenance run.
maintenanceType This property is required. string
The maintenance type.
patchFailureCount This property is required. number
Contain the patch failure count.
patchId This property is required. string
The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier ru_patch_19.9.0.0_201030 is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
patchType This property is required. string
patchingEndTime This property is required. string
The time when the patching operation ended.
patchingMode This property is required. string
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
patchingStartTime This property is required. string
The time when the patching operation started.
patchingStatus This property is required. string
The status of the patching operation.
peerMaintenanceRunId This property is required. string
The OCID of the maintenance run for the Autonomous Data Guard association's peer container database.
peerMaintenanceRunIds This property is required. string[]
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
state This property is required. string
A filter to return only resources that match the given lifecycle state exactly.
targetDbServerVersion This property is required. string
The target software version for the database server patching operation.
targetResourceId This property is required. string
The target resource ID.
targetResourceType This property is required. string
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
targetStorageServerVersion This property is required. string
The target Cell version that is to be patched to.
timeEnded This property is required. string
The date and time the maintenance run was completed.
timeScheduled This property is required. string
The date and time the maintenance run is scheduled to occur.
timeStarted This property is required. string
The date and time the maintenance run starts.
totalTimeTakenInMins This property is required. number
The total time taken by corresponding resource activity in minutes.
compartment_id This property is required. str
The compartment OCID.
current_custom_action_timeout_in_mins This property is required. int
Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
current_patching_component This property is required. str
The name of the current infrastruture component that is getting patched.
custom_action_timeout_in_mins This property is required. int
Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
database_software_image_id This property is required. str
The Autonomous Database Software Image OCID
description This property is required. str
Description of the maintenance run.
display_name This property is required. str
The user-friendly name for the maintenance run.
estimated_component_patching_start_time This property is required. str
The estimated start time of the next infrastruture component patching operation.
estimated_patching_times This property is required. Sequence[database.GetMaintenanceRunsMaintenanceRunEstimatedPatchingTime]
The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching).
id This property is required. str
The OCID of the maintenance run.
is_custom_action_timeout_enabled This property is required. bool
If true, enables the configuration of a custom action timeout (waiting period) between database servers patching operations.
is_dst_file_update_enabled This property is required. bool
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
is_maintenance_run_granular This property is required. bool
If FALSE, the maintenance run doesn't support granular maintenance.
lifecycle_details This property is required. str
Additional information about the current lifecycle state.
maintenance_subtype This property is required. str
The sub-type of the maintenance run.
maintenance_type This property is required. str
The maintenance type.
patch_failure_count This property is required. int
Contain the patch failure count.
patch_id This property is required. str
The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier ru_patch_19.9.0.0_201030 is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
patch_type This property is required. str
patching_end_time This property is required. str
The time when the patching operation ended.
patching_mode This property is required. str
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
patching_start_time This property is required. str
The time when the patching operation started.
patching_status This property is required. str
The status of the patching operation.
peer_maintenance_run_id This property is required. str
The OCID of the maintenance run for the Autonomous Data Guard association's peer container database.
peer_maintenance_run_ids This property is required. Sequence[str]
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
state This property is required. str
A filter to return only resources that match the given lifecycle state exactly.
target_db_server_version This property is required. str
The target software version for the database server patching operation.
target_resource_id This property is required. str
The target resource ID.
target_resource_type This property is required. str
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
target_storage_server_version This property is required. str
The target Cell version that is to be patched to.
time_ended This property is required. str
The date and time the maintenance run was completed.
time_scheduled This property is required. str
The date and time the maintenance run is scheduled to occur.
time_started This property is required. str
The date and time the maintenance run starts.
total_time_taken_in_mins This property is required. int
The total time taken by corresponding resource activity in minutes.
compartmentId This property is required. String
The compartment OCID.
currentCustomActionTimeoutInMins This property is required. Number
Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
currentPatchingComponent This property is required. String
The name of the current infrastruture component that is getting patched.
customActionTimeoutInMins This property is required. Number
Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
databaseSoftwareImageId This property is required. String
The Autonomous Database Software Image OCID
description This property is required. String
Description of the maintenance run.
displayName This property is required. String
The user-friendly name for the maintenance run.
estimatedComponentPatchingStartTime This property is required. String
The estimated start time of the next infrastruture component patching operation.
estimatedPatchingTimes This property is required. List<Property Map>
The estimated total time required in minutes for all patching operations (database server, storage server, and network switch patching).
id This property is required. String
The OCID of the maintenance run.
isCustomActionTimeoutEnabled This property is required. Boolean
If true, enables the configuration of a custom action timeout (waiting period) between database servers patching operations.
isDstFileUpdateEnabled This property is required. Boolean
Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
isMaintenanceRunGranular This property is required. Boolean
If FALSE, the maintenance run doesn't support granular maintenance.
lifecycleDetails This property is required. String
Additional information about the current lifecycle state.
maintenanceSubtype This property is required. String
The sub-type of the maintenance run.
maintenanceType This property is required. String
The maintenance type.
patchFailureCount This property is required. Number
Contain the patch failure count.
patchId This property is required. String
The unique identifier of the patch. The identifier string includes the patch type, the Oracle Database version, and the patch creation date (using the format YYMMDD). For example, the identifier ru_patch_19.9.0.0_201030 is used for an RU patch for Oracle Database 19.9.0.0 that was released October 30, 2020.
patchType This property is required. String
patchingEndTime This property is required. String
The time when the patching operation ended.
patchingMode This property is required. String
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
patchingStartTime This property is required. String
The time when the patching operation started.
patchingStatus This property is required. String
The status of the patching operation.
peerMaintenanceRunId This property is required. String
The OCID of the maintenance run for the Autonomous Data Guard association's peer container database.
peerMaintenanceRunIds This property is required. List<String>
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
state This property is required. String
A filter to return only resources that match the given lifecycle state exactly.
targetDbServerVersion This property is required. String
The target software version for the database server patching operation.
targetResourceId This property is required. String
The target resource ID.
targetResourceType This property is required. String
The type of the target resource. Accepted values are: AUTONOMOUS_CONTAINER_DATABASE, AUTONOMOUS_EXADATA_INFRASTRUCTURE, EXADATA_DB_SYSTEM
targetStorageServerVersion This property is required. String
The target Cell version that is to be patched to.
timeEnded This property is required. String
The date and time the maintenance run was completed.
timeScheduled This property is required. String
The date and time the maintenance run is scheduled to occur.
timeStarted This property is required. String
The date and time the maintenance run starts.
totalTimeTakenInMins This property is required. Number
The total time taken by corresponding resource activity in minutes.

GetMaintenanceRunsMaintenanceRunEstimatedPatchingTime

EstimatedDbServerPatchingTime This property is required. int
The estimated time required in minutes for database server patching.
EstimatedNetworkSwitchesPatchingTime This property is required. int
The estimated time required in minutes for network switch patching.
EstimatedStorageServerPatchingTime This property is required. int
The estimated time required in minutes for storage server patching.
TotalEstimatedPatchingTime This property is required. int
The estimated total time required in minutes for all patching operations.
EstimatedDbServerPatchingTime This property is required. int
The estimated time required in minutes for database server patching.
EstimatedNetworkSwitchesPatchingTime This property is required. int
The estimated time required in minutes for network switch patching.
EstimatedStorageServerPatchingTime This property is required. int
The estimated time required in minutes for storage server patching.
TotalEstimatedPatchingTime This property is required. int
The estimated total time required in minutes for all patching operations.
estimatedDbServerPatchingTime This property is required. Integer
The estimated time required in minutes for database server patching.
estimatedNetworkSwitchesPatchingTime This property is required. Integer
The estimated time required in minutes for network switch patching.
estimatedStorageServerPatchingTime This property is required. Integer
The estimated time required in minutes for storage server patching.
totalEstimatedPatchingTime This property is required. Integer
The estimated total time required in minutes for all patching operations.
estimatedDbServerPatchingTime This property is required. number
The estimated time required in minutes for database server patching.
estimatedNetworkSwitchesPatchingTime This property is required. number
The estimated time required in minutes for network switch patching.
estimatedStorageServerPatchingTime This property is required. number
The estimated time required in minutes for storage server patching.
totalEstimatedPatchingTime This property is required. number
The estimated total time required in minutes for all patching operations.
estimated_db_server_patching_time This property is required. int
The estimated time required in minutes for database server patching.
estimated_network_switches_patching_time This property is required. int
The estimated time required in minutes for network switch patching.
estimated_storage_server_patching_time This property is required. int
The estimated time required in minutes for storage server patching.
total_estimated_patching_time This property is required. int
The estimated total time required in minutes for all patching operations.
estimatedDbServerPatchingTime This property is required. Number
The estimated time required in minutes for database server patching.
estimatedNetworkSwitchesPatchingTime This property is required. Number
The estimated time required in minutes for network switch patching.
estimatedStorageServerPatchingTime This property is required. Number
The estimated time required in minutes for storage server patching.
totalEstimatedPatchingTime This property is required. Number
The estimated total time required in minutes for all patching operations.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi