Show / Hide Table of Contents

Class RetentionOperationDetails

Retention operation details for the model.

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

Properties

ArchiveState

Declaration
[Required(ErrorMessage = "ArchiveState is required.")]
[JsonProperty(PropertyName = "archiveState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ModelSettingActionState? ArchiveState { get; set; }
Property Value
Type Description
ModelSettingActionState?

The archival status of model.

Remarks

Required

ArchiveStateDetails

Declaration
[Required(ErrorMessage = "ArchiveStateDetails is required.")]
[JsonProperty(PropertyName = "archiveStateDetails")]
public string ArchiveStateDetails { get; set; }
Property Value
Type Description
string

The archival state details of the model.

Remarks

Required

DeleteState

Declaration
[Required(ErrorMessage = "DeleteState is required.")]
[JsonProperty(PropertyName = "deleteState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ModelSettingActionState? DeleteState { get; set; }
Property Value
Type Description
ModelSettingActionState?

The deletion status of the archived model.

Remarks

Required

DeleteStateDetails

Declaration
[Required(ErrorMessage = "DeleteStateDetails is required.")]
[JsonProperty(PropertyName = "deleteStateDetails")]
public string DeleteStateDetails { get; set; }
Property Value
Type Description
string

The deletion status details of the archived model.

Remarks

Required

TimeArchivalScheduled

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

The estimated archival time of the model based on the provided retention setting.

Remarks

Required

TimeDeletionScheduled

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

The estimated deletion time of the model based on the provided retention setting.

Remarks

Required

In this article
Back to top