2021-06-11 13:30:05 +00:00
|
|
|
package v1alpha1
|
|
|
|
|
|
|
|
// ObjectReference is a generic reference to a Traefik resource.
|
|
|
|
type ObjectReference struct {
|
2022-06-24 10:40:08 +00: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 13:30:05 +00:00
|
|
|
Namespace string `json:"namespace,omitempty"`
|
|
|
|
}
|