oci logo
Oracle Cloud Infrastructure v0.19.0, May 26 23

oci.Database.getAutonomousContainerDatabases

Explore with Pulumi AI

This data source provides the list of Autonomous Container Databases in Oracle Cloud Infrastructure Database service.

Gets a list of the Autonomous Container Databases in the specified compartment.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testAutonomousContainerDatabases = Oci.Database.GetAutonomousContainerDatabases.Invoke(new()
    {
        CompartmentId = @var.Compartment_id,
        AutonomousExadataInfrastructureId = oci_database_autonomous_exadata_infrastructure.Test_autonomous_exadata_infrastructure.Id,
        AutonomousVmClusterId = oci_database_autonomous_vm_cluster.Test_autonomous_vm_cluster.Id,
        AvailabilityDomain = @var.Autonomous_container_database_availability_domain,
        CloudAutonomousVmClusterId = oci_database_cloud_autonomous_vm_cluster.Test_cloud_autonomous_vm_cluster.Id,
        DisplayName = @var.Autonomous_container_database_display_name,
        InfrastructureType = @var.Autonomous_container_database_infrastructure_type,
        ServiceLevelAgreementType = @var.Autonomous_container_database_service_level_agreement_type,
        State = @var.Autonomous_container_database_state,
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Database.GetAutonomousContainerDatabases(ctx, &database.GetAutonomousContainerDatabasesArgs{
			CompartmentId:                     _var.Compartment_id,
			AutonomousExadataInfrastructureId: pulumi.StringRef(oci_database_autonomous_exadata_infrastructure.Test_autonomous_exadata_infrastructure.Id),
			AutonomousVmClusterId:             pulumi.StringRef(oci_database_autonomous_vm_cluster.Test_autonomous_vm_cluster.Id),
			AvailabilityDomain:                pulumi.StringRef(_var.Autonomous_container_database_availability_domain),
			CloudAutonomousVmClusterId:        pulumi.StringRef(oci_database_cloud_autonomous_vm_cluster.Test_cloud_autonomous_vm_cluster.Id),
			DisplayName:                       pulumi.StringRef(_var.Autonomous_container_database_display_name),
			InfrastructureType:                pulumi.StringRef(_var.Autonomous_container_database_infrastructure_type),
			ServiceLevelAgreementType:         pulumi.StringRef(_var.Autonomous_container_database_service_level_agreement_type),
			State:                             pulumi.StringRef(_var.Autonomous_container_database_state),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
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.GetAutonomousContainerDatabasesArgs;
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 testAutonomousContainerDatabases = DatabaseFunctions.getAutonomousContainerDatabases(GetAutonomousContainerDatabasesArgs.builder()
            .compartmentId(var_.compartment_id())
            .autonomousExadataInfrastructureId(oci_database_autonomous_exadata_infrastructure.test_autonomous_exadata_infrastructure().id())
            .autonomousVmClusterId(oci_database_autonomous_vm_cluster.test_autonomous_vm_cluster().id())
            .availabilityDomain(var_.autonomous_container_database_availability_domain())
            .cloudAutonomousVmClusterId(oci_database_cloud_autonomous_vm_cluster.test_cloud_autonomous_vm_cluster().id())
            .displayName(var_.autonomous_container_database_display_name())
            .infrastructureType(var_.autonomous_container_database_infrastructure_type())
            .serviceLevelAgreementType(var_.autonomous_container_database_service_level_agreement_type())
            .state(var_.autonomous_container_database_state())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_autonomous_container_databases = oci.Database.get_autonomous_container_databases(compartment_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    autonomous_exadata_infrastructure_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    autonomous_vm_cluster_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    availability_domain=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    cloud_autonomous_vm_cluster_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    display_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    infrastructure_type=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    service_level_agreement_type=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    state=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testAutonomousContainerDatabases = oci.Database.getAutonomousContainerDatabases({
    compartmentId: _var.compartment_id,
    autonomousExadataInfrastructureId: oci_database_autonomous_exadata_infrastructure.test_autonomous_exadata_infrastructure.id,
    autonomousVmClusterId: oci_database_autonomous_vm_cluster.test_autonomous_vm_cluster.id,
    availabilityDomain: _var.autonomous_container_database_availability_domain,
    cloudAutonomousVmClusterId: oci_database_cloud_autonomous_vm_cluster.test_cloud_autonomous_vm_cluster.id,
    displayName: _var.autonomous_container_database_display_name,
    infrastructureType: _var.autonomous_container_database_infrastructure_type,
    serviceLevelAgreementType: _var.autonomous_container_database_service_level_agreement_type,
    state: _var.autonomous_container_database_state,
});
variables:
  testAutonomousContainerDatabases:
    fn::invoke:
      Function: oci:Database:getAutonomousContainerDatabases
      Arguments:
        compartmentId: ${var.compartment_id}
        autonomousExadataInfrastructureId: ${oci_database_autonomous_exadata_infrastructure.test_autonomous_exadata_infrastructure.id}
        autonomousVmClusterId: ${oci_database_autonomous_vm_cluster.test_autonomous_vm_cluster.id}
        availabilityDomain: ${var.autonomous_container_database_availability_domain}
        cloudAutonomousVmClusterId: ${oci_database_cloud_autonomous_vm_cluster.test_cloud_autonomous_vm_cluster.id}
        displayName: ${var.autonomous_container_database_display_name}
        infrastructureType: ${var.autonomous_container_database_infrastructure_type}
        serviceLevelAgreementType: ${var.autonomous_container_database_service_level_agreement_type}
        state: ${var.autonomous_container_database_state}

Using getAutonomousContainerDatabases

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 getAutonomousContainerDatabases(args: GetAutonomousContainerDatabasesArgs, opts?: InvokeOptions): Promise<GetAutonomousContainerDatabasesResult>
function getAutonomousContainerDatabasesOutput(args: GetAutonomousContainerDatabasesOutputArgs, opts?: InvokeOptions): Output<GetAutonomousContainerDatabasesResult>
def get_autonomous_container_databases(autonomous_exadata_infrastructure_id: Optional[str] = None,
                                       autonomous_vm_cluster_id: Optional[str] = None,
                                       availability_domain: Optional[str] = None,
                                       cloud_autonomous_vm_cluster_id: Optional[str] = None,
                                       compartment_id: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       filters: Optional[Sequence[_database.GetAutonomousContainerDatabasesFilter]] = None,
                                       infrastructure_type: Optional[str] = None,
                                       service_level_agreement_type: Optional[str] = None,
                                       state: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetAutonomousContainerDatabasesResult
def get_autonomous_container_databases_output(autonomous_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
                                       autonomous_vm_cluster_id: Optional[pulumi.Input[str]] = None,
                                       availability_domain: Optional[pulumi.Input[str]] = None,
                                       cloud_autonomous_vm_cluster_id: Optional[pulumi.Input[str]] = None,
                                       compartment_id: Optional[pulumi.Input[str]] = None,
                                       display_name: Optional[pulumi.Input[str]] = None,
                                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetAutonomousContainerDatabasesFilterArgs]]]] = None,
                                       infrastructure_type: Optional[pulumi.Input[str]] = None,
                                       service_level_agreement_type: Optional[pulumi.Input[str]] = None,
                                       state: Optional[pulumi.Input[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousContainerDatabasesResult]
func GetAutonomousContainerDatabases(ctx *Context, args *GetAutonomousContainerDatabasesArgs, opts ...InvokeOption) (*GetAutonomousContainerDatabasesResult, error)
func GetAutonomousContainerDatabasesOutput(ctx *Context, args *GetAutonomousContainerDatabasesOutputArgs, opts ...InvokeOption) GetAutonomousContainerDatabasesResultOutput

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

public static class GetAutonomousContainerDatabases 
{
    public static Task<GetAutonomousContainerDatabasesResult> InvokeAsync(GetAutonomousContainerDatabasesArgs args, InvokeOptions? opts = null)
    public static Output<GetAutonomousContainerDatabasesResult> Invoke(GetAutonomousContainerDatabasesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAutonomousContainerDatabasesResult> getAutonomousContainerDatabases(GetAutonomousContainerDatabasesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: oci:Database/getAutonomousContainerDatabases:getAutonomousContainerDatabases
  arguments:
    # arguments dictionary

The following arguments are supported:

CompartmentId string

The compartment OCID.

AutonomousExadataInfrastructureId string

The Autonomous Exadata Infrastructure OCID.

AutonomousVmClusterId string

The Autonomous VM Cluster OCID.

AvailabilityDomain string

A filter to return only resources that match the given availability domain exactly.

CloudAutonomousVmClusterId string

The cloud Autonomous VM Cluster OCID.

DisplayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

Filters List<GetAutonomousContainerDatabasesFilter>
InfrastructureType string

A filter to return only resources that match the given Infrastructure Type.

ServiceLevelAgreementType string

A filter to return only resources that match the given service level agreement type exactly.

State string

A filter to return only resources that match the given lifecycle state exactly.

CompartmentId string

The compartment OCID.

AutonomousExadataInfrastructureId string

The Autonomous Exadata Infrastructure OCID.

AutonomousVmClusterId string

The Autonomous VM Cluster OCID.

AvailabilityDomain string

A filter to return only resources that match the given availability domain exactly.

CloudAutonomousVmClusterId string

The cloud Autonomous VM Cluster OCID.

DisplayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

Filters []GetAutonomousContainerDatabasesFilter
InfrastructureType string

A filter to return only resources that match the given Infrastructure Type.

ServiceLevelAgreementType string

A filter to return only resources that match the given service level agreement type exactly.

State string

A filter to return only resources that match the given lifecycle state exactly.

compartmentId String

The compartment OCID.

autonomousExadataInfrastructureId String

The Autonomous Exadata Infrastructure OCID.

autonomousVmClusterId String

The Autonomous VM Cluster OCID.

availabilityDomain String

A filter to return only resources that match the given availability domain exactly.

cloudAutonomousVmClusterId String

The cloud Autonomous VM Cluster OCID.

displayName String

A filter to return only resources that match the entire display name given. The match is not case sensitive.

filters List<GetAutonomousContainersFilter>
infrastructureType String

A filter to return only resources that match the given Infrastructure Type.

serviceLevelAgreementType String

A filter to return only resources that match the given service level agreement type exactly.

state String

A filter to return only resources that match the given lifecycle state exactly.

compartmentId string

The compartment OCID.

autonomousExadataInfrastructureId string

The Autonomous Exadata Infrastructure OCID.

autonomousVmClusterId string

The Autonomous VM Cluster OCID.

availabilityDomain string

A filter to return only resources that match the given availability domain exactly.

cloudAutonomousVmClusterId string

The cloud Autonomous VM Cluster OCID.

displayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

filters GetAutonomousContainerDatabasesFilter[]
infrastructureType string

A filter to return only resources that match the given Infrastructure Type.

serviceLevelAgreementType string

A filter to return only resources that match the given service level agreement type exactly.

state string

A filter to return only resources that match the given lifecycle state exactly.

compartment_id str

The compartment OCID.

autonomous_exadata_infrastructure_id str

The Autonomous Exadata Infrastructure OCID.

autonomous_vm_cluster_id str

The Autonomous VM Cluster OCID.

availability_domain str

A filter to return only resources that match the given availability domain exactly.

cloud_autonomous_vm_cluster_id str

The cloud Autonomous VM Cluster OCID.

display_name str

A filter to return only resources that match the entire display name given. The match is not case sensitive.

filters GetAutonomousContainerDatabasesFilter]
infrastructure_type str

A filter to return only resources that match the given Infrastructure Type.

service_level_agreement_type str

A filter to return only resources that match the given service level agreement type exactly.

state str

A filter to return only resources that match the given lifecycle state exactly.

compartmentId String

The compartment OCID.

autonomousExadataInfrastructureId String

The Autonomous Exadata Infrastructure OCID.

autonomousVmClusterId String

The Autonomous VM Cluster OCID.

availabilityDomain String

A filter to return only resources that match the given availability domain exactly.

cloudAutonomousVmClusterId String

The cloud Autonomous VM Cluster OCID.

displayName String

A filter to return only resources that match the entire display name given. The match is not case sensitive.

filters List<Property Map>
infrastructureType String

A filter to return only resources that match the given Infrastructure Type.

serviceLevelAgreementType String

A filter to return only resources that match the given service level agreement type exactly.

state String

A filter to return only resources that match the given lifecycle state exactly.

getAutonomousContainerDatabases Result

The following output properties are available:

AutonomousContainerDatabases List<GetAutonomousContainerDatabasesAutonomousContainerDatabase>

The list of autonomous_container_databases.

CompartmentId string

The OCID of the compartment.

Id string

The provider-assigned unique ID for this managed resource.

AutonomousExadataInfrastructureId string

No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.

AutonomousVmClusterId string

The OCID of the Autonomous VM Cluster.

AvailabilityDomain string

The availability domain of the Autonomous Container Database.

CloudAutonomousVmClusterId string

The OCID of the cloud Autonomous Exadata VM Cluster.

DisplayName string

The user-provided name for the Autonomous Container Database.

Filters List<GetAutonomousContainerDatabasesFilter>
InfrastructureType string

The infrastructure type this resource belongs to.

ServiceLevelAgreementType string

The service level agreement type of the container database. The default is STANDARD.

State string

The current state of the Autonomous Container Database.

AutonomousContainerDatabases []GetAutonomousContainerDatabasesAutonomousContainerDatabase

The list of autonomous_container_databases.

CompartmentId string

The OCID of the compartment.

Id string

The provider-assigned unique ID for this managed resource.

AutonomousExadataInfrastructureId string

No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.

AutonomousVmClusterId string

The OCID of the Autonomous VM Cluster.

AvailabilityDomain string

The availability domain of the Autonomous Container Database.

CloudAutonomousVmClusterId string

The OCID of the cloud Autonomous Exadata VM Cluster.

DisplayName string

The user-provided name for the Autonomous Container Database.

Filters []GetAutonomousContainerDatabasesFilter
InfrastructureType string

The infrastructure type this resource belongs to.

ServiceLevelAgreementType string

The service level agreement type of the container database. The default is STANDARD.

State string

The current state of the Autonomous Container Database.

autonomousContainerDatabases List<GetAutonomousContainersAutonomousContainer>

The list of autonomous_container_databases.

compartmentId String

The OCID of the compartment.

id String

The provider-assigned unique ID for this managed resource.

autonomousExadataInfrastructureId String

No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.

autonomousVmClusterId String

The OCID of the Autonomous VM Cluster.

availabilityDomain String

The availability domain of the Autonomous Container Database.

cloudAutonomousVmClusterId String

The OCID of the cloud Autonomous Exadata VM Cluster.

displayName String

The user-provided name for the Autonomous Container Database.

filters List<GetAutonomousContainersFilter>
infrastructureType String

The infrastructure type this resource belongs to.

serviceLevelAgreementType String

The service level agreement type of the container database. The default is STANDARD.

state String

The current state of the Autonomous Container Database.

autonomousContainerDatabases GetAutonomousContainerDatabasesAutonomousContainerDatabase[]

The list of autonomous_container_databases.

compartmentId string

The OCID of the compartment.

id string

The provider-assigned unique ID for this managed resource.

autonomousExadataInfrastructureId string

No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.

autonomousVmClusterId string

The OCID of the Autonomous VM Cluster.

availabilityDomain string

The availability domain of the Autonomous Container Database.

cloudAutonomousVmClusterId string

The OCID of the cloud Autonomous Exadata VM Cluster.

displayName string

The user-provided name for the Autonomous Container Database.

filters GetAutonomousContainerDatabasesFilter[]
infrastructureType string

The infrastructure type this resource belongs to.

serviceLevelAgreementType string

The service level agreement type of the container database. The default is STANDARD.

state string

The current state of the Autonomous Container Database.

autonomous_container_databases GetAutonomousContainerDatabasesAutonomousContainerDatabase]

The list of autonomous_container_databases.

compartment_id str

The OCID of the compartment.

id str

The provider-assigned unique ID for this managed resource.

autonomous_exadata_infrastructure_id str

No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.

autonomous_vm_cluster_id str

The OCID of the Autonomous VM Cluster.

availability_domain str

The availability domain of the Autonomous Container Database.

cloud_autonomous_vm_cluster_id str

The OCID of the cloud Autonomous Exadata VM Cluster.

display_name str

The user-provided name for the Autonomous Container Database.

filters GetAutonomousContainerDatabasesFilter]
infrastructure_type str

The infrastructure type this resource belongs to.

service_level_agreement_type str

The service level agreement type of the container database. The default is STANDARD.

state str

The current state of the Autonomous Container Database.

autonomousContainerDatabases List<Property Map>

The list of autonomous_container_databases.

compartmentId String

The OCID of the compartment.

id String

The provider-assigned unique ID for this managed resource.

autonomousExadataInfrastructureId String

No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.

autonomousVmClusterId String

The OCID of the Autonomous VM Cluster.

availabilityDomain String

The availability domain of the Autonomous Container Database.

cloudAutonomousVmClusterId String

The OCID of the cloud Autonomous Exadata VM Cluster.

displayName String

The user-provided name for the Autonomous Container Database.

filters List<Property Map>
infrastructureType String

The infrastructure type this resource belongs to.

serviceLevelAgreementType String

The service level agreement type of the container database. The default is STANDARD.

state String

The current state of the Autonomous Container Database.

Supporting Types

GetAutonomousContainerDatabasesAutonomousContainerDatabase

AutonomousExadataInfrastructureId string

The Autonomous Exadata Infrastructure OCID.

AutonomousVmClusterId string

The Autonomous VM Cluster OCID.

AvailabilityDomain string

A filter to return only resources that match the given availability domain exactly.

AvailableCpus double

Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

BackupConfigs List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig>

Backup options for the Autonomous Container Database.

CloudAutonomousVmClusterId string

The cloud Autonomous VM Cluster OCID.

CompartmentId string

The compartment OCID.

ComputeModel string

The compute model of the Autonomous VM Cluster. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

DbName string

The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.

DbUniqueName string
DbVersion string

Oracle Database version of the Autonomous Container Database.

DefinedTags Dictionary<string, object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

FastStartFailOverLagLimitInSeconds int
FreeformTags Dictionary<string, object>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Id string

The id of the Autonomous Database Vault service key management history entry.

InfrastructureType string

A filter to return only resources that match the given Infrastructure Type.

IsAutomaticFailoverEnabled bool
KeyHistoryEntries List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry>

Key History Entry.

KeyStoreId string

The OCID of the key store.

KeyStoreWalletName string

The wallet name for Oracle Key Vault.

KmsKeyId string

The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

LastMaintenanceRunId string

The OCID of the last maintenance run.

LifecycleDetails string

Additional information about the current lifecycle state.

MaintenanceWindowDetails List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail>
MaintenanceWindows List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow>

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

MemoryPerOracleComputeUnitInGbs int

The amount of memory (in GBs) enabled per OCPU or ECPU in the Autonomous VM Cluster.See Compute Models for more details.

NextMaintenanceRunId string

The OCID of the next maintenance run.

PatchId string

The OCID of the last patch applied on the system.

PatchModel string

Database patch model preference.

PeerAutonomousContainerDatabaseBackupConfigs List<GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig>
PeerAutonomousContainerDatabaseCompartmentId string
PeerAutonomousContainerDatabaseDisplayName string
PeerAutonomousExadataInfrastructureId string
PeerAutonomousVmClusterId string
PeerCloudAutonomousVmClusterId string
PeerDbUniqueName string
ProtectionMode string
ProvisionableCpuses List<double>

An array of CPU values that can be used to successfully provision a single Autonomous Database.\ For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

ReclaimableCpus double

For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
Role string

The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.

RotateKeyTrigger bool
ServiceLevelAgreementType string

A filter to return only resources that match the given service level agreement type exactly.

StandbyMaintenanceBufferInDays int

The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.

State string

A filter to return only resources that match the given lifecycle state exactly.

TimeCreated string

The date and time the Autonomous Container Database was created.

TimeSnapshotStandbyRevert string

The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.

TotalCpus int

The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

VaultId string

The OCID of the Oracle Cloud Infrastructure vault.

VersionPreference string

The next maintenance version preference.

AutonomousExadataInfrastructureId string

The Autonomous Exadata Infrastructure OCID.

AutonomousVmClusterId string

The Autonomous VM Cluster OCID.

AvailabilityDomain string

A filter to return only resources that match the given availability domain exactly.

AvailableCpus float64

Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

BackupConfigs []GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig

Backup options for the Autonomous Container Database.

CloudAutonomousVmClusterId string

The cloud Autonomous VM Cluster OCID.

CompartmentId string

The compartment OCID.

ComputeModel string

The compute model of the Autonomous VM Cluster. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

DbName string

The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.

DbUniqueName string
DbVersion string

Oracle Database version of the Autonomous Container Database.

DefinedTags map[string]interface{}

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

DisplayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

FastStartFailOverLagLimitInSeconds int
FreeformTags map[string]interface{}

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Id string

The id of the Autonomous Database Vault service key management history entry.

InfrastructureType string

A filter to return only resources that match the given Infrastructure Type.

IsAutomaticFailoverEnabled bool
KeyHistoryEntries []GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry

Key History Entry.

KeyStoreId string

The OCID of the key store.

KeyStoreWalletName string

The wallet name for Oracle Key Vault.

KmsKeyId string

The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

LastMaintenanceRunId string

The OCID of the last maintenance run.

LifecycleDetails string

Additional information about the current lifecycle state.

MaintenanceWindowDetails []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail
MaintenanceWindows []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

MemoryPerOracleComputeUnitInGbs int

The amount of memory (in GBs) enabled per OCPU or ECPU in the Autonomous VM Cluster.See Compute Models for more details.

NextMaintenanceRunId string

The OCID of the next maintenance run.

PatchId string

The OCID of the last patch applied on the system.

PatchModel string

Database patch model preference.

PeerAutonomousContainerDatabaseBackupConfigs []GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig
PeerAutonomousContainerDatabaseCompartmentId string
PeerAutonomousContainerDatabaseDisplayName string
PeerAutonomousExadataInfrastructureId string
PeerAutonomousVmClusterId string
PeerCloudAutonomousVmClusterId string
PeerDbUniqueName string
ProtectionMode string
ProvisionableCpuses []float64

An array of CPU values that can be used to successfully provision a single Autonomous Database.\ For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

ReclaimableCpus float64

For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
Role string

The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.

RotateKeyTrigger bool
ServiceLevelAgreementType string

A filter to return only resources that match the given service level agreement type exactly.

StandbyMaintenanceBufferInDays int

The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.

State string

A filter to return only resources that match the given lifecycle state exactly.

TimeCreated string

The date and time the Autonomous Container Database was created.

TimeSnapshotStandbyRevert string

The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.

TotalCpus int

The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

VaultId string

The OCID of the Oracle Cloud Infrastructure vault.

VersionPreference string

The next maintenance version preference.

autonomousExadataInfrastructureId String

The Autonomous Exadata Infrastructure OCID.

autonomousVmClusterId String

The Autonomous VM Cluster OCID.

availabilityDomain String

A filter to return only resources that match the given availability domain exactly.

availableCpus Double

Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

backupConfigs List<GetAutonomousContainersAutonomousContainerBackupConfig>

Backup options for the Autonomous Container Database.

cloudAutonomousVmClusterId String

The cloud Autonomous VM Cluster OCID.

compartmentId String

The compartment OCID.

computeModel String

The compute model of the Autonomous VM Cluster. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

dbName String

The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.

dbUniqueName String
dbVersion String

Oracle Database version of the Autonomous Container Database.

definedTags Map<String,Object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

displayName String

A filter to return only resources that match the entire display name given. The match is not case sensitive.

fastStartFailOverLagLimitInSeconds Integer
freeformTags Map<String,Object>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

id String

The id of the Autonomous Database Vault service key management history entry.

infrastructureType String

A filter to return only resources that match the given Infrastructure Type.

isAutomaticFailoverEnabled Boolean
keyHistoryEntries List<GetAutonomousContainersAutonomousContainerKeyHistoryEntry>

Key History Entry.

keyStoreId String

The OCID of the key store.

keyStoreWalletName String

The wallet name for Oracle Key Vault.

kmsKeyId String

The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

lastMaintenanceRunId String

The OCID of the last maintenance run.

lifecycleDetails String

Additional information about the current lifecycle state.

maintenanceWindowDetails List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDetail>
maintenanceWindows List<GetAutonomousContainersAutonomousContainerMaintenanceWindow>

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

memoryPerOracleComputeUnitInGbs Integer

The amount of memory (in GBs) enabled per OCPU or ECPU in the Autonomous VM Cluster.See Compute Models for more details.

nextMaintenanceRunId String

The OCID of the next maintenance run.

patchId String

The OCID of the last patch applied on the system.

patchModel String

Database patch model preference.

peerAutonomousContainerDatabaseBackupConfigs List<GetAutonomousContainersAutonomousContainerPeerAutonomousContainerBackupConfig>
peerAutonomousContainerDatabaseCompartmentId String
peerAutonomousContainerDatabaseDisplayName String
peerAutonomousExadataInfrastructureId String
peerAutonomousVmClusterId String
peerCloudAutonomousVmClusterId String
peerDbUniqueName String
protectionMode String
provisionableCpuses List<Double>

An array of CPU values that can be used to successfully provision a single Autonomous Database.\ For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

reclaimableCpus Double

For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
role String

The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.

rotateKeyTrigger Boolean
serviceLevelAgreementType String

A filter to return only resources that match the given service level agreement type exactly.

standbyMaintenanceBufferInDays Integer

The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.

state String

A filter to return only resources that match the given lifecycle state exactly.

timeCreated String

The date and time the Autonomous Container Database was created.

timeSnapshotStandbyRevert String

The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.

totalCpus Integer

The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

vaultId String

The OCID of the Oracle Cloud Infrastructure vault.

versionPreference String

The next maintenance version preference.

autonomousExadataInfrastructureId string

The Autonomous Exadata Infrastructure OCID.

autonomousVmClusterId string

The Autonomous VM Cluster OCID.

availabilityDomain string

A filter to return only resources that match the given availability domain exactly.

availableCpus number

Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

backupConfigs GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig[]

Backup options for the Autonomous Container Database.

cloudAutonomousVmClusterId string

The cloud Autonomous VM Cluster OCID.

compartmentId string

The compartment OCID.

computeModel string

The compute model of the Autonomous VM Cluster. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

dbName string

The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.

dbUniqueName string
dbVersion string

Oracle Database version of the Autonomous Container Database.

definedTags {[key: string]: any}

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

displayName string

A filter to return only resources that match the entire display name given. The match is not case sensitive.

fastStartFailOverLagLimitInSeconds number
freeformTags {[key: string]: any}

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

id string

The id of the Autonomous Database Vault service key management history entry.

infrastructureType string

A filter to return only resources that match the given Infrastructure Type.

isAutomaticFailoverEnabled boolean
keyHistoryEntries GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry[]

Key History Entry.

keyStoreId string

The OCID of the key store.

keyStoreWalletName string

The wallet name for Oracle Key Vault.

kmsKeyId string

The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

lastMaintenanceRunId string

The OCID of the last maintenance run.

lifecycleDetails string

Additional information about the current lifecycle state.

maintenanceWindowDetails GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail[]
maintenanceWindows GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow[]

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

memoryPerOracleComputeUnitInGbs number

The amount of memory (in GBs) enabled per OCPU or ECPU in the Autonomous VM Cluster.See Compute Models for more details.

nextMaintenanceRunId string

The OCID of the next maintenance run.

patchId string

The OCID of the last patch applied on the system.

patchModel string

Database patch model preference.

peerAutonomousContainerDatabaseBackupConfigs GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig[]
peerAutonomousContainerDatabaseCompartmentId string
peerAutonomousContainerDatabaseDisplayName string
peerAutonomousExadataInfrastructureId string
peerAutonomousVmClusterId string
peerCloudAutonomousVmClusterId string
peerDbUniqueName string
protectionMode string
provisionableCpuses number[]

An array of CPU values that can be used to successfully provision a single Autonomous Database.\ For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

reclaimableCpus number

For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
role string

The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.

rotateKeyTrigger boolean
serviceLevelAgreementType string

A filter to return only resources that match the given service level agreement type exactly.

standbyMaintenanceBufferInDays number

The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.

state string

A filter to return only resources that match the given lifecycle state exactly.

timeCreated string

The date and time the Autonomous Container Database was created.

timeSnapshotStandbyRevert string

The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.

totalCpus number

The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

vaultId string

The OCID of the Oracle Cloud Infrastructure vault.

versionPreference string

The next maintenance version preference.

autonomous_exadata_infrastructure_id str

The Autonomous Exadata Infrastructure OCID.

autonomous_vm_cluster_id str

The Autonomous VM Cluster OCID.

availability_domain str

A filter to return only resources that match the given availability domain exactly.

available_cpus float

Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

backup_configs GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig]

Backup options for the Autonomous Container Database.

cloud_autonomous_vm_cluster_id str

The cloud Autonomous VM Cluster OCID.

compartment_id str

The compartment OCID.

compute_model str

The compute model of the Autonomous VM Cluster. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

db_name str

The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.

db_unique_name str
db_version str

Oracle Database version of the Autonomous Container Database.

defined_tags Mapping[str, Any]

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

display_name str

A filter to return only resources that match the entire display name given. The match is not case sensitive.

fast_start_fail_over_lag_limit_in_seconds int
freeform_tags Mapping[str, Any]

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

id str

The id of the Autonomous Database Vault service key management history entry.

infrastructure_type str

A filter to return only resources that match the given Infrastructure Type.

is_automatic_failover_enabled bool
key_history_entries GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry]

Key History Entry.

key_store_id str

The OCID of the key store.

key_store_wallet_name str

The wallet name for Oracle Key Vault.

kms_key_id str

The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

last_maintenance_run_id str

The OCID of the last maintenance run.

lifecycle_details str

Additional information about the current lifecycle state.

maintenance_window_details GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail]
maintenance_windows GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow]

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

memory_per_oracle_compute_unit_in_gbs int

The amount of memory (in GBs) enabled per OCPU or ECPU in the Autonomous VM Cluster.See Compute Models for more details.

next_maintenance_run_id str

The OCID of the next maintenance run.

patch_id str

The OCID of the last patch applied on the system.

patch_model str

Database patch model preference.

peer_autonomous_container_database_backup_configs GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig]
peer_autonomous_container_database_compartment_id str
peer_autonomous_container_database_display_name str
peer_autonomous_exadata_infrastructure_id str
peer_autonomous_vm_cluster_id str
peer_cloud_autonomous_vm_cluster_id str
peer_db_unique_name str
protection_mode str
provisionable_cpuses Sequence[float]

