Documentation ¶
Overview ¶
+groupName=datastore.google.kubeform.com
Index ¶
- Variables
- func GetDecoder() map[string]jsoniter.ValDecoder
- func GetEncoder() map[string]jsoniter.ValEncoder
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type Index
- func (in *Index) DeepCopy() *Index
- func (in *Index) DeepCopyInto(out *Index)
- func (in *Index) DeepCopyObject() runtime.Object
- func (r *Index) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Index) ValidateCreate() error
- func (r *Index) ValidateDelete() error
- func (r *Index) ValidateUpdate(old runtime.Object) error
- type IndexList
- type IndexSpec
- type IndexSpecProperties
- type IndexSpecResource
- type IndexStatus
Constants ¶
This section is empty.
Variables ¶
var ( // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. SchemeBuilder runtime.SchemeBuilder AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: datastore.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Kind ¶
Kind takes an unqualified kind and returns a Group qualified GroupKind
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type Index ¶
type Index struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec IndexSpec `json:"spec,omitempty"` Status IndexStatus `json:"status,omitempty"` }
func (*Index) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Index.
func (*Index) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Index) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Index) SetupWebhookWithManager ¶
func (*Index) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Index) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type IndexList ¶
type IndexList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Index CRD objects Items []Index `json:"items,omitempty"` }
IndexList is a list of Indexs
func (*IndexList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexList.
func (*IndexList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IndexSpec ¶
type IndexSpec struct { State *IndexSpecResource `json:"state,omitempty" tf:"-"` Resource IndexSpecResource `json:"resource" tf:"resource"` UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"` TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"` ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"` BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"` }
func (*IndexSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexSpec.
type IndexSpecProperties ¶
type IndexSpecProperties struct { // The direction the index should optimize for sorting. Possible values: ["ASCENDING", "DESCENDING"] Direction *string `json:"direction" tf:"direction"` // The property name to index. Name *string `json:"name" tf:"name"` }
func (*IndexSpecProperties) DeepCopy ¶
func (in *IndexSpecProperties) DeepCopy() *IndexSpecProperties
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexSpecProperties.
func (*IndexSpecProperties) DeepCopyInto ¶
func (in *IndexSpecProperties) DeepCopyInto(out *IndexSpecProperties)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IndexSpecResource ¶
type IndexSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` // Policy for including ancestors in the index. Default value: "NONE" Possible values: ["NONE", "ALL_ANCESTORS"] // +optional Ancestor *string `json:"ancestor,omitempty" tf:"ancestor"` // The index id. // +optional IndexID *string `json:"indexID,omitempty" tf:"index_id"` // The entity kind which the index applies to. Kind *string `json:"kind" tf:"kind"` // +optional Project *string `json:"project,omitempty" tf:"project"` // An ordered list of properties to index on. // +optional // +kubebuilder:validation:MinItems=1 Properties []IndexSpecProperties `json:"properties,omitempty" tf:"properties"` }
func (*IndexSpecResource) DeepCopy ¶
func (in *IndexSpecResource) DeepCopy() *IndexSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexSpecResource.
func (*IndexSpecResource) DeepCopyInto ¶
func (in *IndexSpecResource) DeepCopyInto(out *IndexSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IndexStatus ¶
type IndexStatus struct { // Resource generation, which is updated on mutation by the API Server. // +optional ObservedGeneration int64 `json:"observedGeneration,omitempty"` // +optional Phase status.Status `json:"phase,omitempty"` // +optional Conditions []kmapi.Condition `json:"conditions,omitempty"` }
func (*IndexStatus) DeepCopy ¶
func (in *IndexStatus) DeepCopy() *IndexStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexStatus.
func (*IndexStatus) DeepCopyInto ¶
func (in *IndexStatus) DeepCopyInto(out *IndexStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.