1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getAutonomousDatabasesClones
Oracle Cloud Infrastructure v1.16.1 published on Wednesday, Nov 22, 2023 by Pulumi

oci.Database.getAutonomousDatabasesClones

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.16.1 published on Wednesday, Nov 22, 2023 by Pulumi

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

    Lists the Autonomous Database clones for the specified Autonomous Database.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAutonomousDatabasesClones = Oci.Database.GetAutonomousDatabasesClones.Invoke(new()
        {
            AutonomousDatabaseId = oci_database_autonomous_database.Test_autonomous_database.Id,
            CompartmentId = @var.Compartment_id,
            CloneType = @var.Autonomous_databases_clone_clone_type,
            DisplayName = @var.Autonomous_databases_clone_display_name,
            State = @var.Autonomous_databases_clone_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.GetAutonomousDatabasesClones(ctx, &database.GetAutonomousDatabasesClonesArgs{
    			AutonomousDatabaseId: oci_database_autonomous_database.Test_autonomous_database.Id,
    			CompartmentId:        _var.Compartment_id,
    			CloneType:            pulumi.StringRef(_var.Autonomous_databases_clone_clone_type),
    			DisplayName:          pulumi.StringRef(_var.Autonomous_databases_clone_display_name),
    			State:                pulumi.StringRef(_var.Autonomous_databases_clone_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.DatabaseFunctions;
    import com.pulumi.oci.Database.inputs.GetAutonomousDatabasesClonesArgs;
    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 testAutonomousDatabasesClones = DatabaseFunctions.getAutonomousDatabasesClones(GetAutonomousDatabasesClonesArgs.builder()
                .autonomousDatabaseId(oci_database_autonomous_database.test_autonomous_database().id())
                .compartmentId(var_.compartment_id())
                .cloneType(var_.autonomous_databases_clone_clone_type())
                .displayName(var_.autonomous_databases_clone_display_name())
                .state(var_.autonomous_databases_clone_state())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_databases_clones = oci.Database.get_autonomous_databases_clones(autonomous_database_id=oci_database_autonomous_database["test_autonomous_database"]["id"],
        compartment_id=var["compartment_id"],
        clone_type=var["autonomous_databases_clone_clone_type"],
        display_name=var["autonomous_databases_clone_display_name"],
        state=var["autonomous_databases_clone_state"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAutonomousDatabasesClones = oci.Database.getAutonomousDatabasesClones({
        autonomousDatabaseId: oci_database_autonomous_database.test_autonomous_database.id,
        compartmentId: _var.compartment_id,
        cloneType: _var.autonomous_databases_clone_clone_type,
        displayName: _var.autonomous_databases_clone_display_name,
        state: _var.autonomous_databases_clone_state,
    });
    
    variables:
      testAutonomousDatabasesClones:
        fn::invoke:
          Function: oci:Database:getAutonomousDatabasesClones
          Arguments:
            autonomousDatabaseId: ${oci_database_autonomous_database.test_autonomous_database.id}
            compartmentId: ${var.compartment_id}
            cloneType: ${var.autonomous_databases_clone_clone_type}
            displayName: ${var.autonomous_databases_clone_display_name}
            state: ${var.autonomous_databases_clone_state}
    

    Using getAutonomousDatabasesClones

    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 getAutonomousDatabasesClones(args: GetAutonomousDatabasesClonesArgs, opts?: InvokeOptions): Promise<GetAutonomousDatabasesClonesResult>
    function getAutonomousDatabasesClonesOutput(args: GetAutonomousDatabasesClonesOutputArgs, opts?: InvokeOptions): Output<GetAutonomousDatabasesClonesResult>
    def get_autonomous_databases_clones(autonomous_database_id: Optional[str] = None,
                                        clone_type: Optional[str] = None,
                                        compartment_id: Optional[str] = None,
                                        display_name: Optional[str] = None,
                                        filters: Optional[Sequence[_database.GetAutonomousDatabasesClonesFilter]] = None,
                                        state: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetAutonomousDatabasesClonesResult
    def get_autonomous_databases_clones_output(autonomous_database_id: Optional[pulumi.Input[str]] = None,
                                        clone_type: 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.GetAutonomousDatabasesClonesFilterArgs]]]] = None,
                                        state: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousDatabasesClonesResult]
    func GetAutonomousDatabasesClones(ctx *Context, args *GetAutonomousDatabasesClonesArgs, opts ...InvokeOption) (*GetAutonomousDatabasesClonesResult, error)
    func GetAutonomousDatabasesClonesOutput(ctx *Context, args *GetAutonomousDatabasesClonesOutputArgs, opts ...InvokeOption) GetAutonomousDatabasesClonesResultOutput

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

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

    The following arguments are supported:

    AutonomousDatabaseId string

    The database OCID.

    CompartmentId string

    The compartment OCID.

    CloneType string

    A filter to return only resources that match the given clone type exactly.

    DisplayName string

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

    Filters List<GetAutonomousDatabasesClonesFilter>
    State string

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

    AutonomousDatabaseId string

    The database OCID.

    CompartmentId string

    The compartment OCID.

    CloneType string

    A filter to return only resources that match the given clone type exactly.

    DisplayName string

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

    Filters []GetAutonomousDatabasesClonesFilter
    State string

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

    autonomousDatabaseId String

    The database OCID.

    compartmentId String

    The compartment OCID.

    cloneType String

    A filter to return only resources that match the given clone type exactly.

    displayName String

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

    filters List<GetAutonomoussClonesFilter>
    state String

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

    autonomousDatabaseId string

    The database OCID.

    compartmentId string

    The compartment OCID.

    cloneType string

    A filter to return only resources that match the given clone type exactly.

    displayName string

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

    filters GetAutonomousDatabasesClonesFilter[]
    state string

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

    autonomous_database_id str

    The database OCID.

    compartment_id str

    The compartment OCID.

    clone_type str

    A filter to return only resources that match the given clone type exactly.

    display_name str

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

    filters GetAutonomousDatabasesClonesFilter]
    state str

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

    autonomousDatabaseId String

    The database OCID.

    compartmentId String

    The compartment OCID.

    cloneType String

    A filter to return only resources that match the given clone type exactly.

    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>
    state String

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

    getAutonomousDatabasesClones Result

    The following output properties are available:

    AutonomousDatabaseId string
    AutonomousDatabases List<GetAutonomousDatabasesClonesAutonomousDatabase>

    The list of autonomous_databases.

    CompartmentId string

    The OCID of the compartment.

    Id string

    The provider-assigned unique ID for this managed resource.

    CloneType string
    DisplayName string

    The user-friendly name for the Autonomous Database. The name does not have to be unique.

    Filters List<GetAutonomousDatabasesClonesFilter>
    State string

    The current state of the Autonomous Database.

    AutonomousDatabaseId string
    AutonomousDatabases []GetAutonomousDatabasesClonesAutonomousDatabase

    The list of autonomous_databases.

    CompartmentId string

    The OCID of the compartment.

    Id string

    The provider-assigned unique ID for this managed resource.

    CloneType string
    DisplayName string

    The user-friendly name for the Autonomous Database. The name does not have to be unique.

    Filters []GetAutonomousDatabasesClonesFilter
    State string

    The current state of the Autonomous Database.

    autonomousDatabaseId String
    autonomousDatabases List<GetAutonomoussClonesAutonomous>

    The list of autonomous_databases.

    compartmentId String

    The OCID of the compartment.

    id String

    The provider-assigned unique ID for this managed resource.

    cloneType String
    displayName String

    The user-friendly name for the Autonomous Database. The name does not have to be unique.

    filters List<GetAutonomoussClonesFilter>
    state String

    The current state of the Autonomous Database.

    autonomousDatabaseId string
    autonomousDatabases GetAutonomousDatabasesClonesAutonomousDatabase[]

    The list of autonomous_databases.

    compartmentId string

    The OCID of the compartment.

    id string

    The provider-assigned unique ID for this managed resource.

    cloneType string
    displayName string

    The user-friendly name for the Autonomous Database. The name does not have to be unique.

    filters GetAutonomousDatabasesClonesFilter[]
    state string

    The current state of the Autonomous Database.

    autonomous_database_id str
    autonomous_databases GetAutonomousDatabasesClonesAutonomousDatabase]

    The list of autonomous_databases.

    compartment_id str

    The OCID of the compartment.

    id str

    The provider-assigned unique ID for this managed resource.

    clone_type str
    display_name str

    The user-friendly name for the Autonomous Database. The name does not have to be unique.

    filters GetAutonomousDatabasesClonesFilter]
    state str

    The current state of the Autonomous Database.

    autonomousDatabaseId String
    autonomousDatabases List<Property Map>

    The list of autonomous_databases.

    compartmentId String

    The OCID of the compartment.

    id String

    The provider-assigned unique ID for this managed resource.

    cloneType String
    displayName String

    The user-friendly name for the Autonomous Database. The name does not have to be unique.

    filters List<Property Map>
    state String

    The current state of the Autonomous Database.

    Supporting Types

    GetAutonomousDatabasesClonesAutonomousDatabase

    ActualUsedDataStorageSizeInTbs double

    The current amount of storage in use for user and system data, in terabytes (TB).

    AllocatedStorageSizeInTbs double

    The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the dataStorageSizeInTBs value. You can compare this value to the actualUsedDataStorageSizeInTBs value to determine if a manual shrink operation is appropriate for your allocated storage.

    ApexDetails List<GetAutonomousDatabasesClonesAutonomousDatabaseApexDetail>

    Information about Oracle APEX Application Development.

    ArePrimaryWhitelistedIpsUsed bool

    This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be TRUE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be FALSE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.

    AutonomousContainerDatabaseId string

    The Autonomous Container Database OCID.

    AutonomousMaintenanceScheduleType string

    The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle

    AvailableUpgradeVersions List<string>

    List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.

    BackupConfigs List<GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfig>

    Autonomous Database configuration details for storing manual backups in the Object Storage service.

    BackupRetentionPeriodInDays int

    Retention period, in days, for backups.

    CharacterSet string

    The character set for the autonomous database. The default is AL32UTF8. Allowed values are:

    CompartmentId string

    The compartment OCID.

    ComputeCount double

    The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.

    ComputeModel string

    The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.

    ConnectionStrings List<GetAutonomousDatabasesClonesAutonomousDatabaseConnectionString>

    The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.

    ConnectionUrls List<GetAutonomousDatabasesClonesAutonomousDatabaseConnectionUrl>

    The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on dedicated Exadata infrastructure. Example: {"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}

    CpuCoreCount int

    The number of OCPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.

    CustomerContacts List<GetAutonomousDatabasesClonesAutonomousDatabaseCustomerContact>

    Customer Contacts.

    DataSafeStatus string

    Status of the Data Safe registration for this Autonomous Database.

    DataStorageSizeInGb int

    The quantity of data in the database, in gigabytes.

    DataStorageSizeInTbs int

    The quantity of data in the database, in terabytes.

    DatabaseEdition string

    The Oracle Database Edition that applies to the Autonomous databases.

    DatabaseManagementStatus string

    Status of Database Management for this Autonomous Database.

    DataguardRegionType string

    The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.

    DbName string

    The database name.

    DbVersion string

    A valid Oracle Database version for Autonomous Database.

    DbWorkload string

    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    DefinedTags Dictionary<string, object>

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

    DisasterRecoveryRegionType string

    The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.

    DisplayName string

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

    FailedDataRecoveryInSeconds int

    Indicates the number of seconds of data loss for a Data Guard failover.

    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.

    InMemoryAreaInGbs int

    The area assigned to In-Memory tables in Autonomous Database.

    InMemoryPercentage int

    The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.

    InfrastructureType string

    The infrastructure type this resource belongs to.

    IsAccessControlEnabled bool

    Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the whitelistedIps property. While specifying whitelistedIps rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the UpdateAutonomousDatabase API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.

    IsAutoScalingEnabled bool

    Indicates if auto scaling is enabled for the Autonomous Database CPU core count.

    IsAutoScalingForStorageEnabled bool

    Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is FALSE.

    IsDataGuardEnabled bool

    Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    IsDedicated bool

    True if the database uses dedicated Exadata infrastructure.

    IsFreeTier bool

    Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.

    IsLocalDataGuardEnabled bool

    Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    IsMtlsConnectionRequired bool

    Specifies if the Autonomous Database requires mTLS connections.

    IsPreview bool

    Indicates if the Autonomous Database version is a preview version.

    IsReconnectCloneEnabled bool

    Indicates if the refreshable clone can be reconnected to its source database.

    IsRefreshableClone bool

    Indicates if the Autonomous Database is a refreshable clone.

    IsRemoteDataGuardEnabled bool

    Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    KeyHistoryEntries List<GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntry>

    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.

    KmsKeyLifecycleDetails string

    KMS key lifecycle details.

    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.

    LicenseModel string

    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    LocalAdgAutoFailoverMaxDataLossLimit int

    Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard

    LocalDisasterRecoveryType string

    Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    LocalStandbyDbs List<GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDb>

    Autonomous Data Guard standby database details.

    LongTermBackupSchedules List<GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupSchedule>

    Details for the long-term backup schedule.

    MaxCpuCoreCount int

    The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.

    MemoryPerOracleComputeUnitInGbs int

    The amount of memory (in GBs) enabled per OCPU or ECPU. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

    NcharacterSet string

    The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.

    NextLongTermBackupTimeStamp string

    The date and time when the next long-term backup would be created.

    NsgIds List<string>

    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount double

    The number of OCPU cores to be made available to the database.

    OpenMode string

    Indicates the Autonomous Database mode. The database can be opened in READ_ONLY or READ_WRITE mode.

    PeerDbIds List<string>

    The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.

    PrivateEndpoint string

    The private endpoint for the resource.

    PrivateEndpointIp string

    The private endpoint Ip address for the resource.

    PrivateEndpointLabel string

    The resource's private endpoint label. Setting this to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.

    ProvisionableCpuses List<double>

    An array of CPU values that an Autonomous Database can be scaled to.

    RefreshableMode string

    The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.

    RefreshableStatus string

    The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.

    RemoteDisasterRecoveryConfigurations List<GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfiguration>

    Configurations of a Disaster Recovery.

    ResourcePoolLeaderId string

    The unique identifier for leader autonomous database OCID OCID.

    ResourcePoolSummaries List<GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummary>

    The configuration details for resource pool

    Role string

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

    ScheduledOperations List<GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperation>

    The list of scheduled operations.

    ServiceConsoleUrl string

    The URL of the Service Console for the Autonomous Database.

    SourceId string

    The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.

    StandbyDbs List<GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDb>

    Deprecated Autonomous Data Guard standby database details.

    StandbyWhitelistedIps List<string>

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    State string

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

    SubnetId string

    The OCID of the subnet the resource is associated with.

    SupportedRegionsToCloneTos List<string>

    The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.

    SystemTags Dictionary<string, object>

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

    TimeCreated string

    The date and time the Autonomous Database was created.

    TimeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    TimeDeletionOfFreeAutonomousDatabase string

    The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.

    TimeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    TimeLocalDataGuardEnabled string

    The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.

    TimeMaintenanceBegin string

    The date and time when maintenance will begin.

    TimeMaintenanceEnd string

    The date and time when maintenance will end.

    TimeOfJoiningResourcePool string
    TimeOfLastFailover string

    The timestamp of the last failover operation.

    TimeOfLastRefresh string

    The date and time when last refresh happened.

    TimeOfLastRefreshPoint string

    The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.

    TimeOfLastSwitchover string

    The timestamp of the last switchover operation for the Autonomous Database.

    TimeOfNextRefresh string

    The date and time of next refresh.

    TimeReclamationOfFreeAutonomousDatabase string

    The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.

    TimeUntilReconnectCloneEnabled string

    The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.

    TotalBackupStorageSizeInGbs double

    The backup storage to the database.

    UsedDataStorageSizeInGbs int

    The storage space consumed by Autonomous Database in GBs.

    UsedDataStorageSizeInTbs int

    The amount of storage that has been used, in terabytes.

    VaultId string

    The OCID of the Oracle Cloud Infrastructure vault.

    WhitelistedIps List<string>

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    ActualUsedDataStorageSizeInTbs float64

    The current amount of storage in use for user and system data, in terabytes (TB).

    AllocatedStorageSizeInTbs float64

    The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the dataStorageSizeInTBs value. You can compare this value to the actualUsedDataStorageSizeInTBs value to determine if a manual shrink operation is appropriate for your allocated storage.

    ApexDetails []GetAutonomousDatabasesClonesAutonomousDatabaseApexDetail

    Information about Oracle APEX Application Development.

    ArePrimaryWhitelistedIpsUsed bool

    This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be TRUE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be FALSE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.

    AutonomousContainerDatabaseId string

    The Autonomous Container Database OCID.

    AutonomousMaintenanceScheduleType string

    The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle

    AvailableUpgradeVersions []string

    List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.

    BackupConfigs []GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfig

    Autonomous Database configuration details for storing manual backups in the Object Storage service.

    BackupRetentionPeriodInDays int

    Retention period, in days, for backups.

    CharacterSet string

    The character set for the autonomous database. The default is AL32UTF8. Allowed values are:

    CompartmentId string

    The compartment OCID.

    ComputeCount float64

    The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.

    ComputeModel string

    The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.

    ConnectionStrings []GetAutonomousDatabasesClonesAutonomousDatabaseConnectionString

    The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.

    ConnectionUrls []GetAutonomousDatabasesClonesAutonomousDatabaseConnectionUrl

    The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on dedicated Exadata infrastructure. Example: {"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}

    CpuCoreCount int

    The number of OCPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.

    CustomerContacts []GetAutonomousDatabasesClonesAutonomousDatabaseCustomerContact

    Customer Contacts.

    DataSafeStatus string

    Status of the Data Safe registration for this Autonomous Database.

    DataStorageSizeInGb int

    The quantity of data in the database, in gigabytes.

    DataStorageSizeInTbs int

    The quantity of data in the database, in terabytes.

    DatabaseEdition string

    The Oracle Database Edition that applies to the Autonomous databases.

    DatabaseManagementStatus string

    Status of Database Management for this Autonomous Database.

    DataguardRegionType string

    The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.

    DbName string

    The database name.

    DbVersion string

    A valid Oracle Database version for Autonomous Database.

    DbWorkload string

    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    DefinedTags map[string]interface{}

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

    DisasterRecoveryRegionType string

    The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.

    DisplayName string

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

    FailedDataRecoveryInSeconds int

    Indicates the number of seconds of data loss for a Data Guard failover.

    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.

    InMemoryAreaInGbs int

    The area assigned to In-Memory tables in Autonomous Database.

    InMemoryPercentage int

    The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.

    InfrastructureType string

    The infrastructure type this resource belongs to.

    IsAccessControlEnabled bool

    Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the whitelistedIps property. While specifying whitelistedIps rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the UpdateAutonomousDatabase API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.

    IsAutoScalingEnabled bool

    Indicates if auto scaling is enabled for the Autonomous Database CPU core count.

    IsAutoScalingForStorageEnabled bool

    Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is FALSE.

    IsDataGuardEnabled bool

    Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    IsDedicated bool

    True if the database uses dedicated Exadata infrastructure.

    IsFreeTier bool

    Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.

    IsLocalDataGuardEnabled bool

    Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    IsMtlsConnectionRequired bool

    Specifies if the Autonomous Database requires mTLS connections.

    IsPreview bool

    Indicates if the Autonomous Database version is a preview version.

    IsReconnectCloneEnabled bool

    Indicates if the refreshable clone can be reconnected to its source database.

    IsRefreshableClone bool

    Indicates if the Autonomous Database is a refreshable clone.

    IsRemoteDataGuardEnabled bool

    Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    KeyHistoryEntries []GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntry

    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.

    KmsKeyLifecycleDetails string

    KMS key lifecycle details.

    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.

    LicenseModel string

    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    LocalAdgAutoFailoverMaxDataLossLimit int

    Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard

    LocalDisasterRecoveryType string

    Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    LocalStandbyDbs []GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDb

    Autonomous Data Guard standby database details.

    LongTermBackupSchedules []GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupSchedule

    Details for the long-term backup schedule.

    MaxCpuCoreCount int

    The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.

    MemoryPerOracleComputeUnitInGbs int

    The amount of memory (in GBs) enabled per OCPU or ECPU. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

    NcharacterSet string

    The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.

    NextLongTermBackupTimeStamp string

    The date and time when the next long-term backup would be created.

    NsgIds []string

    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount float64

    The number of OCPU cores to be made available to the database.

    OpenMode string

    Indicates the Autonomous Database mode. The database can be opened in READ_ONLY or READ_WRITE mode.

    PeerDbIds []string

    The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.

    PrivateEndpoint string

    The private endpoint for the resource.

    PrivateEndpointIp string

    The private endpoint Ip address for the resource.

    PrivateEndpointLabel string

    The resource's private endpoint label. Setting this to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.

    ProvisionableCpuses []float64

    An array of CPU values that an Autonomous Database can be scaled to.

    RefreshableMode string

    The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.

    RefreshableStatus string

    The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.

    RemoteDisasterRecoveryConfigurations []GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfiguration

    Configurations of a Disaster Recovery.

    ResourcePoolLeaderId string

    The unique identifier for leader autonomous database OCID OCID.

    ResourcePoolSummaries []GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummary

    The configuration details for resource pool

    Role string

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

    ScheduledOperations []GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperation

    The list of scheduled operations.

    ServiceConsoleUrl string

    The URL of the Service Console for the Autonomous Database.

    SourceId string

    The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.

    StandbyDbs []GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDb

    Deprecated Autonomous Data Guard standby database details.

    StandbyWhitelistedIps []string

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    State string

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

    SubnetId string

    The OCID of the subnet the resource is associated with.

    SupportedRegionsToCloneTos []string

    The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.

    SystemTags map[string]interface{}

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

    TimeCreated string

    The date and time the Autonomous Database was created.

    TimeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    TimeDeletionOfFreeAutonomousDatabase string

    The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.

    TimeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    TimeLocalDataGuardEnabled string

    The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.

    TimeMaintenanceBegin string

    The date and time when maintenance will begin.

    TimeMaintenanceEnd string

    The date and time when maintenance will end.

    TimeOfJoiningResourcePool string
    TimeOfLastFailover string

    The timestamp of the last failover operation.

    TimeOfLastRefresh string

    The date and time when last refresh happened.

    TimeOfLastRefreshPoint string

    The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.

    TimeOfLastSwitchover string

    The timestamp of the last switchover operation for the Autonomous Database.

    TimeOfNextRefresh string

    The date and time of next refresh.

    TimeReclamationOfFreeAutonomousDatabase string

    The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.

    TimeUntilReconnectCloneEnabled string

    The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.

    TotalBackupStorageSizeInGbs float64

    The backup storage to the database.

    UsedDataStorageSizeInGbs int

    The storage space consumed by Autonomous Database in GBs.

    UsedDataStorageSizeInTbs int

    The amount of storage that has been used, in terabytes.

    VaultId string

    The OCID of the Oracle Cloud Infrastructure vault.

    WhitelistedIps []string

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    actualUsedDataStorageSizeInTbs Double

    The current amount of storage in use for user and system data, in terabytes (TB).

    allocatedStorageSizeInTbs Double

    The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the dataStorageSizeInTBs value. You can compare this value to the actualUsedDataStorageSizeInTBs value to determine if a manual shrink operation is appropriate for your allocated storage.

    apexDetails List<GetAutonomoussClonesAutonomousApexDetail>

    Information about Oracle APEX Application Development.

    arePrimaryWhitelistedIpsUsed Boolean

    This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be TRUE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be FALSE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.

    autonomousContainerDatabaseId String

    The Autonomous Container Database OCID.

    autonomousMaintenanceScheduleType String

    The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle

    availableUpgradeVersions List<String>

    List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.

    backupConfigs List<GetAutonomoussClonesAutonomousBackupConfig>

    Autonomous Database configuration details for storing manual backups in the Object Storage service.

    backupRetentionPeriodInDays Integer

    Retention period, in days, for backups.

    characterSet String

    The character set for the autonomous database. The default is AL32UTF8. Allowed values are:

    compartmentId String

    The compartment OCID.

    computeCount Double

    The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.

    computeModel String

    The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.

    connectionStrings List<GetAutonomoussClonesAutonomousConnectionString>

    The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.

    connectionUrls List<GetAutonomoussClonesAutonomousConnectionUrl>

    The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on dedicated Exadata infrastructure. Example: {"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}

    cpuCoreCount Integer

    The number of OCPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.

    customerContacts List<GetAutonomoussClonesAutonomousCustomerContact>

    Customer Contacts.

    dataSafeStatus String

    Status of the Data Safe registration for this Autonomous Database.

    dataStorageSizeInGb Integer

    The quantity of data in the database, in gigabytes.

    dataStorageSizeInTbs Integer

    The quantity of data in the database, in terabytes.

    databaseEdition String

    The Oracle Database Edition that applies to the Autonomous databases.

    databaseManagementStatus String

    Status of Database Management for this Autonomous Database.

    dataguardRegionType String

    The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.

    dbName String

    The database name.

    dbVersion String

    A valid Oracle Database version for Autonomous Database.

    dbWorkload String

    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    definedTags Map<String,Object>

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

    disasterRecoveryRegionType String

    The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.

    displayName String

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

    failedDataRecoveryInSeconds Integer

    Indicates the number of seconds of data loss for a Data Guard failover.

    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.

    inMemoryAreaInGbs Integer

    The area assigned to In-Memory tables in Autonomous Database.

    inMemoryPercentage Integer

    The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.

    infrastructureType String

    The infrastructure type this resource belongs to.

    isAccessControlEnabled Boolean

    Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the whitelistedIps property. While specifying whitelistedIps rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the UpdateAutonomousDatabase API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.

    isAutoScalingEnabled Boolean

    Indicates if auto scaling is enabled for the Autonomous Database CPU core count.

    isAutoScalingForStorageEnabled Boolean

    Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is FALSE.

    isDataGuardEnabled Boolean

    Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    isDedicated Boolean

    True if the database uses dedicated Exadata infrastructure.

    isFreeTier Boolean

    Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.

    isLocalDataGuardEnabled Boolean

    Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    isMtlsConnectionRequired Boolean

    Specifies if the Autonomous Database requires mTLS connections.

    isPreview Boolean

    Indicates if the Autonomous Database version is a preview version.

    isReconnectCloneEnabled Boolean

    Indicates if the refreshable clone can be reconnected to its source database.

    isRefreshableClone Boolean

    Indicates if the Autonomous Database is a refreshable clone.

    isRemoteDataGuardEnabled Boolean

    Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    keyHistoryEntries List<GetAutonomoussClonesAutonomousKeyHistoryEntry>

    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.

    kmsKeyLifecycleDetails String

    KMS key lifecycle details.

    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.

    licenseModel String

    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    localAdgAutoFailoverMaxDataLossLimit Integer

    Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard

    localDisasterRecoveryType String

    Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    localStandbyDbs List<GetAutonomoussClonesAutonomousLocalStandbyDb>

    Autonomous Data Guard standby database details.

    longTermBackupSchedules List<GetAutonomoussClonesAutonomousLongTermBackupSchedule>

    Details for the long-term backup schedule.

    maxCpuCoreCount Integer

    The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.

    memoryPerOracleComputeUnitInGbs Integer

    The amount of memory (in GBs) enabled per OCPU or ECPU. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

    ncharacterSet String

    The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.

    nextLongTermBackupTimeStamp String

    The date and time when the next long-term backup would be created.

    nsgIds List<String>

    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Double

    The number of OCPU cores to be made available to the database.

    openMode String

    Indicates the Autonomous Database mode. The database can be opened in READ_ONLY or READ_WRITE mode.

    peerDbIds List<String>

    The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.

    privateEndpoint String

    The private endpoint for the resource.

    privateEndpointIp String

    The private endpoint Ip address for the resource.

    privateEndpointLabel String

    The resource's private endpoint label. Setting this to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.

    provisionableCpuses List<Double>

    An array of CPU values that an Autonomous Database can be scaled to.

    refreshableMode String

    The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.

    refreshableStatus String

    The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.

    remoteDisasterRecoveryConfigurations List<GetAutonomoussClonesAutonomousRemoteDisasterRecoveryConfiguration>

    Configurations of a Disaster Recovery.

    resourcePoolLeaderId String

    The unique identifier for leader autonomous database OCID OCID.

    resourcePoolSummaries List<GetAutonomoussClonesAutonomousResourcePoolSummary>

    The configuration details for resource pool

    role String

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

    scheduledOperations List<GetAutonomoussClonesAutonomousScheduledOperation>

    The list of scheduled operations.

    serviceConsoleUrl String

    The URL of the Service Console for the Autonomous Database.

    sourceId String

    The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.

    standbyDbs List<GetAutonomoussClonesAutonomousStandbyDb>

    Deprecated Autonomous Data Guard standby database details.

    standbyWhitelistedIps List<String>

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    state String

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

    subnetId String

    The OCID of the subnet the resource is associated with.

    supportedRegionsToCloneTos List<String>

    The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.

    systemTags Map<String,Object>

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

    timeCreated String

    The date and time the Autonomous Database was created.

    timeDataGuardRoleChanged String

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDeletionOfFreeAutonomousDatabase String

    The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.

    timeDisasterRecoveryRoleChanged String

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    timeLocalDataGuardEnabled String

    The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.

    timeMaintenanceBegin String

    The date and time when maintenance will begin.

    timeMaintenanceEnd String

    The date and time when maintenance will end.

    timeOfJoiningResourcePool String
    timeOfLastFailover String

    The timestamp of the last failover operation.

    timeOfLastRefresh String

    The date and time when last refresh happened.

    timeOfLastRefreshPoint String

    The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.

    timeOfLastSwitchover String

    The timestamp of the last switchover operation for the Autonomous Database.

    timeOfNextRefresh String

    The date and time of next refresh.

    timeReclamationOfFreeAutonomousDatabase String

    The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.

    timeUntilReconnectCloneEnabled String

    The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.

    totalBackupStorageSizeInGbs Double

    The backup storage to the database.

    usedDataStorageSizeInGbs Integer

    The storage space consumed by Autonomous Database in GBs.

    usedDataStorageSizeInTbs Integer

    The amount of storage that has been used, in terabytes.

    vaultId String

    The OCID of the Oracle Cloud Infrastructure vault.

    whitelistedIps List<String>

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    actualUsedDataStorageSizeInTbs number

    The current amount of storage in use for user and system data, in terabytes (TB).

    allocatedStorageSizeInTbs number

    The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the dataStorageSizeInTBs value. You can compare this value to the actualUsedDataStorageSizeInTBs value to determine if a manual shrink operation is appropriate for your allocated storage.

    apexDetails GetAutonomousDatabasesClonesAutonomousDatabaseApexDetail[]

    Information about Oracle APEX Application Development.

    arePrimaryWhitelistedIpsUsed boolean

    This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be TRUE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be FALSE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.

    autonomousContainerDatabaseId string

    The Autonomous Container Database OCID.

    autonomousMaintenanceScheduleType string

    The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle

    availableUpgradeVersions string[]

    List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.

    backupConfigs GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfig[]

    Autonomous Database configuration details for storing manual backups in the Object Storage service.

    backupRetentionPeriodInDays number

    Retention period, in days, for backups.

    characterSet string

    The character set for the autonomous database. The default is AL32UTF8. Allowed values are:

    compartmentId string

    The compartment OCID.

    computeCount number

    The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.

    computeModel string

    The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.

    connectionStrings GetAutonomousDatabasesClonesAutonomousDatabaseConnectionString[]

    The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.

    connectionUrls GetAutonomousDatabasesClonesAutonomousDatabaseConnectionUrl[]

    The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on dedicated Exadata infrastructure. Example: {"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}

    cpuCoreCount number

    The number of OCPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.

    customerContacts GetAutonomousDatabasesClonesAutonomousDatabaseCustomerContact[]

    Customer Contacts.

    dataSafeStatus string

    Status of the Data Safe registration for this Autonomous Database.

    dataStorageSizeInGb number

    The quantity of data in the database, in gigabytes.

    dataStorageSizeInTbs number

    The quantity of data in the database, in terabytes.

    databaseEdition string

    The Oracle Database Edition that applies to the Autonomous databases.

    databaseManagementStatus string

    Status of Database Management for this Autonomous Database.

    dataguardRegionType string

    The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.

    dbName string

    The database name.

    dbVersion string

    A valid Oracle Database version for Autonomous Database.

    dbWorkload string

    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    definedTags {[key: string]: any}

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

    disasterRecoveryRegionType string

    The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.

    displayName string

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

    failedDataRecoveryInSeconds number

    Indicates the number of seconds of data loss for a Data Guard failover.

    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.

    inMemoryAreaInGbs number

    The area assigned to In-Memory tables in Autonomous Database.

    inMemoryPercentage number

    The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.

    infrastructureType string

    The infrastructure type this resource belongs to.

    isAccessControlEnabled boolean

    Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the whitelistedIps property. While specifying whitelistedIps rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the UpdateAutonomousDatabase API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.

    isAutoScalingEnabled boolean

    Indicates if auto scaling is enabled for the Autonomous Database CPU core count.

    isAutoScalingForStorageEnabled boolean

    Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is FALSE.

    isDataGuardEnabled boolean

    Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    isDedicated boolean

    True if the database uses dedicated Exadata infrastructure.

    isFreeTier boolean

    Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.

    isLocalDataGuardEnabled boolean

    Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    isMtlsConnectionRequired boolean

    Specifies if the Autonomous Database requires mTLS connections.

    isPreview boolean

    Indicates if the Autonomous Database version is a preview version.

    isReconnectCloneEnabled boolean

    Indicates if the refreshable clone can be reconnected to its source database.

    isRefreshableClone boolean

    Indicates if the Autonomous Database is a refreshable clone.

    isRemoteDataGuardEnabled boolean

    Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    keyHistoryEntries GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntry[]

    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.

    kmsKeyLifecycleDetails string

    KMS key lifecycle details.

    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.

    licenseModel string

    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE.

    lifecycleDetails string

    Additional information about the current lifecycle state.

    localAdgAutoFailoverMaxDataLossLimit number

    Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard

    localDisasterRecoveryType string

    Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    localStandbyDbs GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDb[]

    Autonomous Data Guard standby database details.

    longTermBackupSchedules GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupSchedule[]

    Details for the long-term backup schedule.

    maxCpuCoreCount number

    The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.

    memoryPerOracleComputeUnitInGbs number

    The amount of memory (in GBs) enabled per OCPU or ECPU. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

    ncharacterSet string

    The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.

    nextLongTermBackupTimeStamp string

    The date and time when the next long-term backup would be created.

    nsgIds string[]

    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount number

    The number of OCPU cores to be made available to the database.

    openMode string

    Indicates the Autonomous Database mode. The database can be opened in READ_ONLY or READ_WRITE mode.

    peerDbIds string[]

    The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.

    privateEndpoint string

    The private endpoint for the resource.

    privateEndpointIp string

    The private endpoint Ip address for the resource.

    privateEndpointLabel string

    The resource's private endpoint label. Setting this to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.

    provisionableCpuses number[]

    An array of CPU values that an Autonomous Database can be scaled to.

    refreshableMode string

    The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.

    refreshableStatus string

    The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.

    remoteDisasterRecoveryConfigurations GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfiguration[]

    Configurations of a Disaster Recovery.

    resourcePoolLeaderId string

    The unique identifier for leader autonomous database OCID OCID.

    resourcePoolSummaries GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummary[]

    The configuration details for resource pool

    role string

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

    scheduledOperations GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperation[]

    The list of scheduled operations.

    serviceConsoleUrl string

    The URL of the Service Console for the Autonomous Database.

    sourceId string

    The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.

    standbyDbs GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDb[]

    Deprecated Autonomous Data Guard standby database details.

    standbyWhitelistedIps string[]

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    state string

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

    subnetId string

    The OCID of the subnet the resource is associated with.

    supportedRegionsToCloneTos string[]

    The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.

    systemTags {[key: string]: any}

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

    timeCreated string

    The date and time the Autonomous Database was created.

    timeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDeletionOfFreeAutonomousDatabase string

    The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.

    timeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    timeLocalDataGuardEnabled string

    The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.

    timeMaintenanceBegin string

    The date and time when maintenance will begin.

    timeMaintenanceEnd string

    The date and time when maintenance will end.

    timeOfJoiningResourcePool string
    timeOfLastFailover string

    The timestamp of the last failover operation.

    timeOfLastRefresh string

    The date and time when last refresh happened.

    timeOfLastRefreshPoint string

    The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.

    timeOfLastSwitchover string

    The timestamp of the last switchover operation for the Autonomous Database.

    timeOfNextRefresh string

    The date and time of next refresh.

    timeReclamationOfFreeAutonomousDatabase string

    The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.

    timeUntilReconnectCloneEnabled string

    The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.

    totalBackupStorageSizeInGbs number

    The backup storage to the database.

    usedDataStorageSizeInGbs number

    The storage space consumed by Autonomous Database in GBs.

    usedDataStorageSizeInTbs number

    The amount of storage that has been used, in terabytes.

    vaultId string

    The OCID of the Oracle Cloud Infrastructure vault.

    whitelistedIps string[]

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    actual_used_data_storage_size_in_tbs float

    The current amount of storage in use for user and system data, in terabytes (TB).

    allocated_storage_size_in_tbs float

    The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the dataStorageSizeInTBs value. You can compare this value to the actualUsedDataStorageSizeInTBs value to determine if a manual shrink operation is appropriate for your allocated storage.

    apex_details GetAutonomousDatabasesClonesAutonomousDatabaseApexDetail]

    Information about Oracle APEX Application Development.

    are_primary_whitelisted_ips_used bool

    This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be TRUE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be FALSE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.

    autonomous_container_database_id str

    The Autonomous Container Database OCID.

    autonomous_maintenance_schedule_type str

    The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle

    available_upgrade_versions Sequence[str]

    List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.

    backup_configs GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfig]

    Autonomous Database configuration details for storing manual backups in the Object Storage service.

    backup_retention_period_in_days int

    Retention period, in days, for backups.

    character_set str

    The character set for the autonomous database. The default is AL32UTF8. Allowed values are:

    compartment_id str

    The compartment OCID.

    compute_count float

    The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.

    compute_model str

    The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.

    connection_strings GetAutonomousDatabasesClonesAutonomousDatabaseConnectionString]

    The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.

    connection_urls GetAutonomousDatabasesClonesAutonomousDatabaseConnectionUrl]

    The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on dedicated Exadata infrastructure. Example: {"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}

    cpu_core_count int

    The number of OCPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.

    customer_contacts GetAutonomousDatabasesClonesAutonomousDatabaseCustomerContact]

    Customer Contacts.

    data_safe_status str

    Status of the Data Safe registration for this Autonomous Database.

    data_storage_size_in_gb int

    The quantity of data in the database, in gigabytes.

    data_storage_size_in_tbs int

    The quantity of data in the database, in terabytes.

    database_edition str

    The Oracle Database Edition that applies to the Autonomous databases.

    database_management_status str

    Status of Database Management for this Autonomous Database.

    dataguard_region_type str

    The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.

    db_name str

    The database name.

    db_version str

    A valid Oracle Database version for Autonomous Database.

    db_workload str

    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    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.

    disaster_recovery_region_type str

    The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.

    display_name str

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

    failed_data_recovery_in_seconds int

    Indicates the number of seconds of data loss for a Data Guard failover.

    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.

    in_memory_area_in_gbs int

    The area assigned to In-Memory tables in Autonomous Database.

    in_memory_percentage int

    The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.

    infrastructure_type str

    The infrastructure type this resource belongs to.

    is_access_control_enabled bool

    Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the whitelistedIps property. While specifying whitelistedIps rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the UpdateAutonomousDatabase API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.

    is_auto_scaling_enabled bool

    Indicates if auto scaling is enabled for the Autonomous Database CPU core count.

    is_auto_scaling_for_storage_enabled bool

    Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is FALSE.

    is_data_guard_enabled bool

    Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    is_dedicated bool

    True if the database uses dedicated Exadata infrastructure.

    is_free_tier bool

    Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.

    is_local_data_guard_enabled bool

    Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    is_mtls_connection_required bool

    Specifies if the Autonomous Database requires mTLS connections.

    is_preview bool

    Indicates if the Autonomous Database version is a preview version.

    is_reconnect_clone_enabled bool

    Indicates if the refreshable clone can be reconnected to its source database.

    is_refreshable_clone bool

    Indicates if the Autonomous Database is a refreshable clone.

    is_remote_data_guard_enabled bool

    Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    key_history_entries GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntry]

    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.

    kms_key_lifecycle_details str

    KMS key lifecycle details.

    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.

    license_model str

    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE.

    lifecycle_details str

    Additional information about the current lifecycle state.

    local_adg_auto_failover_max_data_loss_limit int

    Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard

    local_disaster_recovery_type str

    Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    local_standby_dbs GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDb]

    Autonomous Data Guard standby database details.

    long_term_backup_schedules GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupSchedule]

    Details for the long-term backup schedule.

    max_cpu_core_count int

    The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.

    memory_per_oracle_compute_unit_in_gbs int

    The amount of memory (in GBs) enabled per OCPU or ECPU. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

    ncharacter_set str

    The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.

    next_long_term_backup_time_stamp str

    The date and time when the next long-term backup would be created.

    nsg_ids Sequence[str]

    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpu_count float

    The number of OCPU cores to be made available to the database.

    open_mode str

    Indicates the Autonomous Database mode. The database can be opened in READ_ONLY or READ_WRITE mode.

    peer_db_ids Sequence[str]

    The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.

    private_endpoint str

    The private endpoint for the resource.

    private_endpoint_ip str

    The private endpoint Ip address for the resource.

    private_endpoint_label str

    The resource's private endpoint label. Setting this to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.

    provisionable_cpuses Sequence[float]

    An array of CPU values that an Autonomous Database can be scaled to.

    refreshable_mode str

    The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.

    refreshable_status str

    The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.

    remote_disaster_recovery_configurations GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfiguration]

    Configurations of a Disaster Recovery.

    resource_pool_leader_id str

    The unique identifier for leader autonomous database OCID OCID.

    resource_pool_summaries GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummary]

    The configuration details for resource pool

    role str

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

    scheduled_operations GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperation]

    The list of scheduled operations.

    service_console_url str

    The URL of the Service Console for the Autonomous Database.

    source_id str

    The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.

    standby_dbs GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDb]

    Deprecated Autonomous Data Guard standby database details.

    standby_whitelisted_ips Sequence[str]

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    state str

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

    subnet_id str

    The OCID of the subnet the resource is associated with.

    supported_regions_to_clone_tos Sequence[str]

    The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.

    system_tags Mapping[str, Any]

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

    time_created str

    The date and time the Autonomous Database was created.

    time_data_guard_role_changed str

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    time_deletion_of_free_autonomous_database str

    The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.

    time_disaster_recovery_role_changed str

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    time_local_data_guard_enabled str

    The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.

    time_maintenance_begin str

    The date and time when maintenance will begin.

    time_maintenance_end str

    The date and time when maintenance will end.

    time_of_joining_resource_pool str
    time_of_last_failover str

    The timestamp of the last failover operation.

    time_of_last_refresh str

    The date and time when last refresh happened.

    time_of_last_refresh_point str

    The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.

    time_of_last_switchover str

    The timestamp of the last switchover operation for the Autonomous Database.

    time_of_next_refresh str

    The date and time of next refresh.

    time_reclamation_of_free_autonomous_database str

    The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.

    time_until_reconnect_clone_enabled str

    The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.

    total_backup_storage_size_in_gbs float

    The backup storage to the database.

    used_data_storage_size_in_gbs int

    The storage space consumed by Autonomous Database in GBs.

    used_data_storage_size_in_tbs int

    The amount of storage that has been used, in terabytes.

    vault_id str

    The OCID of the Oracle Cloud Infrastructure vault.

    whitelisted_ips Sequence[str]

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    actualUsedDataStorageSizeInTbs Number

    The current amount of storage in use for user and system data, in terabytes (TB).

    allocatedStorageSizeInTbs Number

    The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the dataStorageSizeInTBs value. You can compare this value to the actualUsedDataStorageSizeInTBs value to determine if a manual shrink operation is appropriate for your allocated storage.

    apexDetails List<Property Map>

    Information about Oracle APEX Application Development.

    arePrimaryWhitelistedIpsUsed Boolean

    This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be TRUE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be FALSE if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.

    autonomousContainerDatabaseId String

    The Autonomous Container Database OCID.

    autonomousMaintenanceScheduleType String

    The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle

    availableUpgradeVersions List<String>

    List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.

    backupConfigs List<Property Map>

    Autonomous Database configuration details for storing manual backups in the Object Storage service.

    backupRetentionPeriodInDays Number

    Retention period, in days, for backups.

    characterSet String

    The character set for the autonomous database. The default is AL32UTF8. Allowed values are:

    compartmentId String

    The compartment OCID.

    computeCount Number

    The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires values in multiples of two. Required when using the computeModel parameter. When using cpuCoreCount parameter, it is an error to specify computeCount to a non-null value.

    computeModel String

    The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value.

    connectionStrings List<Property Map>

    The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.

    connectionUrls List<Property Map>

    The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance within your VCN or that has a direct connection to your VCN. Note that these URLs are provided by the console only for databases on dedicated Exadata infrastructure. Example: {"sqlDevWebUrl": "https://<hostname>/ords...", "apexUrl", "https://<hostname>/ords..."}

    cpuCoreCount Number

    The number of OCPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Databases on dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.

    customerContacts List<Property Map>

    Customer Contacts.

    dataSafeStatus String

    Status of the Data Safe registration for this Autonomous Database.

    dataStorageSizeInGb Number

    The quantity of data in the database, in gigabytes.

    dataStorageSizeInTbs Number

    The quantity of data in the database, in terabytes.

    databaseEdition String

    The Oracle Database Edition that applies to the Autonomous databases.

    databaseManagementStatus String

    Status of Database Management for this Autonomous Database.

    dataguardRegionType String

    The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.

    dbName String

    The database name.

    dbVersion String

    A valid Oracle Database version for Autonomous Database.

    dbWorkload String

    The Autonomous Database workload type. The following values are valid:

    • OLTP - indicates an Autonomous Transaction Processing database
    • DW - indicates an Autonomous Data Warehouse database
    • AJD - indicates an Autonomous JSON Database
    • APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
    definedTags Map<Any>

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

    disasterRecoveryRegionType String

    The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.

    displayName String

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

    failedDataRecoveryInSeconds Number

    Indicates the number of seconds of data loss for a Data Guard failover.

    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.

    inMemoryAreaInGbs Number

    The area assigned to In-Memory tables in Autonomous Database.

    inMemoryPercentage Number

    The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.

    infrastructureType String

    The infrastructure type this resource belongs to.

    isAccessControlEnabled Boolean

    Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the whitelistedIps property. While specifying whitelistedIps rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the UpdateAutonomousDatabase API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.

    isAutoScalingEnabled Boolean

    Indicates if auto scaling is enabled for the Autonomous Database CPU core count.

    isAutoScalingForStorageEnabled Boolean

    Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is FALSE.

    isDataGuardEnabled Boolean

    Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    isDedicated Boolean

    True if the database uses dedicated Exadata infrastructure.

    isFreeTier Boolean

    Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.

    isLocalDataGuardEnabled Boolean

    Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    isMtlsConnectionRequired Boolean

    Specifies if the Autonomous Database requires mTLS connections.

    isPreview Boolean

    Indicates if the Autonomous Database version is a preview version.

    isReconnectCloneEnabled Boolean

    Indicates if the refreshable clone can be reconnected to its source database.

    isRefreshableClone Boolean

    Indicates if the Autonomous Database is a refreshable clone.

    isRemoteDataGuardEnabled Boolean

    Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.

    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.

    kmsKeyLifecycleDetails String

    KMS key lifecycle details.

    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.

    licenseModel String

    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using shared Exadata infrastructure, if a value is not specified, the system will supply the value of BRING_YOUR_OWN_LICENSE.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    localAdgAutoFailoverMaxDataLossLimit Number

    Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard

    localDisasterRecoveryType String

    Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    localStandbyDbs List<Property Map>

    Autonomous Data Guard standby database details.

    longTermBackupSchedules List<Property Map>

    Details for the long-term backup schedule.

    maxCpuCoreCount Number

    The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.

    memoryPerOracleComputeUnitInGbs Number

    The amount of memory (in GBs) enabled per OCPU or ECPU. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

    ncharacterSet String

    The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.

    nextLongTermBackupTimeStamp String

    The date and time when the next long-term backup would be created.

    nsgIds List<String>

    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Number

    The number of OCPU cores to be made available to the database.

    openMode String

    Indicates the Autonomous Database mode. The database can be opened in READ_ONLY or READ_WRITE mode.

    peerDbIds List<String>

    The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database. Note that for shared Exadata infrastructure, standby databases located in the same region as the source primary database do not have OCIDs.

    privateEndpoint String

    The private endpoint for the resource.

    privateEndpointIp String

    The private endpoint Ip address for the resource.

    privateEndpointLabel String

    The resource's private endpoint label. Setting this to an empty string, after the creation of the private endpoint database, changes the private endpoint database to a public endpoint database.

    provisionableCpuses List<Number>

    An array of CPU values that an Autonomous Database can be scaled to.

    refreshableMode String

    The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.

    refreshableStatus String

    The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.

    remoteDisasterRecoveryConfigurations List<Property Map>

    Configurations of a Disaster Recovery.

    resourcePoolLeaderId String

    The unique identifier for leader autonomous database OCID OCID.

    resourcePoolSummaries List<Property Map>

    The configuration details for resource pool

    role String

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

    scheduledOperations List<Property Map>

    The list of scheduled operations.

    serviceConsoleUrl String

    The URL of the Service Console for the Autonomous Database.

    sourceId String

    The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.

    standbyDbs List<Property Map>

    Deprecated Autonomous Data Guard standby database details.

    standbyWhitelistedIps List<String>

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    state String

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

    subnetId String

    The OCID of the subnet the resource is associated with.

    supportedRegionsToCloneTos List<String>

    The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.

    systemTags Map<Any>

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

    timeCreated String

    The date and time the Autonomous Database was created.

    timeDataGuardRoleChanged String

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDeletionOfFreeAutonomousDatabase String

    The date and time the Always Free database will be automatically deleted because of inactivity. If the database is in the STOPPED state and without activity until this time, it will be deleted.

    timeDisasterRecoveryRoleChanged String

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    timeLocalDataGuardEnabled String

    The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.

    timeMaintenanceBegin String

    The date and time when maintenance will begin.

    timeMaintenanceEnd String

    The date and time when maintenance will end.

    timeOfJoiningResourcePool String
    timeOfLastFailover String

    The timestamp of the last failover operation.

    timeOfLastRefresh String

    The date and time when last refresh happened.

    timeOfLastRefreshPoint String

    The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.

    timeOfLastSwitchover String

    The timestamp of the last switchover operation for the Autonomous Database.

    timeOfNextRefresh String

    The date and time of next refresh.

    timeReclamationOfFreeAutonomousDatabase String

    The date and time the Always Free database will be stopped because of inactivity. If this time is reached without any database activity, the database will automatically be put into the STOPPED state.

    timeUntilReconnectCloneEnabled String

    The time and date as an RFC3339 formatted string, e.g., 2022-01-01T12:00:00.000Z, to set the limit for a refreshable clone to be reconnected to its source database.

    totalBackupStorageSizeInGbs Number

    The backup storage to the database.

    usedDataStorageSizeInGbs Number

    The storage space consumed by Autonomous Database in GBs.

    usedDataStorageSizeInTbs Number

    The amount of storage that has been used, in terabytes.

    vaultId String

    The OCID of the Oracle Cloud Infrastructure vault.

    whitelistedIps List<String>

    The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.

    GetAutonomousDatabasesClonesAutonomousDatabaseApexDetail

    ApexVersion string

    The Oracle APEX Application Development version.

    OrdsVersion string

    The Oracle REST Data Services (ORDS) version.

    ApexVersion string

    The Oracle APEX Application Development version.

    OrdsVersion string

    The Oracle REST Data Services (ORDS) version.

    apexVersion String

    The Oracle APEX Application Development version.

    ordsVersion String

    The Oracle REST Data Services (ORDS) version.

    apexVersion string

    The Oracle APEX Application Development version.

    ordsVersion string

    The Oracle REST Data Services (ORDS) version.

    apex_version str

    The Oracle APEX Application Development version.

    ords_version str

    The Oracle REST Data Services (ORDS) version.

    apexVersion String

    The Oracle APEX Application Development version.

    ordsVersion String

    The Oracle REST Data Services (ORDS) version.

    GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfig

    ManualBackupBucketName string

    Name of Object Storage bucket to use for storing manual backups.

    ManualBackupType string

    The manual backup destination type.

    ManualBackupBucketName string

    Name of Object Storage bucket to use for storing manual backups.

    ManualBackupType string

    The manual backup destination type.

    manualBackupBucketName String

    Name of Object Storage bucket to use for storing manual backups.

    manualBackupType String

    The manual backup destination type.

    manualBackupBucketName string

    Name of Object Storage bucket to use for storing manual backups.

    manualBackupType string

    The manual backup destination type.

    manual_backup_bucket_name str

    Name of Object Storage bucket to use for storing manual backups.

    manual_backup_type str

    The manual backup destination type.

    manualBackupBucketName String

    Name of Object Storage bucket to use for storing manual backups.

    manualBackupType String

    The manual backup destination type.

    GetAutonomousDatabasesClonesAutonomousDatabaseConnectionString

    AllConnectionStrings Dictionary<string, object>

    Returns all connection strings that can be used to connect to the Autonomous Database. For more information, please see Predefined Database Service Names for Autonomous Transaction Processing

    Dedicated string

    The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    High string

    The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements.

    Low string

    The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    Medium string

    The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements.

    Profiles List<GetAutonomousDatabasesClonesAutonomousDatabaseConnectionStringProfile>

    A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.

    AllConnectionStrings map[string]interface{}

    Returns all connection strings that can be used to connect to the Autonomous Database. For more information, please see Predefined Database Service Names for Autonomous Transaction Processing

    Dedicated string

    The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    High string

    The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements.

    Low string

    The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    Medium string

    The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements.

    Profiles []GetAutonomousDatabasesClonesAutonomousDatabaseConnectionStringProfile

    A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.

    allConnectionStrings Map<String,Object>

    Returns all connection strings that can be used to connect to the Autonomous Database. For more information, please see Predefined Database Service Names for Autonomous Transaction Processing

    dedicated String

    The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    high String

    The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements.

    low String

    The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    medium String

    The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements.

    profiles List<GetAutonomoussClonesAutonomousConnectionStringProfile>

    A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.

    allConnectionStrings {[key: string]: any}

    Returns all connection strings that can be used to connect to the Autonomous Database. For more information, please see Predefined Database Service Names for Autonomous Transaction Processing

    dedicated string

    The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    high string

    The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements.

    low string

    The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    medium string

    The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements.

    profiles GetAutonomousDatabasesClonesAutonomousDatabaseConnectionStringProfile[]

    A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.

    all_connection_strings Mapping[str, Any]

    Returns all connection strings that can be used to connect to the Autonomous Database. For more information, please see Predefined Database Service Names for Autonomous Transaction Processing

    dedicated str

    The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    high str

    The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements.

    low str

    The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    medium str

    The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements.

    profiles GetAutonomousDatabasesClonesAutonomousDatabaseConnectionStringProfile]

    A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.

    allConnectionStrings Map<Any>

    Returns all connection strings that can be used to connect to the Autonomous Database. For more information, please see Predefined Database Service Names for Autonomous Transaction Processing

    dedicated String

    The database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    high String

    The High database service provides the highest level of resources to each SQL statement resulting in the highest performance, but supports the fewest number of concurrent SQL statements.

    low String

    The Low database service provides the least level of resources to each SQL statement, but supports the most number of concurrent SQL statements.

    medium String

    The Medium database service provides a lower level of resources to each SQL statement potentially resulting a lower level of performance, but supports more concurrent SQL statements.

    profiles List<Property Map>

    A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.

    GetAutonomousDatabasesClonesAutonomousDatabaseConnectionStringProfile

    ConsumerGroup string

    Consumer group used by the connection.

    DisplayName string

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

    HostFormat string

    Host format used in connection string.

    Protocol string

    Protocol used by the connection.

    SessionMode string

    Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use DIRECT for direct hand-offs. Use REDIRECT to redirect the session.

    SyntaxFormat string

    Specifies whether the connection string is using the long (LONG), Easy Connect (EZCONNECT), or Easy Connect Plus (EZCONNECTPLUS) format. Autonomous Database Serverless instances always use the long format.

    TlsAuthentication string

    Specifies whether the TLS handshake is using one-way (SERVER) or mutual (MUTUAL) authentication.

    Value string

    Connection string value.

    ConsumerGroup string

    Consumer group used by the connection.

    DisplayName string

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

    HostFormat string

    Host format used in connection string.

    Protocol string

    Protocol used by the connection.

    SessionMode string

    Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use DIRECT for direct hand-offs. Use REDIRECT to redirect the session.

    SyntaxFormat string

    Specifies whether the connection string is using the long (LONG), Easy Connect (EZCONNECT), or Easy Connect Plus (EZCONNECTPLUS) format. Autonomous Database Serverless instances always use the long format.

    TlsAuthentication string

    Specifies whether the TLS handshake is using one-way (SERVER) or mutual (MUTUAL) authentication.

    Value string

    Connection string value.

    consumerGroup String

    Consumer group used by the connection.

    displayName String

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

    hostFormat String

    Host format used in connection string.

    protocol String

    Protocol used by the connection.

    sessionMode String

    Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use DIRECT for direct hand-offs. Use REDIRECT to redirect the session.

    syntaxFormat String

    Specifies whether the connection string is using the long (LONG), Easy Connect (EZCONNECT), or Easy Connect Plus (EZCONNECTPLUS) format. Autonomous Database Serverless instances always use the long format.

    tlsAuthentication String

    Specifies whether the TLS handshake is using one-way (SERVER) or mutual (MUTUAL) authentication.

    value String

    Connection string value.

    consumerGroup string

    Consumer group used by the connection.

    displayName string

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

    hostFormat string

    Host format used in connection string.

    protocol string

    Protocol used by the connection.

    sessionMode string

    Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use DIRECT for direct hand-offs. Use REDIRECT to redirect the session.

    syntaxFormat string

    Specifies whether the connection string is using the long (LONG), Easy Connect (EZCONNECT), or Easy Connect Plus (EZCONNECTPLUS) format. Autonomous Database Serverless instances always use the long format.

    tlsAuthentication string

    Specifies whether the TLS handshake is using one-way (SERVER) or mutual (MUTUAL) authentication.

    value string

    Connection string value.

    consumer_group str

    Consumer group used by the connection.

    display_name str

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

    host_format str

    Host format used in connection string.

    protocol str

    Protocol used by the connection.

    session_mode str

    Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use DIRECT for direct hand-offs. Use REDIRECT to redirect the session.

    syntax_format str

    Specifies whether the connection string is using the long (LONG), Easy Connect (EZCONNECT), or Easy Connect Plus (EZCONNECTPLUS) format. Autonomous Database Serverless instances always use the long format.

    tls_authentication str

    Specifies whether the TLS handshake is using one-way (SERVER) or mutual (MUTUAL) authentication.

    value str

    Connection string value.

    consumerGroup String

    Consumer group used by the connection.

    displayName String

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

    hostFormat String

    Host format used in connection string.

    protocol String

    Protocol used by the connection.

    sessionMode String

    Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use DIRECT for direct hand-offs. Use REDIRECT to redirect the session.

    syntaxFormat String

    Specifies whether the connection string is using the long (LONG), Easy Connect (EZCONNECT), or Easy Connect Plus (EZCONNECTPLUS) format. Autonomous Database Serverless instances always use the long format.

    tlsAuthentication String

    Specifies whether the TLS handshake is using one-way (SERVER) or mutual (MUTUAL) authentication.

    value String

    Connection string value.

    GetAutonomousDatabasesClonesAutonomousDatabaseConnectionUrl

    ApexUrl string

    Oracle Application Express (APEX) URL.

    GraphStudioUrl string

    The URL of the Graph Studio for the Autonomous Database.

    MachineLearningUserManagementUrl string

    Oracle Machine Learning user management URL.

    SqlDevWebUrl string

    Oracle SQL Developer Web URL.

    ApexUrl string

    Oracle Application Express (APEX) URL.

    GraphStudioUrl string

    The URL of the Graph Studio for the Autonomous Database.

    MachineLearningUserManagementUrl string

    Oracle Machine Learning user management URL.

    SqlDevWebUrl string

    Oracle SQL Developer Web URL.

    apexUrl String

    Oracle Application Express (APEX) URL.

    graphStudioUrl String

    The URL of the Graph Studio for the Autonomous Database.

    machineLearningUserManagementUrl String

    Oracle Machine Learning user management URL.

    sqlDevWebUrl String

    Oracle SQL Developer Web URL.

    apexUrl string

    Oracle Application Express (APEX) URL.

    graphStudioUrl string

    The URL of the Graph Studio for the Autonomous Database.

    machineLearningUserManagementUrl string

    Oracle Machine Learning user management URL.

    sqlDevWebUrl string

    Oracle SQL Developer Web URL.

    apex_url str

    Oracle Application Express (APEX) URL.

    graph_studio_url str

    The URL of the Graph Studio for the Autonomous Database.

    machine_learning_user_management_url str

    Oracle Machine Learning user management URL.

    sql_dev_web_url str

    Oracle SQL Developer Web URL.

    apexUrl String

    Oracle Application Express (APEX) URL.

    graphStudioUrl String

    The URL of the Graph Studio for the Autonomous Database.

    machineLearningUserManagementUrl String

    Oracle Machine Learning user management URL.

    sqlDevWebUrl String

    Oracle SQL Developer Web URL.

    GetAutonomousDatabasesClonesAutonomousDatabaseCustomerContact

    Email string

    The email address used by Oracle to send notifications regarding databases and infrastructure.

    Email string

    The email address used by Oracle to send notifications regarding databases and infrastructure.

    email String

    The email address used by Oracle to send notifications regarding databases and infrastructure.

    email string

    The email address used by Oracle to send notifications regarding databases and infrastructure.

    email str

    The email address used by Oracle to send notifications regarding databases and infrastructure.

    email String

    The email address used by Oracle to send notifications regarding databases and infrastructure.

    GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntry

    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.

    GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDb

    LagTimeInSeconds int

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    State string

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

    TimeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    TimeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    LagTimeInSeconds int

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    State string

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

    TimeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    TimeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lagTimeInSeconds Integer

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    state String

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

    timeDataGuardRoleChanged String

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDisasterRecoveryRoleChanged String

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lagTimeInSeconds number

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycleDetails string

    Additional information about the current lifecycle state.

    state string

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

    timeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lag_time_in_seconds int

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycle_details str

    Additional information about the current lifecycle state.

    state str

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

    time_data_guard_role_changed str

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    time_disaster_recovery_role_changed str

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lagTimeInSeconds Number

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    state String

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

    timeDataGuardRoleChanged String

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDisasterRecoveryRoleChanged String

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupSchedule

    IsDisabled bool

    Indicates if the resource pool should be deleted for the Autonomous Database.

    RepeatCadence string

    The frequency of the long-term backup schedule

    RetentionPeriodInDays int

    Retention period, in days, for long-term backups

    TimeOfBackup string

    The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.

    IsDisabled bool

    Indicates if the resource pool should be deleted for the Autonomous Database.

    RepeatCadence string

    The frequency of the long-term backup schedule

    RetentionPeriodInDays int

    Retention period, in days, for long-term backups

    TimeOfBackup string

    The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.

    isDisabled Boolean

    Indicates if the resource pool should be deleted for the Autonomous Database.

    repeatCadence String

    The frequency of the long-term backup schedule

    retentionPeriodInDays Integer

    Retention period, in days, for long-term backups

    timeOfBackup String

    The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.

    isDisabled boolean

    Indicates if the resource pool should be deleted for the Autonomous Database.

    repeatCadence string

    The frequency of the long-term backup schedule

    retentionPeriodInDays number

    Retention period, in days, for long-term backups

    timeOfBackup string

    The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.

    is_disabled bool

    Indicates if the resource pool should be deleted for the Autonomous Database.

    repeat_cadence str

    The frequency of the long-term backup schedule

    retention_period_in_days int

    Retention period, in days, for long-term backups

    time_of_backup str

    The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.

    isDisabled Boolean

    Indicates if the resource pool should be deleted for the Autonomous Database.

    repeatCadence String

    The frequency of the long-term backup schedule

    retentionPeriodInDays Number

    Retention period, in days, for long-term backups

    timeOfBackup String

    The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.

    GetAutonomousDatabasesClonesAutonomousDatabaseRemoteDisasterRecoveryConfiguration

    DisasterRecoveryType string

    Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    DisasterRecoveryType string

    Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    disasterRecoveryType String

    Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    disasterRecoveryType string

    Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    disaster_recovery_type str

    Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    disasterRecoveryType String

    Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

    GetAutonomousDatabasesClonesAutonomousDatabaseResourcePoolSummary

    IsDisabled bool

    Indicates if the resource pool should be deleted for the Autonomous Database.

    PoolSize int

    Resource pool size.

    IsDisabled bool

    Indicates if the resource pool should be deleted for the Autonomous Database.

    PoolSize int

    Resource pool size.

    isDisabled Boolean

    Indicates if the resource pool should be deleted for the Autonomous Database.

    poolSize Integer

    Resource pool size.

    isDisabled boolean

    Indicates if the resource pool should be deleted for the Autonomous Database.

    poolSize number

    Resource pool size.

    is_disabled bool

    Indicates if the resource pool should be deleted for the Autonomous Database.

    pool_size int

    Resource pool size.

    isDisabled Boolean

    Indicates if the resource pool should be deleted for the Autonomous Database.

    poolSize Number

    Resource pool size.

    GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperation

    DayOfWeeks List<GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationDayOfWeek>

    Day of the week.

    ScheduledStartTime string

    auto start time. value must be of ISO-8601 format "HH:mm"

    ScheduledStopTime string

    auto stop time. value must be of ISO-8601 format "HH:mm"

    DayOfWeeks []GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationDayOfWeek

    Day of the week.

    ScheduledStartTime string

    auto start time. value must be of ISO-8601 format "HH:mm"

    ScheduledStopTime string

    auto stop time. value must be of ISO-8601 format "HH:mm"

    dayOfWeeks List<GetAutonomoussClonesAutonomousScheduledOperationDayOfWeek>

    Day of the week.

    scheduledStartTime String

    auto start time. value must be of ISO-8601 format "HH:mm"

    scheduledStopTime String

    auto stop time. value must be of ISO-8601 format "HH:mm"

    dayOfWeeks GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationDayOfWeek[]

    Day of the week.

    scheduledStartTime string

    auto start time. value must be of ISO-8601 format "HH:mm"

    scheduledStopTime string

    auto stop time. value must be of ISO-8601 format "HH:mm"

    day_of_weeks GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationDayOfWeek]

    Day of the week.

    scheduled_start_time str

    auto start time. value must be of ISO-8601 format "HH:mm"

    scheduled_stop_time str

    auto stop time. value must be of ISO-8601 format "HH:mm"

    dayOfWeeks List<Property Map>

    Day of the week.

    scheduledStartTime String

    auto start time. value must be of ISO-8601 format "HH:mm"

    scheduledStopTime String

    auto stop time. value must be of ISO-8601 format "HH:mm"

    GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationDayOfWeek

    Name string

    Name of the day of the week.

    Name string

    Name of the day of the week.

    name String

    Name of the day of the week.

    name string

    Name of the day of the week.

    name str

    Name of the day of the week.

    name String

    Name of the day of the week.

    GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDb

    LagTimeInSeconds int

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    State string

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

    TimeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    TimeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    LagTimeInSeconds int

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    State string

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

    TimeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    TimeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lagTimeInSeconds Integer

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    state String

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

    timeDataGuardRoleChanged String

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDisasterRecoveryRoleChanged String

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lagTimeInSeconds number

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycleDetails string

    Additional information about the current lifecycle state.

    state string

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

    timeDataGuardRoleChanged string

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDisasterRecoveryRoleChanged string

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lag_time_in_seconds int

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycle_details str

    Additional information about the current lifecycle state.

    state str

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

    time_data_guard_role_changed str

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    time_disaster_recovery_role_changed str

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    lagTimeInSeconds Number

    The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    state String

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

    timeDataGuardRoleChanged String

    The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.

    timeDisasterRecoveryRoleChanged String

    The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

    GetAutonomousDatabasesClonesFilter

    Name string

    Name of the day of the week.

    Values List<string>
    Regex bool
    Name string

    Name of the day of the week.

    Values []string
    Regex bool
    name String

    Name of the day of the week.

    values List<String>
    regex Boolean
    name string

    Name of the day of the week.

    values string[]
    regex boolean
    name str

    Name of the day of the week.

    values Sequence[str]
    regex bool
    name String

    Name of the day of the week.

    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.16.1 published on Wednesday, Nov 22, 2023 by Pulumi