An array of CPU values that can be used to successfully provision a single Autonomous Database.\ For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

reclaimable_cpus float

For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
role str

The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.

rotate_key_trigger bool
service_level_agreement_type str

A filter to return only resources that match the given service level agreement type exactly.

standby_maintenance_buffer_in_days int

The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.

state str

A filter to return only resources that match the given lifecycle state exactly.

time_created str

The date and time the Autonomous Container Database was created.

time_snapshot_standby_revert str

The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.

total_cpus int

The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

vault_id str

The OCID of the Oracle Cloud Infrastructure vault.

version_preference str

The next maintenance version preference.

autonomousExadataInfrastructureId String

The Autonomous Exadata Infrastructure OCID.

autonomousVmClusterId String

The Autonomous VM Cluster OCID.

availabilityDomain String

A filter to return only resources that match the given availability domain exactly.

availableCpus Number

Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

backupConfigs List<Property Map>

Backup options for the Autonomous Container Database.

cloudAutonomousVmClusterId String

The cloud Autonomous VM Cluster OCID.

compartmentId String

The compartment OCID.

computeModel String

The compute model of the Autonomous VM Cluster. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

dbName String

The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters.

dbUniqueName String
dbVersion String

Oracle Database version of the Autonomous Container Database.

definedTags Map<Any>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

