Share via


EventModel Constructors

Definition

Overloads

EventModel()

Initializes a new instance of the EventModel class.

EventModel(Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, String, String, String)

Initializes a new instance of the EventModel class.

EventModel()

Initializes a new instance of the EventModel class.

public EventModel ();
Public Sub New ()

Applies to

EventModel(Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, String, String, String)

Initializes a new instance of the EventModel class.

public EventModel (int? count = default, DateTime? firstTimestamp = default, DateTime? lastTimestamp = default, string name = default, string message = default, string type = default);
new Microsoft.Azure.Management.ContainerInstance.Models.EventModel : Nullable<int> * Nullable<DateTime> * Nullable<DateTime> * string * string * string -> Microsoft.Azure.Management.ContainerInstance.Models.EventModel
Public Sub New (Optional count As Nullable(Of Integer) = Nothing, Optional firstTimestamp As Nullable(Of DateTime) = Nothing, Optional lastTimestamp As Nullable(Of DateTime) = Nothing, Optional name As String = Nothing, Optional message As String = Nothing, Optional type As String = Nothing)

Parameters

count
Nullable<Int32>

The count of the event.

firstTimestamp
Nullable<DateTime>

The date-time of the earliest logged event.

lastTimestamp
Nullable<DateTime>

The date-time of the latest logged event.

name
String

The event name.

message
String

The event message.

type
String

The event type.

Applies to