1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousContainerDatabases
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Database.getAutonomousContainerDatabases

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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: _var.compartment_id,
        autonomousExadataInfrastructureId: oci_database_autonomous_exadata_infrastructure.test_autonomous_exadata_infrastructure.id,
        autonomousVmClusterId: oci_database_autonomous_vm_cluster.test_autonomous_vm_cluster.id,
        availabilityDomain: _var.autonomous_container_database_availability_domain,
        cloudAutonomousVmClusterId: oci_database_cloud_autonomous_vm_cluster.test_cloud_autonomous_vm_cluster.id,
        displayName: _var.autonomous_container_database_display_name,
        infrastructureType: _var.autonomous_container_database_infrastructure_type,
        serviceLevelAgreementType: _var.autonomous_container_database_service_level_agreement_type,
        state: _var.autonomous_container_database_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_container_databases = oci.Database.get_autonomous_container_databases(compartment_id=var["compartment_id"],
        autonomous_exadata_infrastructure_id=oci_database_autonomous_exadata_infrastructure["test_autonomous_exadata_infrastructure"]["id"],
        autonomous_vm_cluster_id=oci_database_autonomous_vm_cluster["test_autonomous_vm_cluster"]["id"],
        availability_domain=var["autonomous_container_database_availability_domain"],
        cloud_autonomous_vm_cluster_id=oci_database_cloud_autonomous_vm_cluster["test_cloud_autonomous_vm_cluster"]["id"],
        display_name=var["autonomous_container_database_display_name"],
        infrastructure_type=var["autonomous_container_database_infrastructure_type"],
        service_level_agreement_type=var["autonomous_container_database_service_level_agreement_type"],
        state=var["autonomous_container_database_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.GetAutonomousContainerDatabases(ctx, &database.GetAutonomousContainerDatabasesArgs{
    			CompartmentId:                     _var.Compartment_id,
    			AutonomousExadataInfrastructureId: pulumi.StringRef(oci_database_autonomous_exadata_infrastructure.Test_autonomous_exadata_infrastructure.Id),
    			AutonomousVmClusterId:             pulumi.StringRef(oci_database_autonomous_vm_cluster.Test_autonomous_vm_cluster.Id),
    			AvailabilityDomain:                pulumi.StringRef(_var.Autonomous_container_database_availability_domain),
    			CloudAutonomousVmClusterId:        pulumi.StringRef(oci_database_cloud_autonomous_vm_cluster.Test_cloud_autonomous_vm_cluster.Id),
    			DisplayName:                       pulumi.StringRef(_var.Autonomous_container_database_display_name),
    			InfrastructureType:                pulumi.StringRef(_var.Autonomous_container_database_infrastructure_type),
    			ServiceLevelAgreementType:         pulumi.StringRef(_var.Autonomous_container_database_service_level_agreement_type),
    			State:                             pulumi.StringRef(_var.Autonomous_container_database_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAutonomousContainerDatabases = Oci.Database.GetAutonomousContainerDatabases.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            AutonomousExadataInfrastructureId = oci_database_autonomous_exadata_infrastructure.Test_autonomous_exadata_infrastructure.Id,
            AutonomousVmClusterId = oci_database_autonomous_vm_cluster.Test_autonomous_vm_cluster.Id,
            AvailabilityDomain = @var.Autonomous_container_database_availability_domain,
            CloudAutonomousVmClusterId = oci_database_cloud_autonomous_vm_cluster.Test_cloud_autonomous_vm_cluster.Id,
            DisplayName = @var.Autonomous_container_database_display_name,
            InfrastructureType = @var.Autonomous_container_database_infrastructure_type,
            ServiceLevelAgreementType = @var.Autonomous_container_database_service_level_agreement_type,
            State = @var.Autonomous_container_database_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.DatabaseFunctions;
    import com.pulumi.oci.Database.inputs.GetAutonomousContainerDatabasesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testAutonomousContainerDatabases = DatabaseFunctions.getAutonomousContainerDatabases(GetAutonomousContainerDatabasesArgs.builder()
                .compartmentId(var_.compartment_id())
                .autonomousExadataInfrastructureId(oci_database_autonomous_exadata_infrastructure.test_autonomous_exadata_infrastructure().id())
                .autonomousVmClusterId(oci_database_autonomous_vm_cluster.test_autonomous_vm_cluster().id())
                .availabilityDomain(var_.autonomous_container_database_availability_domain())
                .cloudAutonomousVmClusterId(oci_database_cloud_autonomous_vm_cluster.test_cloud_autonomous_vm_cluster().id())
                .displayName(var_.autonomous_container_database_display_name())
                .infrastructureType(var_.autonomous_container_database_infrastructure_type())
                .serviceLevelAgreementType(var_.autonomous_container_database_service_level_agreement_type())
                .state(var_.autonomous_container_database_state())
                .build());
    
        }
    }
    
    variables:
      testAutonomousContainerDatabases:
        fn::invoke:
          Function: oci:Database:getAutonomousContainerDatabases
          Arguments:
            compartmentId: ${var.compartment_id}
            autonomousExadataInfrastructureId: ${oci_database_autonomous_exadata_infrastructure.test_autonomous_exadata_infrastructure.id}
            autonomousVmClusterId: ${oci_database_autonomous_vm_cluster.test_autonomous_vm_cluster.id}
            availabilityDomain: ${var.autonomous_container_database_availability_domain}
            cloudAutonomousVmClusterId: ${oci_database_cloud_autonomous_vm_cluster.test_cloud_autonomous_vm_cluster.id}
            displayName: ${var.autonomous_container_database_display_name}
            infrastructureType: ${var.autonomous_container_database_infrastructure_type}
            serviceLevelAgreementType: ${var.autonomous_container_database_service_level_agreement_type}
            state: ${var.autonomous_container_database_state}
    

    Using getAutonomousContainerDatabases

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

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

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

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

    The following arguments are supported:

    CompartmentId string
    The compartment OCID.
    AutonomousExadataInfrastructureId string
    The Autonomous Exadata Infrastructure OCID.
    AutonomousVmClusterId string
    The Autonomous VM Cluster OCID.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    CloudAutonomousVmClusterId string
    The cloud Autonomous VM Cluster OCID.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Filters List<GetAutonomousContainerDatabasesFilter>
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    ServiceLevelAgreementType string
    A filter to return only resources that match the given service level agreement type exactly.
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    CompartmentId string
    The compartment OCID.
    AutonomousExadataInfrastructureId string
    The Autonomous Exadata Infrastructure OCID.
    AutonomousVmClusterId string
    The Autonomous VM Cluster OCID.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    CloudAutonomousVmClusterId string
    The cloud Autonomous VM Cluster OCID.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Filters []GetAutonomousContainerDatabasesFilter
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    ServiceLevelAgreementType string
    A filter to return only resources that match the given service level agreement type exactly.
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    compartmentId String
    The compartment OCID.
    autonomousExadataInfrastructureId String
    The Autonomous Exadata Infrastructure OCID.
    autonomousVmClusterId String
    The Autonomous VM Cluster OCID.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    cloudAutonomousVmClusterId String
    The cloud Autonomous VM Cluster OCID.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters List<GetAutonomousContainersFilter>
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    serviceLevelAgreementType String
    A filter to return only resources that match the given service level agreement type exactly.
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    compartmentId string
    The compartment OCID.
    autonomousExadataInfrastructureId string
    The Autonomous Exadata Infrastructure OCID.
    autonomousVmClusterId string
    The Autonomous VM Cluster OCID.
    availabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    cloudAutonomousVmClusterId string
    The cloud Autonomous VM Cluster OCID.
    displayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters GetAutonomousContainerDatabasesFilter[]
    infrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    serviceLevelAgreementType string
    A filter to return only resources that match the given service level agreement type exactly.
    state string
    A filter to return only resources that match the given lifecycle state exactly.
    compartment_id str
    The compartment OCID.
    autonomous_exadata_infrastructure_id str
    The Autonomous Exadata Infrastructure OCID.
    autonomous_vm_cluster_id str
    The Autonomous VM Cluster OCID.
    availability_domain str
    A filter to return only resources that match the given availability domain exactly.
    cloud_autonomous_vm_cluster_id str
    The cloud Autonomous VM Cluster OCID.
    display_name str
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters Sequence[database.GetAutonomousContainerDatabasesFilter]
    infrastructure_type str
    A filter to return only resources that match the given Infrastructure Type.
    service_level_agreement_type str
    A filter to return only resources that match the given service level agreement type exactly.
    state str
    A filter to return only resources that match the given lifecycle state exactly.
    compartmentId String
    The compartment OCID.
    autonomousExadataInfrastructureId String
    The Autonomous Exadata Infrastructure OCID.
    autonomousVmClusterId String
    The Autonomous VM Cluster OCID.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    cloudAutonomousVmClusterId String
    The cloud Autonomous VM Cluster OCID.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters List<Property Map>
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    serviceLevelAgreementType String
    A filter to return only resources that match the given service level agreement type exactly.
    state String
    A filter to return only resources that match the given lifecycle state exactly.

    getAutonomousContainerDatabases Result

    The following output properties are available:

    AutonomousContainerDatabases List<GetAutonomousContainerDatabasesAutonomousContainerDatabase>
    The list of autonomous_container_databases.
    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    AutonomousExadataInfrastructureId string
    No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
    AutonomousVmClusterId string
    The OCID of the Autonomous VM Cluster.
    AvailabilityDomain string
    The availability domain of the Autonomous Container Database.
    CloudAutonomousVmClusterId string
    The OCID of the cloud Autonomous Exadata VM Cluster.
    DisplayName string
    The user-provided name for the Autonomous Container Database.
    Filters List<GetAutonomousContainerDatabasesFilter>
    InfrastructureType string
    The infrastructure type this resource belongs to.
    ServiceLevelAgreementType string
    The service level agreement type of the container database. The default is STANDARD.
    State string
    The current state of the Autonomous Container Database.
    AutonomousContainerDatabases []GetAutonomousContainerDatabasesAutonomousContainerDatabase
    The list of autonomous_container_databases.
    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    AutonomousExadataInfrastructureId string
    No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
    AutonomousVmClusterId string
    The OCID of the Autonomous VM Cluster.
    AvailabilityDomain string
    The availability domain of the Autonomous Container Database.
    CloudAutonomousVmClusterId string
    The OCID of the cloud Autonomous Exadata VM Cluster.
    DisplayName string
    The user-provided name for the Autonomous Container Database.
    Filters []GetAutonomousContainerDatabasesFilter
    InfrastructureType string
    The infrastructure type this resource belongs to.
    ServiceLevelAgreementType string
    The service level agreement type of the container database. The default is STANDARD.
    State string
    The current state of the Autonomous Container Database.
    autonomousContainerDatabases List<GetAutonomousContainersAutonomousContainer>
    The list of autonomous_container_databases.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    autonomousExadataInfrastructureId String
    No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
    autonomousVmClusterId String
    The OCID of the Autonomous VM Cluster.
    availabilityDomain String
    The availability domain of the Autonomous Container Database.
    cloudAutonomousVmClusterId String
    The OCID of the cloud Autonomous Exadata VM Cluster.
    displayName String
    The user-provided name for the Autonomous Container Database.
    filters List<GetAutonomousContainersFilter>
    infrastructureType String
    The infrastructure type this resource belongs to.
    serviceLevelAgreementType String
    The service level agreement type of the container database. The default is STANDARD.
    state String
    The current state of the Autonomous Container Database.
    autonomousContainerDatabases GetAutonomousContainerDatabasesAutonomousContainerDatabase[]
    The list of autonomous_container_databases.
    compartmentId string
    The OCID of the compartment.
    id string
    The provider-assigned unique ID for this managed resource.
    autonomousExadataInfrastructureId string
    No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
    autonomousVmClusterId string
    The OCID of the Autonomous VM Cluster.
    availabilityDomain string
    The availability domain of the Autonomous Container Database.
    cloudAutonomousVmClusterId string
    The OCID of the cloud Autonomous Exadata VM Cluster.
    displayName string
    The user-provided name for the Autonomous Container Database.
    filters GetAutonomousContainerDatabasesFilter[]
    infrastructureType string
    The infrastructure type this resource belongs to.
    serviceLevelAgreementType string
    The service level agreement type of the container database. The default is STANDARD.
    state string
    The current state of the Autonomous Container Database.
    autonomous_container_databases Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabase]
    The list of autonomous_container_databases.
    compartment_id str
    The OCID of the compartment.
    id str
    The provider-assigned unique ID for this managed resource.
    autonomous_exadata_infrastructure_id str
    No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
    autonomous_vm_cluster_id str
    The OCID of the Autonomous VM Cluster.
    availability_domain str
    The availability domain of the Autonomous Container Database.
    cloud_autonomous_vm_cluster_id str
    The OCID of the cloud Autonomous Exadata VM Cluster.
    display_name str
    The user-provided name for the Autonomous Container Database.
    filters Sequence[database.GetAutonomousContainerDatabasesFilter]
    infrastructure_type str
    The infrastructure type this resource belongs to.
    service_level_agreement_type str
    The service level agreement type of the container database. The default is STANDARD.
    state str
    The current state of the Autonomous Container Database.
    autonomousContainerDatabases List<Property Map>
    The list of autonomous_container_databases.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    autonomousExadataInfrastructureId String
    No longer used. For Autonomous Database on dedicated Exadata infrastructure, the container database is created within a specified cloudAutonomousVmCluster.
    autonomousVmClusterId String
    The OCID of the Autonomous VM Cluster.
    availabilityDomain String
    The availability domain of the Autonomous Container Database.
    cloudAutonomousVmClusterId String
    The OCID of the cloud Autonomous Exadata VM Cluster.
    displayName String
    The user-provided name for the Autonomous Container Database.
    filters List<Property Map>
    infrastructureType String
    The infrastructure type this resource belongs to.
    serviceLevelAgreementType String
    The service level agreement type of the container database. The default is STANDARD.
    state String
    The current state of the Autonomous Container Database.

    Supporting Types

    GetAutonomousContainerDatabasesAutonomousContainerDatabase

    AutonomousExadataInfrastructureId string
    The Autonomous Exadata Infrastructure OCID.
    AutonomousVmClusterId string
    The Autonomous VM Cluster OCID.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    AvailableCpus double
    Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
    BackupConfigs List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig>
    Backup options for the Autonomous Container Database.
    CloudAutonomousVmClusterId string
    The cloud Autonomous VM Cluster OCID.
    CompartmentId string
    The compartment OCID.
    ComputeModel string
    The compute model of the Autonomous 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.
    DatabaseSoftwareImageId string
    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.
    DbSplitThreshold int
    The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
    DbUniqueName string
    DbVersion string
    Oracle Database version of the Autonomous Container Database.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    DistributionAffinity string
    This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
    DstFileVersion string
    DST Time-zone File version of the Autonomous Container Database.
    FastStartFailOverLagLimitInSeconds int
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The id of the Autonomous Database Vault service key management history entry.
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    IsAutomaticFailoverEnabled bool
    IsDstFileUpdateEnabled bool
    Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
    KeyHistoryEntries List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry>
    Key History Entry.
    KeyStoreId string
    The OCID of the key store.
    KeyStoreWalletName string
    The wallet name for Oracle Key Vault.
    KmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    LargestProvisionableAutonomousDatabaseInCpus double
    The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListOneOffPatches List<string>
    List of One-Off patches that has been successfully applied to Autonomous Container Database
    MaintenanceWindowDetails List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail>
    MaintenanceWindows List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster. <<<<<<< HEAD
    NetServicesArchitecture string

    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.

    22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)

    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    PatchId string
    The OCID of the last patch applied on the system.
    PatchModel string
    Database patch model preference.
    PeerAutonomousContainerDatabaseBackupConfigs List<GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig>
    PeerAutonomousContainerDatabaseCompartmentId string
    PeerAutonomousContainerDatabaseDisplayName string
    PeerAutonomousExadataInfrastructureId string
    PeerAutonomousVmClusterId string
    PeerCloudAutonomousVmClusterId string
    PeerDbUniqueName string
    ProtectionMode string
    ProvisionableCpuses List<double>
    An array of CPU values that can be used to successfully provision a single Autonomous Database.
    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.
    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.
    RotateKeyTrigger bool
    ServiceLevelAgreementType string
    A filter to return only resources that match the given service level agreement type exactly.
    StandbyMaintenanceBufferInDays int
    The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    TimeCreated string
    The date and time the Autonomous Container Database was created.
    TimeOfLastBackup string
    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.
    TimeSnapshotStandbyRevert string
    The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.
    TotalCpus int
    The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault.
    VersionPreference string
    The next maintenance version preference.
    VmFailoverReservation int
    The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.
    AutonomousExadataInfrastructureId string
    The Autonomous Exadata Infrastructure OCID.
    AutonomousVmClusterId string
    The Autonomous VM Cluster OCID.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    AvailableCpus float64
    Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
    BackupConfigs []GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig
    Backup options for the Autonomous Container Database.
    CloudAutonomousVmClusterId string
    The cloud Autonomous VM Cluster OCID.
    CompartmentId string
    The compartment OCID.
    ComputeModel string
    The compute model of the Autonomous 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.
    DatabaseSoftwareImageId string
    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.
    DbSplitThreshold int
    The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
    DbUniqueName string
    DbVersion string
    Oracle Database version of the Autonomous Container Database.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    DistributionAffinity string
    This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
    DstFileVersion string
    DST Time-zone File version of the Autonomous Container Database.
    FastStartFailOverLagLimitInSeconds int
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The id of the Autonomous Database Vault service key management history entry.
    InfrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    IsAutomaticFailoverEnabled bool
    IsDstFileUpdateEnabled bool
    Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
    KeyHistoryEntries []GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry
    Key History Entry.
    KeyStoreId string
    The OCID of the key store.
    KeyStoreWalletName string
    The wallet name for Oracle Key Vault.
    KmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    LargestProvisionableAutonomousDatabaseInCpus float64
    The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListOneOffPatches []string
    List of One-Off patches that has been successfully applied to Autonomous Container Database
    MaintenanceWindowDetails []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail
    MaintenanceWindows []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster. <<<<<<< HEAD
    NetServicesArchitecture string

    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.

    22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)

    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    PatchId string
    The OCID of the last patch applied on the system.
    PatchModel string
    Database patch model preference.
    PeerAutonomousContainerDatabaseBackupConfigs []GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig
    PeerAutonomousContainerDatabaseCompartmentId string
    PeerAutonomousContainerDatabaseDisplayName string
    PeerAutonomousExadataInfrastructureId string
    PeerAutonomousVmClusterId string
    PeerCloudAutonomousVmClusterId string
    PeerDbUniqueName string
    ProtectionMode string
    ProvisionableCpuses []float64
    An array of CPU values that can be used to successfully provision a single Autonomous Database.
    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.
    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.
    RotateKeyTrigger bool
    ServiceLevelAgreementType string
    A filter to return only resources that match the given service level agreement type exactly.
    StandbyMaintenanceBufferInDays int
    The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    TimeCreated string
    The date and time the Autonomous Container Database was created.
    TimeOfLastBackup string
    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.
    TimeSnapshotStandbyRevert string
    The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.
    TotalCpus int
    The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault.
    VersionPreference string
    The next maintenance version preference.
    VmFailoverReservation int
    The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.
    autonomousExadataInfrastructureId String
    The Autonomous Exadata Infrastructure OCID.
    autonomousVmClusterId String
    The Autonomous VM Cluster OCID.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    availableCpus Double
    Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
    backupConfigs List<GetAutonomousContainersAutonomousContainerBackupConfig>
    Backup options for the Autonomous Container Database.
    cloudAutonomousVmClusterId String
    The cloud Autonomous VM Cluster OCID.
    compartmentId String
    The compartment OCID.
    computeModel String
    The compute model of the Autonomous 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.
    databaseSoftwareImageId String
    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.
    dbSplitThreshold Integer
    The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
    dbUniqueName String
    dbVersion String
    Oracle Database version of the Autonomous Container Database.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    distributionAffinity String
    This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
    dstFileVersion String
    DST Time-zone File version of the Autonomous Container Database.
    fastStartFailOverLagLimitInSeconds Integer
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The id of the Autonomous Database Vault service key management history entry.
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    isAutomaticFailoverEnabled Boolean
    isDstFileUpdateEnabled Boolean
    Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
    keyHistoryEntries List<GetAutonomousContainersAutonomousContainerKeyHistoryEntry>
    Key History Entry.
    keyStoreId String
    The OCID of the key store.
    keyStoreWalletName String
    The wallet name for Oracle Key Vault.
    kmsKeyId String
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    largestProvisionableAutonomousDatabaseInCpus Double
    The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listOneOffPatches List<String>
    List of One-Off patches that has been successfully applied to Autonomous Container Database
    maintenanceWindowDetails List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDetail>
    maintenanceWindows List<GetAutonomousContainersAutonomousContainerMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memoryPerOracleComputeUnitInGbs Integer
    The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster. <<<<<<< HEAD
    netServicesArchitecture String

    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.

    22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)

    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    patchId String
    The OCID of the last patch applied on the system.
    patchModel String
    Database patch model preference.
    peerAutonomousContainerDatabaseBackupConfigs List<GetAutonomousContainersAutonomousContainerPeerAutonomousContainerBackupConfig>
    peerAutonomousContainerDatabaseCompartmentId String
    peerAutonomousContainerDatabaseDisplayName String
    peerAutonomousExadataInfrastructureId String
    peerAutonomousVmClusterId String
    peerCloudAutonomousVmClusterId String
    peerDbUniqueName String
    protectionMode String
    provisionableCpuses List<Double>
    An array of CPU values that can be used to successfully provision a single Autonomous Database.
    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.
    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.
    rotateKeyTrigger Boolean
    serviceLevelAgreementType String
    A filter to return only resources that match the given service level agreement type exactly.
    standbyMaintenanceBufferInDays Integer
    The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    timeCreated String
    The date and time the Autonomous Container Database was created.
    timeOfLastBackup String
    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.
    timeSnapshotStandbyRevert String
    The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.
    totalCpus Integer
    The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault.
    versionPreference String
    The next maintenance version preference.
    vmFailoverReservation Integer
    The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.
    autonomousExadataInfrastructureId string
    The Autonomous Exadata Infrastructure OCID.
    autonomousVmClusterId string
    The Autonomous VM Cluster OCID.
    availabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    availableCpus number
    Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
    backupConfigs GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig[]
    Backup options for the Autonomous Container Database.
    cloudAutonomousVmClusterId string
    The cloud Autonomous VM Cluster OCID.
    compartmentId string
    The compartment OCID.
    computeModel string
    The compute model of the Autonomous 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.
    databaseSoftwareImageId string
    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.
    dbSplitThreshold number
    The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
    dbUniqueName string
    dbVersion string
    Oracle Database version of the Autonomous Container Database.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    distributionAffinity string
    This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
    dstFileVersion string
    DST Time-zone File version of the Autonomous Container Database.
    fastStartFailOverLagLimitInSeconds number
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The id of the Autonomous Database Vault service key management history entry.
    infrastructureType string
    A filter to return only resources that match the given Infrastructure Type.
    isAutomaticFailoverEnabled boolean
    isDstFileUpdateEnabled boolean
    Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
    keyHistoryEntries GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry[]
    Key History Entry.
    keyStoreId string
    The OCID of the key store.
    keyStoreWalletName string
    The wallet name for Oracle Key Vault.
    kmsKeyId string
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    largestProvisionableAutonomousDatabaseInCpus number
    The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
    lastMaintenanceRunId string
    The OCID of the last maintenance run.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    listOneOffPatches string[]
    List of One-Off patches that has been successfully applied to Autonomous Container Database
    maintenanceWindowDetails GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail[]
    maintenanceWindows GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow[]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memoryPerOracleComputeUnitInGbs number
    The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster. <<<<<<< HEAD
    netServicesArchitecture string

    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.

    22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)

    nextMaintenanceRunId string
    The OCID of the next maintenance run.
    patchId string
    The OCID of the last patch applied on the system.
    patchModel string
    Database patch model preference.
    peerAutonomousContainerDatabaseBackupConfigs GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig[]
    peerAutonomousContainerDatabaseCompartmentId string
    peerAutonomousContainerDatabaseDisplayName string
    peerAutonomousExadataInfrastructureId string
    peerAutonomousVmClusterId string
    peerCloudAutonomousVmClusterId string
    peerDbUniqueName string
    protectionMode string
    provisionableCpuses number[]
    An array of CPU values that can be used to successfully provision a single Autonomous Database.
    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.
    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.
    rotateKeyTrigger boolean
    serviceLevelAgreementType string
    A filter to return only resources that match the given service level agreement type exactly.
    standbyMaintenanceBufferInDays number
    The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
    state string
    A filter to return only resources that match the given lifecycle state exactly.
    timeCreated string
    The date and time the Autonomous Container Database was created.
    timeOfLastBackup string
    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.
    timeSnapshotStandbyRevert string
    The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.
    totalCpus number
    The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    vaultId string
    The OCID of the Oracle Cloud Infrastructure vault.
    versionPreference string
    The next maintenance version preference.
    vmFailoverReservation number
    The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.
    autonomous_exadata_infrastructure_id str
    The Autonomous Exadata Infrastructure OCID.
    autonomous_vm_cluster_id str
    The Autonomous VM Cluster OCID.
    availability_domain str
    A filter to return only resources that match the given availability domain exactly.
    available_cpus float
    Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
    backup_configs Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig]
    Backup options for the Autonomous Container Database.
    cloud_autonomous_vm_cluster_id str
    The cloud Autonomous VM Cluster OCID.
    compartment_id str
    The compartment OCID.
    compute_model str
    The compute model of the Autonomous 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_image_id str
    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_threshold int
    The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
    db_unique_name str
    db_version str
    Oracle Database version of the Autonomous Container Database.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    distribution_affinity str
    This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
    dst_file_version str
    DST Time-zone File version of the Autonomous Container Database.
    fast_start_fail_over_lag_limit_in_seconds int
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The id of the Autonomous Database Vault service key management history entry.
    infrastructure_type str
    A filter to return only resources that match the given Infrastructure Type.
    is_automatic_failover_enabled bool
    is_dst_file_update_enabled bool
    Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
    key_history_entries Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry]
    Key History Entry.
    key_store_id str
    The OCID of the key store.
    key_store_wallet_name str
    The wallet name for Oracle Key Vault.
    kms_key_id str
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    largest_provisionable_autonomous_database_in_cpus float
    The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
    last_maintenance_run_id str
    The OCID of the last maintenance run.
    lifecycle_details str
    Additional information about the current lifecycle state.
    list_one_off_patches Sequence[str]
    List of One-Off patches that has been successfully applied to Autonomous Container Database
    maintenance_window_details Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail]
    maintenance_windows Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memory_per_oracle_compute_unit_in_gbs int
    The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster. <<<<<<< HEAD
    net_services_architecture str

    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.

    22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)

    next_maintenance_run_id str
    The OCID of the next maintenance run.
    patch_id str
    The OCID of the last patch applied on the system.
    patch_model str
    Database patch model preference.
    peer_autonomous_container_database_backup_configs Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig]
    peer_autonomous_container_database_compartment_id str
    peer_autonomous_container_database_display_name str
    peer_autonomous_exadata_infrastructure_id str
    peer_autonomous_vm_cluster_id str
    peer_cloud_autonomous_vm_cluster_id str
    peer_db_unique_name str
    protection_mode str
    provisionable_cpuses Sequence[float]
    An array of CPU values that can be used to successfully provision a single Autonomous Database.
    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.
    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_trigger bool
    service_level_agreement_type str
    A filter to return only resources that match the given service level agreement type exactly.
    standby_maintenance_buffer_in_days int
    The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
    state str
    A filter to return only resources that match the given lifecycle state exactly.
    time_created str
    The date and time the Autonomous Container Database was created.
    time_of_last_backup str
    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_standby_revert str
    The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.
    total_cpus int
    The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    vault_id str
    The OCID of the Oracle Cloud Infrastructure vault.
    version_preference str
    The next maintenance version preference.
    vm_failover_reservation int
    The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.
    autonomousExadataInfrastructureId String
    The Autonomous Exadata Infrastructure OCID.
    autonomousVmClusterId String
    The Autonomous VM Cluster OCID.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    availableCpus Number
    Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
    backupConfigs List<Property Map>
    Backup options for the Autonomous Container Database.
    cloudAutonomousVmClusterId String
    The cloud Autonomous VM Cluster OCID.
    compartmentId String
    The compartment OCID.
    computeModel String
    The compute model of the Autonomous 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.
    databaseSoftwareImageId String
    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.
    dbSplitThreshold Number
    The value above which an Autonomous Database will be split across multiple nodes. This value defaults to 16 when the "CPU per VM" value on the Autonomous VM Cluster is greater than 16. Otherwise, it defaults to the "CPU per VM" value.
    dbUniqueName String
    dbVersion String
    Oracle Database version of the Autonomous Container Database.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    distributionAffinity String
    This option determines whether to open an Autonomous Database across the maximum number of nodes or the least number of nodes. The default will be for the minimum number of VMs.
    dstFileVersion String
    DST Time-zone File version of the Autonomous Container Database.
    fastStartFailOverLagLimitInSeconds Number
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The id of the Autonomous Database Vault service key management history entry.
    infrastructureType String
    A filter to return only resources that match the given Infrastructure Type.
    isAutomaticFailoverEnabled Boolean
    isDstFileUpdateEnabled Boolean
    Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner.
    keyHistoryEntries List<Property Map>
    Key History Entry.
    keyStoreId String
    The OCID of the key store.
    keyStoreWalletName String
    The wallet name for Oracle Key Vault.
    kmsKeyId String
    The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
    largestProvisionableAutonomousDatabaseInCpus Number
    The largest Autonomous Database (CPU) that can be created in a new Autonomous Container Database.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listOneOffPatches List<String>
    List of One-Off patches that has been successfully applied to Autonomous Container Database
    maintenanceWindowDetails List<Property Map>
    maintenanceWindows List<Property Map>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memoryPerOracleComputeUnitInGbs Number
    The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster. <<<<<<< HEAD
    netServicesArchitecture String

    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.

    22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)

    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    patchId String
    The OCID of the last patch applied on the system.
    patchModel String
    Database patch model preference.
    peerAutonomousContainerDatabaseBackupConfigs List<Property Map>
    peerAutonomousContainerDatabaseCompartmentId String
    peerAutonomousContainerDatabaseDisplayName String
    peerAutonomousExadataInfrastructureId String
    peerAutonomousVmClusterId String
    peerCloudAutonomousVmClusterId String
    peerDbUniqueName String
    protectionMode String
    provisionableCpuses List<Number>
    An array of CPU values that can be used to successfully provision a single Autonomous Database.
    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.
    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.
    rotateKeyTrigger Boolean
    serviceLevelAgreementType String
    A filter to return only resources that match the given service level agreement type exactly.
    standbyMaintenanceBufferInDays Number
    The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before scheduled maintenance of the primary database.
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    timeCreated String
    The date and time the Autonomous Container Database was created.
    timeOfLastBackup String
    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.
    timeSnapshotStandbyRevert String
    The date and time the Autonomous Container Database will be reverted to Standby from Snapshot Standby.
    totalCpus Number
    The number of CPUs allocated to the Autonomous VM cluster. For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault.
    versionPreference String
    The next maintenance version preference.
    vmFailoverReservation Number
    The percentage of CPUs to reserve for a single node Autonomous Database, in increments of 25.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfig

    BackupDestinationDetails List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail>
    Backup destination details.
    RecoveryWindowInDays int
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    BackupDestinationDetails []GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail
    Backup destination details.
    RecoveryWindowInDays int
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backupDestinationDetails List<GetAutonomousContainersAutonomousContainerBackupConfigBackupDestinationDetail>
    Backup destination details.
    recoveryWindowInDays Integer
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backupDestinationDetails GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail[]
    Backup destination details.
    recoveryWindowInDays number
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backup_destination_details Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail]
    Backup destination details.
    recovery_window_in_days int
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backupDestinationDetails List<Property Map>
    Backup destination details.
    recoveryWindowInDays Number
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetail

    Id string
    The id of the Autonomous Database Vault service key management history entry.
    InternetProxy string
    Proxy URL to connect to object store.
    Type string
    Type of the database backup destination.
    VpcPassword string
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    VpcUser string
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    Id string
    The id of the Autonomous Database Vault service key management history entry.
    InternetProxy string
    Proxy URL to connect to object store.
    Type string
    Type of the database backup destination.
    VpcPassword string
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    VpcUser string
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id String
    The id of the Autonomous Database Vault service key management history entry.
    internetProxy String
    Proxy URL to connect to object store.
    type String
    Type of the database backup destination.
    vpcPassword String
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpcUser String
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id string
    The id of the Autonomous Database Vault service key management history entry.
    internetProxy string
    Proxy URL to connect to object store.
    type string
    Type of the database backup destination.
    vpcPassword string
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpcUser string
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id str
    The id of the Autonomous Database Vault service key management history entry.
    internet_proxy str
    Proxy URL to connect to object store.
    type str
    Type of the database backup destination.
    vpc_password str
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpc_user str
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id String
    The id of the Autonomous Database Vault service key management history entry.
    internetProxy String
    Proxy URL to connect to object store.
    type String
    Type of the database backup destination.
    vpcPassword String
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpcUser String
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntry

    Id string
    The id of the Autonomous Database Vault service key management history entry.
    KmsKeyVersionId string
    The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
    TimeActivated string
    The date and time the kms key activated.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault.
    Id string
    The id of the Autonomous Database Vault service key management history entry.
    KmsKeyVersionId string
    The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
    TimeActivated string
    The date and time the kms key activated.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault.
    id String
    The id of the Autonomous Database Vault service key management history entry.
    kmsKeyVersionId String
    The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
    timeActivated String
    The date and time the kms key activated.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault.
    id string
    The id of the Autonomous Database Vault service key management history entry.
    kmsKeyVersionId string
    The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
    timeActivated string
    The date and time the kms key activated.
    vaultId string
    The OCID of the Oracle Cloud Infrastructure vault.
    id str
    The id of the Autonomous Database Vault service key management history entry.
    kms_key_version_id str
    The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
    time_activated str
    The date and time the kms key activated.
    vault_id str
    The OCID of the Oracle Cloud Infrastructure vault.
    id String
    The id of the Autonomous Database Vault service key management history entry.
    kmsKeyVersionId String
    The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
    timeActivated String
    The date and time the kms key activated.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindow

    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    HoursOfDays List<int>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth>
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    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.
    WeeksOfMonths List<int>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek
    Days during the week when maintenance should be performed.
    HoursOfDays []int
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    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.
    WeeksOfMonths []int
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Integer
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<GetAutonomousContainersAutonomousContainerMaintenanceWindowMonth>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    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.
    weeksOfMonths List<Integer>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek[]
    Days during the week when maintenance should be performed.
    hoursOfDays number[]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth[]
    Months during the year when maintenance should be performed.
    patchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference string
    The maintenance window scheduling preference.
    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.
    weeksOfMonths number[]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    custom_action_timeout_in_mins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    days_of_weeks Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek]
    Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    is_custom_action_timeout_enabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    If true, enables the monthly patching option.
    lead_time_in_weeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth]
    Months during the year when maintenance should be performed.
    patching_mode str
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference str
    The maintenance window scheduling preference.
    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_months Sequence[int]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<Property Map>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<Property Map>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    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.
    weeksOfMonths List<Number>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeek

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetail

    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek>
    Days during the week when maintenance should be performed.
    HoursOfDays List<int>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months List<GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth>
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    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.
    WeeksOfMonths List<int>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek
    Days during the week when maintenance should be performed.
    HoursOfDays []int
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months []GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    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.
    WeeksOfMonths []int
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Integer
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDetailDaysOfWeek>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<GetAutonomousContainersAutonomousContainerMaintenanceWindowDetailMonth>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    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.
    weeksOfMonths List<Integer>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek[]
    Days during the week when maintenance should be performed.
    hoursOfDays number[]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth[]
    Months during the year when maintenance should be performed.
    patchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference string
    The maintenance window scheduling preference.
    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.
    weeksOfMonths number[]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    custom_action_timeout_in_mins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    days_of_weeks Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek]
    Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    is_custom_action_timeout_enabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    If true, enables the monthly patching option.
    lead_time_in_weeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth]
    Months during the year when maintenance should be performed.
    patching_mode str
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference str
    The maintenance window scheduling preference.
    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_months Sequence[int]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<Property Map>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<Property Map>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    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.
    weeksOfMonths List<Number>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailDaysOfWeek

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDetailMonth

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonth

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig

    BackupDestinationDetails List<GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail>
    Backup destination details.
    RecoveryWindowInDays int
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    BackupDestinationDetails []GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail
    Backup destination details.
    RecoveryWindowInDays int
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backupDestinationDetails List<GetAutonomousContainersAutonomousContainerPeerAutonomousContainerBackupConfigBackupDestinationDetail>
    Backup destination details.
    recoveryWindowInDays Integer
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backupDestinationDetails GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail[]
    Backup destination details.
    recoveryWindowInDays number
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backup_destination_details Sequence[database.GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail]
    Backup destination details.
    recovery_window_in_days int
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
    backupDestinationDetails List<Property Map>
    Backup destination details.
    recoveryWindowInDays Number
    Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.

    GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail

    Id string
    The id of the Autonomous Database Vault service key management history entry.
    InternetProxy string
    Proxy URL to connect to object store.
    Type string
    Type of the database backup destination.
    VpcPassword string
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    VpcUser string
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    Id string
    The id of the Autonomous Database Vault service key management history entry.
    InternetProxy string
    Proxy URL to connect to object store.
    Type string
    Type of the database backup destination.
    VpcPassword string
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    VpcUser string
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id String
    The id of the Autonomous Database Vault service key management history entry.
    internetProxy String
    Proxy URL to connect to object store.
    type String
    Type of the database backup destination.
    vpcPassword String
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpcUser String
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id string
    The id of the Autonomous Database Vault service key management history entry.
    internetProxy string
    Proxy URL to connect to object store.
    type string
    Type of the database backup destination.
    vpcPassword string
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpcUser string
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id str
    The id of the Autonomous Database Vault service key management history entry.
    internet_proxy str
    Proxy URL to connect to object store.
    type str
    Type of the database backup destination.
    vpc_password str
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpc_user str
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
    id String
    The id of the Autonomous Database Vault service key management history entry.
    internetProxy String
    Proxy URL to connect to object store.
    type String
    Type of the database backup destination.
    vpcPassword String
    For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
    vpcUser String
    For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.

    GetAutonomousContainerDatabasesFilter

    Name string
    Name of the month of the year.
    Values List<string>
    Regex bool
    Name string
    Name of the month of the year.
    Values []string
    Regex bool
    name String
    Name of the month of the year.
    values List<String>
    regex Boolean
    name string
    Name of the month of the year.
    values string[]
    regex boolean
    name str
    Name of the month of the year.
    values Sequence[str]
    regex bool
    name String
    Name of the month of the year.
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi