@Generated(value="OracleSDKGenerator", comments="API Version: 20190415") public final class CreateDbSystemDetails extends Object
Details required to create a DB System.
CreateDbSystemDetails.Builder
. This model distinguishes fields
that are null
because they are unset from fields that are explicitly set to null
. This is done in
the setter methods of the CreateDbSystemDetails.Builder
, which maintain a set of all explicitly set fields called
__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take
__explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).Modifier and Type | Class and Description |
---|---|
static class |
CreateDbSystemDetails.Builder |
Constructor and Description |
---|
CreateDbSystemDetails(String displayName,
String description,
String compartmentId,
String availabilityDomain,
String faultDomain,
String configurationId,
String shapeName,
String mysqlVersion,
String subnetId,
String adminUsername,
String adminPassword,
Integer dataStorageSizeInGBs,
String hostnameLabel,
String ipAddress,
Integer port,
Integer portX,
CreateBackupPolicyDetails backupPolicy,
CreateDbSystemSourceDetails source,
CreateMaintenanceDetails maintenance,
Map<String,String> freeformTags,
Map<String,Map<String,Object>> definedTags)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static CreateDbSystemDetails.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
String |
getAdminPassword()
The password for the administrative user.
|
String |
getAdminUsername()
The username for the administrative user.
|
String |
getAvailabilityDomain()
The Availability Domain where the primary instance should be located.
|
CreateBackupPolicyDetails |
getBackupPolicy() |
String |
getCompartmentId()
The OCID of the compartment.
|
String |
getConfigurationId()
The OCID of the Configuration to be used for this DB System.
|
Integer |
getDataStorageSizeInGBs()
Initial size of the data volume in GBs that will be created and attached.
|
Map<String,Map<String,Object>> |
getDefinedTags()
Usage of predefined tag keys.
|
String |
getDescription()
User-provided data about the DB System.
|
String |
getDisplayName()
The user-friendly name for the DB System.
|
String |
getFaultDomain()
The name of the Fault Domain the DB System is located in.
|
Map<String,String> |
getFreeformTags()
Simple key-value pair applied without any predefined name, type or scope.
|
String |
getHostnameLabel()
The hostname for the primary endpoint of the DB System.
|
String |
getIpAddress()
The IP address the DB System is configured to listen on.
|
CreateMaintenanceDetails |
getMaintenance() |
String |
getMysqlVersion()
The specific MySQL version identifier.
|
Integer |
getPort()
The port for primary endpoint of the DB System to listen on.
|
Integer |
getPortX()
The TCP network port on which X Plugin listens for connections.
|
String |
getShapeName()
The name of the shape.
|
CreateDbSystemSourceDetails |
getSource() |
String |
getSubnetId()
The OCID of the subnet the DB System is associated with.
|
int |
hashCode() |
CreateDbSystemDetails.Builder |
toBuilder() |
String |
toString() |
@ConstructorProperties(value={"displayName","description","compartmentId","availabilityDomain","faultDomain","configurationId","shapeName","mysqlVersion","subnetId","adminUsername","adminPassword","dataStorageSizeInGBs","hostnameLabel","ipAddress","port","portX","backupPolicy","source","maintenance","freeformTags","definedTags"}) @Deprecated public CreateDbSystemDetails(String displayName, String description, String compartmentId, String availabilityDomain, String faultDomain, String configurationId, String shapeName, String mysqlVersion, String subnetId, String adminUsername, String adminPassword, Integer dataStorageSizeInGBs, String hostnameLabel, String ipAddress, Integer port, Integer portX, CreateBackupPolicyDetails backupPolicy, CreateDbSystemSourceDetails source, CreateMaintenanceDetails maintenance, Map<String,String> freeformTags, Map<String,Map<String,Object>> definedTags)
public static CreateDbSystemDetails.Builder builder()
Create a new builder.
public CreateDbSystemDetails.Builder toBuilder()
public String getDisplayName()
The user-friendly name for the DB System. It does not have to be unique.
public String getDescription()
User-provided data about the DB System.
public String getCompartmentId()
The OCID of the compartment.
public String getAvailabilityDomain()
The Availability Domain where the primary instance should be located.
public String getFaultDomain()
The name of the Fault Domain the DB System is located in.
public String getConfigurationId()
The OCID of the Configuration to be used for this DB System.
public String getShapeName()
The name of the shape. The shape determines the resources allocated
listShapes
operation.public String getMysqlVersion()
The specific MySQL version identifier.
public String getSubnetId()
The OCID of the subnet the DB System is associated with.
public String getAdminUsername()
The username for the administrative user.
public String getAdminPassword()
The password for the administrative user. The password must be between 8 and 32 characters long, and must contain at least 1 numeric character, 1 lowercase character, 1 uppercase character, and 1 special (nonalphanumeric) character.
public Integer getDataStorageSizeInGBs()
Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape.
public String getHostnameLabel()
The hostname for the primary endpoint of the DB System. Used for DNS.
The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, \"dbsystem-1\" in FQDN \"dbsystem-1.subnet123.vcn1.oraclevcn.com\").
Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123.
public String getIpAddress()
The IP address the DB System is configured to listen on. A private IP address of your choice to assign to the primary endpoint of the DB System. Must be an available IP address within the subnet’s CIDR. If you don’t specify a value, Oracle automatically assigns a private IP address from the subnet. This should be a "dotted-quad" style IPv4 address.
public Integer getPort()
The port for primary endpoint of the DB System to listen on.
public Integer getPortX()
The TCP network port on which X Plugin listens for connections. This is the X Plugin equivalent of port.
public CreateBackupPolicyDetails getBackupPolicy()
public CreateDbSystemSourceDetails getSource()
public CreateMaintenanceDetails getMaintenance()
public Map<String,String> getFreeformTags()
Simple key-value pair applied without any predefined name, type or scope. Exists for cross-compatibility only.
Example: {\"bar-key\": \"value\"}
public Map<String,Map<String,Object>> getDefinedTags()
Usage of predefined tag keys. These predefined keys are scoped to namespaces.
Example: {\"foo-namespace\": {\"bar-key\": \"value\"}}
Copyright © 2016–2021. All rights reserved.