Documentation ¶
Overview ¶
+groupName=serverlessapplicationrepository.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 CloudformationStack
- func (in *CloudformationStack) DeepCopy() *CloudformationStack
- func (in *CloudformationStack) DeepCopyInto(out *CloudformationStack)
- func (in *CloudformationStack) DeepCopyObject() runtime.Object
- func (r *CloudformationStack) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *CloudformationStack) ValidateCreate() error
- func (r *CloudformationStack) ValidateDelete() error
- func (r *CloudformationStack) ValidateUpdate(old runtime.Object) error
- type CloudformationStackList
- type CloudformationStackSpec
- type CloudformationStackSpecResource
- type CloudformationStackStatus
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: serverlessapplicationrepository.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 CloudformationStack ¶
type CloudformationStack struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec CloudformationStackSpec `json:"spec,omitempty"` Status CloudformationStackStatus `json:"status,omitempty"` }
func (*CloudformationStack) DeepCopy ¶
func (in *CloudformationStack) DeepCopy() *CloudformationStack
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudformationStack.
func (*CloudformationStack) DeepCopyInto ¶
func (in *CloudformationStack) DeepCopyInto(out *CloudformationStack)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CloudformationStack) DeepCopyObject ¶
func (in *CloudformationStack) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*CloudformationStack) SetupWebhookWithManager ¶
func (r *CloudformationStack) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*CloudformationStack) ValidateCreate ¶
func (r *CloudformationStack) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*CloudformationStack) ValidateDelete ¶
func (r *CloudformationStack) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*CloudformationStack) ValidateUpdate ¶
func (r *CloudformationStack) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type CloudformationStackList ¶
type CloudformationStackList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of CloudformationStack CRD objects Items []CloudformationStack `json:"items,omitempty"` }
CloudformationStackList is a list of CloudformationStacks
func (*CloudformationStackList) DeepCopy ¶
func (in *CloudformationStackList) DeepCopy() *CloudformationStackList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudformationStackList.
func (*CloudformationStackList) DeepCopyInto ¶
func (in *CloudformationStackList) DeepCopyInto(out *CloudformationStackList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*CloudformationStackList) DeepCopyObject ¶
func (in *CloudformationStackList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type CloudformationStackSpec ¶
type CloudformationStackSpec struct { State *CloudformationStackSpecResource `json:"state,omitempty" tf:"-"` Resource CloudformationStackSpecResource `json:"resource" tf:"resource"` UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"` TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"` ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"` }
func (*CloudformationStackSpec) DeepCopy ¶
func (in *CloudformationStackSpec) DeepCopy() *CloudformationStackSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudformationStackSpec.
func (*CloudformationStackSpec) DeepCopyInto ¶
func (in *CloudformationStackSpec) DeepCopyInto(out *CloudformationStackSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CloudformationStackSpecResource ¶
type CloudformationStackSpecResource struct { Timeouts *base.ResourceTimeout `json:"timeouts,omitempty" tf:"timeouts"` ID string `json:"id,omitempty" tf:"id,omitempty"` ApplicationID *string `json:"applicationID" tf:"application_id"` Capabilities []string `json:"capabilities" tf:"capabilities"` Name *string `json:"name" tf:"name"` // +optional Outputs *map[string]string `json:"outputs,omitempty" tf:"outputs"` // +optional Parameters *map[string]string `json:"parameters,omitempty" tf:"parameters"` // +optional SemanticVersion *string `json:"semanticVersion,omitempty" tf:"semantic_version"` // +optional Tags *map[string]string `json:"tags,omitempty" tf:"tags"` // +optional TagsAll *map[string]string `json:"tagsAll,omitempty" tf:"tags_all"` }
func (*CloudformationStackSpecResource) DeepCopy ¶
func (in *CloudformationStackSpecResource) DeepCopy() *CloudformationStackSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudformationStackSpecResource.
func (*CloudformationStackSpecResource) DeepCopyInto ¶
func (in *CloudformationStackSpecResource) DeepCopyInto(out *CloudformationStackSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CloudformationStackStatus ¶
type CloudformationStackStatus 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 (*CloudformationStackStatus) DeepCopy ¶
func (in *CloudformationStackStatus) DeepCopy() *CloudformationStackStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudformationStackStatus.
func (*CloudformationStackStatus) DeepCopyInto ¶
func (in *CloudformationStackStatus) DeepCopyInto(out *CloudformationStackStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.