Documentation ¶
Overview ¶
Package v1 is the v1 version of the API. +groupName=ipam.nexinto.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) AddToScheme = SchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: ipamv1.GroupName, Version: "v1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type IpAddress ¶
type IpAddress struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec IpAddressSpec `json:"spec"` Status IpAddressStatus `json:"status"` }
An IP address object
func (*IpAddress) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpAddress.
func (*IpAddress) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IpAddress) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IpAddressList ¶
type IpAddressList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []IpAddress `json:"items"` }
IpAddressList is a list of IpAddress resources
func (*IpAddressList) DeepCopy ¶
func (in *IpAddressList) DeepCopy() *IpAddressList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpAddressList.
func (*IpAddressList) DeepCopyInto ¶
func (in *IpAddressList) DeepCopyInto(out *IpAddressList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*IpAddressList) DeepCopyObject ¶
func (in *IpAddressList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type IpAddressSpec ¶
type IpAddressSpec struct { // The IPAM will explicitly use this name instead of the default name of 'cluster.namespace.service'. Name string `json:"name"` // References an existing address by its IPAM name. Ref string `json:"ref"` // Description for this address object. Description string `json:"description"` }
func (*IpAddressSpec) DeepCopy ¶
func (in *IpAddressSpec) DeepCopy() *IpAddressSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpAddressSpec.
func (*IpAddressSpec) DeepCopyInto ¶
func (in *IpAddressSpec) DeepCopyInto(out *IpAddressSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IpAddressStatus ¶
type IpAddressStatus struct { // The address if reservation was successful Address string `json:"address"` // Name of the address provider Provider string `json:"provider"` // The IPAM name for this address object Name string `json:"name"` }
func (*IpAddressStatus) DeepCopy ¶
func (in *IpAddressStatus) DeepCopy() *IpAddressStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IpAddressStatus.
func (*IpAddressStatus) DeepCopyInto ¶
func (in *IpAddressStatus) DeepCopyInto(out *IpAddressStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.