Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
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
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousContainerDatabases = oci.Database.getAutonomousContainerDatabases({
    compartmentId: compartmentId,
    autonomousExadataInfrastructureId: testAutonomousExadataInfrastructure.id,
    autonomousVmClusterId: testAutonomousVmCluster.id,
    availabilityDomain: autonomousContainerDatabaseAvailabilityDomain,
    cloudAutonomousVmClusterId: testCloudAutonomousVmCluster.id,
    displayName: autonomousContainerDatabaseDisplayName,
    infrastructureType: autonomousContainerDatabaseInfrastructureType,
    serviceLevelAgreementType: autonomousContainerDatabaseServiceLevelAgreementType,
    state: autonomousContainerDatabaseState,
});
import pulumi
import pulumi_oci as oci
test_autonomous_container_databases = oci.Database.get_autonomous_container_databases(compartment_id=compartment_id,
    autonomous_exadata_infrastructure_id=test_autonomous_exadata_infrastructure["id"],
    autonomous_vm_cluster_id=test_autonomous_vm_cluster["id"],
    availability_domain=autonomous_container_database_availability_domain,
    cloud_autonomous_vm_cluster_id=test_cloud_autonomous_vm_cluster["id"],
    display_name=autonomous_container_database_display_name,
    infrastructure_type=autonomous_container_database_infrastructure_type,
    service_level_agreement_type=autonomous_container_database_service_level_agreement_type,
    state=autonomous_container_database_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.GetAutonomousContainerDatabases(ctx, &database.GetAutonomousContainerDatabasesArgs{
			CompartmentId:                     compartmentId,
			AutonomousExadataInfrastructureId: pulumi.StringRef(testAutonomousExadataInfrastructure.Id),
			AutonomousVmClusterId:             pulumi.StringRef(testAutonomousVmCluster.Id),
			AvailabilityDomain:                pulumi.StringRef(autonomousContainerDatabaseAvailabilityDomain),
			CloudAutonomousVmClusterId:        pulumi.StringRef(testCloudAutonomousVmCluster.Id),
			DisplayName:                       pulumi.StringRef(autonomousContainerDatabaseDisplayName),
			InfrastructureType:                pulumi.StringRef(autonomousContainerDatabaseInfrastructureType),
			ServiceLevelAgreementType:         pulumi.StringRef(autonomousContainerDatabaseServiceLevelAgreementType),
			State:                             pulumi.StringRef(autonomousContainerDatabaseState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testAutonomousContainerDatabases = Oci.Database.GetAutonomousContainerDatabases.Invoke(new()
    {
        CompartmentId = compartmentId,
        AutonomousExadataInfrastructureId = testAutonomousExadataInfrastructure.Id,
        AutonomousVmClusterId = testAutonomousVmCluster.Id,
        AvailabilityDomain = autonomousContainerDatabaseAvailabilityDomain,
        CloudAutonomousVmClusterId = testCloudAutonomousVmCluster.Id,
        DisplayName = autonomousContainerDatabaseDisplayName,
        InfrastructureType = autonomousContainerDatabaseInfrastructureType,
        ServiceLevelAgreementType = autonomousContainerDatabaseServiceLevelAgreementType,
        State = autonomousContainerDatabaseState,
    });
});
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(compartmentId)
            .autonomousExadataInfrastructureId(testAutonomousExadataInfrastructure.id())
            .autonomousVmClusterId(testAutonomousVmCluster.id())
            .availabilityDomain(autonomousContainerDatabaseAvailabilityDomain)
            .cloudAutonomousVmClusterId(testCloudAutonomousVmCluster.id())
            .displayName(autonomousContainerDatabaseDisplayName)
            .infrastructureType(autonomousContainerDatabaseInfrastructureType)
            .serviceLevelAgreementType(autonomousContainerDatabaseServiceLevelAgreementType)
            .state(autonomousContainerDatabaseState)
            .build());
    }
}
variables:
  testAutonomousContainerDatabases:
    fn::invoke:
      function: oci:Database:getAutonomousContainerDatabases
      arguments:
        compartmentId: ${compartmentId}
        autonomousExadataInfrastructureId: ${testAutonomousExadataInfrastructure.id}
        autonomousVmClusterId: ${testAutonomousVmCluster.id}
        availabilityDomain: ${autonomousContainerDatabaseAvailabilityDomain}
        cloudAutonomousVmClusterId: ${testCloudAutonomousVmCluster.id}
        displayName: ${autonomousContainerDatabaseDisplayName}
        infrastructureType: ${autonomousContainerDatabaseInfrastructureType}
        serviceLevelAgreementType: ${autonomousContainerDatabaseServiceLevelAgreementType}
        state: ${autonomousContainerDatabaseState}
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[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[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)
public static Output<GetAutonomousContainerDatabasesResult> getAutonomousContainerDatabases(GetAutonomousContainerDatabasesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Database/getAutonomousContainerDatabases:getAutonomousContainerDatabases
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The compartment OCID.
- AutonomousExadata stringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- AutonomousVm stringCluster Id 
- The Autonomous VM Cluster OCID.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- CloudAutonomous stringVm Cluster Id 
- 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<GetAutonomous Container Databases Filter> 
- InfrastructureType string
- A filter to return only resources that match the given Infrastructure Type.
- ServiceLevel stringAgreement Type 
- 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.
- AutonomousExadata stringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- AutonomousVm stringCluster Id 
- The Autonomous VM Cluster OCID.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- CloudAutonomous stringVm Cluster Id 
- 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
[]GetAutonomous Container Databases Filter 
- InfrastructureType string
- A filter to return only resources that match the given Infrastructure Type.
- ServiceLevel stringAgreement Type 
- 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.
- autonomousExadata StringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- autonomousVm StringCluster Id 
- The Autonomous VM Cluster OCID.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- cloudAutonomous StringVm Cluster Id 
- 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<GetAutonomous Containers Filter> 
- infrastructureType String
- A filter to return only resources that match the given Infrastructure Type.
- serviceLevel StringAgreement Type 
- 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.
- autonomousExadata stringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- autonomousVm stringCluster Id 
- The Autonomous VM Cluster OCID.
- availabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- cloudAutonomous stringVm Cluster Id 
- 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
GetAutonomous Container Databases Filter[] 
- infrastructureType string
- A filter to return only resources that match the given Infrastructure Type.
- serviceLevel stringAgreement Type 
- 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_ strinfrastructure_ id 
- The Autonomous Exadata Infrastructure OCID.
- autonomous_vm_ strcluster_ id 
- The Autonomous VM Cluster OCID.
- availability_domain str
- A filter to return only resources that match the given availability domain exactly.
- cloud_autonomous_ strvm_ cluster_ id 
- 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
Sequence[GetAutonomous Container Databases Filter] 
- infrastructure_type str
- A filter to return only resources that match the given Infrastructure Type.
- service_level_ stragreement_ type 
- 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.
- autonomousExadata StringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- autonomousVm StringCluster Id 
- The Autonomous VM Cluster OCID.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- cloudAutonomous StringVm Cluster Id 
- 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.
- serviceLevel StringAgreement Type 
- 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:
- AutonomousContainer List<GetDatabases Autonomous Container Databases Autonomous Container Database> 
- The list of autonomous_container_databases.
- CompartmentId string
- The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- AutonomousExadata stringInfrastructure Id 
- No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
- AutonomousVm stringCluster Id 
- The OCID of the Autonomous VM Cluster.
- AvailabilityDomain string
- The domain of the Autonomous Container Database
- CloudAutonomous stringVm Cluster Id 
- The OCID of the cloud Autonomous Exadata VM Cluster.
- DisplayName string
- The user-provided name for the Autonomous Container Database.
- Filters
List<GetAutonomous Container Databases Filter> 
- InfrastructureType string
- The infrastructure type this resource belongs to.
- ServiceLevel stringAgreement Type 
- The service level agreement type of the container database. The default is STANDARD.
- State string
- The current state of the Autonomous Container Database.
- AutonomousContainer []GetDatabases Autonomous Container Databases Autonomous Container Database 
- The list of autonomous_container_databases.
- CompartmentId string
- The OCID of the compartment.
- Id string
- The provider-assigned unique ID for this managed resource.
- AutonomousExadata stringInfrastructure Id 
- No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
- AutonomousVm stringCluster Id 
- The OCID of the Autonomous VM Cluster.
- AvailabilityDomain string
- The domain of the Autonomous Container Database
- CloudAutonomous stringVm Cluster Id 
- The OCID of the cloud Autonomous Exadata VM Cluster.
- DisplayName string
- The user-provided name for the Autonomous Container Database.
- Filters
[]GetAutonomous Container Databases Filter 
- InfrastructureType string
- The infrastructure type this resource belongs to.
- ServiceLevel stringAgreement Type 
- The service level agreement type of the container database. The default is STANDARD.
- State string
- The current state of the Autonomous Container Database.
- autonomousContainer List<GetDatabases Autonomous Containers Autonomous Container> 
- The list of autonomous_container_databases.
- compartmentId String
- The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- autonomousExadata StringInfrastructure Id 
- No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
- autonomousVm StringCluster Id 
- The OCID of the Autonomous VM Cluster.
- availabilityDomain String
- The domain of the Autonomous Container Database
- cloudAutonomous StringVm Cluster Id 
- The OCID of the cloud Autonomous Exadata VM Cluster.
- displayName String
- The user-provided name for the Autonomous Container Database.
- filters
List<GetAutonomous Containers Filter> 
- infrastructureType String
- The infrastructure type this resource belongs to.
- serviceLevel StringAgreement Type 
- The service level agreement type of the container database. The default is STANDARD.
- state String
- The current state of the Autonomous Container Database.
- autonomousContainer GetDatabases Autonomous Container Databases Autonomous Container Database[] 
- The list of autonomous_container_databases.
- compartmentId string
- The OCID of the compartment.
- id string
- The provider-assigned unique ID for this managed resource.
- autonomousExadata stringInfrastructure Id 
- No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
- autonomousVm stringCluster Id 
- The OCID of the Autonomous VM Cluster.
- availabilityDomain string
- The domain of the Autonomous Container Database
- cloudAutonomous stringVm Cluster Id 
- The OCID of the cloud Autonomous Exadata VM Cluster.
- displayName string
- The user-provided name for the Autonomous Container Database.
- filters
GetAutonomous Container Databases Filter[] 
- infrastructureType string
- The infrastructure type this resource belongs to.
- serviceLevel stringAgreement Type 
- 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_ Sequence[Getdatabases Autonomous Container Databases Autonomous Container Database] 
- 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_ strinfrastructure_ id 
- No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
- autonomous_vm_ strcluster_ id 
- The OCID of the Autonomous VM Cluster.
- availability_domain str
- The domain of the Autonomous Container Database
- cloud_autonomous_ strvm_ cluster_ id 
- The OCID of the cloud Autonomous Exadata VM Cluster.
- display_name str
- The user-provided name for the Autonomous Container Database.
- filters
Sequence[GetAutonomous Container Databases Filter] 
- infrastructure_type str
- The infrastructure type this resource belongs to.
- service_level_ stragreement_ type 
- The service level agreement type of the container database. The default is STANDARD.
- state str
- The current state of the Autonomous Container Database.
- autonomousContainer List<Property Map>Databases 
- The list of autonomous_container_databases.
- compartmentId String
- The OCID of the compartment.
- id String
- The provider-assigned unique ID for this managed resource.
- autonomousExadata StringInfrastructure Id 
- No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
- autonomousVm StringCluster Id 
- The OCID of the Autonomous VM Cluster.
- availabilityDomain String
- The domain of the Autonomous Container Database
- cloudAutonomous StringVm Cluster Id 
- 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.
- serviceLevel StringAgreement Type 
- 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      
- AssociatedBackup List<GetConfiguration Details Autonomous Container Databases Autonomous Container Database Associated Backup Configuration Detail> 
- A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
- AutonomousExadata stringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- AutonomousVm stringCluster Id 
- 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<GetAutonomous Container Databases Autonomous Container Database Backup Config> 
- Backup options for the Autonomous Container Database.
- BackupDestination List<GetProperties Lists Autonomous Container Databases Autonomous Container Database Backup Destination Properties List> 
- This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
- CloudAutonomous stringVm Cluster Id 
- The cloud Autonomous VM Cluster OCID.
- CompartmentId string
- The compartment OCID.
- ComputeModel string
- The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- DatabaseSoftware stringImage Id 
- DataguardGroup List<GetMembers Autonomous Container Databases Autonomous Container Database Dataguard Group Member> 
- Array of Dg associations.
- Dataguards
List<GetAutonomous Container Databases Autonomous Container Database Dataguard> 
- The properties that define Autonomous Container Databases Dataguard.
- 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.
- DbSplit intThreshold 
- The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
- DbUnique stringName 
- DbVersion string
- Oracle Database version of the Autonomous Container Database.
- Dictionary<string, string>
- 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.
- DistributionAffinity string
- Determines whether an Autonomous Database must be opened across the maximum number of nodes or the least number of nodes. By default, Minimum nodes is selected.
- DstFile stringVersion 
- DST Time-zone File version of the Autonomous Container Database.
- FailoverTrigger int
- FastStart intFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- Dictionary<string, string>
- 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.
- IsAutomatic boolFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- IsData boolGuard Enabled 
- Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- IsDst boolFile Update Enabled 
- Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
- IsMultiple boolStandby 
- Whether it is multiple standby Autonomous Dataguard
- KeyHistory List<GetEntries Autonomous Container Databases Autonomous Container Database Key History Entry> 
- Key History Entry.
- KeyStore stringId 
- The OCID of the key store of Oracle Vault.
- KeyStore stringWallet Name 
- The wallet name for Oracle Key Vault.
- KeyVersion stringId 
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- LargestProvisionable doubleAutonomous Database In Cpus 
- The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListOne List<string>Off Patches 
- List of One-Off patches that has been successfully applied to Autonomous Container Database
- MaintenanceWindow List<GetDetails Autonomous Container Databases Autonomous Container Database Maintenance Window Detail> 
- MaintenanceWindows List<GetAutonomous Container Databases Autonomous Container Database Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
- NetServices stringArchitecture 
- Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
- NextMaintenance stringRun Id 
- 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.
- PeerAutonomous List<GetContainer Database Backup Configs Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config> 
- PeerAutonomous stringContainer Database Compartment Id 
- PeerAutonomous stringContainer Database Display Name 
- PeerAutonomous stringExadata Infrastructure Id 
- PeerAutonomous stringVm Cluster Id 
- PeerCloud stringAutonomous Vm Cluster Id 
- PeerDb stringUnique Name 
- ProtectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- ProvisionableCpuses List<double>
- An array of CPU values that can be used to successfully provision a single Autonomous Database.
- ProvisionedCpus double
- The number of CPUs provisioned in an Autonomous Container Database.
- ReclaimableCpus double
- 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.
- RecoveryAppliance List<GetDetails Autonomous Container Databases Autonomous Container Database Recovery Appliance Detail> 
- Information about the recovery appliance configuration associated with the Autonomous Container Database.
- ReinstateTrigger int
- ReservedCpus double
- The number of CPUs reserved in an Autonomous Container Database.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- RotateKey boolTrigger 
- ServiceLevel stringAgreement Type 
- A filter to return only resources that match the given service level agreement type exactly.
- StandbyMaintenance intBuffer In Days 
- 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.
- SwitchoverTrigger int
- TimeCreated string
- The date and time the Autonomous Container Database was created.
- TimeOf stringLast Backup 
- The timestamp of last successful backup. Here NULL value represents either there are no successful backups or backups are not configured for this Autonomous Container Database.
- TimeSnapshot stringStandby Revert 
- 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.
- VaultId string
- The OCID of the Oracle Cloud Infrastructure vault.
- VersionPreference string
- The next maintenance version preference.
- VmFailover intReservation 
- The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
- AssociatedBackup []GetConfiguration Details Autonomous Container Databases Autonomous Container Database Associated Backup Configuration Detail 
- A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
- AutonomousExadata stringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- AutonomousVm stringCluster Id 
- 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 []GetAutonomous Container Databases Autonomous Container Database Backup Config 
- Backup options for the Autonomous Container Database.
- BackupDestination []GetProperties Lists Autonomous Container Databases Autonomous Container Database Backup Destination Properties List 
- This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
- CloudAutonomous stringVm Cluster Id 
- The cloud Autonomous VM Cluster OCID.
- CompartmentId string
- The compartment OCID.
- ComputeModel string
- The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- DatabaseSoftware stringImage Id 
- DataguardGroup []GetMembers Autonomous Container Databases Autonomous Container Database Dataguard Group Member 
- Array of Dg associations.
- Dataguards
[]GetAutonomous Container Databases Autonomous Container Database Dataguard 
- The properties that define Autonomous Container Databases Dataguard.
- 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.
- DbSplit intThreshold 
- The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
- DbUnique stringName 
- DbVersion string
- Oracle Database version of the Autonomous Container Database.
- map[string]string
- 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.
- DistributionAffinity string
- Determines whether an Autonomous Database must be opened across the maximum number of nodes or the least number of nodes. By default, Minimum nodes is selected.
- DstFile stringVersion 
- DST Time-zone File version of the Autonomous Container Database.
- FailoverTrigger int
- FastStart intFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- map[string]string
- 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.
- IsAutomatic boolFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- IsData boolGuard Enabled 
- Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- IsDst boolFile Update Enabled 
- Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
- IsMultiple boolStandby 
- Whether it is multiple standby Autonomous Dataguard
- KeyHistory []GetEntries Autonomous Container Databases Autonomous Container Database Key History Entry 
- Key History Entry.
- KeyStore stringId 
- The OCID of the key store of Oracle Vault.
- KeyStore stringWallet Name 
- The wallet name for Oracle Key Vault.
- KeyVersion stringId 
- KmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- LargestProvisionable float64Autonomous Database In Cpus 
- The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ListOne []stringOff Patches 
- List of One-Off patches that has been successfully applied to Autonomous Container Database
- MaintenanceWindow []GetDetails Autonomous Container Databases Autonomous Container Database Maintenance Window Detail 
- MaintenanceWindows []GetAutonomous Container Databases Autonomous Container Database Maintenance Window 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
- NetServices stringArchitecture 
- Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
- NextMaintenance stringRun Id 
- 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.
- PeerAutonomous []GetContainer Database Backup Configs Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config 
- PeerAutonomous stringContainer Database Compartment Id 
- PeerAutonomous stringContainer Database Display Name 
- PeerAutonomous stringExadata Infrastructure Id 
- PeerAutonomous stringVm Cluster Id 
- PeerCloud stringAutonomous Vm Cluster Id 
- PeerDb stringUnique Name 
- ProtectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- ProvisionableCpuses []float64
- An array of CPU values that can be used to successfully provision a single Autonomous Database.
- ProvisionedCpus float64
- The number of CPUs provisioned in an Autonomous Container Database.
- ReclaimableCpus float64
- 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.
- RecoveryAppliance []GetDetails Autonomous Container Databases Autonomous Container Database Recovery Appliance Detail 
- Information about the recovery appliance configuration associated with the Autonomous Container Database.
- ReinstateTrigger int
- ReservedCpus float64
- The number of CPUs reserved in an Autonomous Container Database.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- RotateKey boolTrigger 
- ServiceLevel stringAgreement Type 
- A filter to return only resources that match the given service level agreement type exactly.
- StandbyMaintenance intBuffer In Days 
- 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.
- SwitchoverTrigger int
- TimeCreated string
- The date and time the Autonomous Container Database was created.
- TimeOf stringLast Backup 
- The timestamp of last successful backup. Here NULL value represents either there are no successful backups or backups are not configured for this Autonomous Container Database.
- TimeSnapshot stringStandby Revert 
- 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.
- VaultId string
- The OCID of the Oracle Cloud Infrastructure vault.
- VersionPreference string
- The next maintenance version preference.
- VmFailover intReservation 
- The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
- associatedBackup List<GetConfiguration Details Autonomous Containers Autonomous Container Associated Backup Configuration Detail> 
- A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
- autonomousExadata StringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- autonomousVm StringCluster Id 
- 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<GetAutonomous Containers Autonomous Container Backup Config> 
- Backup options for the Autonomous Container Database.
- backupDestination List<GetProperties Lists Autonomous Containers Autonomous Container Backup Destination Properties List> 
- This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
- cloudAutonomous StringVm Cluster Id 
- The cloud Autonomous VM Cluster OCID.
- compartmentId String
- The compartment OCID.
- computeModel String
- The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- databaseSoftware StringImage Id 
- dataguardGroup List<GetMembers Autonomous Containers Autonomous Container Dataguard Group Member> 
- Array of Dg associations.
- dataguards
List<GetAutonomous Containers Autonomous Container Dataguard> 
- The properties that define Autonomous Container Databases Dataguard.
- 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.
- dbSplit IntegerThreshold 
- The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
- dbUnique StringName 
- dbVersion String
- Oracle Database version of the Autonomous Container Database.
- Map<String,String>
- 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.
- distributionAffinity String
- Determines whether an Autonomous Database must be opened across the maximum number of nodes or the least number of nodes. By default, Minimum nodes is selected.
- dstFile StringVersion 
- DST Time-zone File version of the Autonomous Container Database.
- failoverTrigger Integer
- fastStart IntegerFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- Map<String,String>
- 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.
- isAutomatic BooleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- isData BooleanGuard Enabled 
- Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- isDst BooleanFile Update Enabled 
- Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
- isMultiple BooleanStandby 
- Whether it is multiple standby Autonomous Dataguard
- keyHistory List<GetEntries Autonomous Containers Autonomous Container Key History Entry> 
- Key History Entry.
- keyStore StringId 
- The OCID of the key store of Oracle Vault.
- keyStore StringWallet Name 
- The wallet name for Oracle Key Vault.
- keyVersion StringId 
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- largestProvisionable DoubleAutonomous Database In Cpus 
- The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listOne List<String>Off Patches 
- List of One-Off patches that has been successfully applied to Autonomous Container Database
- maintenanceWindow List<GetDetails Autonomous Containers Autonomous Container Maintenance Window Detail> 
- maintenanceWindows List<GetAutonomous Containers Autonomous Container Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memoryPer IntegerOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
- netServices StringArchitecture 
- Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
- nextMaintenance StringRun Id 
- 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.
- peerAutonomous List<GetContainer Database Backup Configs Autonomous Containers Autonomous Container Peer Autonomous Container Backup Config> 
- peerAutonomous StringContainer Database Compartment Id 
- peerAutonomous StringContainer Database Display Name 
- peerAutonomous StringExadata Infrastructure Id 
- peerAutonomous StringVm Cluster Id 
- peerCloud StringAutonomous Vm Cluster Id 
- peerDb StringUnique Name 
- protectionMode String
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- provisionableCpuses List<Double>
- An array of CPU values that can be used to successfully provision a single Autonomous Database.
- provisionedCpus Double
- The number of CPUs provisioned in an Autonomous Container Database.
- reclaimableCpus Double
- 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.
- recoveryAppliance List<GetDetails Autonomous Containers Autonomous Container Recovery Appliance Detail> 
- Information about the recovery appliance configuration associated with the Autonomous Container Database.
- reinstateTrigger Integer
- reservedCpus Double
- The number of CPUs reserved in an Autonomous Container Database.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotateKey BooleanTrigger 
- serviceLevel StringAgreement Type 
- A filter to return only resources that match the given service level agreement type exactly.
- standbyMaintenance IntegerBuffer In Days 
- 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.
- switchoverTrigger Integer
- timeCreated String
- The date and time the Autonomous Container Database was created.
- timeOf StringLast Backup 
- The timestamp of last successful backup. Here NULL value represents either there are no successful backups or backups are not configured for this Autonomous Container Database.
- timeSnapshot StringStandby Revert 
- 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.
- vaultId String
- The OCID of the Oracle Cloud Infrastructure vault.
- versionPreference String
- The next maintenance version preference.
- vmFailover IntegerReservation 
- The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
- associatedBackup GetConfiguration Details Autonomous Container Databases Autonomous Container Database Associated Backup Configuration Detail[] 
- A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
- autonomousExadata stringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- autonomousVm stringCluster Id 
- 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 GetAutonomous Container Databases Autonomous Container Database Backup Config[] 
- Backup options for the Autonomous Container Database.
- backupDestination GetProperties Lists Autonomous Container Databases Autonomous Container Database Backup Destination Properties List[] 
- This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
- cloudAutonomous stringVm Cluster Id 
- The cloud Autonomous VM Cluster OCID.
- compartmentId string
- The compartment OCID.
- computeModel string
- The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- databaseSoftware stringImage Id 
- dataguardGroup GetMembers Autonomous Container Databases Autonomous Container Database Dataguard Group Member[] 
- Array of Dg associations.
- dataguards
GetAutonomous Container Databases Autonomous Container Database Dataguard[] 
- The properties that define Autonomous Container Databases Dataguard.
- 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.
- dbSplit numberThreshold 
- The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
- dbUnique stringName 
- dbVersion string
- Oracle Database version of the Autonomous Container Database.
- {[key: string]: string}
- 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.
- distributionAffinity string
- Determines whether an Autonomous Database must be opened across the maximum number of nodes or the least number of nodes. By default, Minimum nodes is selected.
- dstFile stringVersion 
- DST Time-zone File version of the Autonomous Container Database.
- failoverTrigger number
- fastStart numberFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- {[key: string]: string}
- 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.
- isAutomatic booleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- isData booleanGuard Enabled 
- Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- isDst booleanFile Update Enabled 
- Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
- isMultiple booleanStandby 
- Whether it is multiple standby Autonomous Dataguard
- keyHistory GetEntries Autonomous Container Databases Autonomous Container Database Key History Entry[] 
- Key History Entry.
- keyStore stringId 
- The OCID of the key store of Oracle Vault.
- keyStore stringWallet Name 
- The wallet name for Oracle Key Vault.
- keyVersion stringId 
- kmsKey stringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- largestProvisionable numberAutonomous Database In Cpus 
- The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
- lastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- listOne string[]Off Patches 
- List of One-Off patches that has been successfully applied to Autonomous Container Database
- maintenanceWindow GetDetails Autonomous Container Databases Autonomous Container Database Maintenance Window Detail[] 
- maintenanceWindows GetAutonomous Container Databases Autonomous Container Database Maintenance Window[] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memoryPer numberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
- netServices stringArchitecture 
- Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
- nextMaintenance stringRun Id 
- 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.
- peerAutonomous GetContainer Database Backup Configs Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config[] 
- peerAutonomous stringContainer Database Compartment Id 
- peerAutonomous stringContainer Database Display Name 
- peerAutonomous stringExadata Infrastructure Id 
- peerAutonomous stringVm Cluster Id 
- peerCloud stringAutonomous Vm Cluster Id 
- peerDb stringUnique Name 
- protectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- provisionableCpuses number[]
- An array of CPU values that can be used to successfully provision a single Autonomous Database.
- provisionedCpus number
- The number of CPUs provisioned in an Autonomous Container Database.
- reclaimableCpus number
- 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.
- recoveryAppliance GetDetails Autonomous Container Databases Autonomous Container Database Recovery Appliance Detail[] 
- Information about the recovery appliance configuration associated with the Autonomous Container Database.
- reinstateTrigger number
- reservedCpus number
- The number of CPUs reserved in an Autonomous Container Database.
- role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotateKey booleanTrigger 
- serviceLevel stringAgreement Type 
- A filter to return only resources that match the given service level agreement type exactly.
- standbyMaintenance numberBuffer In Days 
- 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.
- switchoverTrigger number
- timeCreated string
- The date and time the Autonomous Container Database was created.
- timeOf stringLast Backup 
- The timestamp of last successful backup. Here NULL value represents either there are no successful backups or backups are not configured for this Autonomous Container Database.
- timeSnapshot stringStandby Revert 
- 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.
- vaultId string
- The OCID of the Oracle Cloud Infrastructure vault.
- versionPreference string
- The next maintenance version preference.
- vmFailover numberReservation 
- The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
- associated_backup_ Sequence[Getconfiguration_ details Autonomous Container Databases Autonomous Container Database Associated Backup Configuration Detail] 
- A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
- autonomous_exadata_ strinfrastructure_ id 
- The Autonomous Exadata Infrastructure OCID.
- autonomous_vm_ strcluster_ id 
- 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 Sequence[GetAutonomous Container Databases Autonomous Container Database Backup Config] 
- Backup options for the Autonomous Container Database.
- backup_destination_ Sequence[Getproperties_ lists Autonomous Container Databases Autonomous Container Database Backup Destination Properties List] 
- This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
- cloud_autonomous_ strvm_ cluster_ id 
- The cloud Autonomous VM Cluster OCID.
- compartment_id str
- The compartment OCID.
- compute_model str
- The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- database_software_ strimage_ id 
- dataguard_group_ Sequence[Getmembers Autonomous Container Databases Autonomous Container Database Dataguard Group Member] 
- Array of Dg associations.
- dataguards
Sequence[GetAutonomous Container Databases Autonomous Container Database Dataguard] 
- The properties that define Autonomous Container Databases Dataguard.
- 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_split_ intthreshold 
- The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
- db_unique_ strname 
- db_version str
- Oracle Database version of the Autonomous Container Database.
- Mapping[str, str]
- 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.
- distribution_affinity str
- Determines whether an Autonomous Database must be opened across the maximum number of nodes or the least number of nodes. By default, Minimum nodes is selected.
- dst_file_ strversion 
- DST Time-zone File version of the Autonomous Container Database.
- failover_trigger int
- fast_start_ intfail_ over_ lag_ limit_ in_ seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- Mapping[str, str]
- 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_ boolfailover_ enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- is_data_ boolguard_ enabled 
- Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is_dst_ boolfile_ update_ enabled 
- Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
- is_multiple_ boolstandby 
- Whether it is multiple standby Autonomous Dataguard
- key_history_ Sequence[Getentries Autonomous Container Databases Autonomous Container Database Key History Entry] 
- Key History Entry.
- key_store_ strid 
- The OCID of the key store of Oracle Vault.
- key_store_ strwallet_ name 
- The wallet name for Oracle Key Vault.
- key_version_ strid 
- kms_key_ strid 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- largest_provisionable_ floatautonomous_ database_ in_ cpus 
- The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
- last_maintenance_ strrun_ id 
- The OCID of the last maintenance run.
- lifecycle_details str
- Additional information about the current lifecycle state.
- list_one_ Sequence[str]off_ patches 
- List of One-Off patches that has been successfully applied to Autonomous Container Database
- maintenance_window_ Sequence[Getdetails Autonomous Container Databases Autonomous Container Database Maintenance Window Detail] 
- maintenance_windows Sequence[GetAutonomous Container Databases Autonomous Container Database Maintenance Window] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory_per_ intoracle_ compute_ unit_ in_ gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
- net_services_ strarchitecture 
- Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
- next_maintenance_ strrun_ id 
- 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_ Sequence[Getcontainer_ database_ backup_ configs Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config] 
- peer_autonomous_ strcontainer_ database_ compartment_ id 
- peer_autonomous_ strcontainer_ database_ display_ name 
- peer_autonomous_ strexadata_ infrastructure_ id 
- peer_autonomous_ strvm_ cluster_ id 
- peer_cloud_ strautonomous_ vm_ cluster_ id 
- peer_db_ strunique_ name 
- protection_mode str
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- provisionable_cpuses Sequence[float]
- An array of CPU values that can be used to successfully provision a single Autonomous Database.
- provisioned_cpus float
- The number of CPUs provisioned in an Autonomous Container Database.
- reclaimable_cpus float
- 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.
- recovery_appliance_ Sequence[Getdetails Autonomous Container Databases Autonomous Container Database Recovery Appliance Detail] 
- Information about the recovery appliance configuration associated with the Autonomous Container Database.
- reinstate_trigger int
- reserved_cpus float
- The number of CPUs reserved in an Autonomous Container Database.
- role str
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotate_key_ booltrigger 
- service_level_ stragreement_ type 
- A filter to return only resources that match the given service level agreement type exactly.
- standby_maintenance_ intbuffer_ in_ days 
- 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.
- switchover_trigger int
- time_created str
- The date and time the Autonomous Container Database was created.
- time_of_ strlast_ backup 
- The timestamp of last successful backup. Here NULL value represents either there are no successful backups or backups are not configured for this Autonomous Container Database.
- time_snapshot_ strstandby_ revert 
- 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.
- vault_id str
- The OCID of the Oracle Cloud Infrastructure vault.
- version_preference str
- The next maintenance version preference.
- vm_failover_ intreservation 
- The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
- associatedBackup List<Property Map>Configuration Details 
- A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
- autonomousExadata StringInfrastructure Id 
- The Autonomous Exadata Infrastructure OCID.
- autonomousVm StringCluster Id 
- 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.
- backupDestination List<Property Map>Properties Lists 
- This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
- cloudAutonomous StringVm Cluster Id 
- The cloud Autonomous VM Cluster OCID.
- compartmentId String
- The compartment OCID.
- computeModel String
- The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- databaseSoftware StringImage Id 
- dataguardGroup List<Property Map>Members 
- Array of Dg associations.
- dataguards List<Property Map>
- The properties that define Autonomous Container Databases Dataguard.
- 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.
- dbSplit NumberThreshold 
- The CPU value beyond which an Autonomous Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs.
- dbUnique StringName 
- dbVersion String
- Oracle Database version of the Autonomous Container Database.
- Map<String>
- 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.
- distributionAffinity String
- Determines whether an Autonomous Database must be opened across the maximum number of nodes or the least number of nodes. By default, Minimum nodes is selected.
- dstFile StringVersion 
- DST Time-zone File version of the Autonomous Container Database.
- failoverTrigger Number
- fastStart NumberFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- Map<String>
- 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.
- isAutomatic BooleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- isData BooleanGuard Enabled 
- Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- isDst BooleanFile Update Enabled 
- Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
- isMultiple BooleanStandby 
- Whether it is multiple standby Autonomous Dataguard
- keyHistory List<Property Map>Entries 
- Key History Entry.
- keyStore StringId 
- The OCID of the key store of Oracle Vault.
- keyStore StringWallet Name 
- The wallet name for Oracle Key Vault.
- keyVersion StringId 
- kmsKey StringId 
- The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- largestProvisionable NumberAutonomous Database In Cpus 
- The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- listOne List<String>Off Patches 
- List of One-Off patches that has been successfully applied to Autonomous Container Database
- maintenanceWindow List<Property Map>Details 
- maintenanceWindows List<Property Map>
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memoryPer NumberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
- netServices StringArchitecture 
- Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
- nextMaintenance StringRun Id 
- 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.
- peerAutonomous List<Property Map>Container Database Backup Configs 
- peerAutonomous StringContainer Database Compartment Id 
- peerAutonomous StringContainer Database Display Name 
- peerAutonomous StringExadata Infrastructure Id 
- peerAutonomous StringVm Cluster Id 
- peerCloud StringAutonomous Vm Cluster Id 
- peerDb StringUnique Name 
- protectionMode String
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- provisionableCpuses List<Number>
- An array of CPU values that can be used to successfully provision a single Autonomous Database.
- provisionedCpus Number
- The number of CPUs provisioned in an Autonomous Container Database.
- reclaimableCpus Number
- 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.
- recoveryAppliance List<Property Map>Details 
- Information about the recovery appliance configuration associated with the Autonomous Container Database.
- reinstateTrigger Number
- reservedCpus Number
- The number of CPUs reserved in an Autonomous Container Database.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotateKey BooleanTrigger 
- serviceLevel StringAgreement Type 
- A filter to return only resources that match the given service level agreement type exactly.
- standbyMaintenance NumberBuffer In Days 
- 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.
- switchoverTrigger Number
- timeCreated String
- The date and time the Autonomous Container Database was created.
- timeOf StringLast Backup 
- The timestamp of last successful backup. Here NULL value represents either there are no successful backups or backups are not configured for this Autonomous Container Database.
- timeSnapshot StringStandby Revert 
- 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.
- vaultId String
- The OCID of the Oracle Cloud Infrastructure vault.
- versionPreference String
- The next maintenance version preference.
- vmFailover NumberReservation 
- The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetail          
- BackupDestination List<string>Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- DbrsPolicy stringId 
- The OCID of the DBRS policy used for backup.
- Id string
- The id of the Autonomous Database Vault service key management history entry.
- InternetProxy string
- Proxy URL to connect to object store.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- SpaceUtilized intIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- TimeAt stringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- 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.
- BackupDestination []stringAttach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- DbrsPolicy stringId 
- The OCID of the DBRS policy used for backup.
- Id string
- The id of the Autonomous Database Vault service key management history entry.
- InternetProxy string
- Proxy URL to connect to object store.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- SpaceUtilized intIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- TimeAt stringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- 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.
- backupDestination List<String>Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- dbrsPolicy StringId 
- The OCID of the DBRS policy used for backup.
- id String
- The id of the Autonomous Database Vault service key management history entry.
- internetProxy String
- Proxy URL to connect to object store.
- recoveryWindow IntegerIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- spaceUtilized IntegerIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- timeAt StringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- 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.
- backupDestination string[]Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- dbrsPolicy stringId 
- The OCID of the DBRS policy used for backup.
- id string
- The id of the Autonomous Database Vault service key management history entry.
- internetProxy string
- Proxy URL to connect to object store.
- recoveryWindow numberIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- spaceUtilized numberIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- timeAt stringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- 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.
- backup_destination_ Sequence[str]attach_ histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- dbrs_policy_ strid 
- The OCID of the DBRS policy used for backup.
- id str
- The id of the Autonomous Database Vault service key management history entry.
- internet_proxy str
- Proxy URL to connect to object store.
- recovery_window_ intin_ days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- space_utilized_ intin_ gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- time_at_ strwhich_ storage_ details_ are_ updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- 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.
- backupDestination List<String>Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- dbrsPolicy StringId 
- The OCID of the DBRS policy used for backup.
- id String
- The id of the Autonomous Database Vault service key management history entry.
- internetProxy String
- Proxy URL to connect to object store.
- recoveryWindow NumberIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- spaceUtilized NumberIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- timeAt StringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- 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.
GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig        
- BackupDestination List<GetDetails Autonomous Container Databases Autonomous Container Database Backup Config Backup Destination Detail> 
- Backup destination details.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- BackupDestination []GetDetails Autonomous Container Databases Autonomous Container Database Backup Config Backup Destination Detail 
- Backup destination details.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backupDestination List<GetDetails Autonomous Containers Autonomous Container Backup Config Backup Destination Detail> 
- Backup destination details.
- recoveryWindow IntegerIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backupDestination GetDetails Autonomous Container Databases Autonomous Container Database Backup Config Backup Destination Detail[] 
- Backup destination details.
- recoveryWindow numberIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backup_destination_ Sequence[Getdetails Autonomous Container Databases Autonomous Container Database Backup Config Backup Destination Detail] 
- Backup destination details.
- recovery_window_ intin_ days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backupDestination List<Property Map>Details 
- Backup destination details.
- recoveryWindow NumberIn Days 
- Number of days between the current and earliest point of recoverability covered by 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.
GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesList          
- BackupDestination List<string>Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- SpaceUtilized intIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- TimeAt stringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- BackupDestination []stringAttach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- SpaceUtilized intIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- TimeAt stringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- backupDestination List<String>Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- spaceUtilized IntegerIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- timeAt StringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- backupDestination string[]Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- spaceUtilized numberIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- timeAt stringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- backup_destination_ Sequence[str]attach_ histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- space_utilized_ intin_ gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- time_at_ strwhich_ storage_ details_ are_ updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
- backupDestination List<String>Attach Histories 
- The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
- spaceUtilized NumberIn Gbs 
- The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
- timeAt StringWhich Storage Details Are Updated 
- The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguard       
- ApplyLag string
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- ApplyRate string
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- AutomaticFailover stringTarget 
- Automatically selected by backend when observer is enabled.
- AutonomousContainer stringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- FastStart intFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- IsAutomatic boolFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ProtectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- RedoTransport stringMode 
- Automatically selected by backend based on the protection mode.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- TimeLag stringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- TimeLast stringRole Changed 
- The date and time when the last role change action happened.
- TimeLast stringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- TransportLag string
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- ApplyLag string
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- ApplyRate string
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- AutomaticFailover stringTarget 
- Automatically selected by backend when observer is enabled.
- AutonomousContainer stringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- FastStart intFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- IsAutomatic boolFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ProtectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- RedoTransport stringMode 
- Automatically selected by backend based on the protection mode.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- TimeLag stringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- TimeLast stringRole Changed 
- The date and time when the last role change action happened.
- TimeLast stringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- TransportLag string
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- applyLag String
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- applyRate String
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automaticFailover StringTarget 
- Automatically selected by backend when observer is enabled.
- autonomousContainer StringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- fastStart IntegerFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- isAutomatic BooleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycleDetails String
- Additional information about the current lifecycle state.
- protectionMode String
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redoTransport StringMode 
- Automatically selected by backend based on the protection mode.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- timeLag StringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- timeLast StringRole Changed 
- The date and time when the last role change action happened.
- timeLast StringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transportLag String
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- applyLag string
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- applyRate string
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automaticFailover stringTarget 
- Automatically selected by backend when observer is enabled.
- autonomousContainer stringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- fastStart numberFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- isAutomatic booleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycleDetails string
- Additional information about the current lifecycle state.
- protectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redoTransport stringMode 
- Automatically selected by backend based on the protection mode.
- role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- timeLag stringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- timeLast stringRole Changed 
- The date and time when the last role change action happened.
- timeLast stringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transportLag string
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- apply_lag str
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- apply_rate str
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automatic_failover_ strtarget 
- Automatically selected by backend when observer is enabled.
- autonomous_container_ strdatabase_ id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availability_domain str
- A filter to return only resources that match the given availability domain exactly.
- fast_start_ intfail_ over_ lag_ limit_ in_ seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- is_automatic_ boolfailover_ enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycle_details str
- Additional information about the current lifecycle state.
- protection_mode str
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redo_transport_ strmode 
- Automatically selected by backend based on the protection mode.
- role str
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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_lag_ strrefreshed_ on 
- Timestamp when the lags were last calculated for a standby.
- time_last_ strrole_ changed 
- The date and time when the last role change action happened.
- time_last_ strsynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport_lag str
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- applyLag String
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- applyRate String
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automaticFailover StringTarget 
- Automatically selected by backend when observer is enabled.
- autonomousContainer StringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- fastStart NumberFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- isAutomatic BooleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycleDetails String
- Additional information about the current lifecycle state.
- protectionMode String
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redoTransport StringMode 
- Automatically selected by backend based on the protection mode.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- timeLag StringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- timeLast StringRole Changed 
- The date and time when the last role change action happened.
- timeLast StringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transportLag String
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
GetAutonomousContainerDatabasesAutonomousContainerDatabaseDataguardGroupMember         
- ApplyLag string
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- ApplyRate string
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- AutomaticFailover stringTarget 
- Automatically selected by backend when observer is enabled.
- AutonomousContainer stringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- FastStart intFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- IsAutomatic boolFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ProtectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- RedoTransport stringMode 
- Automatically selected by backend based on the protection mode.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- TimeLag stringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- TimeLast stringRole Changed 
- The date and time when the last role change action happened.
- TimeLast stringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- TransportLag string
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- ApplyLag string
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- ApplyRate string
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- AutomaticFailover stringTarget 
- Automatically selected by backend when observer is enabled.
- AutonomousContainer stringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- AvailabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- FastStart intFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- IsAutomatic boolFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- LifecycleDetails string
- Additional information about the current lifecycle state.
- ProtectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- RedoTransport stringMode 
- Automatically selected by backend based on the protection mode.
- Role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- TimeLag stringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- TimeLast stringRole Changed 
- The date and time when the last role change action happened.
- TimeLast stringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- TransportLag string
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- applyLag String
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- applyRate String
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automaticFailover StringTarget 
- Automatically selected by backend when observer is enabled.
- autonomousContainer StringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- fastStart IntegerFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- isAutomatic BooleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycleDetails String
- Additional information about the current lifecycle state.
- protectionMode String
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redoTransport StringMode 
- Automatically selected by backend based on the protection mode.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- timeLag StringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- timeLast StringRole Changed 
- The date and time when the last role change action happened.
- timeLast StringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transportLag String
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- applyLag string
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- applyRate string
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automaticFailover stringTarget 
- Automatically selected by backend when observer is enabled.
- autonomousContainer stringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availabilityDomain string
- A filter to return only resources that match the given availability domain exactly.
- fastStart numberFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- isAutomatic booleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycleDetails string
- Additional information about the current lifecycle state.
- protectionMode string
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redoTransport stringMode 
- Automatically selected by backend based on the protection mode.
- role string
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- timeLag stringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- timeLast stringRole Changed 
- The date and time when the last role change action happened.
- timeLast stringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transportLag string
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- apply_lag str
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- apply_rate str
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automatic_failover_ strtarget 
- Automatically selected by backend when observer is enabled.
- autonomous_container_ strdatabase_ id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availability_domain str
- A filter to return only resources that match the given availability domain exactly.
- fast_start_ intfail_ over_ lag_ limit_ in_ seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- is_automatic_ boolfailover_ enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycle_details str
- Additional information about the current lifecycle state.
- protection_mode str
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redo_transport_ strmode 
- Automatically selected by backend based on the protection mode.
- role str
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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_lag_ strrefreshed_ on 
- Timestamp when the lags were last calculated for a standby.
- time_last_ strrole_ changed 
- The date and time when the last role change action happened.
- time_last_ strsynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transport_lag str
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
- applyLag String
- The lag time between updates to the primary Autonomous Container Database and application of the redo data on the standby Autonomous Container Database, as computed by the reporting database. Example: 9 seconds
- applyRate String
- The rate at which redo logs are synchronized between the associated Autonomous Container Databases. Example: 180 Mb per second
- automaticFailover StringTarget 
- Automatically selected by backend when observer is enabled.
- autonomousContainer StringDatabase Id 
- The OCID of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
- availabilityDomain String
- A filter to return only resources that match the given availability domain exactly.
- fastStart NumberFail Over Lag Limit In Seconds 
- The lag time for my preference based on data loss tolerance in seconds.
- isAutomatic BooleanFailover Enabled 
- Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
- lifecycleDetails String
- Additional information about the current lifecycle state.
- protectionMode String
- The protection mode of this Autonomous Data Guard association. For more information, see Oracle Data Guard Protection Modes in the Oracle Data Guard documentation.
- redoTransport StringMode 
- Automatically selected by backend based on the protection mode.
- role String
- The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- 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.
- timeLag StringRefreshed On 
- Timestamp when the lags were last calculated for a standby.
- timeLast StringRole Changed 
- The date and time when the last role change action happened.
- timeLast StringSynced 
- The date and time of the last update to the apply lag, apply rate, and transport lag values.
- transportLag String
- The approximate number of seconds of redo data not yet available on the standby Autonomous Container Database, as computed by the reporting database. Example: 7 seconds
GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry         
- Id string
- The id of the Autonomous Database Vault service key management history entry.
- KmsKey stringVersion Id 
- 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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
- 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.
- KmsKey stringVersion Id 
- 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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
- 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.
- kmsKey StringVersion Id 
- 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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
- 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.
- kmsKey stringVersion Id 
- 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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
- 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_ strversion_ id 
- 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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
- 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.
- kmsKey StringVersion Id 
- 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. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
- timeActivated String
- The date and time the kms key activated.
- vaultId String
- The OCID of the Oracle Cloud Infrastructure vault.
GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow        
- CustomAction intTimeout In Mins 
- 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).
- DaysOf List<GetWeeks Autonomous Container Databases Autonomous Container Database Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- HoursOf List<int>Days 
- 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
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- 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<GetAutonomous Container Databases Autonomous Container Database Maintenance Window Month> 
- 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.
- SkipRus List<bool>
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- WeeksOf List<int>Months 
- 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.
- CustomAction intTimeout In Mins 
- 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).
- DaysOf []GetWeeks Autonomous Container Databases Autonomous Container Database Maintenance Window Days Of Week 
- Days during the week when maintenance should be performed.
- HoursOf []intDays 
- 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
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- 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
[]GetAutonomous Container Databases Autonomous Container Database Maintenance Window Month 
- 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.
- SkipRus []bool
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- WeeksOf []intMonths 
- 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.
- customAction IntegerTimeout In Mins 
- 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).
- daysOf List<GetWeeks Autonomous Containers Autonomous Container Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- hoursOf List<Integer>Days 
- 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
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime IntegerIn Weeks 
- 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<GetAutonomous Containers Autonomous Container Maintenance Window Month> 
- 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.
- skipRus List<Boolean>
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeksOf List<Integer>Months 
- 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.
- customAction numberTimeout In Mins 
- 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).
- daysOf GetWeeks Autonomous Container Databases Autonomous Container Database Maintenance Window Days Of Week[] 
- Days during the week when maintenance should be performed.
- hoursOf number[]Days 
- 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
 
