/** * Database Service API * The API for the Database Service. Use this API to manage resources such as databases and DB Systems. For more information, see [Overview of the Database Service](https://docs.oracle.com/iaas/Content/Database/Concepts/databaseoverview.htm). * OpenAPI spec version: 20160918 * Contact: sic_dbaas_cp_us_grp@oracle.com * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Describes the required parameters for the creation of an Autonomous Container Database. * */ export interface CreateAutonomousContainerDatabaseBase { /** * Customer Contacts. Setting this to an empty list removes all customer contacts. * */ "customerContacts"?: Array; /** * The OKV End Point Group name for the Autonomous Container Database. * */ "okvEndPointGroupName"?: string; /** * The display name for the Autonomous Container Database. */ "displayName": string; /** * **Deprecated.** The {@code DB_UNIQUE_NAME} value is set by Oracle Cloud Infrastructure. Do not specify a value for this parameter. Specifying a value for this field will cause Terraform operations to fail. * */ "dbUniqueName"?: string; /** * The Database name for the Autonomous Container Database. The name must be unique within the Cloud Autonomous VM Cluster, starting with an alphabetic character, followed by 1 to 7 alphanumeric characters. */ "dbName"?: string; /** * The service level agreement type of the Autonomous Container Database. The default is STANDARD. For an autonomous dataguard Autonomous Container Database, the specified Autonomous Exadata Infrastructure must be associated with a remote Autonomous Exadata Infrastructure. */ "serviceLevelAgreementType"?: CreateAutonomousContainerDatabaseBase.ServiceLevelAgreementType; /** * **No longer used.** This parameter is no longer used for Autonomous AI Database on dedicated Exadata infrasture. Specify a {@code cloudAutonomousVmClusterId} instead. Using this parameter will cause the operation to fail. * */ "autonomousExadataInfrastructureId"?: string; /** * The base version for the Autonomous Container Database. */ "dbVersion"?: string; /** * The Autonomous AI Database Software Image [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ "databaseSoftwareImageId"?: string; /** * *No longer used.* This parameter is no longer used for Autonomous AI Database on dedicated Exadata infrasture. Specify a {@code peerCloudAutonomousVmClusterId} instead. Using this parameter will cause the operation to fail. * */ "peerAutonomousExadataInfrastructureId"?: string; /** * The display name for the peer Autonomous Container Database. */ "peerAutonomousContainerDatabaseDisplayName"?: string; /** * The protection mode of this Autonomous Data Guard association. For more information, see * [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) * in the Oracle Data Guard documentation. * */ "protectionMode"?: CreateAutonomousContainerDatabaseBase.ProtectionMode; /** * The lag time for my preference based on data loss tolerance in seconds. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "fastStartFailOverLagLimitInSeconds"?: number; /** * Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association * */ "isAutomaticFailoverEnabled"?: boolean; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer cloud Autonomous Exadata VM Cluster. */ "peerCloudAutonomousVmClusterId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the peer Autonomous VM cluster for Autonomous Data Guard. Required to enable Data Guard. * */ "peerAutonomousVmClusterId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the standby Autonomous Container Database * will be created. * */ "peerAutonomousContainerDatabaseCompartmentId"?: string; "peerAutonomousContainerDatabaseBackupConfig"?: model.PeerAutonomousContainerDatabaseBackupConfig; /** * **Deprecated.** The {@code DB_UNIQUE_NAME} of the peer Autonomous Container Database in a Data Guard association is set by Oracle Cloud Infrastructure. Do not specify a value for this parameter. Specifying a value for this field will cause Terraform operations to fail. * */ "peerDbUniqueName"?: string; /** * The OCID of the Autonomous VM Cluster. */ "autonomousVmClusterId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Autonomous Exadata VM Cluster. */ "cloudAutonomousVmClusterId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Autonomous Container Database. */ "compartmentId"?: string; /** * Database Patch model preference. */ "patchModel": CreateAutonomousContainerDatabaseBase.PatchModel; "maintenanceWindowDetails"?: model.MaintenanceWindow; /** * The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. * This value represents the number of days before scheduled maintenance of the primary database. * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "standbyMaintenanceBufferInDays"?: number; /** * The next maintenance version preference. * */ "versionPreference"?: CreateAutonomousContainerDatabaseBase.VersionPreference; /** * Indicates if an automatic DST Time Zone file update is enabled for the Autonomous Container Database. If enabled along with Release Update, patching will be done in a Non-Rolling manner. */ "isDstFileUpdateEnabled"?: boolean; /** * 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](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). *

Example: {@code {\"Department\": \"Finance\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. * For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; "backupConfig"?: model.AutonomousContainerDatabaseBackupConfig; /** * The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations. */ "kmsKeyId"?: string; /** * The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous AI Database Serverless does not use key versions, hence is not applicable for Autonomous AI Database Serverless instances. * */ "kmsKeyVersionId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and {@code secretId} are required for Customer Managed Keys. */ "vaultId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault. */ "keyStoreId"?: string; "encryptionKeyLocationDetails"?: model.ExternalHsmEncryptionDetails | model.GoogleCloudProviderEncryptionKeyDetails | model.AzureEncryptionKeyDetails | model.AwsEncryptionKeyDetails; /** * The CPU value beyond which an Autonomous AI Database will be opened across multiple nodes. The default value of this attribute is 16 for OCPUs and 64 for ECPUs. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "dbSplitThreshold"?: number; /** * The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, 50%, 75%, and 100%, with 50% being the default option. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "vmFailoverReservation"?: number; /** * Determines whether an Autonomous AI Database must be opened across a minimum or maximum of nodes. By default, Minimum nodes is selected. */ "distributionAffinity"?: CreateAutonomousContainerDatabaseBase.DistributionAffinity; /** * Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users. */ "netServicesArchitecture"?: CreateAutonomousContainerDatabaseBase.NetServicesArchitecture; "source": string; } export declare namespace CreateAutonomousContainerDatabaseBase { enum ServiceLevelAgreementType { Standard = "STANDARD", AutonomousDataguard = "AUTONOMOUS_DATAGUARD" } enum ProtectionMode { MaximumAvailability = "MAXIMUM_AVAILABILITY", MaximumPerformance = "MAXIMUM_PERFORMANCE" } enum PatchModel { ReleaseUpdates = "RELEASE_UPDATES", ReleaseUpdateRevisions = "RELEASE_UPDATE_REVISIONS" } enum VersionPreference { NextReleaseUpdate = "NEXT_RELEASE_UPDATE", LatestReleaseUpdate = "LATEST_RELEASE_UPDATE" } enum DistributionAffinity { MinimumDistribution = "MINIMUM_DISTRIBUTION", MaximumDistribution = "MAXIMUM_DISTRIBUTION" } enum NetServicesArchitecture { Dedicated = "DEDICATED", Shared = "SHARED", Drcp = "DRCP" } function getJsonObj(obj: CreateAutonomousContainerDatabaseBase): object; function getDeserializedJsonObj(obj: CreateAutonomousContainerDatabaseBase): object; }