Documentation ¶
Overview ¶
+groupName=file.vsphere.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 File
- func (in *File) DeepCopy() *File
- func (in *File) DeepCopyInto(out *File)
- func (in *File) DeepCopyObject() runtime.Object
- func (r *File) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *File) ValidateCreate() error
- func (r *File) ValidateDelete() error
- func (r *File) ValidateUpdate(old runtime.Object) error
- type FileList
- type FileSpec
- type FileSpecResource
- type FileStatus
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: file.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 File ¶
type File struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec FileSpec `json:"spec,omitempty"` Status FileStatus `json:"status,omitempty"` }
func (*File) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new File.
func (*File) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*File) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*File) SetupWebhookWithManager ¶
func (*File) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*File) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type FileList ¶
type FileList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of File CRD objects Items []File `json:"items,omitempty"` }
FileList is a list of Files
func (*FileList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FileList.
func (*FileList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*FileList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type FileSpec ¶
type FileSpec struct { State *FileSpecResource `json:"state,omitempty" tf:"-"` Resource FileSpecResource `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 (*FileSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FileSpec.
func (*FileSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type FileSpecResource ¶
type FileSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional CreateDirectories *bool `json:"createDirectories,omitempty" tf:"create_directories"` // +optional Datacenter *string `json:"datacenter,omitempty" tf:"datacenter"` Datastore *string `json:"datastore" tf:"datastore"` DestinationFile *string `json:"destinationFile" tf:"destination_file"` // +optional SourceDatacenter *string `json:"sourceDatacenter,omitempty" tf:"source_datacenter"` // +optional SourceDatastore *string `json:"sourceDatastore,omitempty" tf:"source_datastore"` SourceFile *string `json:"sourceFile" tf:"source_file"` }
func (*FileSpecResource) DeepCopy ¶
func (in *FileSpecResource) DeepCopy() *FileSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FileSpecResource.
func (*FileSpecResource) DeepCopyInto ¶
func (in *FileSpecResource) DeepCopyInto(out *FileSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type FileStatus ¶
type FileStatus 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 (*FileStatus) DeepCopy ¶
func (in *FileStatus) DeepCopy() *FileStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FileStatus.
func (*FileStatus) DeepCopyInto ¶
func (in *FileStatus) DeepCopyInto(out *FileStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.