- isCustom booleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly booleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime numberIn Weeks 
- 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
GetAutonomous Container Databases Autonomous Container Database Maintenance Window Month[] 
- 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.
- skipRus boolean[]
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeksOf number[]Months 
- 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_ inttimeout_ in_ mins 
- 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_ Sequence[Getweeks Autonomous Container Databases Autonomous Container Database Maintenance Window Days Of Week] 
- Days during the week when maintenance should be performed.
- hours_of_ Sequence[int]days 
- 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_ boolaction_ timeout_ enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_monthly_ boolpatching_ enabled 
- If true, enables the monthly patching option.
- lead_time_ intin_ weeks 
- 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
Sequence[GetAutonomous Container Databases Autonomous Container Database Maintenance Window Month] 
- 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.
- skip_rus Sequence[bool]
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks_of_ Sequence[int]months 
- 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.
- customAction NumberTimeout In Mins 
- 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).
- daysOf List<Property Map>Weeks 
- Days during the week when maintenance should be performed.
- hoursOf List<Number>Days 
- 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
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime NumberIn Weeks 
- 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.
- skipRus List<Boolean>
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeksOf List<Number>Months 
- 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         
- CustomAction intTimeout In Mins 
- 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).
- DaysOf List<GetWeeks Autonomous Container Databases Autonomous Container Database Maintenance Window Detail Days Of Week> 
- Days during the week when maintenance should be performed.
- HoursOf List<int>Days 
- 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
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- 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<GetAutonomous Container Databases Autonomous Container Database Maintenance Window Detail Month> 
- 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.
- SkipRus List<bool>
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- WeeksOf List<int>Months 
- 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.
- CustomAction intTimeout In Mins 
- 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).
- DaysOf []GetWeeks Autonomous Container Databases Autonomous Container Database Maintenance Window Detail Days Of Week 
- Days during the week when maintenance should be performed.
- HoursOf []intDays 
- 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
 
