Show / Hide Table of Contents

Class RunDataPatchDetails

Details for running datapatch operation on a database and its pluggable databases

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

Properties

Action

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

The action to perform on run database dataPatch operation

DataPatchOptions

Declaration
[JsonProperty(PropertyName = "dataPatchOptions")]
public DataPatchOptions DataPatchOptions { get; set; }
Property Value
Type Description
DataPatchOptions

PluggableDatabases

Declaration
[JsonProperty(PropertyName = "pluggableDatabases")]
public List<string> PluggableDatabases { get; set; }
Property Value
Type Description
List<string>

List of Pluggable Database OCIDs to run datapatch on. The datapatch would run on the database first and then the given pluggable databases.

In this article
Back to top