Documentation ¶
Overview ¶
+groupName=builtin.grafana.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 RoleAssignment
- func (in *RoleAssignment) DeepCopy() *RoleAssignment
- func (in *RoleAssignment) DeepCopyInto(out *RoleAssignment)
- func (in *RoleAssignment) DeepCopyObject() runtime.Object
- func (r *RoleAssignment) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *RoleAssignment) ValidateCreate() error
- func (r *RoleAssignment) ValidateDelete() error
- func (r *RoleAssignment) ValidateUpdate(old runtime.Object) error
- type RoleAssignmentList
- type RoleAssignmentSpec
- type RoleAssignmentSpecResource
- type RoleAssignmentSpecRoles
- type RoleAssignmentStatus
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: builtin.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 RoleAssignment ¶
type RoleAssignment struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec RoleAssignmentSpec `json:"spec,omitempty"` Status RoleAssignmentStatus `json:"status,omitempty"` }
func (*RoleAssignment) DeepCopy ¶
func (in *RoleAssignment) DeepCopy() *RoleAssignment
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignment.
func (*RoleAssignment) DeepCopyInto ¶
func (in *RoleAssignment) DeepCopyInto(out *RoleAssignment)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RoleAssignment) DeepCopyObject ¶
func (in *RoleAssignment) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*RoleAssignment) SetupWebhookWithManager ¶
func (r *RoleAssignment) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*RoleAssignment) ValidateCreate ¶
func (r *RoleAssignment) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*RoleAssignment) ValidateDelete ¶
func (r *RoleAssignment) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*RoleAssignment) ValidateUpdate ¶
func (r *RoleAssignment) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type RoleAssignmentList ¶
type RoleAssignmentList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of RoleAssignment CRD objects Items []RoleAssignment `json:"items,omitempty"` }
RoleAssignmentList is a list of RoleAssignments
func (*RoleAssignmentList) DeepCopy ¶
func (in *RoleAssignmentList) DeepCopy() *RoleAssignmentList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentList.
func (*RoleAssignmentList) DeepCopyInto ¶
func (in *RoleAssignmentList) DeepCopyInto(out *RoleAssignmentList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*RoleAssignmentList) DeepCopyObject ¶
func (in *RoleAssignmentList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type RoleAssignmentSpec ¶
type RoleAssignmentSpec struct { State *RoleAssignmentSpecResource `json:"state,omitempty" tf:"-"` Resource RoleAssignmentSpecResource `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 (*RoleAssignmentSpec) DeepCopy ¶
func (in *RoleAssignmentSpec) DeepCopy() *RoleAssignmentSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentSpec.
func (*RoleAssignmentSpec) DeepCopyInto ¶
func (in *RoleAssignmentSpec) DeepCopyInto(out *RoleAssignmentSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RoleAssignmentSpecResource ¶
type RoleAssignmentSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // Organization roles (`Viewer`, `Editor`, `Admin`) or `Grafana Admin` to assign the roles to. BuiltinRole *string `json:"builtinRole" tf:"builtin_role"` // Fixed or custom roles which provide granular access for specific resources within Grafana. Roles []RoleAssignmentSpecRoles `json:"roles" tf:"roles"` }
func (*RoleAssignmentSpecResource) DeepCopy ¶
func (in *RoleAssignmentSpecResource) DeepCopy() *RoleAssignmentSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentSpecResource.
func (*RoleAssignmentSpecResource) DeepCopyInto ¶
func (in *RoleAssignmentSpecResource) DeepCopyInto(out *RoleAssignmentSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RoleAssignmentSpecRoles ¶
type RoleAssignmentSpecRoles struct { // States whether the assignment is available across all organizations or not. // +optional Global *bool `json:"global,omitempty" tf:"global"` // Unique identifier of the role to assign to `builtin_role`. Uid *string `json:"uid" tf:"uid"` }
func (*RoleAssignmentSpecRoles) DeepCopy ¶
func (in *RoleAssignmentSpecRoles) DeepCopy() *RoleAssignmentSpecRoles
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentSpecRoles.
func (*RoleAssignmentSpecRoles) DeepCopyInto ¶
func (in *RoleAssignmentSpecRoles) DeepCopyInto(out *RoleAssignmentSpecRoles)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type RoleAssignmentStatus ¶
type RoleAssignmentStatus 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 (*RoleAssignmentStatus) DeepCopy ¶
func (in *RoleAssignmentStatus) DeepCopy() *RoleAssignmentStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentStatus.
func (*RoleAssignmentStatus) DeepCopyInto ¶
func (in *RoleAssignmentStatus) DeepCopyInto(out *RoleAssignmentStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.