Enum CreateAutonomousDatabaseBase.LicenseModel
- java.lang.Object
- 
- java.lang.Enum<CreateAutonomousDatabaseBase.LicenseModel>
- 
- com.oracle.bmc.database.model.CreateAutonomousDatabaseBase.LicenseModel
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<CreateAutonomousDatabaseBase.LicenseModel>
 - Enclosing class:
- CreateAutonomousDatabaseBase
 
 public static enum CreateAutonomousDatabaseBase.LicenseModel extends Enum<CreateAutonomousDatabaseBase.LicenseModel> implements BmcEnum The Oracle license model that applies to the Oracle Autonomous AI Database.Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle AI Database software licenses and the Oracle AI Database service. Note that when provisioning an Autonomous AI Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous AI Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter. This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier. 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BringYourOwnLicenseLicenseIncluded
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateAutonomousDatabaseBase.LicenseModelcreate(String key)StringgetValue()static CreateAutonomousDatabaseBase.LicenseModelvalueOf(String name)Returns the enum constant of this type with the specified name.static CreateAutonomousDatabaseBase.LicenseModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LicenseIncludedpublic static final CreateAutonomousDatabaseBase.LicenseModel LicenseIncluded 
 - 
BringYourOwnLicensepublic static final CreateAutonomousDatabaseBase.LicenseModel BringYourOwnLicense 
 
- 
 - 
Method Detail- 
valuespublic static CreateAutonomousDatabaseBase.LicenseModel[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CreateAutonomousDatabaseBase.LicenseModel c : CreateAutonomousDatabaseBase.LicenseModel.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CreateAutonomousDatabaseBase.LicenseModel valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
createpublic static CreateAutonomousDatabaseBase.LicenseModel create(String key) 
 
- 
 
-