Show / Hide Table of Contents

Class RetentionSetting

Retention setting details of the model.

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

Properties

ArchiveAfterDays

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

Number of days after which the model will be archived.

Remarks

Required

CustomerNotificationType

Declaration
[JsonProperty(PropertyName = "customerNotificationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ModelSettingCustomerNotificationType? CustomerNotificationType { get; set; }
Property Value
Type Description
ModelSettingCustomerNotificationType?

Customer notification options on success/failure of archival, deletion events.

DeleteAfterDays

Declaration
[JsonProperty(PropertyName = "deleteAfterDays")]
public int? DeleteAfterDays { get; set; }
Property Value
Type Description
int?

Number of days after which the archived model will be deleted.

In this article
Back to top