github.com/cilium/cilium@v1.16.2/pkg/monitor/notifications/notifications.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright Authors of Cilium
     3  
     4  package notifications
     5  
     6  // RegenNotificationInfo provides information about endpoint regeneration
     7  type RegenNotificationInfo interface {
     8  	GetID() uint64
     9  	GetOpLabels() []string
    10  	GetK8sPodName() string
    11  	GetK8sNamespace() string
    12  	GetID16() uint16
    13  }