Show / Hide Table of Contents

Class VersionSummary

A summary of the supported MySQL Versions families, and a list of their supported minor versions.

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

Properties

VersionFamily

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

A descriptive summary of a group of versions.

Versions

Declaration
[Required(ErrorMessage = "Versions is required.")]
[JsonProperty(PropertyName = "versions")]
public List<Version> Versions { get; set; }
Property Value
Type Description
List<Version>

The list of supported MySQL Versions.

Remarks

Required

In this article
Back to top