Show / Hide Table of Contents

Class ChangeIotDomainDataRetentionPeriodDetails

The configuration details for data retention periods.

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

Properties

DataRetentionPeriodInDays

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

The duration (in days) for which data will be retained in the IoT domain.

Remarks

Required

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public ChangeIotDomainDataRetentionPeriodDetails.TypeEnum? Type { get; set; }
Property Value
Type Description
ChangeIotDomainDataRetentionPeriodDetails.TypeEnum?

The type of data retention period to apply. Allowed values are RAW_DATA, REJECTED_DATA, HISTORIZED_DATA, and RAW_COMMAND_DATA.

Remarks

Required

In this article
Back to top