Show / Hide Table of Contents

Class Eventsv1EventSeries

EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time. How often to update the EventSeries is up to the event reporters. The default event reporter in "k8s.io/client-go/tools/events/event_broadcaster.go" shows how this struct is updated on heartbeats and can guide customized reporter implementations.

Inheritance
object
Eventsv1EventSeries
Implements
IEquatable<Eventsv1EventSeries>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record Eventsv1EventSeries : IEquatable<Eventsv1EventSeries>

Constructors

Eventsv1EventSeries()

Declaration
public Eventsv1EventSeries()

Eventsv1EventSeries(Eventsv1EventSeries)

Declaration
protected Eventsv1EventSeries(Eventsv1EventSeries original)
Parameters
Type Name Description
Eventsv1EventSeries original

Properties

Count

count is the number of occurrences in this series up to the last heartbeat time.

Declaration
[JsonPropertyName("count")]
public int Count { get; set; }
Property Value
Type Description
int

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type

LastObservedTime

lastObservedTime is the time when last Event from the series was seen before last heartbeat.

Declaration
[JsonPropertyName("lastObservedTime")]
public DateTime LastObservedTime { get; set; }
Property Value
Type Description
DateTime

Methods

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)

Equals(Eventsv1EventSeries?)

Declaration
public virtual bool Equals(Eventsv1EventSeries? other)
Parameters
Type Name Description
Eventsv1EventSeries other
Returns
Type Description
bool

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

operator ==(Eventsv1EventSeries?, Eventsv1EventSeries?)

Declaration
public static bool operator ==(Eventsv1EventSeries? left, Eventsv1EventSeries? right)
Parameters
Type Name Description
Eventsv1EventSeries left
Eventsv1EventSeries right
Returns
Type Description
bool

operator !=(Eventsv1EventSeries?, Eventsv1EventSeries?)

Declaration
public static bool operator !=(Eventsv1EventSeries? left, Eventsv1EventSeries? right)
Parameters
Type Name Description
Eventsv1EventSeries left
Eventsv1EventSeries right
Returns
Type Description
bool

Implements

IEquatable<T>
In this article
Back to top Generated by DocFX