displayName String

A filter to return only resources that match the entire display name given. The match is not case sensitive.

fastStartFailOverLagLimitInSeconds Number
freeformTags Map<Any>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

id String

The id of the Autonomous Database Vault service key management history entry.

infrastructureType String

A filter to return only resources that match the given Infrastructure Type.

isAutomaticFailoverEnabled Boolean
keyHistoryEntries List<Property Map>

Key History Entry.

keyStoreId String

The OCID of the key store.

keyStoreWalletName String

The wallet name for Oracle Key Vault.

kmsKeyId String

The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.

lastMaintenanceRunId String

The OCID of the last maintenance run.

lifecycleDetails String

Additional information about the current lifecycle state.

maintenanceWindowDetails List<Property Map>
maintenanceWindows List<Property Map>

The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

memoryPerOracleComputeUnitInGbs Number

The amount of memory (in GBs) enabled per OCPU or ECPU in the Autonomous VM Cluster.See Compute Models for more details.

nextMaintenanceRunId String

The OCID of the next maintenance run.

patchId String

The OCID of the last patch applied on the system.

patchModel String

Database patch model preference.

peerAutonomousContainerDatabaseBackupConfigs List<Property Map>
peerAutonomousContainerDatabaseCompartmentId String
peerAutonomousContainerDatabaseDisplayName String
peerAutonomousExadataInfrastructureId String
peerAutonomousVmClusterId String
peerCloudAutonomousVmClusterId String
peerDbUniqueName String
protectionMode String
provisionableCpuses List<Number>

