Show / Hide Table of Contents

Class AdbUpdateDetail

Details to update an Oracle Autonomous Database.

Inheritance
object
AdbUpdateDetail
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DifService.Models
Assembly: OCI.DotNetSDK.Dif.dll
Syntax
public class AdbUpdateDetail

Properties

DataStorageSizeInTBs

Declaration
[JsonProperty(PropertyName = "dataStorageSizeInTBs")]
public int? DataStorageSizeInTBs { get; set; }
Property Value
Type Description
int?

The size, in terabytes, of the data volume that will be created and attached to the database.

Ecpu

Declaration
[JsonProperty(PropertyName = "ecpu")]
public int? Ecpu { get; set; }
Property Value
Type Description
int?

The compute amount (ECPUs) available to the database.

InstanceId

Declaration
[Required(ErrorMessage = "InstanceId is required.")]
[JsonProperty(PropertyName = "instanceId")]
public string InstanceId { get; set; }
Property Value
Type Description
string

Id of the existing ADB instance.

Remarks

Required

IsMtlsConnectionRequired

Declaration
[JsonProperty(PropertyName = "isMtlsConnectionRequired")]
public bool? IsMtlsConnectionRequired { get; set; }
Property Value
Type Description
bool?

Specifies if the Autonomous Database requires mTLS connections.

In this article
Back to top