Documentation ¶
Overview ¶
Package v1 is the v1 version of the API.
Package v1 contains API Schema definitions for the AzureIngressProhibitedTarget v1 API group
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{ Group: "appgw.ingress.k8s.io", Version: "v1", } // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme adds all Resources to the Scheme AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type AzureIngressProhibitedTarget ¶
type AzureIngressProhibitedTarget struct { metav1.TypeMeta `json:",inline"` // +optional metav1.ObjectMeta `json:"metadata,omitempty"` Spec AzureIngressProhibitedTargetSpec `json:"spec"` }
AzureIngressProhibitedTarget is the targets AGIC is not allowed to mutate
func (*AzureIngressProhibitedTarget) DeepCopy ¶
func (in *AzureIngressProhibitedTarget) DeepCopy() *AzureIngressProhibitedTarget
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIngressProhibitedTarget.
func (*AzureIngressProhibitedTarget) DeepCopyInto ¶
func (in *AzureIngressProhibitedTarget) DeepCopyInto(out *AzureIngressProhibitedTarget)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AzureIngressProhibitedTarget) DeepCopyObject ¶
func (in *AzureIngressProhibitedTarget) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AzureIngressProhibitedTargetList ¶
type AzureIngressProhibitedTargetList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []AzureIngressProhibitedTarget `json:"items"` }
AzureIngressProhibitedTargetList is the list of prohibited targets
func (*AzureIngressProhibitedTargetList) DeepCopy ¶
func (in *AzureIngressProhibitedTargetList) DeepCopy() *AzureIngressProhibitedTargetList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIngressProhibitedTargetList.
func (*AzureIngressProhibitedTargetList) DeepCopyInto ¶
func (in *AzureIngressProhibitedTargetList) DeepCopyInto(out *AzureIngressProhibitedTargetList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AzureIngressProhibitedTargetList) DeepCopyObject ¶
func (in *AzureIngressProhibitedTargetList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AzureIngressProhibitedTargetSpec ¶
type AzureIngressProhibitedTargetSpec struct { metav1.TypeMeta `json:",inline"` // +optional metav1.ObjectMeta `json:"metadata,omitempty"` // IP address of the prohibited target; Could be the public or private address attached to the Application Gateway IP string `json:"ip"` // +optional // Hostname of the prohibited target Hostname string `json:"hostname,omitempty"` // +optional // Port number of the prohibited target Port int32 `json:"port,omitempty"` // +optional // Paths is a list of URL paths, for which the Ingress Controller is prohibited from mutating Application Gateway configuration; Must begin with a / and end with /* Paths []string `json:"paths,omitempty"` }
AzureIngressProhibitedTargetSpec defines a list of uniquely identifiable targets for which the AGIC is not allowed to mutate config.
func (*AzureIngressProhibitedTargetSpec) DeepCopy ¶
func (in *AzureIngressProhibitedTargetSpec) DeepCopy() *AzureIngressProhibitedTargetSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureIngressProhibitedTargetSpec.
func (*AzureIngressProhibitedTargetSpec) DeepCopyInto ¶
func (in *AzureIngressProhibitedTargetSpec) DeepCopyInto(out *AzureIngressProhibitedTargetSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.