Documentation ¶
Overview ¶
+groupName=resource.dynatrace.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 Attributes
- func (in *Attributes) DeepCopy() *Attributes
- func (in *Attributes) DeepCopyInto(out *Attributes)
- func (in *Attributes) DeepCopyObject() runtime.Object
- func (r *Attributes) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *Attributes) ValidateCreate() error
- func (r *Attributes) ValidateDelete() error
- func (r *Attributes) ValidateUpdate(old runtime.Object) error
- type AttributesList
- type AttributesSpec
- type AttributesSpecResource
- type AttributesStatus
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: resource.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 Attributes ¶
type Attributes struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec AttributesSpec `json:"spec,omitempty"` Status AttributesStatus `json:"status,omitempty"` }
func (*Attributes) DeepCopy ¶
func (in *Attributes) DeepCopy() *Attributes
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Attributes.
func (*Attributes) DeepCopyInto ¶
func (in *Attributes) DeepCopyInto(out *Attributes)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Attributes) DeepCopyObject ¶
func (in *Attributes) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Attributes) SetupWebhookWithManager ¶
func (r *Attributes) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*Attributes) ValidateCreate ¶
func (r *Attributes) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*Attributes) ValidateDelete ¶
func (r *Attributes) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*Attributes) ValidateUpdate ¶
func (r *Attributes) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type AttributesList ¶
type AttributesList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of Attributes CRD objects Items []Attributes `json:"items,omitempty"` }
AttributesList is a list of Attributess
func (*AttributesList) DeepCopy ¶
func (in *AttributesList) DeepCopy() *AttributesList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributesList.
func (*AttributesList) DeepCopyInto ¶
func (in *AttributesList) DeepCopyInto(out *AttributesList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AttributesList) DeepCopyObject ¶
func (in *AttributesList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AttributesSpec ¶
type AttributesSpec struct { State *AttributesSpecResource `json:"state,omitempty" tf:"-"` Resource AttributesSpecResource `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 (*AttributesSpec) DeepCopy ¶
func (in *AttributesSpec) DeepCopy() *AttributesSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributesSpec.
func (*AttributesSpec) DeepCopyInto ¶
func (in *AttributesSpec) DeepCopyInto(out *AttributesSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AttributesSpecResource ¶
type AttributesSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // configured attributes that currently shouldn't be taken into consideration // +optional Disabled []string `json:"disabled,omitempty" tf:"disabled"` // attributes that should get captured // +optional Enabled []string `json:"enabled,omitempty" tf:"enabled"` }
func (*AttributesSpecResource) DeepCopy ¶
func (in *AttributesSpecResource) DeepCopy() *AttributesSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributesSpecResource.
func (*AttributesSpecResource) DeepCopyInto ¶
func (in *AttributesSpecResource) DeepCopyInto(out *AttributesSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AttributesStatus ¶
type AttributesStatus 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 (*AttributesStatus) DeepCopy ¶
func (in *AttributesStatus) DeepCopy() *AttributesStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributesStatus.
func (*AttributesStatus) DeepCopyInto ¶
func (in *AttributesStatus) DeepCopyInto(out *AttributesStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.