An array of CPU values that can be used to successfully provision a single Autonomous Database.\ For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

reclaimableCpus Number

For Autonomous Databases on Dedicated Exadata Infrastructure:

  • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
  • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
role String

The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.

rotateKeyTrigger Boolean
serviceLevelAgreementType String

A filter to return only resources that match the given service level agreement type exactly.

standbyMaintenanceBufferInDays Number

The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.

state String

A filter to return only resources that match the given lifecycle state exactly.

timeCreated String

The date and time the Autonomous Container Database was created.

timeSnapshotStandbyRevert String

The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.

totalCpus Number

The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

vaultId String

The OCID of the Oracle Cloud Infrastructure vault.

versionPreference String

The next maintenance version preference.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig

BackupDestinationDetails List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail>

Backup destination details.

RecoveryWindowInDays int

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

BackupDestinationDetails []GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail

Backup destination details.

RecoveryWindowInDays int

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backupDestinationDetails List<GetAutonomousContainersAutonomousContainerBackupConfigBackupDestinationDetail>

Backup destination details.

recoveryWindowInDays Integer

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backupDestinationDetails GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail[]

Backup destination details.

recoveryWindowInDays number

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backup_destination_details GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail]

Backup destination details.

recovery_window_in_days int

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backupDestinationDetails List<Property Map>

