Files
go/kubernetes/client/v1_event_source.go

21 lines
521 B
Go
Raw Normal View History

/*
* 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"`
}