Show / Hide Table of Contents

Class DatabaseInformation

Database Information.

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

Properties

DataSizeInMBs

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

The total size of the database in megabytes.

DatabaseName

Declaration
[JsonProperty(PropertyName = "databaseName")]
public string DatabaseName { get; set; }
Property Value
Type Description
string

The database name.

DatabaseVersion

Declaration
[JsonProperty(PropertyName = "databaseVersion")]
public string DatabaseVersion { get; set; }
Property Value
Type Description
string

The database version.

In this article
Back to top