Backup destination details.

recoveryWindowInDays Number

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail

Id string

The id of the Autonomous Database Vault service key management history entry.

InternetProxy string

Proxy URL to connect to object store.

Type string

Type of the database backup destination.

VpcPassword string

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

VpcUser string

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

Id string

The id of the Autonomous Database Vault service key management history entry.

InternetProxy string

Proxy URL to connect to object store.

Type string

Type of the database backup destination.

VpcPassword string

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

VpcUser string

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id String

The id of the Autonomous Database Vault service key management history entry.

internetProxy String

Proxy URL to connect to object store.

type String

Type of the database backup destination.

vpcPassword String

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpcUser String

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id string

The id of the Autonomous Database Vault service key management history entry.

internetProxy string

Proxy URL to connect to object store.

type string

Type of the database backup destination.

vpcPassword string

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpcUser string

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id str

The id of the Autonomous Database Vault service key management history entry.

internet_proxy str

Proxy URL to connect to object store.

type str

Type of the database backup destination.

vpc_password str

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpc_user str

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id String

The id of the Autonomous Database Vault service key management history entry.

internetProxy String

Proxy URL to connect to object store.

type String

Type of the database backup destination.

vpcPassword String

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpcUser String

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry

Id string

The id of the Autonomous Database Vault service key management history entry.

