Show / Hide Table of Contents

Class DataSourceEventSummary

Summary information about a data source event.

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

Properties

Comments

Declaration
[JsonProperty(PropertyName = "comments")]
public string Comments { get; set; }
Property Value
Type Description
string

Data source event comments

DataSourceId

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

Unique identifier of data source.

Remarks

Required

EventDate

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

Data source event date and time

Remarks

Required

EventInfo

Declaration
[Required(ErrorMessage = "EventInfo is required.")]
[JsonProperty(PropertyName = "eventInfo")]
public DataSourceEventInfo EventInfo { get; set; }
Property Value
Type Description
DataSourceEventInfo
Remarks

Required

Region

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

Data source event region

Remarks

Required

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DataSourceEventInfoStatus? Status { get; set; }
Property Value
Type Description
DataSourceEventInfoStatus?

Current data source event info status

TimeCreated

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

Data source event creation date and time

Remarks

Required

In this article
Back to top