- IsCustom boolAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- IsMonthly boolPatching Enabled 
- If true, enables the monthly patching option.
- LeadTime intIn Weeks 
- 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
[]GetAutonomous Container Databases Autonomous Container Database Maintenance Window Detail Month 
- 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.
- SkipRus []bool
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- WeeksOf []intMonths 
- 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.
- customAction IntegerTimeout In Mins 
- 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).
- daysOf List<GetWeeks Autonomous Containers Autonomous Container Maintenance Window Detail Days Of Week> 
- Days during the week when maintenance should be performed.
- hoursOf List<Integer>Days 
- 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
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime IntegerIn Weeks 
- 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<GetAutonomous Containers Autonomous Container Maintenance Window Detail Month> 
- 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.
- skipRus List<Boolean>
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeksOf List<Integer>Months 
- 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.
- customAction numberTimeout In Mins 
- 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).
- daysOf GetWeeks Autonomous Container Databases Autonomous Container Database Maintenance Window Detail Days Of Week[] 
- Days during the week when maintenance should be performed.
- hoursOf number[]Days 
- 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
 
- isCustom booleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly booleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime numberIn Weeks 
- 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
GetAutonomous Container Databases Autonomous Container Database Maintenance Window Detail Month[] 
- 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.
- skipRus boolean[]
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeksOf number[]Months 
- 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_ inttimeout_ in_ mins 
- 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_ Sequence[Getweeks Autonomous Container Databases Autonomous Container Database Maintenance Window Detail Days Of Week] 
- Days during the week when maintenance should be performed.
- hours_of_ Sequence[int]days 
- 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_ boolaction_ timeout_ enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- is_monthly_ boolpatching_ enabled 
- If true, enables the monthly patching option.
- lead_time_ intin_ weeks 
- 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
Sequence[GetAutonomous Container Databases Autonomous Container Database Maintenance Window Detail Month] 
- 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.
- skip_rus Sequence[bool]
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeks_of_ Sequence[int]months 
- 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.
- customAction NumberTimeout In Mins 
- 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).
- daysOf List<Property Map>Weeks 
- Days during the week when maintenance should be performed.
- hoursOf List<Number>Days 
- 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
 