KmsKeyVersionId string

The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.

TimeActivated string

The date and time the kms key activated.

VaultId string

The OCID of the Oracle Cloud Infrastructure vault.

Id string

The id of the Autonomous Database Vault service key management history entry.

KmsKeyVersionId string

The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.

TimeActivated string

The date and time the kms key activated.

VaultId string

The OCID of the Oracle Cloud Infrastructure vault.

id String

The id of the Autonomous Database Vault service key management history entry.

kmsKeyVersionId String

The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.

timeActivated String

The date and time the kms key activated.

vaultId String

The OCID of the Oracle Cloud Infrastructure vault.

id string

The id of the Autonomous Database Vault service key management history entry.

kmsKeyVersionId string

The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.

timeActivated string

The date and time the kms key activated.

vaultId string

The OCID of the Oracle Cloud Infrastructure vault.

id str

The id of the Autonomous Database Vault service key management history entry.

kms_key_version_id str

The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.

time_activated str

The date and time the kms key activated.

vault_id str

The OCID of the Oracle Cloud Infrastructure vault.

id String

The id of the Autonomous Database Vault service key management history entry.

kmsKeyVersionId String

The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.

timeActivated String

The date and time the kms key activated.

vaultId String

The OCID of the Oracle Cloud Infrastructure vault.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow

CustomActionTimeoutInMins int

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

DaysOfWeeks List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek>

Days during the week when maintenance should be performed.

HoursOfDays List<int>

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

IsMonthlyPatchingEnabled bool

If true, enables the monthly patching option.

LeadTimeInWeeks int

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

Months List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth>

Months during the year when maintenance should be performed.

PatchingMode string

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

Preference string

The maintenance window scheduling preference.

WeeksOfMonths List<int>

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

CustomActionTimeoutInMins int

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

DaysOfWeeks []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek

Days during the week when maintenance should be performed.

HoursOfDays []int

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

IsMonthlyPatchingEnabled bool

If true, enables the monthly patching option.

LeadTimeInWeeks int

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

Months []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth

Months during the year when maintenance should be performed.

PatchingMode string

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

Preference string

The maintenance window scheduling preference.

WeeksOfMonths []int

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

customActionTimeoutInMins Integer

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

daysOfWeeks List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDaysOfWeek>

Days during the week when maintenance should be performed.

hoursOfDays List<Integer>

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

isMonthlyPatchingEnabled Boolean

If true, enables the monthly patching option.

leadTimeInWeeks Integer

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months List<GetAutonomousContainersAutonomousContainerMaintenanceWindowMonth>

Months during the year when maintenance should be performed.

patchingMode String

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference String

The maintenance window scheduling preference.

weeksOfMonths List<Integer>

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

customActionTimeoutInMins number

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

daysOfWeeks GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek[]

Days during the week when maintenance should be performed.

hoursOfDays number[]

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled boolean

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

isMonthlyPatchingEnabled boolean

If true, enables the monthly patching option.

leadTimeInWeeks number

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth[]

Months during the year when maintenance should be performed.

patchingMode string

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference string

The maintenance window scheduling preference.

weeksOfMonths number[]

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

custom_action_timeout_in_mins int

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

days_of_weeks GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek]

Days during the week when maintenance should be performed.

hours_of_days Sequence[int]

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
is_custom_action_timeout_enabled bool

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

is_monthly_patching_enabled bool

If true, enables the monthly patching option.

lead_time_in_weeks int

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth]

Months during the year when maintenance should be performed.

patching_mode str

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference str

The maintenance window scheduling preference.

weeks_of_months Sequence[int]

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

customActionTimeoutInMins Number

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

daysOfWeeks List<Property Map>

Days during the week when maintenance should be performed.

hoursOfDays List<Number>

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

isMonthlyPatchingEnabled Boolean

If true, enables the monthly patching option.

leadTimeInWeeks Number

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months List<Property Map>

Months during the year when maintenance should be performed.

patchingMode String

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference String

The maintenance window scheduling preference.

weeksOfMonths List<Number>

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek

Name string

Name of the month of the year.

Name string

Name of the month of the year.

name String

Name of the month of the year.

