...

Source file src/github.com/openshift/api/console/v1/types.go

Documentation: github.com/openshift/api/console/v1

     1  package v1
     2  
     3  // Represents a standard link that could be generated in HTML
     4  type Link struct {
     5  	// text is the display text for the link
     6  	Text string `json:"text"`
     7  	// href is the absolute secure URL for the link (must use https)
     8  	// +kubebuilder:validation:Pattern=`^https://`
     9  	Href string `json:"href"`
    10  }
    11  

View as plain text