Show / Hide Table of Contents

Class SoftwareUpdate

Details about the given software update.

Inheritance
object
SoftwareUpdate
BdsSoftwareUpdate
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
[JsonConverter(typeof(SoftwareUpdateModelConverter))]
public class SoftwareUpdate

Properties

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SoftwareUpdate.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
SoftwareUpdate.LifecycleStateEnum?

The lifecycle state of the software update.

Remarks

Required

SoftwareUpdateKey

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

Unique identifier of a given software update

Remarks

Required

SoftwareUpdateVersion

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

The version of the software update.

Remarks

Required

TimeReleased

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

The time when the software update was released.

Remarks

Required

In this article
Back to top