Documentation ¶
Overview ¶
+groupName=external.wavefront.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 Link
- func (in *Link) DeepCopy() *Link
- func (in *Link) DeepCopyInto(out *Link)
- func (in *Link) DeepCopyObject() runtime.Object
- func (r *Link) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Link) ValidateCreate() error
- func (r *Link) ValidateDelete() error
- func (r *Link) ValidateUpdate(old runtime.Object) error
- type LinkList
- type LinkSpec
- type LinkSpecResource
- type LinkStatus
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: external.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Kind ¶
Kind takes an unqualified kind and returns a Group qualified GroupKind
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type Link ¶
type Link struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec LinkSpec `json:"spec,omitempty"` Status LinkStatus `json:"status,omitempty"` }
func (*Link) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Link.
func (*Link) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Link) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Link) SetupWebhookWithManager ¶
func (*Link) ValidateCreate ¶
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Link) ValidateDelete ¶
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
type LinkList ¶
type LinkList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Link CRD objects Items []Link `json:"items,omitempty"` }
LinkList is a list of Links
func (*LinkList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LinkList.
func (*LinkList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LinkSpec ¶
type LinkSpec struct { State *LinkSpecResource `json:"state,omitempty" tf:"-"` Resource LinkSpecResource `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 (*LinkSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LinkSpec.
type LinkSpecResource ¶
type LinkSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` Description *string `json:"description" tf:"description"` // +optional IsLogIntegration *bool `json:"isLogIntegration,omitempty" tf:"is_log_integration"` // +optional MetricFilterRegex *string `json:"metricFilterRegex,omitempty" tf:"metric_filter_regex"` Name *string `json:"name" tf:"name"` // +optional PointTagFilterRegexes *map[string]string `json:"pointTagFilterRegexes,omitempty" tf:"point_tag_filter_regexes"` // +optional SourceFilterRegex *string `json:"sourceFilterRegex,omitempty" tf:"source_filter_regex"` Template *string `json:"template" tf:"template"` }
func (*LinkSpecResource) DeepCopy ¶
func (in *LinkSpecResource) DeepCopy() *LinkSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LinkSpecResource.
func (*LinkSpecResource) DeepCopyInto ¶
func (in *LinkSpecResource) DeepCopyInto(out *LinkSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LinkStatus ¶
type LinkStatus 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 (*LinkStatus) DeepCopy ¶
func (in *LinkStatus) DeepCopy() *LinkStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LinkStatus.
func (*LinkStatus) DeepCopyInto ¶
func (in *LinkStatus) DeepCopyInto(out *LinkStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.