Documentation
¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the qdrant.io v1alpha1 API group +kubebuilder:object:generate=true +groupName=auth.qdrant.io
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "auth.qdrant.io", 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 APIAuthentication ¶
type APIAuthentication struct {
metav1.TypeMeta `json:",inline"`
// Standard object's metadata.
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
// +optional
metav1.ObjectMeta `json:"metadata,omitempty"`
Spec APIAuthenticationSpec `json:"spec"`
}
APIAuthentication is a configuration for authenticating against Qdrant clusters.
func (*APIAuthentication) DeepCopy ¶
func (in *APIAuthentication) DeepCopy() *APIAuthentication
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIAuthentication.
func (*APIAuthentication) DeepCopyInto ¶
func (in *APIAuthentication) DeepCopyInto(out *APIAuthentication)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*APIAuthentication) DeepCopyObject ¶
func (in *APIAuthentication) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type APIAuthenticationList ¶
type APIAuthenticationList struct {
metav1.TypeMeta `json:",inline"`
// Standard list metadata.
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
// +optional
metav1.ListMeta `json:"metadata,omitempty"`
// List of APIAuthentication objects
Items []APIAuthentication `json:"items"`
}
APIAuthenticationList is the whole list of all APIAuthentication objects.
func (*APIAuthenticationList) DeepCopy ¶
func (in *APIAuthenticationList) DeepCopy() *APIAuthenticationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIAuthenticationList.
func (*APIAuthenticationList) DeepCopyInto ¶
func (in *APIAuthenticationList) DeepCopyInto(out *APIAuthenticationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*APIAuthenticationList) DeepCopyObject ¶
func (in *APIAuthenticationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type APIAuthenticationSpec ¶
type APIAuthenticationSpec struct {
// +kubebuilder:validation:MinLength=128
// +kubebuilder:validation:MaxLength=128
// +optional
// SHA512 hash of an API key.
SHA512 *string `json:"sha512,omitempty"`
// +listType=set
// List of cluster IDs for which the API key is valid
ClusterIDs []string `json:"clusterIDs"`
}
APIAuthenticationSpec describes the configuration for authenticating against Qdrant clusters.
func (*APIAuthenticationSpec) DeepCopy ¶
func (in *APIAuthenticationSpec) DeepCopy() *APIAuthenticationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIAuthenticationSpec.
func (*APIAuthenticationSpec) DeepCopyInto ¶
func (in *APIAuthenticationSpec) DeepCopyInto(out *APIAuthenticationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.