Show / Hide Table of Contents

Class TargetOverrideCollection

Collection of target override summary.

Inheritance
object
TargetOverrideCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class TargetOverrideCollection

Properties

Items

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

Array of target database override summary.

Remarks

Required

TargetsConformingCount

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

Number of target databases within the target database group that conform with the audit profile of the target database group.

Remarks

Required

TargetsCount

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

Number of target databases within the target database group.

Remarks

Required

TargetsOverridingCount

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

Number of target databases within the target database group that override the audit profile of the target database group.

Remarks

Required

TargetsOverridingOfflineMonthsCount

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

Number of target databases within the group that override the offline retention setting of the audit profile for the target database group.

Remarks

Required

TargetsOverridingOnlineMonthsCount

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

Number of target databases within the group that override the online retention setting of the audit profile for the target database group.

Remarks

Required

TargetsOverridingPaidUsageCount

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

Number of target databases within the group that override the paid usage setting of the audit profile for the target database group.

Remarks

Required

In this article
Back to top