Show / Hide Table of Contents

Class SystemVersionSummary

List of compatible Exadata system versions for a given shape and GI version.

Inheritance
object
SystemVersionSummary
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 SystemVersionSummary

Properties

GiVersion

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

Grid Infrastructure version.

Remarks

Required

Shape

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

Exadata shape.

Remarks

Required

SystemVersions

Declaration
[JsonProperty(PropertyName = "systemVersions")]
public List<string> SystemVersions { get; set; }
Property Value
Type Description
List<string>

Compatible Exadata system versions for a given shape and GI version.

In this article
Back to top