Oracle Cloud Infrastructure v0.20.0, May 31 23
Oracle Cloud Infrastructure v0.20.0, May 31 23
oci.Database.getAutonomousDatabase
Explore with Pulumi AI
This data source provides details about a specific Autonomous Database resource in Oracle Cloud Infrastructure Database service.
Gets the details of the specified Autonomous Database.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testAutonomousDatabase = Oci.Database.GetAutonomousDatabase.Invoke(new()
{
AutonomousDatabaseId = oci_database_autonomous_database.Test_autonomous_database.Id,
});
});
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.GetAutonomousDatabase(ctx, &database.GetAutonomousDatabaseArgs{
AutonomousDatabaseId: oci_database_autonomous_database.Test_autonomous_database.Id,
}, 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.GetAutonomousDatabaseArgs;
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 testAutonomousDatabase = DatabaseFunctions.getAutonomousDatabase(GetAutonomousDatabaseArgs.builder()
.autonomousDatabaseId(oci_database_autonomous_database.test_autonomous_database().id())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_autonomous_database = oci.Database.get_autonomous_database(autonomous_database_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousDatabase = oci.Database.getAutonomousDatabase({
autonomousDatabaseId: oci_database_autonomous_database.test_autonomous_database.id,
});
variables:
testAutonomousDatabase:
fn::invoke:
Function: oci:Database:getAutonomousDatabase
Arguments:
autonomousDatabaseId: ${oci_database_autonomous_database.test_autonomous_database.id}
Using getAutonomousDatabase
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 getAutonomousDatabase(args: GetAutonomousDatabaseArgs, opts?: InvokeOptions): Promise<GetAutonomousDatabaseResult>
function getAutonomousDatabaseOutput(args: GetAutonomousDatabaseOutputArgs, opts?: InvokeOptions): Output<GetAutonomousDatabaseResult>
def get_autonomous_database(autonomous_database_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAutonomousDatabaseResult
def get_autonomous_database_output(autonomous_database_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousDatabaseResult]
func GetAutonomousDatabase(ctx *Context, args *GetAutonomousDatabaseArgs, opts ...InvokeOption) (*GetAutonomousDatabaseResult, error)
func GetAutonomousDatabaseOutput(ctx *Context, args *GetAutonomousDatabaseOutputArgs, opts ...InvokeOption) GetAutonomousDatabaseResultOutput
> Note: This function is named GetAutonomousDatabase
in the Go SDK.
public static class GetAutonomousDatabase
{
public static Task<GetAutonomousDatabaseResult> InvokeAsync(GetAutonomousDatabaseArgs args, InvokeOptions? opts = null)
public static Output<GetAutonomousDatabaseResult> Invoke(GetAutonomousDatabaseInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAutonomousDatabaseResult> getAutonomousDatabase(GetAutonomousDatabaseArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Database/getAutonomousDatabase:getAutonomousDatabase
arguments:
# arguments dictionary
The following arguments are supported:
- Autonomous
Database stringId The database OCID.
- Autonomous
Database stringId The database OCID.
- autonomous
Database StringId The database OCID.
- autonomous
Database stringId The database OCID.
- autonomous_
database_ strid The database OCID.
- autonomous
Database StringId The database OCID.
getAutonomousDatabase Result
The following output properties are available:
- 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 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 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 OCID of the compartment.
- 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 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 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 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 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.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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.
- Infrastructure
Type string The infrastructure type this resource belongs to.
- 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 Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- Is
Dedicated bool True if the database uses dedicated Exadata infrastructure.
- Is
Free 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
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 Indicates if the Autonomous Database is a refreshable clone.
- 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 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
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 Database Local Standby Db> Autonomous Data Guard standby database details.
- Long
Term List<GetBackup Schedules 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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- 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 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 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 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
The current state of the Autonomous Database.
- 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 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 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 OCID of the compartment.
- 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 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 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 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 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.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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.
- Infrastructure
Type string The infrastructure type this resource belongs to.
- 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 Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- Is
Dedicated bool True if the database uses dedicated Exadata infrastructure.
- Is
Free 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
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 Indicates if the Autonomous Database is a refreshable clone.
- 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 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
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 Database Local Standby Db Autonomous Data Guard standby database details.
- Long
Term []GetBackup Schedules 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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- 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 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 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 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
The current state of the Autonomous Database.
- 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<GetAutonomous 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<GetAutonomous 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 OCID of the compartment.
- 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 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 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<GetAutonomous 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 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.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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.
- infrastructure
Type String The infrastructure type this resource belongs to.
- 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 Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is
Dedicated Boolean True if the database uses dedicated Exadata 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
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 Indicates if the Autonomous Database is a refreshable clone.
- 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 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
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 Local Standby Db> Autonomous Data Guard standby database details.
- long
Term List<GetBackup Schedules 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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- 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 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<GetAutonomous 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<GetAutonomous 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
The current state of the Autonomous Database.
- 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 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 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 OCID of the compartment.
- 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 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 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 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 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.
- {[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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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.
- infrastructure
Type string The infrastructure type this resource belongs to.
- 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 Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is
Dedicated boolean True if the database uses dedicated Exadata 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
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 Indicates if the Autonomous Database is a refreshable clone.
- 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 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
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 Database Local Standby Db[] Autonomous Data Guard standby database details.
- long
Term GetBackup Schedules 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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- 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 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 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 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
The current state of the Autonomous Database.
- 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 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 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 OCID of the compartment.
- 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 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 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 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 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.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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.
- infrastructure_
type str The infrastructure type this resource belongs to.
- 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 Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is_
dedicated bool True if the database uses dedicated Exadata infrastructure.
- is_
free_ 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_
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 Indicates if the Autonomous Database is a refreshable clone.
- 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 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_
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 Database Local Standby Db] Autonomous Data Guard standby database details.
- long_
term_ Getbackup_ schedules 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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- ncharacter_
set str The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- next_
long_ 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 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 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 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
The current state of the Autonomous Database.
- 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 OCID of the compartment.
- 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 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.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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.
- infrastructure
Type String The infrastructure type this resource belongs to.
- 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 Deprecated. Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
- is
Dedicated Boolean True if the database uses dedicated Exadata 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
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 Indicates if the Autonomous Database is a refreshable clone.
- 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
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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
- 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
The current state of the Autonomous Database.
- 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.
Supporting Types
GetAutonomousDatabaseApexDetail
- 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.
GetAutonomousDatabaseBackupConfig
- 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.
GetAutonomousDatabaseConnectionString
- 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 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 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
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 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 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.
GetAutonomousDatabaseConnectionStringProfile
- Consumer
Group string Consumer group used by the connection.
- Display
Name string The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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 The user-friendly name for the Autonomous Database. The name does not have to be unique.
- 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.
GetAutonomousDatabaseConnectionUrl
- 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.
GetAutonomousDatabaseCustomerContact
- 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.
GetAutonomousDatabaseKeyHistoryEntry
- 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
GetAutonomousDatabaseLocalStandbyDb
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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.
GetAutonomousDatabaseLongTermBackupSchedule
- 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.
GetAutonomousDatabaseRemoteDisasterRecoveryConfiguration
- 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.
GetAutonomousDatabaseScheduledOperation
- Day
Of List<GetWeeks 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 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 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 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 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"
GetAutonomousDatabaseScheduledOperationDayOfWeek
- 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.
GetAutonomousDatabaseStandbyDb
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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
The current state of the Autonomous Database.
- 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.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.