v1alpha1

package
v0.13.0 Latest Latest
Warning

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

Go to latest
Published: Feb 26, 2020 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package v1alpha1 contains API Schema definitions for the eventing v1alpha1 API group +k8s:deepcopy-gen=package,register +groupName=eventing.knative.dev

Package v1alpha1 contains API Schema definitions for the eventing v1alpha1 API group +k8s:deepcopy-gen=package,register +groupName=eventing.knative.dev

Index

Constants

View Source
const (
	InstallSucceeded     apis.ConditionType = "InstallSucceeded"
	DeploymentsAvailable apis.ConditionType = "DeploymentsAvailable"
)

Variables

View Source
var (
	// SchemeGroupVersion is group version used to register these objects
	SchemeGroupVersion = schema.GroupVersion{Group: "eventing.knative.dev", Version: "v1alpha1"}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme
	SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}
)

Functions

func RegisterDefaults

func RegisterDefaults(scheme *runtime.Scheme) error

RegisterDefaults adds defaulters functions to the given scheme. Public to allow building arbitrary schemes. All generated defaulters are covering - they call all nested defaulters.

Types

type KnativeEventing added in v0.6.0

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

	Spec   KnativeEventingSpec   `json:"spec,omitempty"`
	Status KnativeEventingStatus `json:"status,omitempty"`
}

KnativeEventing is the Schema for the KnativeEventings API +k8s:openapi-gen=true

func (*KnativeEventing) DeepCopy added in v0.6.0

func (in *KnativeEventing) DeepCopy() *KnativeEventing

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

func (*KnativeEventing) DeepCopyInto added in v0.6.0

func (in *KnativeEventing) DeepCopyInto(out *KnativeEventing)

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

func (*KnativeEventing) DeepCopyObject added in v0.6.0

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

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

type KnativeEventingList added in v0.6.0

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

KnativeEventingList contains a list of KnativeEventing

func (*KnativeEventingList) DeepCopy added in v0.6.0

func (in *KnativeEventingList) DeepCopy() *KnativeEventingList

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

func (*KnativeEventingList) DeepCopyInto added in v0.6.0

func (in *KnativeEventingList) DeepCopyInto(out *KnativeEventingList)

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

func (*KnativeEventingList) DeepCopyObject added in v0.6.0

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

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

type KnativeEventingSpec added in v0.6.0

type KnativeEventingSpec struct {
}

KnativeEventingSpec defines the desired state of KnativeEventing +k8s:openapi-gen=true

func (*KnativeEventingSpec) DeepCopy added in v0.6.0

func (in *KnativeEventingSpec) DeepCopy() *KnativeEventingSpec

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

func (*KnativeEventingSpec) DeepCopyInto added in v0.6.0

func (in *KnativeEventingSpec) DeepCopyInto(out *KnativeEventingSpec)

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

type KnativeEventingStatus added in v0.6.0

type KnativeEventingStatus struct {

	// The version of the installed release
	// +optional
	Version string `json:"version"`
	// The latest available observations of a resource's current state.
	// +optional
	// +patchMergeKey=type
	// +patchStrategy=merge
	Conditions apis.Conditions `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type"`
}

KnativeEventingStatus defines the observed state of KnativeEventing +k8s:openapi-gen=true

func (*KnativeEventingStatus) DeepCopy added in v0.6.0

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

func (*KnativeEventingStatus) DeepCopyInto added in v0.6.0

func (in *KnativeEventingStatus) DeepCopyInto(out *KnativeEventingStatus)

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

func (*KnativeEventingStatus) GetCondition added in v0.6.0

func (is *KnativeEventingStatus) GetCondition(t apis.ConditionType) *apis.Condition

func (*KnativeEventingStatus) GetConditions added in v0.6.0

func (s *KnativeEventingStatus) GetConditions() apis.Conditions

GetConditions implements apis.ConditionsAccessor

func (*KnativeEventingStatus) InitializeConditions added in v0.6.0

func (is *KnativeEventingStatus) InitializeConditions()

func (*KnativeEventingStatus) IsAvailable added in v0.6.0

func (is *KnativeEventingStatus) IsAvailable() bool

func (*KnativeEventingStatus) IsDeploying added in v0.6.0

func (is *KnativeEventingStatus) IsDeploying() bool

func (*KnativeEventingStatus) IsInstalled added in v0.6.0

func (is *KnativeEventingStatus) IsInstalled() bool

func (*KnativeEventingStatus) IsReady added in v0.6.0

func (is *KnativeEventingStatus) IsReady() bool

func (*KnativeEventingStatus) MarkDeploymentsAvailable added in v0.6.0

func (is *KnativeEventingStatus) MarkDeploymentsAvailable()

func (*KnativeEventingStatus) MarkDeploymentsNotReady added in v0.6.0

func (is *KnativeEventingStatus) MarkDeploymentsNotReady()

func (*KnativeEventingStatus) MarkIgnored added in v0.6.0

func (is *KnativeEventingStatus) MarkIgnored(msg string)

func (*KnativeEventingStatus) MarkInstallFailed added in v0.6.0

func (is *KnativeEventingStatus) MarkInstallFailed(msg string)

func (*KnativeEventingStatus) MarkInstallSucceeded added in v0.6.0

func (is *KnativeEventingStatus) MarkInstallSucceeded()

func (*KnativeEventingStatus) SetConditions added in v0.6.0

func (s *KnativeEventingStatus) SetConditions(c apis.Conditions)

SetConditions implements apis.ConditionsAccessor

Jump to

Keyboard shortcuts

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