We recommend using Azure Native.
Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi
azure.oracle.getAutonomousDatabase
Explore with Pulumi AI
Use this data source to access information about an existing Autonomous Database.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.oracle.getAutonomousDatabase({
    name: "existing",
    resourceGroupName: "existing",
});
export const id = example.then(example => example.id);
import pulumi
import pulumi_azure as azure
example = azure.oracle.get_autonomous_database(name="existing",
    resource_group_name="existing")
pulumi.export("id", example.id)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/oracle"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := oracle.LookupAutonomousDatabase(ctx, &oracle.LookupAutonomousDatabaseArgs{
			Name:              "existing",
			ResourceGroupName: "existing",
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("id", example.Id)
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = Azure.Oracle.GetAutonomousDatabase.Invoke(new()
    {
        Name = "existing",
        ResourceGroupName = "existing",
    });
    return new Dictionary<string, object?>
    {
        ["id"] = example.Apply(getAutonomousDatabaseResult => getAutonomousDatabaseResult.Id),
    };
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.oracle.OracleFunctions;
import com.pulumi.azure.oracle.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 example = OracleFunctions.getAutonomousDatabase(GetAutonomousDatabaseArgs.builder()
            .name("existing")
            .resourceGroupName("existing")
            .build());
        ctx.export("id", example.applyValue(getAutonomousDatabaseResult -> getAutonomousDatabaseResult.id()));
    }
}
variables:
  example:
    fn::invoke:
      function: azure:oracle:getAutonomousDatabase
      arguments:
        name: existing
        resourceGroupName: existing