- isCustom BooleanAction Timeout Enabled 
- If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
- isMonthly BooleanPatching Enabled 
- If true, enables the monthly patching option.
- leadTime NumberIn Weeks 
- 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.
- skipRus List<Boolean>
- If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
- weeksOf List<Number>Months 
- 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            
- BackupDestination List<GetDetails Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config Backup Destination Detail> 
- Backup destination details.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- BackupDestination []GetDetails Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config Backup Destination Detail 
- Backup destination details.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backupDestination List<GetDetails Autonomous Containers Autonomous Container Peer Autonomous Container Backup Config Backup Destination Detail> 
- Backup destination details.
- recoveryWindow IntegerIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backupDestination GetDetails Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config Backup Destination Detail[] 
- Backup destination details.
- recoveryWindow numberIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backup_destination_ Sequence[Getdetails Autonomous Container Databases Autonomous Container Database Peer Autonomous Container Database Backup Config Backup Destination Detail] 
- Backup destination details.
- recovery_window_ intin_ days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- backupDestination List<Property Map>Details 
- Backup destination details.
- recoveryWindow NumberIn Days 
- Number of days between the current and earliest point of recoverability covered by 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.
GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetail         
- AllocatedStorage intSize In Gbs 
- The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- TimeRecovery stringAppliance Details Updated 
- The time when the recovery appliance details are updated.
- AllocatedStorage intSize In Gbs 
- The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
- RecoveryWindow intIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- TimeRecovery stringAppliance Details Updated 
- The time when the recovery appliance details are updated.
- allocatedStorage IntegerSize In Gbs 
- The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
- recoveryWindow IntegerIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- timeRecovery StringAppliance Details Updated 
- The time when the recovery appliance details are updated.
- allocatedStorage numberSize In Gbs 
- The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
- recoveryWindow numberIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- timeRecovery stringAppliance Details Updated 
- The time when the recovery appliance details are updated.
- allocated_storage_ intsize_ in_ gbs 
- The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
- recovery_window_ intin_ days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- time_recovery_ strappliance_ details_ updated 
- The time when the recovery appliance details are updated.
- allocatedStorage NumberSize In Gbs 
- The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
- recoveryWindow NumberIn Days 
- Number of days between the current and earliest point of recoverability covered by automatic backups.
- timeRecovery StringAppliance Details Updated 
- The time when the recovery appliance details are updated.
GetAutonomousContainerDatabasesFilter    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.