v1alpha1

package
v0.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 8, 2022 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

+groupName=search.mongodbatlas.kubeform.com

Index

Constants

This section is empty.

Variables

View Source
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
)
View Source
var SchemeGroupVersion = schema.GroupVersion{Group: search.GroupName, Version: "v1alpha1"}

Functions

func GetDecoder

func GetDecoder() map[string]jsoniter.ValDecoder

func GetEncoder

func GetEncoder() map[string]jsoniter.ValEncoder

func Kind

func Kind(kind string) schema.GroupKind

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

func (in *Index) DeepCopy() *Index

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Index.

func (*Index) DeepCopyInto

func (in *Index) DeepCopyInto(out *Index)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Index) DeepCopyObject

func (in *Index) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*Index) SetupWebhookWithManager

func (r *Index) SetupWebhookWithManager(mgr ctrl.Manager) error

func (*Index) ValidateCreate

func (r *Index) ValidateCreate() error

ValidateCreate implements webhook.Validator so a webhook will be registered for the type

func (*Index) ValidateDelete

func (r *Index) ValidateDelete() error

ValidateDelete implements webhook.Validator so a webhook will be registered for the type

func (*Index) ValidateUpdate

func (r *Index) ValidateUpdate(old runtime.Object) error

ValidateUpdate 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

func (in *IndexList) DeepCopy() *IndexList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexList.

func (*IndexList) DeepCopyInto

func (in *IndexList) DeepCopyInto(out *IndexList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*IndexList) DeepCopyObject

func (in *IndexList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

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

func (in *IndexSpec) DeepCopy() *IndexSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexSpec.

func (*IndexSpec) DeepCopyInto

func (in *IndexSpec) DeepCopyInto(out *IndexSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type IndexSpecResource

type IndexSpecResource struct {
	ID string `json:"id,omitempty" tf:"id,omitempty"`

	Analyzer *string `json:"analyzer" tf:"analyzer"`
	// +optional
	Analyzers      *string `json:"analyzers,omitempty" tf:"analyzers"`
	ClusterName    *string `json:"clusterName" tf:"cluster_name"`
	CollectionName *string `json:"collectionName" tf:"collection_name"`
	Database       *string `json:"database" tf:"database"`
	// +optional
	IndexID *string `json:"indexID,omitempty" tf:"index_id"`
	// +optional
	MappingsDynamic *bool `json:"mappingsDynamic,omitempty" tf:"mappings_dynamic"`
	// +optional
	MappingsFields *string `json:"mappingsFields,omitempty" tf:"mappings_fields"`
	Name           *string `json:"name" tf:"name"`
	ProjectID      *string `json:"projectID" tf:"project_id"`
	// +optional
	SearchAnalyzer *string `json:"searchAnalyzer,omitempty" tf:"search_analyzer"`
	// +optional
	Status *string `json:"status,omitempty" tf:"status"`
	// +optional
	Synonyms []IndexSpecSynonyms `json:"synonyms,omitempty" tf:"synonyms"`
}

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 IndexSpecSynonyms added in v0.5.0

type IndexSpecSynonyms struct {
	Analyzer         *string `json:"analyzer" tf:"analyzer"`
	Name             *string `json:"name" tf:"name"`
	SourceCollection *string `json:"sourceCollection" tf:"source_collection"`
}

func (*IndexSpecSynonyms) DeepCopy added in v0.5.0

func (in *IndexSpecSynonyms) DeepCopy() *IndexSpecSynonyms

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexSpecSynonyms.

func (*IndexSpecSynonyms) DeepCopyInto added in v0.5.0

func (in *IndexSpecSynonyms) DeepCopyInto(out *IndexSpecSynonyms)

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL