Show / Hide Table of Contents

Class InfrastructureTargetVersion

Infrastructure target version details.

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

Properties

TargetDbVersionHistoryEntry

Declaration
[Required(ErrorMessage = "TargetDbVersionHistoryEntry is required.")]
[JsonProperty(PropertyName = "targetDbVersionHistoryEntry")]
public List<string> TargetDbVersionHistoryEntry { get; set; }
Property Value
Type Description
List<string>

The history entry of the target system software version for the database server patching operation.

Remarks

Required

TargetResourceId

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

The OCID of the target Exadata Infrastructure resource that will receive the maintenance update.

TargetResourceType

Declaration
[JsonProperty(PropertyName = "targetResourceType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public InfrastructureTargetVersion.TargetResourceTypeEnum? TargetResourceType { get; set; }
Property Value
Type Description
InfrastructureTargetVersion.TargetResourceTypeEnum?

The resource type of the target Exadata infrastructure resource that will receive the system software update.

TargetStorageVersionHistoryEntry

Declaration
[Required(ErrorMessage = "TargetStorageVersionHistoryEntry is required.")]
[JsonProperty(PropertyName = "targetStorageVersionHistoryEntry")]
public List<string> TargetStorageVersionHistoryEntry { get; set; }
Property Value
Type Description
List<string>

The history entry of the target storage cell system software version for the storage cell patching operation.

Remarks

Required

In this article
Back to top