Documentation ¶
Overview ¶
Package v1alpha1 contains API Schema definitions for the core v1alpha1 API group +kubebuilder:object:generate=true +groupName=portability.libre.sh
Index ¶
Constants ¶
const ImportInProgresStatus = "ImportInProgres"
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "portability.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 BucketReference ¶
type BucketReference struct { Kind BucketReferenceKind `json:"kind"` Name string `json:"name"` }
func (*BucketReference) DeepCopy ¶
func (in *BucketReference) DeepCopy() *BucketReference
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BucketReference.
func (*BucketReference) DeepCopyInto ¶
func (in *BucketReference) DeepCopyInto(out *BucketReference)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BucketReferenceKind ¶
type BucketReferenceKind string
const ( BucketKind BucketReferenceKind = "Bucket" SecretKind BucketReferenceKind = "Secret" )
type Import ¶
type Import struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ImportSpec `json:"spec,omitempty"` Status ImportStatus `json:"status,omitempty"` }
Import is the Schema for importing lsh exports
func (*Import) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Import.
func (*Import) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Import) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Import) GetConditions ¶
func (*Import) SetConditions ¶
type ImportList ¶
type ImportList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Import `json:"items"` }
ImportList contains a list of Import
func (*ImportList) DeepCopy ¶
func (in *ImportList) DeepCopy() *ImportList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImportList.
func (*ImportList) DeepCopyInto ¶
func (in *ImportList) DeepCopyInto(out *ImportList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ImportList) DeepCopyObject ¶
func (in *ImportList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ImportSpec ¶
type ImportSpec struct { //+optional Ready bool `json:"ready,omitempty"` BucketRef BucketReference `json:"bucketRef"` }
ImportSpec defines the desired state of Import
func (*ImportSpec) DeepCopy ¶
func (in *ImportSpec) DeepCopy() *ImportSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImportSpec.
func (*ImportSpec) DeepCopyInto ¶
func (in *ImportSpec) DeepCopyInto(out *ImportSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImportStatus ¶
type ImportStatus struct { //+optional //+patchMergeKey=type //+patchStrategy=merge //+listType=map //+listMapKey=type Conditions []metav1.Condition `json:"conditions,omitempty"` //+optional ImportedBuckets []string `json:"importedBuckets,omitempty"` //+optional ImportedPostgres []string `json:"importedPostgres,omitempty"` //+kubebuilder:validation:Type=object //+kubebuilder:validation:Schemaless //+kubebuilder:pruning:PreserveUnknownFields State json.RawMessage `json:"state,omitempty"` }
ImportStatus defines the observed state of Import
func (*ImportStatus) DeepCopy ¶
func (in *ImportStatus) DeepCopy() *ImportStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImportStatus.
func (*ImportStatus) DeepCopyInto ¶
func (in *ImportStatus) DeepCopyInto(out *ImportStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.