Show / Hide Table of Contents

Class AppVersionSummary

The version details specific to an app.

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

Properties

EndOfSupport

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

The Autonomous Container Database version end of support date.

Remarks

Required

IsCertified

Declaration
[Required(ErrorMessage = "IsCertified is required.")]
[JsonProperty(PropertyName = "isCertified")]
public bool? IsCertified { get; set; }
Property Value
Type Description
bool?

Indicates if the image is certified.

Remarks

Required

ReleaseDate

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

The Autonomous Container Database version release date.

Remarks

Required

SupportedAppName

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

The name of the supported application.

Remarks

Required

In this article
Back to top