Show / Hide Table of Contents

Class PatchDetails

The details about what actions to perform and using what patch to the specified target. This is part of an update request that is applied to a version field on the target such as DB system, Database Home, etc.

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

Properties

Action

Declaration
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(StringEnumConverter))]
public PatchDetails.ActionEnum? Action { get; set; }
Property Value
Type Description
PatchDetails.ActionEnum?

The action to perform on the patch.

DatabaseSoftwareImageId

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

The OCID of the database software image.

PatchId

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

The OCID of the patch.

In this article
Back to top