Documentation ¶
Overview ¶
+groupName=nosql.oci.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 IndexSpecKeys
- type IndexSpecResource
- type IndexStatus
- type Table
- func (in *Table) DeepCopy() *Table
- func (in *Table) DeepCopyInto(out *Table)
- func (in *Table) DeepCopyObject() runtime.Object
- func (r *Table) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Table) ValidateCreate() error
- func (r *Table) ValidateDelete() error
- func (r *Table) ValidateUpdate(old runtime.Object) error
- type TableList
- type TableSpec
- type TableSpecResource
- type TableSpecSchema
- type TableSpecSchemaCodec
- type TableSpecSchemaColumns
- type TableSpecTableLimits
- type TableSpecTableLimitsCodec
- type TableStatus
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: nosql.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
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.
func (*IndexList) DeepCopyObject ¶
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 ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexSpec.
func (*IndexSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IndexSpecKeys ¶
type IndexSpecKeys struct { ColumnName *string `json:"columnName" tf:"column_name"` // +optional JsonFieldType *string `json:"jsonFieldType,omitempty" tf:"json_field_type"` // +optional JsonPath *string `json:"jsonPath,omitempty" tf:"json_path"` }
func (*IndexSpecKeys) DeepCopy ¶
func (in *IndexSpecKeys) DeepCopy() *IndexSpecKeys
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IndexSpecKeys.
func (*IndexSpecKeys) DeepCopyInto ¶
func (in *IndexSpecKeys) DeepCopyInto(out *IndexSpecKeys)
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"` // +optional CompartmentID *string `json:"compartmentID,omitempty" tf:"compartment_id"` // +optional IsIfNotExists *bool `json:"isIfNotExists,omitempty" tf:"is_if_not_exists"` Keys []IndexSpecKeys `json:"keys" tf:"keys"` // +optional LifecycleDetails *string `json:"lifecycleDetails,omitempty" tf:"lifecycle_details"` Name *string `json:"name" tf:"name"` // +optional State *string `json:"state,omitempty" tf:"state"` // +optional TableID *string `json:"tableID,omitempty" tf:"table_id"` // +optional TableName *string `json:"tableName,omitempty" tf:"table_name"` TableNameOrID *string `json:"tableNameOrID" tf:"table_name_or_id"` }
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.
type Table ¶
type Table struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec TableSpec `json:"spec,omitempty"` Status TableStatus `json:"status,omitempty"` }
func (*Table) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Table.
func (*Table) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Table) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Table) SetupWebhookWithManager ¶
func (*Table) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Table) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type TableList ¶
type TableList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Table CRD objects Items []Table `json:"items,omitempty"` }
TableList is a list of Tables
func (*TableList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableList.
func (*TableList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TableList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type TableSpec ¶
type TableSpec struct { State *TableSpecResource `json:"state,omitempty" tf:"-"` Resource TableSpecResource `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 (*TableSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpec.
func (*TableSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableSpecResource ¶
type TableSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` CompartmentID *string `json:"compartmentID" tf:"compartment_id"` DdlStatement *string `json:"ddlStatement" tf:"ddl_statement"` // +optional DefinedTags map[string]string `json:"definedTags,omitempty" tf:"defined_tags"` // +optional FreeformTags map[string]string `json:"freeformTags,omitempty" tf:"freeform_tags"` // +optional IsAutoReclaimable *bool `json:"isAutoReclaimable,omitempty" tf:"is_auto_reclaimable"` // +optional LifecycleDetails *string `json:"lifecycleDetails,omitempty" tf:"lifecycle_details"` Name *string `json:"name" tf:"name"` // +optional Schema *TableSpecSchema `json:"schema,omitempty" tf:"schema"` // +optional State *string `json:"state,omitempty" tf:"state"` // +optional SystemTags map[string]string `json:"systemTags,omitempty" tf:"system_tags"` TableLimits *TableSpecTableLimits `json:"tableLimits" tf:"table_limits"` // +optional TimeCreated *string `json:"timeCreated,omitempty" tf:"time_created"` // +optional TimeOfExpiration *string `json:"timeOfExpiration,omitempty" tf:"time_of_expiration"` // +optional TimeUpdated *string `json:"timeUpdated,omitempty" tf:"time_updated"` }
func (*TableSpecResource) DeepCopy ¶
func (in *TableSpecResource) DeepCopy() *TableSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpecResource.
func (*TableSpecResource) DeepCopyInto ¶
func (in *TableSpecResource) DeepCopyInto(out *TableSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableSpecSchema ¶
type TableSpecSchema struct { // +optional Columns []TableSpecSchemaColumns `json:"columns,omitempty" tf:"columns"` // +optional PrimaryKey []string `json:"primaryKey,omitempty" tf:"primary_key"` // +optional ShardKey []string `json:"shardKey,omitempty" tf:"shard_key"` // +optional Ttl *int64 `json:"ttl,omitempty" tf:"ttl"` }
func (*TableSpecSchema) DeepCopy ¶
func (in *TableSpecSchema) DeepCopy() *TableSpecSchema
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpecSchema.
func (*TableSpecSchema) DeepCopyInto ¶
func (in *TableSpecSchema) DeepCopyInto(out *TableSpecSchema)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableSpecSchemaCodec ¶
type TableSpecSchemaCodec struct { }
+k8s:deepcopy-gen=false
func (TableSpecSchemaCodec) Decode ¶
func (TableSpecSchemaCodec) Decode(ptr unsafe.Pointer, iter *jsoniter.Iterator)
type TableSpecSchemaColumns ¶
type TableSpecSchemaColumns struct { // +optional DefaultValue *string `json:"defaultValue,omitempty" tf:"default_value"` // +optional IsNullable *bool `json:"isNullable,omitempty" tf:"is_nullable"` // +optional Name *string `json:"name,omitempty" tf:"name"` // +optional Type *string `json:"type,omitempty" tf:"type"` }
func (*TableSpecSchemaColumns) DeepCopy ¶
func (in *TableSpecSchemaColumns) DeepCopy() *TableSpecSchemaColumns
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpecSchemaColumns.
func (*TableSpecSchemaColumns) DeepCopyInto ¶
func (in *TableSpecSchemaColumns) DeepCopyInto(out *TableSpecSchemaColumns)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableSpecTableLimits ¶
type TableSpecTableLimits struct { // +optional CapacityMode *string `json:"capacityMode,omitempty" tf:"capacity_mode"` MaxReadUnits *int64 `json:"maxReadUnits" tf:"max_read_units"` MaxStorageInGbs *int64 `json:"maxStorageInGbs" tf:"max_storage_in_gbs"` MaxWriteUnits *int64 `json:"maxWriteUnits" tf:"max_write_units"` }
func (*TableSpecTableLimits) DeepCopy ¶
func (in *TableSpecTableLimits) DeepCopy() *TableSpecTableLimits
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpecTableLimits.
func (*TableSpecTableLimits) DeepCopyInto ¶
func (in *TableSpecTableLimits) DeepCopyInto(out *TableSpecTableLimits)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableSpecTableLimitsCodec ¶
type TableSpecTableLimitsCodec struct { }
+k8s:deepcopy-gen=false
func (TableSpecTableLimitsCodec) Decode ¶
func (TableSpecTableLimitsCodec) Decode(ptr unsafe.Pointer, iter *jsoniter.Iterator)
type TableStatus ¶
type TableStatus 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 (*TableStatus) DeepCopy ¶
func (in *TableStatus) DeepCopy() *TableStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableStatus.
func (*TableStatus) DeepCopyInto ¶
func (in *TableStatus) DeepCopyInto(out *TableStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.