Show / Hide Table of Contents

Class EventArgs

Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.

Inheritance
System.Object
InputArgs
ResourceArgs
EventArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Events.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class EventArgs : ResourceArgs

Properties

View Source

Action

What action was taken/failed regarding to the regarding object.

Declaration
public Input<string> Action { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ApiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

Declaration
public Input<string> ApiVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DeprecatedCount

Deprecated field assuring backward compatibility with core.v1 Event type

Declaration
public Input<int> DeprecatedCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

DeprecatedFirstTimestamp

Deprecated field assuring backward compatibility with core.v1 Event type

Declaration
public Input<string> DeprecatedFirstTimestamp { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DeprecatedLastTimestamp

Deprecated field assuring backward compatibility with core.v1 Event type

Declaration
public Input<string> DeprecatedLastTimestamp { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DeprecatedSource

Deprecated field assuring backward compatibility with core.v1 Event type

Declaration
public Input<EventSourceArgs> DeprecatedSource { get; set; }
Property Value
Type Description
Input<EventSourceArgs>
View Source

EventTime

Required. Time when this Event was first observed.

Declaration
public Input<string> EventTime { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

Declaration
public Input<string> Kind { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Metadata

Declaration
public Input<ObjectMetaArgs> Metadata { get; set; }
Property Value
Type Description
Input<ObjectMetaArgs>
View Source

Note

Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.

Declaration
public Input<string> Note { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Reason

Why the action was taken.

Declaration
public Input<string> Reason { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Regarding

The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.

Declaration
public Input<ObjectReferenceArgs> Regarding { get; set; }
Property Value
Type Description
Input<ObjectReferenceArgs>
View Source

Related

Optional secondary object for more complex actions. E.g. when regarding object triggers a creation or deletion of related object.

Declaration
public Input<ObjectReferenceArgs> Related { get; set; }
Property Value
Type Description
Input<ObjectReferenceArgs>
View Source

ReportingController

Name of the controller that emitted this Event, e.g. kubernetes.io/kubelet.

Declaration
public Input<string> ReportingController { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ReportingInstance

ID of the controller instance, e.g. kubelet-xyzf.

Declaration
public Input<string> ReportingInstance { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Series

Data about the Event series this event represents or nil if it's a singleton Event.

Declaration
public Input<EventSeriesArgs> Series { get; set; }
Property Value
Type Description
Input<EventSeriesArgs>
View Source

Type

Type of this event (Normal, Warning), new types could be added in the future.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.