Documentation ¶
Overview ¶
+groupName=object.ibm.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 StorageAccount
- func (in *StorageAccount) DeepCopy() *StorageAccount
- func (in *StorageAccount) DeepCopyInto(out *StorageAccount)
- func (in *StorageAccount) DeepCopyObject() runtime.Object
- func (r *StorageAccount) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *StorageAccount) ValidateCreate() error
- func (r *StorageAccount) ValidateDelete() error
- func (r *StorageAccount) ValidateUpdate(old runtime.Object) error
- type StorageAccountList
- type StorageAccountSpec
- type StorageAccountSpecResource
- type StorageAccountStatus
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: object.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 StorageAccount ¶
type StorageAccount struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StorageAccountSpec `json:"spec,omitempty"` Status StorageAccountStatus `json:"status,omitempty"` }
func (*StorageAccount) DeepCopy ¶
func (in *StorageAccount) DeepCopy() *StorageAccount
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageAccount.
func (*StorageAccount) DeepCopyInto ¶
func (in *StorageAccount) DeepCopyInto(out *StorageAccount)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StorageAccount) DeepCopyObject ¶
func (in *StorageAccount) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*StorageAccount) SetupWebhookWithManager ¶
func (r *StorageAccount) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*StorageAccount) ValidateCreate ¶
func (r *StorageAccount) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*StorageAccount) ValidateDelete ¶
func (r *StorageAccount) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*StorageAccount) ValidateUpdate ¶
func (r *StorageAccount) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type StorageAccountList ¶
type StorageAccountList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of StorageAccount CRD objects Items []StorageAccount `json:"items,omitempty"` }
StorageAccountList is a list of StorageAccounts
func (*StorageAccountList) DeepCopy ¶
func (in *StorageAccountList) DeepCopy() *StorageAccountList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageAccountList.
func (*StorageAccountList) DeepCopyInto ¶
func (in *StorageAccountList) DeepCopyInto(out *StorageAccountList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StorageAccountList) DeepCopyObject ¶
func (in *StorageAccountList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StorageAccountSpec ¶
type StorageAccountSpec struct { State *StorageAccountSpecResource `json:"state,omitempty" tf:"-"` Resource StorageAccountSpecResource `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 (*StorageAccountSpec) DeepCopy ¶
func (in *StorageAccountSpec) DeepCopy() *StorageAccountSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageAccountSpec.
func (*StorageAccountSpec) DeepCopyInto ¶
func (in *StorageAccountSpec) DeepCopyInto(out *StorageAccountSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StorageAccountSpecResource ¶
type StorageAccountSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional LocalNote *string `json:"localNote,omitempty" tf:"local_note"` // +optional Name *string `json:"name,omitempty" tf:"name"` // +optional Tags []string `json:"tags,omitempty" tf:"tags"` }
func (*StorageAccountSpecResource) DeepCopy ¶
func (in *StorageAccountSpecResource) DeepCopy() *StorageAccountSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageAccountSpecResource.
func (*StorageAccountSpecResource) DeepCopyInto ¶
func (in *StorageAccountSpecResource) DeepCopyInto(out *StorageAccountSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StorageAccountStatus ¶
type StorageAccountStatus 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 (*StorageAccountStatus) DeepCopy ¶
func (in *StorageAccountStatus) DeepCopy() *StorageAccountStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageAccountStatus.
func (*StorageAccountStatus) DeepCopyInto ¶
func (in *StorageAccountStatus) DeepCopyInto(out *StorageAccountStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.