Documentation ¶
Overview ¶
+groupName=dataexchange.aws.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 DataSet
- func (in *DataSet) DeepCopy() *DataSet
- func (in *DataSet) DeepCopyInto(out *DataSet)
- func (in *DataSet) DeepCopyObject() runtime.Object
- func (r *DataSet) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *DataSet) ValidateCreate() error
- func (r *DataSet) ValidateDelete() error
- func (r *DataSet) ValidateUpdate(old runtime.Object) error
- type DataSetList
- type DataSetSpec
- type DataSetSpecResource
- type DataSetStatus
- type Revision
- func (in *Revision) DeepCopy() *Revision
- func (in *Revision) DeepCopyInto(out *Revision)
- func (in *Revision) DeepCopyObject() runtime.Object
- func (r *Revision) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Revision) ValidateCreate() error
- func (r *Revision) ValidateDelete() error
- func (r *Revision) ValidateUpdate(old runtime.Object) error
- type RevisionList
- type RevisionSpec
- type RevisionSpecResource
- type RevisionStatus
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: dataexchange.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 DataSet ¶
type DataSet struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec DataSetSpec `json:"spec,omitempty"` Status DataSetStatus `json:"status,omitempty"` }
func (*DataSet) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSet.
func (*DataSet) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DataSet) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*DataSet) SetupWebhookWithManager ¶
func (*DataSet) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*DataSet) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type DataSetList ¶
type DataSetList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of DataSet CRD objects Items []DataSet `json:"items,omitempty"` }
DataSetList is a list of DataSets
func (*DataSetList) DeepCopy ¶
func (in *DataSetList) DeepCopy() *DataSetList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSetList.
func (*DataSetList) DeepCopyInto ¶
func (in *DataSetList) DeepCopyInto(out *DataSetList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DataSetList) DeepCopyObject ¶
func (in *DataSetList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type DataSetSpec ¶
type DataSetSpec struct { State *DataSetSpecResource `json:"state,omitempty" tf:"-"` Resource DataSetSpecResource `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 (*DataSetSpec) DeepCopy ¶
func (in *DataSetSpec) DeepCopy() *DataSetSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSetSpec.
func (*DataSetSpec) DeepCopyInto ¶
func (in *DataSetSpec) DeepCopyInto(out *DataSetSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DataSetSpecResource ¶
type DataSetSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` AssetType *string `json:"assetType" tf:"asset_type"` Description *string `json:"description" tf:"description"` Name *string `json:"name" tf:"name"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional TagsAll *map[string]string `json:"tagsAll,omitempty" tf:"tags_all"` }
func (*DataSetSpecResource) DeepCopy ¶
func (in *DataSetSpecResource) DeepCopy() *DataSetSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSetSpecResource.
func (*DataSetSpecResource) DeepCopyInto ¶
func (in *DataSetSpecResource) DeepCopyInto(out *DataSetSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DataSetStatus ¶
type DataSetStatus 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 (*DataSetStatus) DeepCopy ¶
func (in *DataSetStatus) DeepCopy() *DataSetStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSetStatus.
func (*DataSetStatus) DeepCopyInto ¶
func (in *DataSetStatus) DeepCopyInto(out *DataSetStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Revision ¶
type Revision struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec RevisionSpec `json:"spec,omitempty"` Status RevisionStatus `json:"status,omitempty"` }
func (*Revision) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Revision.
func (*Revision) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Revision) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Revision) SetupWebhookWithManager ¶
func (*Revision) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Revision) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type RevisionList ¶
type RevisionList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Revision CRD objects Items []Revision `json:"items,omitempty"` }
RevisionList is a list of Revisions
func (*RevisionList) DeepCopy ¶
func (in *RevisionList) DeepCopy() *RevisionList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RevisionList.
func (*RevisionList) DeepCopyInto ¶
func (in *RevisionList) DeepCopyInto(out *RevisionList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RevisionList) DeepCopyObject ¶
func (in *RevisionList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RevisionSpec ¶
type RevisionSpec struct { State *RevisionSpecResource `json:"state,omitempty" tf:"-"` Resource RevisionSpecResource `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 (*RevisionSpec) DeepCopy ¶
func (in *RevisionSpec) DeepCopy() *RevisionSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RevisionSpec.
func (*RevisionSpec) DeepCopyInto ¶
func (in *RevisionSpec) DeepCopyInto(out *RevisionSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RevisionSpecResource ¶
type RevisionSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` // +optional Comment *string `json:"comment,omitempty" tf:"comment"` DataSetID *string `json:"dataSetID" tf:"data_set_id"` // +optional RevisionID *string `json:"revisionID,omitempty" tf:"revision_id"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional TagsAll *map[string]string `json:"tagsAll,omitempty" tf:"tags_all"` }
func (*RevisionSpecResource) DeepCopy ¶
func (in *RevisionSpecResource) DeepCopy() *RevisionSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RevisionSpecResource.
func (*RevisionSpecResource) DeepCopyInto ¶
func (in *RevisionSpecResource) DeepCopyInto(out *RevisionSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RevisionStatus ¶
type RevisionStatus 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 (*RevisionStatus) DeepCopy ¶
func (in *RevisionStatus) DeepCopy() *RevisionStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RevisionStatus.
func (*RevisionStatus) DeepCopyInto ¶
func (in *RevisionStatus) DeepCopyInto(out *RevisionStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.