2021-06-11 15:30:05 +02:00
|
|
|
package v1alpha1
|
|
|
|
|
|
|
|
// ObjectReference is a generic reference to a Traefik resource.
|
|
|
|
type ObjectReference struct {
|
2022-06-24 12:40:08 +02:00
|
|
|
// Name defines the name of the referenced Traefik resource.
|
|
|
|
Name string `json:"name"`
|
|
|
|
// Namespace defines the namespace of the referenced Traefik resource.
|
2021-06-11 15:30:05 +02:00
|
|
|
Namespace string `json:"namespace,omitempty"`
|
|
|
|
}
|