Class EventSeries
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.events.v1.EventSeries
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<EventSeriesBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class EventSeries extends Object implements io.fabric8.kubernetes.api.builder.Editable<EventSeriesBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
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.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EventSeries()No args constructor for use in serializationEventSeries(Integer count, io.fabric8.kubernetes.api.model.MicroTime lastObservedTime)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EventSeriesBuilderedit()Map<String,Object>getAdditionalProperties()IntegergetCount()count is the number of occurrences in this series up to the last heartbeat time.io.fabric8.kubernetes.api.model.MicroTimegetLastObservedTime()EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetCount(Integer count)count is the number of occurrences in this series up to the last heartbeat time.voidsetLastObservedTime(io.fabric8.kubernetes.api.model.MicroTime lastObservedTime)EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.EventSeriesBuildertoBuilder()
-
-
-
Constructor Detail
-
EventSeries
public EventSeries()
No args constructor for use in serialization
-
EventSeries
public EventSeries(Integer count, io.fabric8.kubernetes.api.model.MicroTime lastObservedTime)
-
-
Method Detail
-
getCount
public Integer getCount()
count is the number of occurrences in this series up to the last heartbeat time.
-
setCount
public void setCount(Integer count)
count is the number of occurrences in this series up to the last heartbeat time.
-
getLastObservedTime
public io.fabric8.kubernetes.api.model.MicroTime getLastObservedTime()
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.
-
setLastObservedTime
public void setLastObservedTime(io.fabric8.kubernetes.api.model.MicroTime lastObservedTime)
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.
-
edit
public EventSeriesBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<EventSeriesBuilder>
-
toBuilder
public EventSeriesBuilder toBuilder()
-
-