Class ChangeIotDomainDataRetentionPeriodDetails
The configuration details for data retention periods.
Inherited Members
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