v1

package
v0.0.0-...-8c8f32f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 2, 2022 License: MIT Imports: 4 Imported by: 0

Documentation

Overview

Package v1 contains API Schema definitions for the nodered.nerden.de v1 API group +kubebuilder:object:generate=true +groupName=nodered.nerden.de.github.com

Index

Constants

This section is empty.

Variables

View Source
var (
	// GroupVersion is group version used to register these objects
	GroupVersion = schema.GroupVersion{Group: "nodered.nerden.de.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 Module

type Module struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   ModuleSpec   `json:"spec,omitempty"`
	Status ModuleStatus `json:"status,omitempty"`
}

Module is the Schema for the modules API

func (*Module) DeepCopy

func (in *Module) DeepCopy() *Module

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Module.

func (*Module) DeepCopyInto

func (in *Module) DeepCopyInto(out *Module)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Module) DeepCopyObject

func (in *Module) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type ModuleList

type ModuleList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Module `json:"items"`
}

ModuleList contains a list of Module

func (*ModuleList) DeepCopy

func (in *ModuleList) DeepCopy() *ModuleList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModuleList.

func (*ModuleList) DeepCopyInto

func (in *ModuleList) DeepCopyInto(out *ModuleList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ModuleList) DeepCopyObject

func (in *ModuleList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type ModuleSpec

type ModuleSpec struct {
	// Select defines which NodeRED instances are affected
	Selector    map[string]string `json:"selector,omitempty"`
	PackageName string            `json:"packageName,omitempty"`
	Version     string            `json:"version,omitempty"`
}

ModuleSpec defines the desired state of Module

func (*ModuleSpec) DeepCopy

func (in *ModuleSpec) DeepCopy() *ModuleSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModuleSpec.

func (*ModuleSpec) DeepCopyInto

func (in *ModuleSpec) DeepCopyInto(out *ModuleSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ModuleStatus

type ModuleStatus struct {
}

ModuleStatus defines the observed state of Module

func (*ModuleStatus) DeepCopy

func (in *ModuleStatus) DeepCopy() *ModuleStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ModuleStatus.

func (*ModuleStatus) DeepCopyInto

func (in *ModuleStatus) DeepCopyInto(out *ModuleStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type Nodered

type Nodered struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`

	Spec   NoderedSpec   `json:"spec,omitempty"`
	Status NoderedStatus `json:"status,omitempty"`
}

Nodered is the Schema for the nodereds API

func (*Nodered) DeepCopy

func (in *Nodered) DeepCopy() *Nodered

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Nodered.

func (*Nodered) DeepCopyInto

func (in *Nodered) DeepCopyInto(out *Nodered)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*Nodered) DeepCopyObject

func (in *Nodered) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type NoderedAdminAuth

type NoderedAdminAuth struct {
	Type  string        `json:"type,omitempty"`
	Users []NoderedUser `json:"users,omitempty"`
}

func (*NoderedAdminAuth) DeepCopy

func (in *NoderedAdminAuth) DeepCopy() *NoderedAdminAuth

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedAdminAuth.

func (*NoderedAdminAuth) DeepCopyInto

func (in *NoderedAdminAuth) DeepCopyInto(out *NoderedAdminAuth)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type NoderedList

type NoderedList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []Nodered `json:"items"`
}

NoderedList contains a list of Nodered

func (*NoderedList) DeepCopy

func (in *NoderedList) DeepCopy() *NoderedList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedList.

func (*NoderedList) DeepCopyInto

func (in *NoderedList) DeepCopyInto(out *NoderedList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*NoderedList) DeepCopyObject

func (in *NoderedList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

type NoderedSettings

type NoderedSettings struct {
	EditorTheme NoderedSettingsEditorTheme `json:"editorTheme,omitempty"`
}

func (*NoderedSettings) DeepCopy

func (in *NoderedSettings) DeepCopy() *NoderedSettings

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedSettings.

func (*NoderedSettings) DeepCopyInto

func (in *NoderedSettings) DeepCopyInto(out *NoderedSettings)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type NoderedSettingsEditorTheme

type NoderedSettingsEditorTheme struct {
	Page NoderedSettingsEditorThemePage `json:"page,omitempty"`
}

func (*NoderedSettingsEditorTheme) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedSettingsEditorTheme.

func (*NoderedSettingsEditorTheme) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type NoderedSettingsEditorThemePage

type NoderedSettingsEditorThemePage struct {
	Title string `json:"title,omitempty"`
}

func (*NoderedSettingsEditorThemePage) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedSettingsEditorThemePage.

func (*NoderedSettingsEditorThemePage) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type NoderedSpec

type NoderedSpec struct {
	Image     string           `json:"image,omitempty"`
	Settings  NoderedSettings  `json:"settings,omitempty"`
	AdminAuth NoderedAdminAuth `json:"adminAuth,omitempty"`
}

NoderedSpec defines the desired state of Nodered

func (*NoderedSpec) DeepCopy

func (in *NoderedSpec) DeepCopy() *NoderedSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedSpec.

func (*NoderedSpec) DeepCopyInto

func (in *NoderedSpec) DeepCopyInto(out *NoderedSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type NoderedStatus

type NoderedStatus struct {
}

NoderedStatus defines the observed state of Nodered

func (*NoderedStatus) DeepCopy

func (in *NoderedStatus) DeepCopy() *NoderedStatus

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedStatus.

func (*NoderedStatus) DeepCopyInto

func (in *NoderedStatus) DeepCopyInto(out *NoderedStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type NoderedUser

type NoderedUser struct {
	Username    string `json:"username,omitempty"`
	Password    string `json:"password,omitempty"`
	Permissions string `json:"permissions,omitempty"`
}

func (*NoderedUser) DeepCopy

func (in *NoderedUser) DeepCopy() *NoderedUser

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NoderedUser.

func (*NoderedUser) DeepCopyInto

func (in *NoderedUser) DeepCopyInto(out *NoderedUser)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL