oci.Database.getAutonomousDatabases
Explore with Pulumi AI
This data source provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service.
Gets a list of Autonomous Databases based on the query parameters specified.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testAutonomousDatabases = Oci.Database.GetAutonomousDatabases.Invoke(new()
{
CompartmentId = @var.Compartment_id,
AutonomousContainerDatabaseId = oci_database_autonomous_container_database.Test_autonomous_container_database.Id,
DbVersion = @var.Autonomous_database_db_version,
DbWorkload = @var.Autonomous_database_db_workload,
DisplayName = @var.Autonomous_database_display_name,
InfrastructureType = @var.Autonomous_database_infrastructure_type,
IsDataGuardEnabled = @var.Autonomous_database_is_data_guard_enabled,
IsFreeTier = @var.Autonomous_database_is_free_tier,
IsRefreshableClone = @var.Autonomous_database_is_refreshable_clone,
State = @var.Autonomous_database_state,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Database.GetAutonomousDatabases(ctx, &database.GetAutonomousDatabasesArgs{
CompartmentId: _var.Compartment_id,
AutonomousContainerDatabaseId: pulumi.StringRef(oci_database_autonomous_container_database.Test_autonomous_container_database.Id),
DbVersion: pulumi.StringRef(_var.Autonomous_database_db_version),
DbWorkload: pulumi.StringRef(_var.Autonomous_database_db_workload),
DisplayName: pulumi.StringRef(_var.Autonomous_database_display_name),
InfrastructureType: pulumi.StringRef(_var.Autonomous_database_infrastructure_type),
IsDataGuardEnabled: pulumi.BoolRef(_var.Autonomous_database_is_data_guard_enabled),
IsFreeTier: pulumi.BoolRef(_var.Autonomous_database_is_free_tier),
IsRefreshableClone: pulumi.BoolRef(_var.Autonomous_database_is_refreshable_clone),
State: pulumi.StringRef(_var.Autonomous_database_state),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.DatabaseFunctions;
import com.pulumi.oci.Database.inputs.GetAutonomousDatabasesArgs;
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 testAutonomousDatabases = DatabaseFunctions.getAutonomousDatabases(GetAutonomousDatabasesArgs.builder()
.compartmentId(var_.compartment_id())
.autonomousContainerDatabaseId(oci_database_autonomous_container_database.test_autonomous_container_database().id())
.dbVersion(var_.autonomous_database_db_version())
.dbWorkload(var_.autonomous_database_db_workload())
.displayName(var_.autonomous_database_display_name())
.infrastructureType(var_.autonomous_database_infrastructure_type())
.isDataGuardEnabled(var_.autonomous_database_is_data_guard_enabled())
.isFreeTier(var_.autonomous_database_is_free_tier())
.isRefreshableClone(var_.autonomous_database_is_refreshable_clone())
.state(var_.autonomous_database_state())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_autonomous_databases = oci.Database.get_autonomous_databases(compartment_id=var["compartment_id"],
autonomous_container_database_id=oci_database_autonomous_container_database["test_autonomous_container_database"]["id"],
db_version=var["autonomous_database_db_version"],
db_workload=var["autonomous_database_db_workload"],
display_name=var["autonomous_database_display_name"],
infrastructure_type=var["autonomous_database_infrastructure_type"],
is_data_guard_enabled=var["autonomous_database_is_data_guard_enabled"],
is_free_tier=var["autonomous_database_is_free_tier"],
is_refreshable_clone=var["autonomous_database_is_refreshable_clone"],
state=var["autonomous_database_state"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousDatabases = oci.Database.getAutonomousDatabases({
compartmentId: _var.compartment_id,
autonomousContainerDatabaseId: oci_database_autonomous_container_database.test_autonomous_container_database.id,
dbVersion: _var.autonomous_database_db_version,
dbWorkload: _var.autonomous_database_db_workload,
displayName: _var.autonomous_database_display_name,
infrastructureType: _var.autonomous_database_infrastructure_type,
isDataGuardEnabled: _var.autonomous_database_is_data_guard_enabled,
isFreeTier: _var.autonomous_database_is_free_tier,
isRefreshableClone: _var.autonomous_database_is_refreshable_clone,
state: _var.autonomous_database_state,
});
variables:
testAutonomousDatabases:
fn::invoke:
Function: oci:Database:getAutonomousDatabases
Arguments:
compartmentId: ${var.compartment_id}
autonomousContainerDatabaseId: ${oci_database_autonomous_container_database.test_autonomous_container_database.id}
dbVersion: ${var.autonomous_database_db_version}
dbWorkload: ${var.autonomous_database_db_workload}
displayName: ${var.autonomous_database_display_name}
infrastructureType: ${var.autonomous_database_infrastructure_type}
isDataGuardEnabled: ${var.autonomous_database_is_data_guard_enabled}
isFreeTier: ${var.autonomous_database_is_free_tier}
isRefreshableClone: ${var.autonomous_database_is_refreshable_clone}
state: ${var.autonomous_database_state}
Using getAutonomousDatabases
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 getAutonomousDatabases(args: GetAutonomousDatabasesArgs, opts?: InvokeOptions): Promise<GetAutonomousDatabasesResult>
function getAutonomousDatabasesOutput(args: GetAutonomousDatabasesOutputArgs, opts?: InvokeOptions): Output<GetAutonomousDatabasesResult>
def get_autonomous_databases(autonomous_container_database_id: Optional[str] = None,
compartment_id: Optional[str] = None,
db_version: Optional[str] = None,
db_workload: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_database.GetAutonomousDatabasesFilter]] = None,
infrastructure_type: Optional[str] = None,
is_data_guard_enabled: Optional[bool] = None,
is_free_tier: Optional[bool] = None,
is_refreshable_clone: Optional[bool] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAutonomousDatabasesResult
def get_autonomous_databases_output(autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
db_version: Optional[pulumi.Input[str]] = None,
db_workload: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetAutonomousDatabasesFilterArgs]]]] = None,
infrastructure_type: Optional[pulumi.Input[str]] = None,
is_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
is_free_tier: Optional[pulumi.Input[bool]] = None,
is_refreshable_clone: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousDatabasesResult]
func GetAutonomousDatabases(ctx *Context, args *GetAutonomousDatabasesArgs, opts ...InvokeOption) (*GetAutonomousDatabasesResult, error)
func GetAutonomousDatabasesOutput(ctx *Context, args *GetAutonomousDatabasesOutputArgs, opts ...InvokeOption) GetAutonomousDatabasesResultOutput
> Note: This function is named GetAutonomousDatabases
in the Go SDK.
public static class GetAutonomousDatabases
{
public static Task<GetAutonomousDatabasesResult> InvokeAsync(GetAutonomousDatabasesArgs args, InvokeOptions? opts = null)
public static Output<GetAutonomousDatabasesResult> Invoke(GetAutonomousDatabasesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAutonomousDatabasesResult> getAutonomousDatabases(GetAutonomousDatabasesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Database/getAutonomousDatabases:getAutonomousDatabases
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string The compartment OCID.
- Autonomous
Container stringDatabase Id The Autonomous Container Database OCID.
- Db
Version string A filter to return only autonomous database resources that match the specified dbVersion.
- Db
Workload string A filter to return only autonomous database resources that match the specified workload type.
- Display
Name string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
List<Get
Autonomous Databases Filter> - Infrastructure
Type string A filter to return only resources that match the given Infrastructure Type.
- Is
Data boolGuard Enabled A filter to return only resources that have Data Guard enabled.
- Is
Free boolTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- Is
Refreshable boolClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- State string
A filter to return only resources that match the given lifecycle state exactly.
- Compartment
Id string The compartment OCID.
- Autonomous
Container stringDatabase Id The Autonomous Container Database OCID.
- Db
Version string A filter to return only autonomous database resources that match the specified dbVersion.
- Db
Workload string A filter to return only autonomous database resources that match the specified workload type.
- Display
Name string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Filters
[]Get
Autonomous Databases Filter - Infrastructure
Type string A filter to return only resources that match the given Infrastructure Type.
- Is
Data boolGuard Enabled A filter to return only resources that have Data Guard enabled.
- Is
Free boolTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- Is
Refreshable boolClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- State string
A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id String The compartment OCID.
- autonomous
Container StringDatabase Id The Autonomous Container Database OCID.
- db
Version String A filter to return only autonomous database resources that match the specified dbVersion.
- db
Workload String A filter to return only autonomous database resources that match the specified workload type.
- display
Name String A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
List<Get
Autonomouss Filter> - infrastructure
Type String A filter to return only resources that match the given Infrastructure Type.
- is
Data BooleanGuard Enabled A filter to return only resources that have Data Guard enabled.
- is
Free BooleanTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is
Refreshable BooleanClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- state String
A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id string The compartment OCID.
- autonomous
Container stringDatabase Id The Autonomous Container Database OCID.
- db
Version string A filter to return only autonomous database resources that match the specified dbVersion.
- db
Workload string A filter to return only autonomous database resources that match the specified workload type.
- display
Name string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Get
Autonomous Databases Filter[] - infrastructure
Type string A filter to return only resources that match the given Infrastructure Type.
- is
Data booleanGuard Enabled A filter to return only resources that have Data Guard enabled.
- is
Free booleanTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is
Refreshable booleanClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- state string
A filter to return only resources that match the given lifecycle state exactly.
- compartment_
id str The compartment OCID.
- autonomous_
container_ strdatabase_ id The Autonomous Container Database OCID.
- db_
version str A filter to return only autonomous database resources that match the specified dbVersion.
- db_
workload str A filter to return only autonomous database resources that match the specified workload type.
- display_
name str A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters
Get
Autonomous Databases Filter] - infrastructure_
type str A filter to return only resources that match the given Infrastructure Type.
- is_
data_ boolguard_ enabled A filter to return only resources that have Data Guard enabled.
- is_
free_ booltier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is_
refreshable_ boolclone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- state str
A filter to return only resources that match the given lifecycle state exactly.
- compartment
Id String The compartment OCID.
- autonomous
Container StringDatabase Id The Autonomous Container Database OCID.
- db
Version String A filter to return only autonomous database resources that match the specified dbVersion.
- db
Workload String A filter to return only autonomous database resources that match the specified workload type.
- display
Name String A filter to return only resources that match the entire display name given. The match is not case sensitive.
- filters List<Property Map>
- infrastructure
Type String A filter to return only resources that match the given Infrastructure Type.
- is
Data BooleanGuard Enabled A filter to return only resources that have Data Guard enabled.
- is
Free BooleanTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is
Refreshable BooleanClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- state String
A filter to return only resources that match the given lifecycle state exactly.
getAutonomousDatabases Result
The following output properties are available:
- Autonomous
Databases List<GetAutonomous Databases Autonomous Database> The list of autonomous_databases.
- Compartment
Id string The OCID of the compartment.
- Id string
The provider-assigned unique ID for this managed resource.
- Autonomous
Container stringDatabase Id The Autonomous Container Database OCID.
- Db
Version string A valid Oracle Database version for Autonomous Database.
- Db
Workload 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.
- Display
Name string The user-friendly name for the Autonomous Database. The name does not have to be unique.
- Filters
List<Get
Autonomous Databases Filter> - Infrastructure
Type string The infrastructure type this resource belongs to.
- Is
Data boolGuard Enabled Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- Is
Free boolTier 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
Refreshable boolClone Indicates if the Autonomous Database is a refreshable clone.
- State string
The current state of the Autonomous Database.
- Autonomous
Databases []GetAutonomous Databases Autonomous Database The list of autonomous_databases.
- Compartment
Id string The OCID of the compartment.
- Id string
The provider-assigned unique ID for this managed resource.
- Autonomous
Container stringDatabase Id The Autonomous Container Database OCID.
- Db
Version string A valid Oracle Database version for Autonomous Database.
- Db
Workload 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.
- Display
Name string The user-friendly name for the Autonomous Database. The name does not have to be unique.
- Filters
[]Get
Autonomous Databases Filter - Infrastructure
Type string The infrastructure type this resource belongs to.
- Is
Data boolGuard Enabled Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- Is
Free boolTier 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
Refreshable boolClone Indicates if the Autonomous Database is a refreshable clone.
- State string
The current state of the Autonomous Database.
- autonomous
Databases List<GetAutonomouss Autonomous> The list of autonomous_databases.
- compartment
Id String The OCID of the compartment.
- id String
The provider-assigned unique ID for this managed resource.
- autonomous
Container StringDatabase Id The Autonomous Container Database OCID.
- db
Version String A valid Oracle Database version for Autonomous Database.
- db
Workload 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.
- display
Name String The user-friendly name for the Autonomous Database. The name does not have to be unique.
- filters
List<Get
Autonomouss Filter> - infrastructure
Type String The infrastructure type this resource belongs to.
- is
Data BooleanGuard Enabled Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is
Free BooleanTier 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
Refreshable BooleanClone Indicates if the Autonomous Database is a refreshable clone.
- state String
The current state of the Autonomous Database.
- autonomous
Databases GetAutonomous Databases Autonomous Database[] The list of autonomous_databases.
- compartment
Id string The OCID of the compartment.
- id string
The provider-assigned unique ID for this managed resource.
- autonomous
Container stringDatabase Id The Autonomous Container Database OCID.
- db
Version string A valid Oracle Database version for Autonomous Database.
- db
Workload 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.
- display
Name string The user-friendly name for the Autonomous Database. The name does not have to be unique.
- filters
Get
Autonomous Databases Filter[] - infrastructure
Type string The infrastructure type this resource belongs to.
- is
Data booleanGuard Enabled Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is
Free booleanTier 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
Refreshable booleanClone Indicates if the Autonomous Database is a refreshable clone.
- state string
The current state of the Autonomous Database.
- autonomous_
databases GetAutonomous Databases Autonomous Database] The list of autonomous_databases.
- compartment_
id str The OCID of the compartment.
- id str
The provider-assigned unique ID for this managed resource.
- autonomous_
container_ strdatabase_ id The Autonomous Container Database OCID.
- 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.
- display_
name str The user-friendly name for the Autonomous Database. The name does not have to be unique.
- filters
Get
Autonomous Databases Filter] - infrastructure_
type str The infrastructure type this resource belongs to.
- is_
data_ boolguard_ enabled Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is_
free_ booltier 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_
refreshable_ boolclone Indicates if the Autonomous Database is a refreshable clone.
- state str
The current state of the Autonomous Database.
- autonomous
Databases List<Property Map> The list of autonomous_databases.
- compartment
Id String The OCID of the compartment.
- id String
The provider-assigned unique ID for this managed resource.
- autonomous
Container StringDatabase Id The Autonomous Container Database OCID.
- db
Version String A valid Oracle Database version for Autonomous Database.
- db
Workload 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.
- display
Name String The user-friendly name for the Autonomous Database. The name does not have to be unique.
- filters List<Property Map>
- infrastructure
Type String The infrastructure type this resource belongs to.
- is
Data BooleanGuard Enabled Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is
Free BooleanTier 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
Refreshable BooleanClone Indicates if the Autonomous Database is a refreshable clone.
- state String
The current state of the Autonomous Database.
Supporting Types
GetAutonomousDatabasesAutonomousDatabase
- Actual
Used doubleData Storage Size In Tbs The current amount of storage in use for user and system data, in terabytes (TB).
- Admin
Password string - Allocated
Storage doubleSize In Tbs 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 theactualUsedDataStorageSizeInTBs
value to determine if a manual shrink operation is appropriate for your allocated storage.- Apex
Details List<GetAutonomous Databases Autonomous Database Apex Detail> Information about Oracle APEX Application Development.
- Are
Primary boolWhitelisted Ips Used 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 beFALSE
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 stringDatabase Id The Autonomous Container Database OCID.
- Autonomous
Database stringBackup Id - Autonomous
Database stringId - Autonomous
Maintenance stringSchedule Type The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
- Available
Upgrade List<string>Versions List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- Backup
Configs List<GetAutonomous Databases Autonomous Database Backup Config> Autonomous Database configuration details for storing manual backups in the Object Storage service.
- Backup
Retention intPeriod In Days Retention period, in days, for backups.
- Character
Set string The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
- Clone
Type string - Compartment
Id string The compartment OCID.
- Compute
Count double The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the
computeModel
parameter. When usingcpuCoreCount
parameter, it is an error to specify computeCount to a non-null value.- Compute
Model string The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
to a non-null value.- Connection
Strings List<GetAutonomous Databases Autonomous Database Connection String> 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 List<GetAutonomous Databases Autonomous Database Connection Url> 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 intCount 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 List<GetAutonomous Databases Autonomous Database Customer Contact> Customer Contacts.
- Data
Safe stringStatus Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
- Data
Storage intSize In Gb The quantity of data in the database, in gigabytes.
- Data
Storage intSize In Tbs The quantity of data in the database, in terabytes.
- Database
Edition string The Oracle Database Edition that applies to the Autonomous databases.
- Database
Management stringStatus Status of Database Management for this Autonomous Database.
- Dataguard
Region stringType The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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 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 Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
- Db
Name string The database name.
- Db
Version string A filter to return only autonomous database resources that match the specified dbVersion.
- Db
Workload string A filter to return only autonomous database resources that match the specified workload type.
- Dictionary<string, object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Disaster
Recovery stringRegion Type The disaster recovery (DR) region type of the Autonomous Database. For Shared Autonomous Databases, 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 string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Failed
Data intRecovery In Seconds Indicates the number of seconds of data loss for a Data Guard failover.
- 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.
- In
Memory intArea In Gbs The area assigned to In-Memory tables in Autonomous Database.
- In
Memory intPercentage The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.
- Infrastructure
Type string A filter to return only resources that match the given Infrastructure Type.
- Is
Access boolControl Enabled 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 specifyingwhitelistedIps
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 theUpdateAutonomousDatabase
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 boolScaling Enabled Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- Is
Auto boolScaling For Storage Enabled Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is
FALSE
.- Is
Data boolGuard Enabled A filter to return only resources that have Data Guard enabled.
- Is
Dedicated bool True if the database uses dedicated Exadata infrastructure.
- Is
Free boolTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- Is
Local boolData Guard Enabled 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 boolConnection Required Specifies if the Autonomous Database requires mTLS connections.
- Is
Preview bool Indicates if the Autonomous Database version is a preview version.
- Is
Preview boolVersion With Service Terms Accepted - Is
Reconnect boolClone Enabled Indicates if the refreshable clone can be reconnected to its source database.
- Is
Refreshable boolClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- Is
Remote boolData Guard Enabled 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.
- Is
Shrink boolOnly - Key
History List<GetEntries Autonomous Databases Autonomous Database Key History Entry> Key History Entry.
- Key
Store stringId The OCID of the key store.
- Key
Store stringWallet Name The wallet name for Oracle Key Vault.
- Kms
Key stringId The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringLifecycle Details KMS key lifecycle details.
- Kms
Key stringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- License
Model 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
.- Lifecycle
Details string Additional information about the current lifecycle state.
- Local
Adg intAuto Failover Max Data Loss Limit 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 stringRecovery Type Indicates the local 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.
- Local
Standby List<GetDbs Autonomous Databases Autonomous Database Local Standby Db> Autonomous Data Guard standby database details.
- Long
Term List<GetBackup Schedules Autonomous Databases Autonomous Database Long Term Backup Schedule> Details for the long-term backup schedule.
- Max
Cpu intCore Count The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
- Memory
Per intOracle Compute Unit In Gbs The amount of memory (in GBs) enabled per OCPU or ECPU.
- Ncharacter
Set string The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- Next
Long stringTerm Backup Time Stamp The date and time when the next long-term backup would be created.
- Nsg
Ids 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.
- Ocpu
Count double The number of OCPU cores to be made available to the database.
- Open
Mode string Indicates the Autonomous Database mode. The database can be opened in
READ_ONLY
orREAD_WRITE
mode.- Operations
Insights stringStatus Status of Operations Insights for this Autonomous Database.
- Peer
Db List<string>Ids 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.
- Permission
Level string The Autonomous Database permission level. Restricted mode allows access only by admin users.
- Private
Endpoint string The private endpoint for the resource.
- Private
Endpoint stringIp The private endpoint Ip address for the resource.
- Private
Endpoint stringLabel The private endpoint label for the resource.
- Provisionable
Cpuses List<double> An array of CPU values that an Autonomous Database can be scaled to.
- Refreshable
Mode string The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
- Refreshable
Status string The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
- Remote
Disaster List<GetRecovery Configurations Autonomous Databases Autonomous Database Remote Disaster Recovery Configuration> Configurations of a Disaster Recovery.
- Remote
Disaster stringRecovery Type - Role string
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Rotate
Key boolTrigger - Scheduled
Operations List<GetAutonomous Databases Autonomous Database Scheduled Operation> The list of scheduled operations.
- Secret
Id string - Secret
Version intNumber - Service
Console stringUrl The URL of the Service Console for the Autonomous Database.
- Source string
- Source
Id string The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.
- Standby
Dbs List<GetAutonomous Databases Autonomous Database Standby Db> Deprecated Autonomous Data Guard standby database details.
- Standby
Whitelisted List<string>Ips The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure 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.
- Subnet
Id string The OCID of the subnet the resource is associated with.
- Supported
Regions List<string>To Clone Tos The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- Switchover
To string - Switchover
To stringRemote Peer Id - Dictionary<string, object>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string The date and time the Autonomous Database was created.
- Time
Data stringGuard Role Changed 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 stringOf Free Autonomous Database 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- Time
Local stringData Guard Enabled 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 stringBegin The date and time when maintenance will begin.
- Time
Maintenance stringEnd The date and time when maintenance will end.
- Time
Of stringLast Failover The timestamp of the last failover operation.
- Time
Of stringLast Refresh The date and time when last refresh happened.
- Time
Of stringLast Refresh Point 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 stringLast Switchover The timestamp of the last switchover operation for the Autonomous Database.
- Time
Of stringNext Refresh The date and time of next refresh.
- Time
Reclamation stringOf Free Autonomous Database 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 stringReconnect Clone Enabled 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.
- Timestamp string
- Total
Backup doubleStorage Size In Gbs The backup storage to the database.
- Use
Latest boolAvailable Backup Time Stamp - Used
Data intStorage Size In Gbs The storage space consumed by Autonomous Database in GBs.
- Used
Data intStorage Size In Tbs The amount of storage that has been used, in terabytes.
- Vault
Id string - Whitelisted
Ips List<string> The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
- Actual
Used float64Data Storage Size In Tbs The current amount of storage in use for user and system data, in terabytes (TB).
- Admin
Password string - Allocated
Storage float64Size In Tbs 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 theactualUsedDataStorageSizeInTBs
value to determine if a manual shrink operation is appropriate for your allocated storage.- Apex
Details []GetAutonomous Databases Autonomous Database Apex Detail Information about Oracle APEX Application Development.
- Are
Primary boolWhitelisted Ips Used 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 beFALSE
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 stringDatabase Id The Autonomous Container Database OCID.
- Autonomous
Database stringBackup Id - Autonomous
Database stringId - Autonomous
Maintenance stringSchedule Type The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
- Available
Upgrade []stringVersions List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- Backup
Configs []GetAutonomous Databases Autonomous Database Backup Config Autonomous Database configuration details for storing manual backups in the Object Storage service.
- Backup
Retention intPeriod In Days Retention period, in days, for backups.
- Character
Set string The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
- Clone
Type string - Compartment
Id string The compartment OCID.
- Compute
Count float64 The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the
computeModel
parameter. When usingcpuCoreCount
parameter, it is an error to specify computeCount to a non-null value.- Compute
Model string The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
to a non-null value.- Connection
Strings []GetAutonomous Databases Autonomous Database Connection String 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 []GetAutonomous Databases Autonomous Database Connection Url 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 intCount 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 []GetAutonomous Databases Autonomous Database Customer Contact Customer Contacts.
- Data
Safe stringStatus Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
- Data
Storage intSize In Gb The quantity of data in the database, in gigabytes.
- Data
Storage intSize In Tbs The quantity of data in the database, in terabytes.
- Database
Edition string The Oracle Database Edition that applies to the Autonomous databases.
- Database
Management stringStatus Status of Database Management for this Autonomous Database.
- Dataguard
Region stringType The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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 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 Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
- Db
Name string The database name.
- Db
Version string A filter to return only autonomous database resources that match the specified dbVersion.
- Db
Workload string A filter to return only autonomous database resources that match the specified workload type.
- map[string]interface{}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Disaster
Recovery stringRegion Type The disaster recovery (DR) region type of the Autonomous Database. For Shared Autonomous Databases, 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 string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Failed
Data intRecovery In Seconds Indicates the number of seconds of data loss for a Data Guard failover.
- 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.
- In
Memory intArea In Gbs The area assigned to In-Memory tables in Autonomous Database.
- In
Memory intPercentage The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.
- Infrastructure
Type string A filter to return only resources that match the given Infrastructure Type.
- Is
Access boolControl Enabled 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 specifyingwhitelistedIps
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 theUpdateAutonomousDatabase
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 boolScaling Enabled Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- Is
Auto boolScaling For Storage Enabled Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is
FALSE
.- Is
Data boolGuard Enabled A filter to return only resources that have Data Guard enabled.
- Is
Dedicated bool True if the database uses dedicated Exadata infrastructure.
- Is
Free boolTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- Is
Local boolData Guard Enabled 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 boolConnection Required Specifies if the Autonomous Database requires mTLS connections.
- Is
Preview bool Indicates if the Autonomous Database version is a preview version.
- Is
Preview boolVersion With Service Terms Accepted - Is
Reconnect boolClone Enabled Indicates if the refreshable clone can be reconnected to its source database.
- Is
Refreshable boolClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- Is
Remote boolData Guard Enabled 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.
- Is
Shrink boolOnly - Key
History []GetEntries Autonomous Databases Autonomous Database Key History Entry Key History Entry.
- Key
Store stringId The OCID of the key store.
- Key
Store stringWallet Name The wallet name for Oracle Key Vault.
- Kms
Key stringId The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- Kms
Key stringLifecycle Details KMS key lifecycle details.
- Kms
Key stringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- License
Model 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
.- Lifecycle
Details string Additional information about the current lifecycle state.
- Local
Adg intAuto Failover Max Data Loss Limit 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 stringRecovery Type Indicates the local 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.
- Local
Standby []GetDbs Autonomous Databases Autonomous Database Local Standby Db Autonomous Data Guard standby database details.
- Long
Term []GetBackup Schedules Autonomous Databases Autonomous Database Long Term Backup Schedule Details for the long-term backup schedule.
- Max
Cpu intCore Count The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
- Memory
Per intOracle Compute Unit In Gbs The amount of memory (in GBs) enabled per OCPU or ECPU.
- Ncharacter
Set string The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- Next
Long stringTerm Backup Time Stamp The date and time when the next long-term backup would be created.
- Nsg
Ids []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.
- Ocpu
Count float64 The number of OCPU cores to be made available to the database.
- Open
Mode string Indicates the Autonomous Database mode. The database can be opened in
READ_ONLY
orREAD_WRITE
mode.- Operations
Insights stringStatus Status of Operations Insights for this Autonomous Database.
- Peer
Db []stringIds 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.
- Permission
Level string The Autonomous Database permission level. Restricted mode allows access only by admin users.
- Private
Endpoint string The private endpoint for the resource.
- Private
Endpoint stringIp The private endpoint Ip address for the resource.
- Private
Endpoint stringLabel The private endpoint label for the resource.
- Provisionable
Cpuses []float64 An array of CPU values that an Autonomous Database can be scaled to.
- Refreshable
Mode string The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
- Refreshable
Status string The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
- Remote
Disaster []GetRecovery Configurations Autonomous Databases Autonomous Database Remote Disaster Recovery Configuration Configurations of a Disaster Recovery.
- Remote
Disaster stringRecovery Type - Role string
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- Rotate
Key boolTrigger - Scheduled
Operations []GetAutonomous Databases Autonomous Database Scheduled Operation The list of scheduled operations.
- Secret
Id string - Secret
Version intNumber - Service
Console stringUrl The URL of the Service Console for the Autonomous Database.
- Source string
- Source
Id string The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.
- Standby
Dbs []GetAutonomous Databases Autonomous Database Standby Db Deprecated Autonomous Data Guard standby database details.
- Standby
Whitelisted []stringIps The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure 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.
- Subnet
Id string The OCID of the subnet the resource is associated with.
- Supported
Regions []stringTo Clone Tos The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- Switchover
To string - Switchover
To stringRemote Peer Id - map[string]interface{}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string The date and time the Autonomous Database was created.
- Time
Data stringGuard Role Changed 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 stringOf Free Autonomous Database 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- Time
Local stringData Guard Enabled 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 stringBegin The date and time when maintenance will begin.
- Time
Maintenance stringEnd The date and time when maintenance will end.
- Time
Of stringLast Failover The timestamp of the last failover operation.
- Time
Of stringLast Refresh The date and time when last refresh happened.
- Time
Of stringLast Refresh Point 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 stringLast Switchover The timestamp of the last switchover operation for the Autonomous Database.
- Time
Of stringNext Refresh The date and time of next refresh.
- Time
Reclamation stringOf Free Autonomous Database 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 stringReconnect Clone Enabled 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.
- Timestamp string
- Total
Backup float64Storage Size In Gbs The backup storage to the database.
- Use
Latest boolAvailable Backup Time Stamp - Used
Data intStorage Size In Gbs The storage space consumed by Autonomous Database in GBs.
- Used
Data intStorage Size In Tbs The amount of storage that has been used, in terabytes.
- Vault
Id string - Whitelisted
Ips []string The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
- actual
Used DoubleData Storage Size In Tbs The current amount of storage in use for user and system data, in terabytes (TB).
- admin
Password String - allocated
Storage DoubleSize In Tbs 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 theactualUsedDataStorageSizeInTBs
value to determine if a manual shrink operation is appropriate for your allocated storage.- apex
Details List<GetAutonomouss Autonomous Apex Detail> Information about Oracle APEX Application Development.
- are
Primary BooleanWhitelisted Ips Used 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 beFALSE
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 StringDatabase Id The Autonomous Container Database OCID.
- autonomous
Database StringBackup Id - autonomous
Database StringId - autonomous
Maintenance StringSchedule Type The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
- available
Upgrade List<String>Versions List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- backup
Configs List<GetAutonomouss Autonomous Backup Config> Autonomous Database configuration details for storing manual backups in the Object Storage service.
- backup
Retention IntegerPeriod In Days Retention period, in days, for backups.
- character
Set String The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
- clone
Type String - compartment
Id String The compartment OCID.
- compute
Count Double The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the
computeModel
parameter. When usingcpuCoreCount
parameter, it is an error to specify computeCount to a non-null value.- compute
Model String The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
to a non-null value.- connection
Strings List<GetAutonomouss Autonomous Connection String> 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 List<GetAutonomouss Autonomous Connection Url> 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 IntegerCount 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 List<GetAutonomouss Autonomous Customer Contact> Customer Contacts.
- data
Safe StringStatus Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
- data
Storage IntegerSize In Gb The quantity of data in the database, in gigabytes.
- data
Storage IntegerSize In Tbs The quantity of data in the database, in terabytes.
- database
Edition String The Oracle Database Edition that applies to the Autonomous databases.
- database
Management StringStatus Status of Database Management for this Autonomous Database.
- dataguard
Region StringType The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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 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 Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
- db
Name String The database name.
- db
Version String A filter to return only autonomous database resources that match the specified dbVersion.
- db
Workload String A filter to return only autonomous database resources that match the specified workload type.
- Map<String,Object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disaster
Recovery StringRegion Type The disaster recovery (DR) region type of the Autonomous Database. For Shared Autonomous Databases, 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 String A filter to return only resources that match the entire display name given. The match is not case sensitive.
- failed
Data IntegerRecovery In Seconds Indicates the number of seconds of data loss for a Data Guard failover.
- 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.
- in
Memory IntegerArea In Gbs The area assigned to In-Memory tables in Autonomous Database.
- in
Memory IntegerPercentage The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.
- infrastructure
Type String A filter to return only resources that match the given Infrastructure Type.
- is
Access BooleanControl Enabled 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 specifyingwhitelistedIps
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 theUpdateAutonomousDatabase
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 BooleanScaling Enabled Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- is
Auto BooleanScaling For Storage Enabled Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is
FALSE
.- is
Data BooleanGuard Enabled A filter to return only resources that have Data Guard enabled.
- is
Dedicated Boolean True if the database uses dedicated Exadata infrastructure.
- is
Free BooleanTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is
Local BooleanData Guard Enabled 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 BooleanConnection Required Specifies if the Autonomous Database requires mTLS connections.
- is
Preview Boolean Indicates if the Autonomous Database version is a preview version.
- is
Preview BooleanVersion With Service Terms Accepted - is
Reconnect BooleanClone Enabled Indicates if the refreshable clone can be reconnected to its source database.
- is
Refreshable BooleanClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- is
Remote BooleanData Guard Enabled 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.
- is
Shrink BooleanOnly - key
History List<GetEntries Autonomouss Autonomous Key History Entry> Key History Entry.
- key
Store StringId The OCID of the key store.
- key
Store StringWallet Name The wallet name for Oracle Key Vault.
- kms
Key StringId The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringLifecycle Details KMS key lifecycle details.
- kms
Key StringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- license
Model 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
.- lifecycle
Details String Additional information about the current lifecycle state.
- local
Adg IntegerAuto Failover Max Data Loss Limit 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 StringRecovery Type Indicates the local 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.
- local
Standby List<GetDbs Autonomouss Autonomous Local Standby Db> Autonomous Data Guard standby database details.
- long
Term List<GetBackup Schedules Autonomouss Autonomous Long Term Backup Schedule> Details for the long-term backup schedule.
- max
Cpu IntegerCore Count The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
- memory
Per IntegerOracle Compute Unit In Gbs The amount of memory (in GBs) enabled per OCPU or ECPU.
- ncharacter
Set String The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- next
Long StringTerm Backup Time Stamp The date and time when the next long-term backup would be created.
- nsg
Ids 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.
- ocpu
Count Double The number of OCPU cores to be made available to the database.
- open
Mode String Indicates the Autonomous Database mode. The database can be opened in
READ_ONLY
orREAD_WRITE
mode.- operations
Insights StringStatus Status of Operations Insights for this Autonomous Database.
- peer
Db List<String>Ids 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.
- permission
Level String The Autonomous Database permission level. Restricted mode allows access only by admin users.
- private
Endpoint String The private endpoint for the resource.
- private
Endpoint StringIp The private endpoint Ip address for the resource.
- private
Endpoint StringLabel The private endpoint label for the resource.
- provisionable
Cpuses List<Double> An array of CPU values that an Autonomous Database can be scaled to.
- refreshable
Mode String The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
- refreshable
Status String The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
- remote
Disaster List<GetRecovery Configurations Autonomouss Autonomous Remote Disaster Recovery Configuration> Configurations of a Disaster Recovery.
- remote
Disaster StringRecovery Type - role String
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotate
Key BooleanTrigger - scheduled
Operations List<GetAutonomouss Autonomous Scheduled Operation> The list of scheduled operations.
- secret
Id String - secret
Version IntegerNumber - service
Console StringUrl The URL of the Service Console for the Autonomous Database.
- source String
- source
Id String The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.
- standby
Dbs List<GetAutonomouss Autonomous Standby Db> Deprecated Autonomous Data Guard standby database details.
- standby
Whitelisted List<String>Ips The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure 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.
- subnet
Id String The OCID of the subnet the resource is associated with.
- supported
Regions List<String>To Clone Tos The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- switchover
To String - switchover
To StringRemote Peer Id - Map<String,Object>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String The date and time the Autonomous Database was created.
- time
Data StringGuard Role Changed 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 StringOf Free Autonomous Database 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 StringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- time
Local StringData Guard Enabled 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 StringBegin The date and time when maintenance will begin.
- time
Maintenance StringEnd The date and time when maintenance will end.
- time
Of StringLast Failover The timestamp of the last failover operation.
- time
Of StringLast Refresh The date and time when last refresh happened.
- time
Of StringLast Refresh Point 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 StringLast Switchover The timestamp of the last switchover operation for the Autonomous Database.
- time
Of StringNext Refresh The date and time of next refresh.
- time
Reclamation StringOf Free Autonomous Database 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 StringReconnect Clone Enabled 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.
- timestamp String
- total
Backup DoubleStorage Size In Gbs The backup storage to the database.
- use
Latest BooleanAvailable Backup Time Stamp - used
Data IntegerStorage Size In Gbs The storage space consumed by Autonomous Database in GBs.
- used
Data IntegerStorage Size In Tbs The amount of storage that has been used, in terabytes.
- vault
Id String - whitelisted
Ips List<String> The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
- actual
Used numberData Storage Size In Tbs The current amount of storage in use for user and system data, in terabytes (TB).
- admin
Password string - allocated
Storage numberSize In Tbs 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 theactualUsedDataStorageSizeInTBs
value to determine if a manual shrink operation is appropriate for your allocated storage.- apex
Details GetAutonomous Databases Autonomous Database Apex Detail[] Information about Oracle APEX Application Development.
- are
Primary booleanWhitelisted Ips Used 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 beFALSE
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 stringDatabase Id The Autonomous Container Database OCID.
- autonomous
Database stringBackup Id - autonomous
Database stringId - autonomous
Maintenance stringSchedule Type The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
- available
Upgrade string[]Versions List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- backup
Configs GetAutonomous Databases Autonomous Database Backup Config[] Autonomous Database configuration details for storing manual backups in the Object Storage service.
- backup
Retention numberPeriod In Days Retention period, in days, for backups.
- character
Set string The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
- clone
Type string - compartment
Id string The compartment OCID.
- compute
Count number The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the
computeModel
parameter. When usingcpuCoreCount
parameter, it is an error to specify computeCount to a non-null value.- compute
Model string The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
to a non-null value.- connection
Strings GetAutonomous Databases Autonomous Database Connection String[] 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 GetAutonomous Databases Autonomous Database Connection Url[] 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 numberCount 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 GetAutonomous Databases Autonomous Database Customer Contact[] Customer Contacts.
- data
Safe stringStatus Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
- data
Storage numberSize In Gb The quantity of data in the database, in gigabytes.
- data
Storage numberSize In Tbs The quantity of data in the database, in terabytes.
- database
Edition string The Oracle Database Edition that applies to the Autonomous databases.
- database
Management stringStatus Status of Database Management for this Autonomous Database.
- dataguard
Region stringType The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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 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 Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
- db
Name string The database name.
- db
Version string A filter to return only autonomous database resources that match the specified dbVersion.
- db
Workload string A filter to return only autonomous database resources that match the specified workload type.
- {[key: string]: any}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disaster
Recovery stringRegion Type The disaster recovery (DR) region type of the Autonomous Database. For Shared Autonomous Databases, 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 string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- failed
Data numberRecovery In Seconds Indicates the number of seconds of data loss for a Data Guard failover.
- {[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.
- in
Memory numberArea In Gbs The area assigned to In-Memory tables in Autonomous Database.
- in
Memory numberPercentage The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.
- infrastructure
Type string A filter to return only resources that match the given Infrastructure Type.
- is
Access booleanControl Enabled 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 specifyingwhitelistedIps
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 theUpdateAutonomousDatabase
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 booleanScaling Enabled Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- is
Auto booleanScaling For Storage Enabled Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is
FALSE
.- is
Data booleanGuard Enabled A filter to return only resources that have Data Guard enabled.
- is
Dedicated boolean True if the database uses dedicated Exadata infrastructure.
- is
Free booleanTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is
Local booleanData Guard Enabled 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 booleanConnection Required Specifies if the Autonomous Database requires mTLS connections.
- is
Preview boolean Indicates if the Autonomous Database version is a preview version.
- is
Preview booleanVersion With Service Terms Accepted - is
Reconnect booleanClone Enabled Indicates if the refreshable clone can be reconnected to its source database.
- is
Refreshable booleanClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- is
Remote booleanData Guard Enabled 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.
- is
Shrink booleanOnly - key
History GetEntries Autonomous Databases Autonomous Database Key History Entry[] Key History Entry.
- key
Store stringId The OCID of the key store.
- key
Store stringWallet Name The wallet name for Oracle Key Vault.
- kms
Key stringId The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key stringLifecycle Details KMS key lifecycle details.
- kms
Key stringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- license
Model 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
.- lifecycle
Details string Additional information about the current lifecycle state.
- local
Adg numberAuto Failover Max Data Loss Limit 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 stringRecovery Type Indicates the local 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.
- local
Standby GetDbs Autonomous Databases Autonomous Database Local Standby Db[] Autonomous Data Guard standby database details.
- long
Term GetBackup Schedules Autonomous Databases Autonomous Database Long Term Backup Schedule[] Details for the long-term backup schedule.
- max
Cpu numberCore Count The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
- memory
Per numberOracle Compute Unit In Gbs The amount of memory (in GBs) enabled per OCPU or ECPU.
- ncharacter
Set string The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- next
Long stringTerm Backup Time Stamp The date and time when the next long-term backup would be created.
- nsg
Ids 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.
- ocpu
Count number The number of OCPU cores to be made available to the database.
- open
Mode string Indicates the Autonomous Database mode. The database can be opened in
READ_ONLY
orREAD_WRITE
mode.- operations
Insights stringStatus Status of Operations Insights for this Autonomous Database.
- peer
Db string[]Ids 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.
- permission
Level string The Autonomous Database permission level. Restricted mode allows access only by admin users.
- private
Endpoint string The private endpoint for the resource.
- private
Endpoint stringIp The private endpoint Ip address for the resource.
- private
Endpoint stringLabel The private endpoint label for the resource.
- provisionable
Cpuses number[] An array of CPU values that an Autonomous Database can be scaled to.
- refreshable
Mode string The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
- refreshable
Status string The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
- remote
Disaster GetRecovery Configurations Autonomous Databases Autonomous Database Remote Disaster Recovery Configuration[] Configurations of a Disaster Recovery.
- remote
Disaster stringRecovery Type - role string
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotate
Key booleanTrigger - scheduled
Operations GetAutonomous Databases Autonomous Database Scheduled Operation[] The list of scheduled operations.
- secret
Id string - secret
Version numberNumber - service
Console stringUrl The URL of the Service Console for the Autonomous Database.
- source string
- source
Id string The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.
- standby
Dbs GetAutonomous Databases Autonomous Database Standby Db[] Deprecated Autonomous Data Guard standby database details.
- standby
Whitelisted string[]Ips The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure 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.
- subnet
Id string The OCID of the subnet the resource is associated with.
- supported
Regions string[]To Clone Tos The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- switchover
To string - switchover
To stringRemote Peer Id - {[key: string]: any}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string The date and time the Autonomous Database was created.
- time
Data stringGuard Role Changed 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 stringOf Free Autonomous Database 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- time
Local stringData Guard Enabled 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 stringBegin The date and time when maintenance will begin.
- time
Maintenance stringEnd The date and time when maintenance will end.
- time
Of stringLast Failover The timestamp of the last failover operation.
- time
Of stringLast Refresh The date and time when last refresh happened.
- time
Of stringLast Refresh Point 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 stringLast Switchover The timestamp of the last switchover operation for the Autonomous Database.
- time
Of stringNext Refresh The date and time of next refresh.
- time
Reclamation stringOf Free Autonomous Database 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 stringReconnect Clone Enabled 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.
- timestamp string
- total
Backup numberStorage Size In Gbs The backup storage to the database.
- use
Latest booleanAvailable Backup Time Stamp - used
Data numberStorage Size In Gbs The storage space consumed by Autonomous Database in GBs.
- used
Data numberStorage Size In Tbs The amount of storage that has been used, in terabytes.
- vault
Id string - whitelisted
Ips string[] The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
- actual_
used_ floatdata_ storage_ size_ in_ tbs The current amount of storage in use for user and system data, in terabytes (TB).
- admin_
password str - allocated_
storage_ floatsize_ in_ tbs 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 theactualUsedDataStorageSizeInTBs
value to determine if a manual shrink operation is appropriate for your allocated storage.- apex_
details GetAutonomous Databases Autonomous Database Apex Detail] Information about Oracle APEX Application Development.
- are_
primary_ boolwhitelisted_ ips_ used 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 beFALSE
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_ strdatabase_ id The Autonomous Container Database OCID.
- autonomous_
database_ strbackup_ id - autonomous_
database_ strid - autonomous_
maintenance_ strschedule_ type The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
- available_
upgrade_ Sequence[str]versions List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- backup_
configs GetAutonomous Databases Autonomous Database Backup Config] Autonomous Database configuration details for storing manual backups in the Object Storage service.
- backup_
retention_ intperiod_ in_ days Retention period, in days, for backups.
- character_
set str The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
- clone_
type str - 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 on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the
computeModel
parameter. When usingcpuCoreCount
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 usingcpuCoreCount
then it is an error to specifycomputeModel
to a non-null value.- connection_
strings GetAutonomous Databases Autonomous Database Connection String] 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 GetAutonomous Databases Autonomous Database Connection Url] 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_ intcount 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 GetAutonomous Databases Autonomous Database Customer Contact] Customer Contacts.
- data_
safe_ strstatus Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
- data_
storage_ intsize_ in_ gb The quantity of data in the database, in gigabytes.
- data_
storage_ intsize_ in_ tbs The quantity of data in the database, in terabytes.
- database_
edition str The Oracle Database Edition that applies to the Autonomous databases.
- database_
management_ strstatus Status of Database Management for this Autonomous Database.
- dataguard_
region_ strtype The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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 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 Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
- db_
name str The database name.
- db_
version str A filter to return only autonomous database resources that match the specified dbVersion.
- db_
workload str A filter to return only autonomous database resources that match the specified workload type.
- 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_ strregion_ type The disaster recovery (DR) region type of the Autonomous Database. For Shared Autonomous Databases, 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_ intrecovery_ in_ seconds Indicates the number of seconds of data loss for a Data Guard failover.
- 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_ intarea_ in_ gbs The area assigned to In-Memory tables in Autonomous Database.
- in_
memory_ intpercentage The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.
- infrastructure_
type str A filter to return only resources that match the given Infrastructure Type.
- is_
access_ boolcontrol_ enabled 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 specifyingwhitelistedIps
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 theUpdateAutonomousDatabase
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_ boolscaling_ enabled Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- is_
auto_ boolscaling_ for_ storage_ enabled Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is
FALSE
.- is_
data_ boolguard_ enabled A filter to return only resources that have Data Guard enabled.
- is_
dedicated bool True if the database uses dedicated Exadata infrastructure.
- is_
free_ booltier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is_
local_ booldata_ guard_ enabled 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_ boolconnection_ required Specifies if the Autonomous Database requires mTLS connections.
- is_
preview bool Indicates if the Autonomous Database version is a preview version.
- is_
preview_ boolversion_ with_ service_ terms_ accepted - is_
reconnect_ boolclone_ enabled Indicates if the refreshable clone can be reconnected to its source database.
- is_
refreshable_ boolclone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- is_
remote_ booldata_ guard_ enabled 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.
- is_
shrink_ boolonly - key_
history_ Getentries Autonomous Databases Autonomous Database Key History Entry] Key History Entry.
- key_
store_ strid The OCID of the key store.
- key_
store_ strwallet_ name The wallet name for Oracle Key Vault.
- kms_
key_ strid The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms_
key_ strlifecycle_ details KMS key lifecycle details.
- kms_
key_ strversion_ id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- 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_ intauto_ failover_ max_ data_ loss_ limit 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_ strrecovery_ type Indicates the local 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.
- local_
standby_ Getdbs Autonomous Databases Autonomous Database Local Standby Db] Autonomous Data Guard standby database details.
- long_
term_ Getbackup_ schedules Autonomous Databases Autonomous Database Long Term Backup Schedule] Details for the long-term backup schedule.
- max_
cpu_ intcore_ count The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
- memory_
per_ intoracle_ compute_ unit_ in_ gbs The amount of memory (in GBs) enabled per OCPU or ECPU.
- ncharacter_
set str The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- next_
long_ strterm_ backup_ time_ stamp 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
orREAD_WRITE
mode.- operations_
insights_ strstatus Status of Operations Insights for this Autonomous Database.
- peer_
db_ Sequence[str]ids 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.
- permission_
level str The Autonomous Database permission level. Restricted mode allows access only by admin users.
- private_
endpoint str The private endpoint for the resource.
- private_
endpoint_ strip The private endpoint Ip address for the resource.
- private_
endpoint_ strlabel The private endpoint label for the resource.
- 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_ Getrecovery_ configurations Autonomous Databases Autonomous Database Remote Disaster Recovery Configuration] Configurations of a Disaster Recovery.
- remote_
disaster_ strrecovery_ type - role str
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotate_
key_ booltrigger - scheduled_
operations GetAutonomous Databases Autonomous Database Scheduled Operation] The list of scheduled operations.
- secret_
id str - secret_
version_ intnumber - service_
console_ strurl The URL of the Service Console for the Autonomous Database.
- source str
- source_
id str The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.
- standby_
dbs GetAutonomous Databases Autonomous Database Standby Db] Deprecated Autonomous Data Guard standby database details.
- standby_
whitelisted_ Sequence[str]ips The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure 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_ Sequence[str]to_ clone_ tos The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- switchover_
to str - switchover_
to_ strremote_ peer_ id - 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_ strguard_ role_ changed 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_ strof_ free_ autonomous_ database 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_ strrecovery_ role_ changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- time_
local_ strdata_ guard_ enabled 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_ strbegin The date and time when maintenance will begin.
- time_
maintenance_ strend The date and time when maintenance will end.
- time_
of_ strlast_ failover The timestamp of the last failover operation.
- time_
of_ strlast_ refresh The date and time when last refresh happened.
- time_
of_ strlast_ refresh_ point 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_ strlast_ switchover The timestamp of the last switchover operation for the Autonomous Database.
- time_
of_ strnext_ refresh The date and time of next refresh.
- time_
reclamation_ strof_ free_ autonomous_ database 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_ strreconnect_ clone_ enabled 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.
- timestamp str
- total_
backup_ floatstorage_ size_ in_ gbs The backup storage to the database.
- use_
latest_ boolavailable_ backup_ time_ stamp - used_
data_ intstorage_ size_ in_ gbs The storage space consumed by Autonomous Database in GBs.
- used_
data_ intstorage_ size_ in_ tbs The amount of storage that has been used, in terabytes.
- vault_
id str - whitelisted_
ips Sequence[str] The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
- actual
Used NumberData Storage Size In Tbs The current amount of storage in use for user and system data, in terabytes (TB).
- admin
Password String - allocated
Storage NumberSize In Tbs 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 theactualUsedDataStorageSizeInTBs
value to determine if a manual shrink operation is appropriate for your allocated storage.- apex
Details List<Property Map> Information about Oracle APEX Application Development.
- are
Primary BooleanWhitelisted Ips Used 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 beFALSE
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 StringDatabase Id The Autonomous Container Database OCID.
- autonomous
Database StringBackup Id - autonomous
Database StringId - autonomous
Maintenance StringSchedule Type The maintenance schedule type of the Autonomous Database on shared Exadata infrastructure. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
- available
Upgrade List<String>Versions List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- backup
Configs List<Property Map> Autonomous Database configuration details for storing manual backups in the Object Storage service.
- backup
Retention NumberPeriod In Days Retention period, in days, for backups.
- character
Set String The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
- clone
Type String - compartment
Id String The compartment OCID.
- compute
Count Number The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the
computeModel
parameter. When usingcpuCoreCount
parameter, it is an error to specify computeCount to a non-null value.- compute
Model String The compute model of the Autonomous Database. This is required if using the
computeCount
parameter. If usingcpuCoreCount
then it is an error to specifycomputeModel
to a non-null value.- connection
Strings 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.
- connection
Urls 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..."}
- cpu
Core NumberCount 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 List<Property Map> Customer Contacts.
- data
Safe StringStatus Status of the Data Safe registration for this Autonomous Database. Could be REGISTERED or NOT_REGISTERED.
- data
Storage NumberSize In Gb The quantity of data in the database, in gigabytes.
- data
Storage NumberSize In Tbs The quantity of data in the database, in terabytes.
- database
Edition String The Oracle Database Edition that applies to the Autonomous databases.
- database
Management StringStatus Status of Database Management for this Autonomous Database.
- dataguard
Region StringType The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Databases on shared Exadata infrastructure, 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 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 Data Guard association, and cannot be performed when the database using the "primary" role is operating in a remote Data Guard standby region.
- db
Name String The database name.
- db
Version String A filter to return only autonomous database resources that match the specified dbVersion.
- db
Workload String A filter to return only autonomous database resources that match the specified workload type.
- Map<Any>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disaster
Recovery StringRegion Type The disaster recovery (DR) region type of the Autonomous Database. For Shared Autonomous Databases, 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 String A filter to return only resources that match the entire display name given. The match is not case sensitive.
- failed
Data NumberRecovery In Seconds Indicates the number of seconds of data loss for a Data Guard failover.
- 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.
- in
Memory NumberArea In Gbs The area assigned to In-Memory tables in Autonomous Database.
- in
Memory NumberPercentage The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database.
- infrastructure
Type String A filter to return only resources that match the given Infrastructure Type.
- is
Access BooleanControl Enabled 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 specifyingwhitelistedIps
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 theUpdateAutonomousDatabase
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 BooleanScaling Enabled Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- is
Auto BooleanScaling For Storage Enabled Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is
FALSE
.- is
Data BooleanGuard Enabled A filter to return only resources that have Data Guard enabled.
- is
Dedicated Boolean True if the database uses dedicated Exadata infrastructure.
- is
Free BooleanTier Filter on the value of the resource's 'isFreeTier' property. A value of
true
returns only Always Free resources. A value offalse
excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.- is
Local BooleanData Guard Enabled 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 BooleanConnection Required Specifies if the Autonomous Database requires mTLS connections.
- is
Preview Boolean Indicates if the Autonomous Database version is a preview version.
- is
Preview BooleanVersion With Service Terms Accepted - is
Reconnect BooleanClone Enabled Indicates if the refreshable clone can be reconnected to its source database.
- is
Refreshable BooleanClone Filter on the value of the resource's 'isRefreshableClone' property. A value of
true
returns only refreshable clones. A value offalse
excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.- is
Remote BooleanData Guard Enabled 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.
- is
Shrink BooleanOnly - key
History List<Property Map>Entries Key History Entry.
- key
Store StringId The OCID of the key store.
- key
Store StringWallet Name The wallet name for Oracle Key Vault.
- kms
Key StringId The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
- kms
Key StringLifecycle Details KMS key lifecycle details.
- kms
Key StringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- license
Model 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
.- lifecycle
Details String Additional information about the current lifecycle state.
- local
Adg NumberAuto Failover Max Data Loss Limit 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 StringRecovery Type Indicates the local 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.
- local
Standby List<Property Map>Dbs Autonomous Data Guard standby database details.
- long
Term List<Property Map>Backup Schedules Details for the long-term backup schedule.
- max
Cpu NumberCore Count The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
- memory
Per NumberOracle Compute Unit In Gbs The amount of memory (in GBs) enabled per OCPU or ECPU.
- ncharacter
Set String The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- next
Long StringTerm Backup Time Stamp The date and time when the next long-term backup would be created.
- nsg
Ids 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.
- ocpu
Count Number The number of OCPU cores to be made available to the database.
- open
Mode String Indicates the Autonomous Database mode. The database can be opened in
READ_ONLY
orREAD_WRITE
mode.- operations
Insights StringStatus Status of Operations Insights for this Autonomous Database.
- peer
Db List<String>Ids 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.
- permission
Level String The Autonomous Database permission level. Restricted mode allows access only by admin users.
- private
Endpoint String The private endpoint for the resource.
- private
Endpoint StringIp The private endpoint Ip address for the resource.
- private
Endpoint StringLabel The private endpoint label for the resource.
- provisionable
Cpuses List<Number> An array of CPU values that an Autonomous Database can be scaled to.
- refreshable
Mode String The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
- refreshable
Status String The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
- remote
Disaster List<Property Map>Recovery Configurations Configurations of a Disaster Recovery.
- remote
Disaster StringRecovery Type - role String
The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
- rotate
Key BooleanTrigger - scheduled
Operations List<Property Map> The list of scheduled operations.
- secret
Id String - secret
Version NumberNumber - service
Console StringUrl The URL of the Service Console for the Autonomous Database.
- source String
- source
Id String The OCID of the source Autonomous Database that was cloned to create the current Autonomous Database.
- standby
Dbs List<Property Map> Deprecated Autonomous Data Guard standby database details.
- standby
Whitelisted List<String>Ips The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure 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.
- subnet
Id String The OCID of the subnet the resource is associated with.
- supported
Regions List<String>To Clone Tos The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- switchover
To String - switchover
To StringRemote Peer Id - Map<Any>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String The date and time the Autonomous Database was created.
- time
Data StringGuard Role Changed 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 StringOf Free Autonomous Database 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 StringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- time
Local StringData Guard Enabled 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 StringBegin The date and time when maintenance will begin.
- time
Maintenance StringEnd The date and time when maintenance will end.
- time
Of StringLast Failover The timestamp of the last failover operation.
- time
Of StringLast Refresh The date and time when last refresh happened.
- time
Of StringLast Refresh Point 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 StringLast Switchover The timestamp of the last switchover operation for the Autonomous Database.
- time
Of StringNext Refresh The date and time of next refresh.
- time
Reclamation StringOf Free Autonomous Database 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 StringReconnect Clone Enabled 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.
- timestamp String
- total
Backup NumberStorage Size In Gbs The backup storage to the database.
- use
Latest BooleanAvailable Backup Time Stamp - used
Data NumberStorage Size In Gbs The storage space consumed by Autonomous Database in GBs.
- used
Data NumberStorage Size In Tbs The amount of storage that has been used, in terabytes.
- vault
Id String - whitelisted
Ips List<String> The client IP access control list (ACL). This feature is available for autonomous databases on shared Exadata infrastructure and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
GetAutonomousDatabasesAutonomousDatabaseApexDetail
- Apex
Version string The Oracle APEX Application Development version.
- Ords
Version string The Oracle REST Data Services (ORDS) version.
- Apex
Version string The Oracle APEX Application Development version.
- Ords
Version string The Oracle REST Data Services (ORDS) version.
- apex
Version String The Oracle APEX Application Development version.
- ords
Version String The Oracle REST Data Services (ORDS) version.
- apex
Version string The Oracle APEX Application Development version.
- ords
Version 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.
- apex
Version String The Oracle APEX Application Development version.
- ords
Version String The Oracle REST Data Services (ORDS) version.
GetAutonomousDatabasesAutonomousDatabaseBackupConfig
- Manual
Backup stringBucket Name Name of Object Storage bucket to use for storing manual backups.
- Manual
Backup stringType The manual backup destination type.
- Manual
Backup stringBucket Name Name of Object Storage bucket to use for storing manual backups.
- Manual
Backup stringType The manual backup destination type.
- manual
Backup StringBucket Name Name of Object Storage bucket to use for storing manual backups.
- manual
Backup StringType The manual backup destination type.
- manual
Backup stringBucket Name Name of Object Storage bucket to use for storing manual backups.
- manual
Backup stringType The manual backup destination type.
- manual_
backup_ strbucket_ name Name of Object Storage bucket to use for storing manual backups.
- manual_
backup_ strtype The manual backup destination type.
- manual
Backup StringBucket Name Name of Object Storage bucket to use for storing manual backups.
- manual
Backup StringType The manual backup destination type.
GetAutonomousDatabasesAutonomousDatabaseConnectionString
- All
Connection Dictionary<string, object>Strings 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<Get
Autonomous Databases Autonomous Database Connection String Profile> A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.
- All
Connection map[string]interface{}Strings 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
[]Get
Autonomous Databases Autonomous Database Connection String Profile A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.
- all
Connection Map<String,Object>Strings 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<Get
Autonomouss Autonomous Connection String Profile> A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.
- all
Connection {[key: string]: any}Strings 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
Get
Autonomous Databases Autonomous Database Connection String Profile[] A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.
- all_
connection_ Mapping[str, Any]strings 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
Get
Autonomous Databases Autonomous Database Connection String Profile] A list of connection string profiles to allow clients to group, filter and select connection string values based on structured metadata.
- all
Connection Map<Any>Strings 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.
GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfile
- Consumer
Group string Consumer group used by the connection.
- Display
Name string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Host
Format string Host format used in connection string.
- Protocol string
Protocol used by the connection.
- Session
Mode 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. UseREDIRECT
to redirect the session.- Syntax
Format string Specifies whether the connection string is using the long (
LONG
), Easy Connect (EZCONNECT
), or Easy Connect Plus (EZCONNECTPLUS
) format. Autonomous Databases on shared Exadata infrastructure always use the long format.- Tls
Authentication string Specifies whether the TLS handshake is using one-way (
SERVER
) or mutual (MUTUAL
) authentication.- Value string
Connection string value.
- Consumer
Group string Consumer group used by the connection.
- Display
Name string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- Host
Format string Host format used in connection string.
- Protocol string
Protocol used by the connection.
- Session
Mode 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. UseREDIRECT
to redirect the session.- Syntax
Format string Specifies whether the connection string is using the long (
LONG
), Easy Connect (EZCONNECT
), or Easy Connect Plus (EZCONNECTPLUS
) format. Autonomous Databases on shared Exadata infrastructure always use the long format.- Tls
Authentication string Specifies whether the TLS handshake is using one-way (
SERVER
) or mutual (MUTUAL
) authentication.- Value string
Connection string value.
- consumer
Group String Consumer group used by the connection.
- display
Name String A filter to return only resources that match the entire display name given. The match is not case sensitive.
- host
Format String Host format used in connection string.
- protocol String
Protocol used by the connection.
- session
Mode 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. UseREDIRECT
to redirect the session.- syntax
Format String Specifies whether the connection string is using the long (
LONG
), Easy Connect (EZCONNECT
), or Easy Connect Plus (EZCONNECTPLUS
) format. Autonomous Databases on shared Exadata infrastructure always use the long format.- tls
Authentication String Specifies whether the TLS handshake is using one-way (
SERVER
) or mutual (MUTUAL
) authentication.- value String
Connection string value.
- consumer
Group string Consumer group used by the connection.
- display
Name string A filter to return only resources that match the entire display name given. The match is not case sensitive.
- host
Format string Host format used in connection string.
- protocol string
Protocol used by the connection.
- session
Mode 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. UseREDIRECT
to redirect the session.- syntax
Format string Specifies whether the connection string is using the long (
LONG
), Easy Connect (EZCONNECT
), or Easy Connect Plus (EZCONNECTPLUS
) format. Autonomous Databases on shared Exadata infrastructure always use the long format.- tls
Authentication 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. UseREDIRECT
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 Databases on shared Exadata infrastructure 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.
- consumer
Group String Consumer group used by the connection.
- display
Name String A filter to return only resources that match the entire display name given. The match is not case sensitive.
- host
Format String Host format used in connection string.
- protocol String
Protocol used by the connection.
- session
Mode 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. UseREDIRECT
to redirect the session.- syntax
Format String Specifies whether the connection string is using the long (
LONG
), Easy Connect (EZCONNECT
), or Easy Connect Plus (EZCONNECTPLUS
) format. Autonomous Databases on shared Exadata infrastructure always use the long format.- tls
Authentication String Specifies whether the TLS handshake is using one-way (
SERVER
) or mutual (MUTUAL
) authentication.- value String
Connection string value.
GetAutonomousDatabasesAutonomousDatabaseConnectionUrl
- Apex
Url string Oracle Application Express (APEX) URL.
- Graph
Studio stringUrl The URL of the Graph Studio for the Autonomous Database.
- Machine
Learning stringUser Management Url Oracle Machine Learning user management URL.
- Sql
Dev stringWeb Url Oracle SQL Developer Web URL.
- Apex
Url string Oracle Application Express (APEX) URL.
- Graph
Studio stringUrl The URL of the Graph Studio for the Autonomous Database.
- Machine
Learning stringUser Management Url Oracle Machine Learning user management URL.
- Sql
Dev stringWeb Url Oracle SQL Developer Web URL.
- apex
Url String Oracle Application Express (APEX) URL.
- graph
Studio StringUrl The URL of the Graph Studio for the Autonomous Database.
- machine
Learning StringUser Management Url Oracle Machine Learning user management URL.
- sql
Dev StringWeb Url Oracle SQL Developer Web URL.
- apex
Url string Oracle Application Express (APEX) URL.
- graph
Studio stringUrl The URL of the Graph Studio for the Autonomous Database.
- machine
Learning stringUser Management Url Oracle Machine Learning user management URL.
- sql
Dev stringWeb Url Oracle SQL Developer Web URL.
- apex_
url str Oracle Application Express (APEX) URL.
- graph_
studio_ strurl The URL of the Graph Studio for the Autonomous Database.
- machine_
learning_ struser_ management_ url Oracle Machine Learning user management URL.
- sql_
dev_ strweb_ url Oracle SQL Developer Web URL.
- apex
Url String Oracle Application Express (APEX) URL.
- graph
Studio StringUrl The URL of the Graph Studio for the Autonomous Database.
- machine
Learning StringUser Management Url Oracle Machine Learning user management URL.
- sql
Dev StringWeb Url Oracle SQL Developer Web URL.
GetAutonomousDatabasesAutonomousDatabaseCustomerContact
- 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.
GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntry
- Id string
The id of the Autonomous Database Vault service key management history entry.
- Kms
Key stringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- Time
Activated string The date and time the kms key activated.
- Vault
Id string
- Id string
The id of the Autonomous Database Vault service key management history entry.
- Kms
Key stringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- Time
Activated string The date and time the kms key activated.
- Vault
Id string
- id String
The id of the Autonomous Database Vault service key management history entry.
- kms
Key StringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- time
Activated String The date and time the kms key activated.
- vault
Id String
- id string
The id of the Autonomous Database Vault service key management history entry.
- kms
Key stringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- time
Activated string The date and time the kms key activated.
- vault
Id string
- id str
The id of the Autonomous Database Vault service key management history entry.
- kms_
key_ strversion_ id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- time_
activated str The date and time the kms key activated.
- vault_
id str
- id String
The id of the Autonomous Database Vault service key management history entry.
- kms
Key StringVersion Id The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation.
- time
Activated String The date and time the kms key activated.
- vault
Id String
GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDb
- Lag
Time intIn Seconds 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 string Additional information about the current lifecycle state.
- State string
A filter to return only resources that match the given lifecycle state exactly.
- Time
Data stringGuard Role Changed 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- Lag
Time intIn Seconds 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 string Additional information about the current lifecycle state.
- State string
A filter to return only resources that match the given lifecycle state exactly.
- Time
Data stringGuard Role Changed 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag
Time IntegerIn Seconds 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 String Additional information about the current lifecycle state.
- state String
A filter to return only resources that match the given lifecycle state exactly.
- time
Data StringGuard Role Changed 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 StringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag
Time numberIn Seconds 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 string Additional information about the current lifecycle state.
- state string
A filter to return only resources that match the given lifecycle state exactly.
- time
Data stringGuard Role Changed 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag_
time_ intin_ seconds 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_ strguard_ role_ changed 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_ strrecovery_ role_ changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag
Time NumberIn Seconds 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 String Additional information about the current lifecycle state.
- state String
A filter to return only resources that match the given lifecycle state exactly.
- time
Data StringGuard Role Changed 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 StringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
GetAutonomousDatabasesAutonomousDatabaseLongTermBackupSchedule
- Is
Disabled bool Indicates if the long-term backup schedule should be deleted. The default value is
FALSE
.- Repeat
Cadence string The frequency of the long-term backup schedule
- Retention
Period intIn Days Retention period, in days, for long-term backups
- Time
Of stringBackup 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 long-term backup schedule should be deleted. The default value is
FALSE
.- Repeat
Cadence string The frequency of the long-term backup schedule
- Retention
Period intIn Days Retention period, in days, for long-term backups
- Time
Of stringBackup 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 Boolean Indicates if the long-term backup schedule should be deleted. The default value is
FALSE
.- repeat
Cadence String The frequency of the long-term backup schedule
- retention
Period IntegerIn Days Retention period, in days, for long-term backups
- time
Of StringBackup 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 boolean Indicates if the long-term backup schedule should be deleted. The default value is
FALSE
.- repeat
Cadence string The frequency of the long-term backup schedule
- retention
Period numberIn Days Retention period, in days, for long-term backups
- time
Of stringBackup 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 long-term backup schedule should be deleted. The default value is
FALSE
.- repeat_
cadence str The frequency of the long-term backup schedule
- retention_
period_ intin_ days Retention period, in days, for long-term backups
- time_
of_ strbackup 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 Boolean Indicates if the long-term backup schedule should be deleted. The default value is
FALSE
.- repeat
Cadence String The frequency of the long-term backup schedule
- retention
Period NumberIn Days Retention period, in days, for long-term backups
- time
Of StringBackup 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.
GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfiguration
- Disaster
Recovery stringType 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 stringType 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 StringType 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 stringType 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_ strtype 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 StringType 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.
GetAutonomousDatabasesAutonomousDatabaseScheduledOperation
- Day
Of List<GetWeeks Autonomous Databases Autonomous Database Scheduled Operation Day Of Week> Day of the week.
- Scheduled
Start stringTime auto start time. value must be of ISO-8601 format "HH:mm"
- Scheduled
Stop stringTime auto stop time. value must be of ISO-8601 format "HH:mm"
- Day
Of []GetWeeks Autonomous Databases Autonomous Database Scheduled Operation Day Of Week Day of the week.
- Scheduled
Start stringTime auto start time. value must be of ISO-8601 format "HH:mm"
- Scheduled
Stop stringTime auto stop time. value must be of ISO-8601 format "HH:mm"
- day
Of List<GetWeeks Autonomouss Autonomous Scheduled Operation Day Of Week> Day of the week.
- scheduled
Start StringTime auto start time. value must be of ISO-8601 format "HH:mm"
- scheduled
Stop StringTime auto stop time. value must be of ISO-8601 format "HH:mm"
- day
Of GetWeeks Autonomous Databases Autonomous Database Scheduled Operation Day Of Week[] Day of the week.
- scheduled
Start stringTime auto start time. value must be of ISO-8601 format "HH:mm"
- scheduled
Stop stringTime auto stop time. value must be of ISO-8601 format "HH:mm"
- day_
of_ Getweeks Autonomous Databases Autonomous Database Scheduled Operation Day Of Week] Day of the week.
- scheduled_
start_ strtime auto start time. value must be of ISO-8601 format "HH:mm"
- scheduled_
stop_ strtime auto stop time. value must be of ISO-8601 format "HH:mm"
- day
Of List<Property Map>Weeks Day of the week.
- scheduled
Start StringTime auto start time. value must be of ISO-8601 format "HH:mm"
- scheduled
Stop StringTime auto stop time. value must be of ISO-8601 format "HH:mm"
GetAutonomousDatabasesAutonomousDatabaseScheduledOperationDayOfWeek
- 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.
GetAutonomousDatabasesAutonomousDatabaseStandbyDb
- Lag
Time intIn Seconds 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 string Additional information about the current lifecycle state.
- State string
A filter to return only resources that match the given lifecycle state exactly.
- Time
Data stringGuard Role Changed 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- Lag
Time intIn Seconds 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 string Additional information about the current lifecycle state.
- State string
A filter to return only resources that match the given lifecycle state exactly.
- Time
Data stringGuard Role Changed 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag
Time IntegerIn Seconds 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 String Additional information about the current lifecycle state.
- state String
A filter to return only resources that match the given lifecycle state exactly.
- time
Data StringGuard Role Changed 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 StringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag
Time numberIn Seconds 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 string Additional information about the current lifecycle state.
- state string
A filter to return only resources that match the given lifecycle state exactly.
- time
Data stringGuard Role Changed 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 stringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag_
time_ intin_ seconds 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_ strguard_ role_ changed 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_ strrecovery_ role_ changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
- lag
Time NumberIn Seconds 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 String Additional information about the current lifecycle state.
- state String
A filter to return only resources that match the given lifecycle state exactly.
- time
Data StringGuard Role Changed 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 StringRecovery Role Changed The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
GetAutonomousDatabasesFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.