Documentation
¶
Overview ¶
Package v1 contains API Schema definitions for the db v1 API group +kubebuilder:object:generate=true +groupName=db.pandarocks.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "db.pandarocks.com", Version: "v1"} // 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 PostgresDatabase ¶
type PostgresDatabase struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec PostgresDatabaseSpec `json:"spec,omitempty"` Status PostgresDatabaseStatus `json:"status,omitempty"` }
PostgresDatabase is the Schema for the postgresdatabases API
func (*PostgresDatabase) DeepCopy ¶
func (in *PostgresDatabase) DeepCopy() *PostgresDatabase
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgresDatabase.
func (*PostgresDatabase) DeepCopyInto ¶
func (in *PostgresDatabase) DeepCopyInto(out *PostgresDatabase)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PostgresDatabase) DeepCopyObject ¶
func (in *PostgresDatabase) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PostgresDatabaseList ¶
type PostgresDatabaseList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []PostgresDatabase `json:"items"` }
PostgresDatabaseList contains a list of PostgresDatabase
func (*PostgresDatabaseList) DeepCopy ¶
func (in *PostgresDatabaseList) DeepCopy() *PostgresDatabaseList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgresDatabaseList.
func (*PostgresDatabaseList) DeepCopyInto ¶
func (in *PostgresDatabaseList) DeepCopyInto(out *PostgresDatabaseList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PostgresDatabaseList) DeepCopyObject ¶
func (in *PostgresDatabaseList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PostgresDatabaseSpec ¶
type PostgresDatabaseSpec struct { // Foo is an example field of PostgresDatabase. Edit postgresdatabase_types.go to remove/update DropOnDelete bool `json:"dropOnDelete"` }
PostgresDatabaseSpec defines the desired state of PostgresDatabase
func (*PostgresDatabaseSpec) DeepCopy ¶
func (in *PostgresDatabaseSpec) DeepCopy() *PostgresDatabaseSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgresDatabaseSpec.
func (*PostgresDatabaseSpec) DeepCopyInto ¶
func (in *PostgresDatabaseSpec) DeepCopyInto(out *PostgresDatabaseSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PostgresDatabaseStatus ¶
type PostgresDatabaseStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file State string `json:"state,omitempty"` Message string `json:"message,omitempty"` }
PostgresDatabaseStatus defines the observed state of PostgresDatabase
func (*PostgresDatabaseStatus) DeepCopy ¶
func (in *PostgresDatabaseStatus) DeepCopy() *PostgresDatabaseStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PostgresDatabaseStatus.
func (*PostgresDatabaseStatus) DeepCopyInto ¶
func (in *PostgresDatabaseStatus) DeepCopyInto(out *PostgresDatabaseStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.