Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the v1alpha1 API group +kubebuilder:object:generate=true +groupName=libre.sh
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "config.libre.sh", Version: "v1alpha1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type MailboxConfig ¶
type MailboxConfig struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec MailboxConfigSpec `json:"spec,omitempty"` Status MailboxConfigStatus `json:"status,omitempty"` }
MailboxConfig is the Schema for the mailboxconfigs API
func (*MailboxConfig) DeepCopy ¶
func (in *MailboxConfig) DeepCopy() *MailboxConfig
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MailboxConfig.
func (*MailboxConfig) DeepCopyInto ¶
func (in *MailboxConfig) DeepCopyInto(out *MailboxConfig)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*MailboxConfig) DeepCopyObject ¶
func (in *MailboxConfig) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type MailboxConfigList ¶
type MailboxConfigList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []MailboxConfig `json:"items"` }
MailboxConfigList contains a list of MailboxConfig
func (*MailboxConfigList) DeepCopy ¶
func (in *MailboxConfigList) DeepCopy() *MailboxConfigList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MailboxConfigList.
func (*MailboxConfigList) DeepCopyInto ¶
func (in *MailboxConfigList) DeepCopyInto(out *MailboxConfigList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*MailboxConfigList) DeepCopyObject ¶
func (in *MailboxConfigList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type MailboxConfigSpec ¶
type MailboxConfigSpec struct {
Providers []MailboxProvider `json:"providers"`
}
MailboxConfigSpec defines the desired state of MailboxConfig
func (*MailboxConfigSpec) DeepCopy ¶
func (in *MailboxConfigSpec) DeepCopy() *MailboxConfigSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MailboxConfigSpec.
func (*MailboxConfigSpec) DeepCopyInto ¶
func (in *MailboxConfigSpec) DeepCopyInto(out *MailboxConfigSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MailboxConfigStatus ¶
type MailboxConfigStatus struct { }
MailboxConfigStatus defines the observed state of MailboxConfig
func (*MailboxConfigStatus) DeepCopy ¶
func (in *MailboxConfigStatus) DeepCopy() *MailboxConfigStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MailboxConfigStatus.
func (*MailboxConfigStatus) DeepCopyInto ¶
func (in *MailboxConfigStatus) DeepCopyInto(out *MailboxConfigStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MailboxProvider ¶
type MailboxProvider struct { //+required Name string `json:"name"` //+required Endpoint string `json:"endpoint"` //+optional Insecure bool `json:"insecure,omitempty"` //+required Username string `json:"username"` //+required Password string `json:"password"` }
func (*MailboxProvider) DeepCopy ¶
func (in *MailboxProvider) DeepCopy() *MailboxProvider
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MailboxProvider.
func (*MailboxProvider) DeepCopyInto ¶
func (in *MailboxProvider) DeepCopyInto(out *MailboxProvider)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.