21 lines
521 B
Go
21 lines
521 B
Go
|
|
/*
|
||
|
|
* Kubernetes
|
||
|
|
*
|
||
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
||
|
|
*
|
||
|
|
* API version: v1.10.0
|
||
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
||
|
|
*/
|
||
|
|
|
||
|
|
package client
|
||
|
|
|
||
|
|
// EventSource contains information for an event.
|
||
|
|
type V1EventSource struct {
|
||
|
|
|
||
|
|
// Component from which the event is generated.
|
||
|
|
Component string `json:"component,omitempty"`
|
||
|
|
|
||
|
|
// Node name on which the event is generated.
|
||
|
|
Host string `json:"host,omitempty"`
|
||
|
|
}
|