name string

Name of the month of the year.

name str

Name of the month of the year.

name String

Name of the month of the year.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail

CustomActionTimeoutInMins int

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

DaysOfWeeks List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek>

Days during the week when maintenance should be performed.

HoursOfDays List<int>

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

IsMonthlyPatchingEnabled bool

If true, enables the monthly patching option.

LeadTimeInWeeks int

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

Months List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth>

Months during the year when maintenance should be performed.

PatchingMode string

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

Preference string

The maintenance window scheduling preference.

WeeksOfMonths List<int>

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

CustomActionTimeoutInMins int

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

DaysOfWeeks []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek

Days during the week when maintenance should be performed.

HoursOfDays []int

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
IsCustomActionTimeoutEnabled bool

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

IsMonthlyPatchingEnabled bool

If true, enables the monthly patching option.

LeadTimeInWeeks int

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

Months []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth

Months during the year when maintenance should be performed.

PatchingMode string

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

Preference string

The maintenance window scheduling preference.

WeeksOfMonths []int

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

customActionTimeoutInMins Integer

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

daysOfWeeks List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDetailDaysOfWeek>

Days during the week when maintenance should be performed.

hoursOfDays List<Integer>

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

isMonthlyPatchingEnabled Boolean

If true, enables the monthly patching option.

leadTimeInWeeks Integer

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDetailMonth>

Months during the year when maintenance should be performed.

patchingMode String

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference String

The maintenance window scheduling preference.

weeksOfMonths List<Integer>

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

customActionTimeoutInMins number

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

daysOfWeeks GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek[]

Days during the week when maintenance should be performed.

hoursOfDays number[]

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled boolean

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

isMonthlyPatchingEnabled boolean

If true, enables the monthly patching option.

leadTimeInWeeks number

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth[]

Months during the year when maintenance should be performed.

patchingMode string

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference string

The maintenance window scheduling preference.

weeksOfMonths number[]

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

custom_action_timeout_in_mins int

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

days_of_weeks GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek]

Days during the week when maintenance should be performed.

hours_of_days Sequence[int]

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
is_custom_action_timeout_enabled bool

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

is_monthly_patching_enabled bool

If true, enables the monthly patching option.

lead_time_in_weeks int

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth]

Months during the year when maintenance should be performed.

patching_mode str

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference str

The maintenance window scheduling preference.

weeks_of_months Sequence[int]

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

customActionTimeoutInMins Number

Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).

daysOfWeeks List<Property Map>

Days during the week when maintenance should be performed.

hoursOfDays List<Number>

The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

  • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
isCustomActionTimeoutEnabled Boolean

If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.

isMonthlyPatchingEnabled Boolean

If true, enables the monthly patching option.

leadTimeInWeeks Number

Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.

months List<Property Map>

Months during the year when maintenance should be performed.

patchingMode String

Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

preference String

The maintenance window scheduling preference.

weeksOfMonths List<Number>

Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek

Name string

Name of the month of the year.

Name string

Name of the month of the year.

name String

Name of the month of the year.

name string

Name of the month of the year.

name str

Name of the month of the year.

name String

Name of the month of the year.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth

Name string

Name of the month of the year.

Name string

Name of the month of the year.

name String

Name of the month of the year.

name string

Name of the month of the year.

name str

Name of the month of the year.

name String

Name of the month of the year.

GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth

Name string

Name of the month of the year.

Name string

Name of the month of the year.

name String

Name of the month of the year.

name string

Name of the month of the year.

name str

Name of the month of the year.

name String

Name of the month of the year.

GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig

BackupDestinationDetails List<GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail>

Backup destination details.

RecoveryWindowInDays int

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

BackupDestinationDetails []GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail

Backup destination details.

RecoveryWindowInDays int

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backupDestinationDetails List<GetAutonomousContainersAutonomousContainerPeerAutonomousContainerBackupConfigBackupDestinationDetail>

Backup destination details.

recoveryWindowInDays Integer

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backupDestinationDetails GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail[]

Backup destination details.

recoveryWindowInDays number

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backup_destination_details GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail]

Backup destination details.

recovery_window_in_days int

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

backupDestinationDetails List<Property Map>

Backup destination details.

recoveryWindowInDays Number

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups.

GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail

Id string

The id of the Autonomous Database Vault service key management history entry.

InternetProxy string

Proxy URL to connect to object store.

Type string

Type of the database backup destination.

VpcPassword string

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

VpcUser string

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

Id string

The id of the Autonomous Database Vault service key management history entry.

InternetProxy string

Proxy URL to connect to object store.

Type string

Type of the database backup destination.

VpcPassword string

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

VpcUser string

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id String

The id of the Autonomous Database Vault service key management history entry.

internetProxy String

Proxy URL to connect to object store.

type String

Type of the database backup destination.

vpcPassword String

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpcUser String

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id string

The id of the Autonomous Database Vault service key management history entry.

internetProxy string

Proxy URL to connect to object store.

type string

Type of the database backup destination.

vpcPassword string

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpcUser string

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id str

The id of the Autonomous Database Vault service key management history entry.

internet_proxy str

Proxy URL to connect to object store.

type str

Type of the database backup destination.

vpc_password str

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpc_user str

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

id String

The id of the Autonomous Database Vault service key management history entry.

internetProxy String

Proxy URL to connect to object store.

type String

Type of the database backup destination.

vpcPassword String

For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.

vpcUser String

For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

GetAutonomousContainerDatabasesFilter

Name string

Name of the month of the year.

Values List<string>
Regex bool
Name string

Name of the month of the year.

Values []string
Regex bool
name String

Name of the month of the year.

values List<String>
regex Boolean
name string

Name of the month of the year.

values string[]
regex boolean
name str

Name of the month of the year.

values Sequence[str]
regex bool
name String

Name of the month of the year.

values List<String>
regex Boolean

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.