Show / Hide Table of Contents

Class DbSystemDetails

Information about the database system associated with a backup.

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

Properties

ConfigId

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

OCID of the configuration that was applied on the source dbSystem at the time when backup was taken.

DbVersion

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

The major and minor versions of the database system software.

Remarks

Required

SystemType

Declaration
[Required(ErrorMessage = "SystemType is required.")]
[JsonProperty(PropertyName = "systemType")]
[JsonConverter(typeof(StringEnumConverter))]
public DbSystem.SystemTypeEnum? SystemType { get; set; }
Property Value
Type Description
DbSystem.SystemTypeEnum?

Type of the database system.

Remarks

Required

In this article
Back to top