Show / Hide Table of Contents

Class DbSystemUpgradeSummary

It describes the various upgrade properties such as component, osversion, giversion for any VM DB system.

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

Properties

Component

Declaration
[Required(ErrorMessage = "Component is required.")]
[JsonProperty(PropertyName = "component")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DbSystemUpgradeSummary.ComponentEnum? Component { get; set; }
Property Value
Type Description
DbSystemUpgradeSummary.ComponentEnum?

The component on which upgrade is applicable. OS (Operating System upgrade), GI (Grid Infrastructure upgrade) or OS_GI (both Operating System and Grid Infrastructure upgrade)

Remarks

Required

GiVersion

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

The version of the grid infrastructure for this upgrade. This is only applicable for ASM based DbSystems

OsVersion

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

The version of the OS for this upgrade eg. Oracle Linux Server release 7.9

In this article
Back to top