Documentation ¶
Overview ¶
+groupName=key.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 Pair
- func (in *Pair) DeepCopy() *Pair
- func (in *Pair) DeepCopyInto(out *Pair)
- func (in *Pair) DeepCopyObject() runtime.Object
- func (r *Pair) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Pair) ValidateCreate() error
- func (r *Pair) ValidateDelete() error
- func (r *Pair) ValidateUpdate(old runtime.Object) error
- type PairList
- type PairSpec
- type PairSpecResource
- type PairStatus
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: key.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 Pair ¶
type Pair struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec PairSpec `json:"spec,omitempty"` Status PairStatus `json:"status,omitempty"` }
func (*Pair) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Pair.
func (*Pair) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Pair) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Pair) SetupWebhookWithManager ¶
func (*Pair) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Pair) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type PairList ¶
type PairList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Pair CRD objects Items []Pair `json:"items,omitempty"` }
PairList is a list of Pairs
func (*PairList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PairList.
func (*PairList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*PairList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type PairSpec ¶
type PairSpec struct { State *PairSpecResource `json:"state,omitempty" tf:"-"` Resource PairSpecResource `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 (*PairSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PairSpec.
func (*PairSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PairSpecResource ¶
type PairSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // +optional Arn *string `json:"arn,omitempty" tf:"arn"` // +optional Fingerprint *string `json:"fingerprint,omitempty" tf:"fingerprint"` // +optional KeyName *string `json:"keyName,omitempty" tf:"key_name"` // +optional KeyNamePrefix *string `json:"keyNamePrefix,omitempty" tf:"key_name_prefix"` // +optional KeyPairID *string `json:"keyPairID,omitempty" tf:"key_pair_id"` PublicKey *string `json:"publicKey" tf:"public_key"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional TagsAll *map[string]string `json:"tagsAll,omitempty" tf:"tags_all"` }
func (*PairSpecResource) DeepCopy ¶
func (in *PairSpecResource) DeepCopy() *PairSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PairSpecResource.
func (*PairSpecResource) DeepCopyInto ¶
func (in *PairSpecResource) DeepCopyInto(out *PairSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PairStatus ¶
type PairStatus 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 (*PairStatus) DeepCopy ¶
func (in *PairStatus) DeepCopy() *PairStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PairStatus.
func (*PairStatus) DeepCopyInto ¶
func (in *PairStatus) DeepCopyInto(out *PairStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.