Show / Hide Table of Contents

Class TablespaceStorageSize

Storage size.

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

Properties

Size

Declaration
[Required(ErrorMessage = "Size is required.")]
[JsonProperty(PropertyName = "size")]
public decimal? Size { get; set; }
Property Value
Type Description
decimal?

Storage size number in bytes, kilobytes, megabytes, gigabytes, or terabytes.

Remarks

Required

Unit

Declaration
[JsonProperty(PropertyName = "unit")]
[JsonConverter(typeof(StringEnumConverter))]
public TablespaceStorageSize.UnitEnum? Unit { get; set; }
Property Value
Type Description
TablespaceStorageSize.UnitEnum?

Storage size unit: bytes, kilobytes, megabytes, gigabytes, or terabytes.

In this article
Back to top