outputs:
  id: ${example.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(name: Optional[str] = None,
                            resource_group_name: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetAutonomousDatabaseResult
def get_autonomous_database_output(name: Optional[pulumi.Input[str]] = None,
                            resource_group_name: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetAutonomousDatabaseResult]func LookupAutonomousDatabase(ctx *Context, args *LookupAutonomousDatabaseArgs, opts ...InvokeOption) (*LookupAutonomousDatabaseResult, error)
func LookupAutonomousDatabaseOutput(ctx *Context, args *LookupAutonomousDatabaseOutputArgs, opts ...InvokeOption) LookupAutonomousDatabaseResultOutput> Note: This function is named LookupAutonomousDatabase 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)
public static Output<GetAutonomousDatabaseResult> getAutonomousDatabase(GetAutonomousDatabaseArgs args, InvokeOptions options)
fn::invoke:
  function: azure:oracle/getAutonomousDatabase:getAutonomousDatabase
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Name string
- The name of this Autonomous Database.
- ResourceGroup stringName 
- The name of the Resource Group where the Autonomous Database exists.
- Name string
- The name of this Autonomous Database.
- ResourceGroup stringName 
- The name of the Resource Group where the Autonomous Database exists.
- name String
- The name of this Autonomous Database.
- resourceGroup StringName 
- The name of the Resource Group where the Autonomous Database exists.
- name string
- The name of this Autonomous Database.
- resourceGroup stringName 
- The name of the Resource Group where the Autonomous Database exists.
- name str
- The name of this Autonomous Database.
- resource_group_ strname 
- The name of the Resource Group where the Autonomous Database exists.
- name String
- The name of this Autonomous Database.
- resourceGroup StringName 
- The name of the Resource Group where the Autonomous Database exists.
getAutonomousDatabase Result
The following output properties are available:
- ActualUsed doubleData Storage Size In Tbs 
- The current amount of storage in use for user and system data, in terabytes (TB).
- AllocatedStorage 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 dataStorageSizeInTBsvalue. You can compare this value to theactualUsedDataStorageSizeInTBsvalue to determine if a manual shrink operation is appropriate for your allocated storage.
- AllowedIps List<int>
- The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsedis 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer calledstandbywhitelistedips.
- AutoScaling boolEnabled 
- Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- AutoScaling boolFor Storage Enabled 
- Indicates if auto scaling is enabled for the Autonomous Database storage.
- AutonomousDatabase stringId 
- The database OCID.
- AvailableUpgrade List<string>Versions 
- List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- BackupRetention intPeriod In Days 
- Retention period, in days, for backups.
- CharacterSet string
- The character set for the autonomous database.
- ComputeCount double
- The compute amount (CPUs) available to the database.
- CpuCore intCount 
- The number of CPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Database on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
- DataStorage intSize In Gbs 
- The quantity of data in the database, in gigabytes.
- DataStorage intSize In Tbs 
- The maximum storage that can be allocated for the database, in terabytes.
- DbNode intStorage Size In Gbs 
- The DB node storage size in, in gigabytes.
- DbVersion string
- A valid Oracle Database version for Autonomous Database.
- DisplayName string
- The user-friendly name for the Autonomous Database. The name does not have to be unique.
- FailedData intRecovery In Seconds 
- Indicates the number of seconds of data loss for a Data Guard failover.
- Id string
- The provider-assigned unique ID for this managed resource.
- InMemory intArea In Gbs 
- The area assigned to In-Memory tables in Autonomous Database.
- LifecycleDetails string
- Information about the current lifecycle state.
- LocalAdg intAuto Failover Max Data Loss Limit 
- Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
- LocalData boolGuard 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.
- Location string
- The Azure Region where the Autonomous Database exists.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU.
- MtlsConnection boolRequired 
- Specifies if the Autonomous Database requires mTLS connections.
- Name string
- NationalCharacter stringSet 
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- NextLong stringTerm Backup Time Stamp 
- The date and time when the next long-term backup would be created.
- OciUrl string
- The URL of the resource in the OCI console.
- Ocid string
- The OCID of the autonomous database.
- PeerDb stringId 
- PeerDb 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 Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
- Preview bool
- Indicates if the Autonomous Database version is a preview version.
- PreviewVersion boolWith Service Terms Accepted 
- Indicates if the Autonomous Database version is a preview version with service terms accepted.
- PrivateEndpoint string
- The private endpoint for the resource.
- PrivateEndpoint stringIp 
- The private endpoint Ip address for the resource.
- PrivateEndpoint stringLabel 
- The private endpoint label for the resource.
- ProvisionableCpuses List<int>
- An array of CPU values that an Autonomous Database can be scaled to.
- RemoteData boolGuard 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.
- ResourceGroup stringName 
- ServiceConsole stringUrl 
- The URL of the Service Console for the Autonomous Database.
- SqlWeb stringDeveloper Url 
- The URL of the SQL web developer.
- SubnetId string
- The OCID of the subnet the resource is associated with.
- SupportedRegions 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.
- Dictionary<string, string>
- A mapping of tags assigned to the Autonomous Database.
- TimeCreated string
- The date and time the Autonomous Database was created.
- TimeData 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.
- TimeDeletion 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.
- TimeLocal stringData Guard Enabled On 
- 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.
- TimeMaintenance stringBegin 
- The date and time when maintenance will begin.
- TimeMaintenance stringEnd 
- The date and time when maintenance will end.
- TimeOf stringLast Failover 
- The timestamp of the last failover operation.
- TimeOf stringLast Refresh 
- The date and time when last refresh happened.
- TimeOf 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.
- TimeOf stringLast Switchover 
- The timestamp of the last switchover operation for the Autonomous Database.
- TimeReclamation 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.
- UsedData intStorage Size In Gbs 
- The storage space consumed by Autonomous Database in GBs.
- UsedData intStorage Size In Tbs 
- The amount of storage that has been used, in terabytes.
- VirtualNetwork stringId 
- The ID to an Azure Resource Manager vnet resource.
- ActualUsed float64Data Storage Size In Tbs 
- The current amount of storage in use for user and system data, in terabytes (TB).
- AllocatedStorage 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 dataStorageSizeInTBsvalue. You can compare this value to theactualUsedDataStorageSizeInTBsvalue to determine if a manual shrink operation is appropriate for your allocated storage.
- AllowedIps []int
- The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsedis 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer calledstandbywhitelistedips.
- AutoScaling boolEnabled 
- Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- AutoScaling boolFor Storage Enabled 
- Indicates if auto scaling is enabled for the Autonomous Database storage.
- AutonomousDatabase stringId 
- The database OCID.
- AvailableUpgrade []stringVersions 
- List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- BackupRetention intPeriod In Days 
- Retention period, in days, for backups.
- CharacterSet string
- The character set for the autonomous database.
- ComputeCount float64
- The compute amount (CPUs) available to the database.
- CpuCore intCount 
- The number of CPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Database on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
- DataStorage intSize In Gbs 
- The quantity of data in the database, in gigabytes.
- DataStorage intSize In Tbs 
- The maximum storage that can be allocated for the database, in terabytes.
- DbNode intStorage Size In Gbs 
- The DB node storage size in, in gigabytes.
- DbVersion string
- A valid Oracle Database version for Autonomous Database.
- DisplayName string
- The user-friendly name for the Autonomous Database. The name does not have to be unique.
- FailedData intRecovery In Seconds 
- Indicates the number of seconds of data loss for a Data Guard failover.
- Id string
- The provider-assigned unique ID for this managed resource.
- InMemory intArea In Gbs 
- The area assigned to In-Memory tables in Autonomous Database.
- LifecycleDetails string
- Information about the current lifecycle state.
- LocalAdg intAuto Failover Max Data Loss Limit 
- Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
- LocalData boolGuard 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.
- Location string
- The Azure Region where the Autonomous Database exists.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU.
- MtlsConnection boolRequired 
- Specifies if the Autonomous Database requires mTLS connections.
- Name string
- NationalCharacter stringSet 
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- NextLong stringTerm Backup Time Stamp 
- The date and time when the next long-term backup would be created.
- OciUrl string
- The URL of the resource in the OCI console.
- Ocid string
- The OCID of the autonomous database.
- PeerDb stringId 
- PeerDb []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 Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
- Preview bool
- Indicates if the Autonomous Database version is a preview version.
- PreviewVersion boolWith Service Terms Accepted 
- Indicates if the Autonomous Database version is a preview version with service terms accepted.
- PrivateEndpoint string
- The private endpoint for the resource.
- PrivateEndpoint stringIp 
- The private endpoint Ip address for the resource.
- PrivateEndpoint stringLabel 
- The private endpoint label for the resource.
- ProvisionableCpuses []int
- An array of CPU values that an Autonomous Database can be scaled to.
- RemoteData boolGuard 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.
- ResourceGroup stringName 
- ServiceConsole stringUrl 
- The URL of the Service Console for the Autonomous Database.
- SqlWeb stringDeveloper Url 
- The URL of the SQL web developer.
- SubnetId string
- The OCID of the subnet the resource is associated with.
- SupportedRegions []stringTo Clone Tos 
- The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- map[string]string
- A mapping of tags assigned to the Autonomous Database.
- TimeCreated string
- The date and time the Autonomous Database was created.
- TimeData 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.
- TimeDeletion 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.
- TimeLocal stringData Guard Enabled On 
- 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.
- TimeMaintenance stringBegin 
- The date and time when maintenance will begin.
- TimeMaintenance stringEnd 
- The date and time when maintenance will end.
- TimeOf stringLast Failover 
- The timestamp of the last failover operation.
- TimeOf stringLast Refresh 
- The date and time when last refresh happened.
- TimeOf 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.
- TimeOf stringLast Switchover 
- The timestamp of the last switchover operation for the Autonomous Database.
- TimeReclamation 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.
- UsedData intStorage Size In Gbs 
- The storage space consumed by Autonomous Database in GBs.
- UsedData intStorage Size In Tbs 
- The amount of storage that has been used, in terabytes.
- VirtualNetwork stringId 
- The ID to an Azure Resource Manager vnet resource.
- actualUsed DoubleData Storage Size In Tbs 
- The current amount of storage in use for user and system data, in terabytes (TB).
- allocatedStorage 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 dataStorageSizeInTBsvalue. You can compare this value to theactualUsedDataStorageSizeInTBsvalue to determine if a manual shrink operation is appropriate for your allocated storage.
- allowedIps List<Integer>
- The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsedis 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer calledstandbywhitelistedips.
- autoScaling BooleanEnabled 
- Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- autoScaling BooleanFor Storage Enabled 
- Indicates if auto scaling is enabled for the Autonomous Database storage.
- autonomousDatabase StringId 
- The database OCID.
- availableUpgrade List<String>Versions 
- List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- backupRetention IntegerPeriod In Days 
- Retention period, in days, for backups.
- characterSet String
- The character set for the autonomous database.
- computeCount Double
- The compute amount (CPUs) available to the database.
- cpuCore IntegerCount 
- The number of CPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Database on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
- dataStorage IntegerSize In Gbs 
- The quantity of data in the database, in gigabytes.
- dataStorage IntegerSize In Tbs 
- The maximum storage that can be allocated for the database, in terabytes.
- dbNode IntegerStorage Size In Gbs 
- The DB node storage size in, in gigabytes.
- dbVersion String
- A valid Oracle Database version for Autonomous Database.
- displayName String
- The user-friendly name for the Autonomous Database. The name does not have to be unique.
- failedData IntegerRecovery In Seconds 
- Indicates the number of seconds of data loss for a Data Guard failover.
- id String
- The provider-assigned unique ID for this managed resource.
- inMemory IntegerArea In Gbs 
- The area assigned to In-Memory tables in Autonomous Database.
- lifecycleDetails String
- Information about the current lifecycle state.
- localAdg IntegerAuto Failover Max Data Loss Limit 
- Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
- localData BooleanGuard 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.
- location String
- The Azure Region where the Autonomous Database exists.
- memoryPer IntegerOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU.
- mtlsConnection BooleanRequired 
- Specifies if the Autonomous Database requires mTLS connections.
- name String
- nationalCharacter StringSet 
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- nextLong StringTerm Backup Time Stamp 
- The date and time when the next long-term backup would be created.
- ociUrl String
- The URL of the resource in the OCI console.
- ocid String
- The OCID of the autonomous database.
- peerDb StringId 
- peerDb 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 Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
- preview Boolean
- Indicates if the Autonomous Database version is a preview version.
- previewVersion BooleanWith Service Terms Accepted 
- Indicates if the Autonomous Database version is a preview version with service terms accepted.
- privateEndpoint String
- The private endpoint for the resource.
- privateEndpoint StringIp 
- The private endpoint Ip address for the resource.
- privateEndpoint StringLabel 
- The private endpoint label for the resource.
- provisionableCpuses List<Integer>
- An array of CPU values that an Autonomous Database can be scaled to.
- remoteData BooleanGuard 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.
- resourceGroup StringName 
- serviceConsole StringUrl 
- The URL of the Service Console for the Autonomous Database.
- sqlWeb StringDeveloper Url 
- The URL of the SQL web developer.
- subnetId String
- The OCID of the subnet the resource is associated with.
- supportedRegions 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.
- Map<String,String>
- A mapping of tags assigned to the Autonomous Database.
- timeCreated String
- The date and time the Autonomous Database was created.
- timeData 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.
- timeDeletion 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.
- timeLocal StringData Guard Enabled On 
- 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.
- timeMaintenance StringBegin 
- The date and time when maintenance will begin.
- timeMaintenance StringEnd 
- The date and time when maintenance will end.
- timeOf StringLast Failover 
- The timestamp of the last failover operation.
- timeOf StringLast Refresh 
- The date and time when last refresh happened.
- timeOf 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.
- timeOf StringLast Switchover 
- The timestamp of the last switchover operation for the Autonomous Database.
- timeReclamation 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.
- usedData IntegerStorage Size In Gbs 
- The storage space consumed by Autonomous Database in GBs.
- usedData IntegerStorage Size In Tbs 
- The amount of storage that has been used, in terabytes.
- virtualNetwork StringId 
- The ID to an Azure Resource Manager vnet resource.
- actualUsed numberData Storage Size In Tbs 
- The current amount of storage in use for user and system data, in terabytes (TB).
- allocatedStorage 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 dataStorageSizeInTBsvalue. You can compare this value to theactualUsedDataStorageSizeInTBsvalue to determine if a manual shrink operation is appropriate for your allocated storage.
- allowedIps number[]
- The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsedis 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer calledstandbywhitelistedips.
- autoScaling booleanEnabled 
- Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- autoScaling booleanFor Storage Enabled 
- Indicates if auto scaling is enabled for the Autonomous Database storage.
- autonomousDatabase stringId 
- The database OCID.
- availableUpgrade string[]Versions 
- List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- backupRetention numberPeriod In Days 
- Retention period, in days, for backups.
- characterSet string
- The character set for the autonomous database.
- computeCount number
- The compute amount (CPUs) available to the database.
- cpuCore numberCount 
- The number of CPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Database on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
- dataStorage numberSize In Gbs 
- The quantity of data in the database, in gigabytes.
- dataStorage numberSize In Tbs 
- The maximum storage that can be allocated for the database, in terabytes.
- dbNode numberStorage Size In Gbs 
- The DB node storage size in, in gigabytes.
- dbVersion string
- A valid Oracle Database version for Autonomous Database.
- displayName string
- The user-friendly name for the Autonomous Database. The name does not have to be unique.
- failedData numberRecovery In Seconds 
- Indicates the number of seconds of data loss for a Data Guard failover.
- id string
- The provider-assigned unique ID for this managed resource.
- inMemory numberArea In Gbs 
- The area assigned to In-Memory tables in Autonomous Database.
- lifecycleDetails string
- Information about the current lifecycle state.
- localAdg numberAuto Failover Max Data Loss Limit 
- Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
- localData booleanGuard 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.
- location string
- The Azure Region where the Autonomous Database exists.
- memoryPer numberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU.
- mtlsConnection booleanRequired 
- Specifies if the Autonomous Database requires mTLS connections.
- name string
- nationalCharacter stringSet 
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- nextLong stringTerm Backup Time Stamp 
- The date and time when the next long-term backup would be created.
- ociUrl string
- The URL of the resource in the OCI console.
- ocid string
- The OCID of the autonomous database.
- peerDb stringId 
- peerDb 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 Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
- preview boolean
- Indicates if the Autonomous Database version is a preview version.
- previewVersion booleanWith Service Terms Accepted 
- Indicates if the Autonomous Database version is a preview version with service terms accepted.
- privateEndpoint string
- The private endpoint for the resource.
- privateEndpoint stringIp 
- The private endpoint Ip address for the resource.
- privateEndpoint stringLabel 
- The private endpoint label for the resource.
- provisionableCpuses number[]
- An array of CPU values that an Autonomous Database can be scaled to.
- remoteData booleanGuard 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.
- resourceGroup stringName 
- serviceConsole stringUrl 
- The URL of the Service Console for the Autonomous Database.
- sqlWeb stringDeveloper Url 
- The URL of the SQL web developer.
- subnetId string
- The OCID of the subnet the resource is associated with.
- supportedRegions string[]To Clone Tos 
- The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
- {[key: string]: string}
- A mapping of tags assigned to the Autonomous Database.
- timeCreated string
- The date and time the Autonomous Database was created.
- timeData 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.
- timeDeletion 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.
- timeLocal stringData Guard Enabled On 
- 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.
- timeMaintenance stringBegin 
- The date and time when maintenance will begin.
- timeMaintenance stringEnd 
- The date and time when maintenance will end.
- timeOf stringLast Failover 
- The timestamp of the last failover operation.
- timeOf stringLast Refresh 
- The date and time when last refresh happened.
- timeOf 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.
- timeOf stringLast Switchover 
- The timestamp of the last switchover operation for the Autonomous Database.
- timeReclamation 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.
- usedData numberStorage Size In Gbs 
- The storage space consumed by Autonomous Database in GBs.
- usedData numberStorage Size In Tbs 
- The amount of storage that has been used, in terabytes.
- virtualNetwork stringId 
- The ID to an Azure Resource Manager vnet resource.
- actual_used_ floatdata_ storage_ size_ in_ tbs 
- The current amount of storage in use for user and system data, in terabytes (TB).
- 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 dataStorageSizeInTBsvalue. You can compare this value to theactualUsedDataStorageSizeInTBsvalue to determine if a manual shrink operation is appropriate for your allocated storage.
- allowed_ips Sequence[int]
- The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsedis 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer calledstandbywhitelistedips.
- auto_scaling_ boolenabled 
- Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- auto_scaling_ boolfor_ storage_ enabled 
- Indicates if auto scaling is enabled for the Autonomous Database storage.
- autonomous_database_ strid 
- The database OCID.
- 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_retention_ intperiod_ in_ days 
- Retention period, in days, for backups.
- character_set str
- The character set for the autonomous database.
- compute_count float
- The compute amount (CPUs) available to the database.
- cpu_core_ intcount 
- The number of CPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Database on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
- data_storage_ intsize_ in_ gbs 
- The quantity of data in the database, in gigabytes.
- data_storage_ intsize_ in_ tbs 
- The maximum storage that can be allocated for the database, in terabytes.
- db_node_ intstorage_ size_ in_ gbs 
- The DB node storage size in, in gigabytes.
- db_version str
- A valid Oracle Database version for Autonomous Database.
- 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.
- id str
- The provider-assigned unique ID for this managed resource.
- in_memory_ intarea_ in_ gbs 
- The area assigned to In-Memory tables in Autonomous Database.
- lifecycle_details str
- Information about the current lifecycle state.
- local_adg_ intauto_ failover_ max_ data_ loss_ limit 
- Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
- local_data_ boolguard_ 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.
- location str
- The Azure Region where the Autonomous Database exists.
- memory_per_ intoracle_ compute_ unit_ in_ gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU.
- mtls_connection_ boolrequired 
- Specifies if the Autonomous Database requires mTLS connections.
- name str
- national_character_ strset 
- 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.
- oci_url str
- The URL of the resource in the OCI console.
- ocid str
- The OCID of the autonomous database.
- peer_db_ strid 
- 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 Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
- preview bool
- Indicates if the Autonomous Database version is a preview version.
- preview_version_ boolwith_ service_ terms_ accepted 
- Indicates if the Autonomous Database version is a preview version with service terms accepted.
- 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[int]
- An array of CPU values that an Autonomous Database can be scaled to.
- remote_data_ boolguard_ 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.
- resource_group_ strname 
- service_console_ strurl 
- The URL of the Service Console for the Autonomous Database.
- sql_web_ strdeveloper_ url 
- The URL of the SQL web developer.
- 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.
- Mapping[str, str]
- A mapping of tags assigned to the Autonomous Database.
- 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_local_ strdata_ guard_ enabled_ on 
- 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_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.
- 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.
- virtual_network_ strid 
- The ID to an Azure Resource Manager vnet resource.
- actualUsed NumberData Storage Size In Tbs 
- The current amount of storage in use for user and system data, in terabytes (TB).
- allocatedStorage 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 dataStorageSizeInTBsvalue. You can compare this value to theactualUsedDataStorageSizeInTBsvalue to determine if a manual shrink operation is appropriate for your allocated storage.
- allowedIps List<Number>
- The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If arePrimaryWhitelistedIpsUsedis 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer calledstandbywhitelistedips.
- autoScaling BooleanEnabled 
- Indicates if auto scaling is enabled for the Autonomous Database CPU core count.
- autoScaling BooleanFor Storage Enabled 
- Indicates if auto scaling is enabled for the Autonomous Database storage.
- autonomousDatabase StringId 
- The database OCID.
- availableUpgrade List<String>Versions 
- List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
- backupRetention NumberPeriod In Days 
- Retention period, in days, for backups.
- characterSet String
- The character set for the autonomous database.
- computeCount Number
- The compute amount (CPUs) available to the database.
- cpuCore NumberCount 
- The number of CPU cores to be made available to the database. When the ECPU is selected, the value for cpuCoreCount is 0. For Autonomous Database on Dedicated Exadata infrastructure, the maximum number of cores is determined by the infrastructure shape. See Characteristics of Infrastructure Shapes for shape details.
- dataStorage NumberSize In Gbs 
- The quantity of data in the database, in gigabytes.
- dataStorage NumberSize In Tbs 
- The maximum storage that can be allocated for the database, in terabytes.
- dbNode NumberStorage Size In Gbs 
- The DB node storage size in, in gigabytes.
- dbVersion String
- A valid Oracle Database version for Autonomous Database.
- displayName String
- The user-friendly name for the Autonomous Database. The name does not have to be unique.
- failedData NumberRecovery In Seconds 
- Indicates the number of seconds of data loss for a Data Guard failover.
- id String
- The provider-assigned unique ID for this managed resource.
- inMemory NumberArea In Gbs 
- The area assigned to In-Memory tables in Autonomous Database.
- lifecycleDetails String
- Information about the current lifecycle state.
- localAdg NumberAuto Failover Max Data Loss Limit 
- Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
- localData BooleanGuard 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.
- location String
- The Azure Region where the Autonomous Database exists.
- memoryPer NumberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) enabled per ECPU or OCPU.
- mtlsConnection BooleanRequired 
- Specifies if the Autonomous Database requires mTLS connections.
- name String
- nationalCharacter StringSet 
- The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
- nextLong StringTerm Backup Time Stamp 
- The date and time when the next long-term backup would be created.
- ociUrl String
- The URL of the resource in the OCI console.
- ocid String
- The OCID of the autonomous database.
- peerDb StringId 
- peerDb 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 Autonomous Database Serverless instances, standby databases located in the same region as the source primary database do not have OCIDs.
- preview Boolean
- Indicates if the Autonomous Database version is a preview version.
- previewVersion BooleanWith Service Terms Accepted 
- Indicates if the Autonomous Database version is a preview version with service terms accepted.
- privateEndpoint String
- The private endpoint for the resource.
- privateEndpoint StringIp 
- The private endpoint Ip address for the resource.
- privateEndpoint StringLabel 
- The private endpoint label for the resource.
- provisionableCpuses List<Number>
- An array of CPU values that an Autonomous Database can be scaled to.
- remoteData BooleanGuard 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.
- resourceGroup StringName 
- serviceConsole StringUrl 
- The URL of the Service Console for the Autonomous Database.
- sqlWeb StringDeveloper Url 
- The URL of the SQL web developer.
- subnetId String
- The OCID of the subnet the resource is associated with.
- supportedRegions 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.
- Map<String>
- A mapping of tags assigned to the Autonomous Database.
- timeCreated String
- The date and time the Autonomous Database was created.
- timeData 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.
- timeDeletion 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.
- timeLocal StringData Guard Enabled On 
- 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.
- timeMaintenance StringBegin 
- The date and time when maintenance will begin.
- timeMaintenance StringEnd 
- The date and time when maintenance will end.
- timeOf StringLast Failover 
- The timestamp of the last failover operation.
- timeOf StringLast Refresh 
- The date and time when last refresh happened.
- timeOf 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.
- timeOf StringLast Switchover 
- The timestamp of the last switchover operation for the Autonomous Database.
- timeReclamation 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.
- usedData NumberStorage Size In Gbs 
- The storage space consumed by Autonomous Database in GBs.
- usedData NumberStorage Size In Tbs 
- The amount of storage that has been used, in terabytes.
- virtualNetwork StringId 
- The ID to an Azure Resource Manager vnet resource.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.