Show / Hide Table of Contents

Class DataRetentionPeriodsInDays

Data Retention periods

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

Properties

HistorizedData

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

Number of days for which any normalized data sent to IoT devices would be retained for.

Remarks

Required

RawCommandData

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

Number of days for which any raw command data sent to IoT devices would be retained for.

Remarks

Required

RawData

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

Number of days for which any raw data sent to IoT devices would be retained for.

Remarks

Required

RejectedData

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

Number of days for which any data sent to IoT devices would be retained for.

Remarks

Required

In this article
Back to top