Documentation ¶
Overview ¶
Package v1 is the v1 version of the API.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // SchemeBuilder is an instance of Schema SchemeBuilder runtime.SchemeBuilder // AddToScheme adds the schema AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{
Group: "fic.f5.com",
Version: "v1",
}
SchemeGroupVersion define your schema name and the version
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type F5IPAM ¶
type F5IPAM struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec F5IPAMSpec `json:"spec,omitempty"` Status F5IPAMStatus `json:"status,omitempty"` }
ExternalDNS defines the DNS resource.
func (*F5IPAM) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new F5IPAM.
func (*F5IPAM) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*F5IPAM) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type F5IPAMList ¶
type F5IPAMList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []F5IPAM `json:"items"` }
F5IPAMList is list of ExternalDNS
func (*F5IPAMList) DeepCopy ¶
func (in *F5IPAMList) DeepCopy() *F5IPAMList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new F5IPAMList.
func (*F5IPAMList) DeepCopyInto ¶
func (in *F5IPAMList) DeepCopyInto(out *F5IPAMList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*F5IPAMList) DeepCopyObject ¶
func (in *F5IPAMList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type F5IPAMSpec ¶
type F5IPAMSpec struct {
HostSpecs []*HostSpec `json:"hostSpecs,omitempty"`
}
func (*F5IPAMSpec) DeepCopy ¶
func (in *F5IPAMSpec) DeepCopy() *F5IPAMSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new F5IPAMSpec.
func (*F5IPAMSpec) DeepCopyInto ¶
func (in *F5IPAMSpec) DeepCopyInto(out *F5IPAMSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type F5IPAMStatus ¶
type F5IPAMStatus struct {
IPStatus []*IPSpec `json:"IPStatus,omitempty"`
}
func (*F5IPAMStatus) DeepCopy ¶
func (in *F5IPAMStatus) DeepCopy() *F5IPAMStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new F5IPAMStatus.
func (*F5IPAMStatus) DeepCopyInto ¶
func (in *F5IPAMStatus) DeepCopyInto(out *F5IPAMStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HostSpec ¶
type HostSpec struct { Host string `json:"host,omitempty"` Key string `json:"key,omitempty"` CIDR string `json:"cidr,omitempty"` IPAMLabel string `json:"ipamLabel,omitempty"` }
func (*HostSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HostSpec.
func (*HostSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPSpec ¶
type IPSpec struct { Host string `json:"host,omitempty"` Key string `json:"key,omitempty"` CIDR string `json:"cidr,omitempty"` IPAMLabel string `json:"ipamLabel,omitempty"` IP string `json:"ip,omitempty"` }
func (*IPSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPSpec.
func (*IPSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.