Documentation
¶
Overview ¶
Package v1 contains API Schema definitions for the okta v1 API group +kubebuilder:object:generate=true +groupName=okta.github.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "okta.github.com", Version: "v1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type GroupSyncer ¶
type GroupSyncer struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec GroupSyncerSpec `json:"spec,omitempty"` Status GroupSyncerStatus `json:"status,omitempty"` }
GroupSyncer is the Schema for the groupsyncers API
func (*GroupSyncer) DeepCopy ¶
func (in *GroupSyncer) DeepCopy() *GroupSyncer
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSyncer.
func (*GroupSyncer) DeepCopyInto ¶
func (in *GroupSyncer) DeepCopyInto(out *GroupSyncer)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GroupSyncer) DeepCopyObject ¶
func (in *GroupSyncer) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (GroupSyncer) ProcessTemplate ¶
func (in GroupSyncer) ProcessTemplate(o interface{}) (string, error)
type GroupSyncerList ¶
type GroupSyncerList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []GroupSyncer `json:"items"` }
GroupSyncerList contains a list of GroupSyncer
func (*GroupSyncerList) DeepCopy ¶
func (in *GroupSyncerList) DeepCopy() *GroupSyncerList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSyncerList.
func (*GroupSyncerList) DeepCopyInto ¶
func (in *GroupSyncerList) DeepCopyInto(out *GroupSyncerList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*GroupSyncerList) DeepCopyObject ¶
func (in *GroupSyncerList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type GroupSyncerSpec ¶
type GroupSyncerSpec struct { // The name of the group to sync Group string `json:"group,omitempty"` Template string `json:"template,omitempty"` }
GroupSyncerSpec defines the desired state of GroupSyncer
func (*GroupSyncerSpec) DeepCopy ¶
func (in *GroupSyncerSpec) DeepCopy() *GroupSyncerSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSyncerSpec.
func (*GroupSyncerSpec) DeepCopyInto ¶
func (in *GroupSyncerSpec) DeepCopyInto(out *GroupSyncerSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GroupSyncerStatus ¶
type GroupSyncerStatus struct { // INSERT ADDITIONAL STATUS FIELD - define observed state of cluster // Important: Run "make" to regenerate code after modifying this file TemplateErrors map[string]string `json:"templateErrors,omitempty"` }
GroupSyncerStatus defines the observed state of GroupSyncer
func (*GroupSyncerStatus) DeepCopy ¶
func (in *GroupSyncerStatus) DeepCopy() *GroupSyncerStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupSyncerStatus.
func (*GroupSyncerStatus) DeepCopyInto ¶
func (in *GroupSyncerStatus) DeepCopyInto(out *GroupSyncerStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.