Show / Hide Table of Contents

Class VmClusterUpdateDetails

Details specifying which maintenance update to apply to the VM Cluster and which action is to be performed by the maintenance update. Applies to Exadata Cloud@Customer instances only.

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

Properties

GiHomeId

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

The OCID of the Grid Infrastructure Home. Specify this field for out of place Grid Infrastructure Home patching and upgrade of the VM Cluster. This is mutually exclusive option to updateId and giSoftwareImageId which are used for in place patching and upgrade using Oracle supplied and custom images respectively.

GiSoftwareImageId

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

The OCID of a grid infrastructure software image. This is a database software image of the type GRID_IMAGE.

UpdateAction

Declaration
[JsonProperty(PropertyName = "updateAction")]
[JsonConverter(typeof(StringEnumConverter))]
public VmClusterUpdateDetails.UpdateActionEnum? UpdateAction { get; set; }
Property Value
Type Description
VmClusterUpdateDetails.UpdateActionEnum?

The update action to perform.

UpdateId

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

The OCID of the maintenance update.

UpdateMode

Declaration
[JsonProperty(PropertyName = "updateMode")]
[JsonConverter(typeof(StringEnumConverter))]
public VmClusterUpdateDetails.UpdateModeEnum? UpdateMode { get; set; }
Property Value
Type Description
VmClusterUpdateDetails.UpdateModeEnum?

The update mode to perform for OS Update.

In this article
Back to top