Class ReleaseRecalledDataDetails
This is the input used to release recalled data
Inherited Members
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class ReleaseRecalledDataDetails
Properties
CollectionId
Declaration
[JsonProperty(PropertyName = "collectionId")]
public long? CollectionId { get; set; }
Property Value
Type | Description |
---|---|
long? | This is the id for the recalled data collection to be released. If specified, only this collection will be released |
CompartmentId
Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type | Description |
---|---|
string | This is the compartment OCID for permission checking |
Remarks
Required
DataType
Declaration
[JsonProperty(PropertyName = "dataType")]
[JsonConverter(typeof(StringEnumConverter))]
public StorageDataType? DataType { get; set; }
Property Value
Type | Description |
---|---|
StorageDataType? | This is the type of the recalled data to be released |
TimeDataEnded
Declaration
[Required(ErrorMessage = "TimeDataEnded is required.")]
[JsonProperty(PropertyName = "timeDataEnded")]
public DateTime? TimeDataEnded { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | This is the end of the time interval |
Remarks
Required
TimeDataStarted
Declaration
[Required(ErrorMessage = "TimeDataStarted is required.")]
[JsonProperty(PropertyName = "timeDataStarted")]
public DateTime? TimeDataStarted { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | This is the start of the time interval |
Remarks
Required