Documentation ¶
Overview ¶
Package v1alpha1 is the v1alpha1 version of the API. +k8s:deepcopy-gen=package +groupName=duck.knative.dev
Index ¶
- type BackoffPolicyType
- type ChannelDefaulter
- type ChannelTemplateSpec
- type ChannelTemplateSpecInternal
- type Channelable
- type ChannelableList
- type ChannelableSpec
- type ChannelableStatus
- type DeliverySpec
- type DeliveryStatus
- type Resource
- type ResourceList
- type Subscribable
- type SubscribableStatus
- type SubscribableType
- type SubscribableTypeList
- type SubscribableTypeSpec
- type SubscribableTypeStatus
- func (s *SubscribableTypeStatus) AddSubscriberToSubscribableStatus(subscriberStatus SubscriberStatus)
- func (in *SubscribableTypeStatus) DeepCopy() *SubscribableTypeStatus
- func (in *SubscribableTypeStatus) DeepCopyInto(out *SubscribableTypeStatus)
- func (s *SubscribableTypeStatus) GetSubscribableTypeStatus() *SubscribableStatus
- func (s *SubscribableTypeStatus) SetSubscribableTypeStatus(subscriberStatus SubscribableStatus)
- type SubscriberSpec
- type SubscriberStatus
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BackoffPolicyType ¶ added in v0.10.0
type BackoffPolicyType string
BackoffPolicyType is the type for backoff policies
const ( // Linear backoff policy BackoffPolicyLinear BackoffPolicyType = "linear" // Exponential backoff policy BackoffPolicyExponential BackoffPolicyType = "exponential" )
type ChannelDefaulter ¶ added in v0.8.0
type ChannelDefaulter interface { // GetDefault determines the default Channel CRD for the given namespace. GetDefault(namespace string) *ChannelTemplateSpec }
ChannelDefaulter sets the default Channel CRD and Arguments on Channels that do not specify any implementation.
var ( // ChannelDefaulterSingleton is the global singleton used to default Channels that do not // specify a Channel CRD. ChannelDefaulterSingleton ChannelDefaulter )
type ChannelTemplateSpec ¶ added in v0.8.0
type ChannelTemplateSpec struct { metav1.TypeMeta `json:",inline"` // Spec defines the Spec to use for each channel created. Passed // in verbatim to the Channel CRD as Spec section. // +optional Spec *runtime.RawExtension `json:"spec,omitempty"` }
+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
func (*ChannelTemplateSpec) DeepCopy ¶ added in v0.8.0
func (in *ChannelTemplateSpec) DeepCopy() *ChannelTemplateSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChannelTemplateSpec.
func (*ChannelTemplateSpec) DeepCopyInto ¶ added in v0.8.0
func (in *ChannelTemplateSpec) DeepCopyInto(out *ChannelTemplateSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ChannelTemplateSpec) DeepCopyObject ¶ added in v0.8.0
func (in *ChannelTemplateSpec) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ChannelTemplateSpecInternal ¶ added in v0.8.0
type ChannelTemplateSpecInternal struct { metav1.TypeMeta `json:",inline"` // +optional metav1.ObjectMeta `json:"metadata,omitempty"` // Spec defines the Spec to use for each channel created. Passed // in verbatim to the Channel CRD as Spec section. // +optional Spec *runtime.RawExtension `json:"spec,omitempty"` }
ChannelTemplateSpecInternal is an internal only version that includes ObjectMeta so that we can easily create new Channels off of it. +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
func (*ChannelTemplateSpecInternal) DeepCopy ¶ added in v0.8.0
func (in *ChannelTemplateSpecInternal) DeepCopy() *ChannelTemplateSpecInternal
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChannelTemplateSpecInternal.
func (*ChannelTemplateSpecInternal) DeepCopyInto ¶ added in v0.8.0
func (in *ChannelTemplateSpecInternal) DeepCopyInto(out *ChannelTemplateSpecInternal)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ChannelTemplateSpecInternal) DeepCopyObject ¶ added in v0.8.0
func (in *ChannelTemplateSpecInternal) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type Channelable ¶ added in v0.7.0
type Channelable struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // Spec is the part where the Channelable fulfills the Subscribable contract. Spec ChannelableSpec `json:"spec,omitempty"` Status ChannelableStatus `json:"status,omitempty"` }
Channelable is a skeleton type wrapping Subscribable and Addressable in the manner we expect resource writers defining compatible resources to embed it. We will typically use this type to deserialize Channelable ObjectReferences and access their subscription and address data. This is not a real resource.
func (*Channelable) DeepCopy ¶ added in v0.7.0
func (in *Channelable) DeepCopy() *Channelable
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Channelable.
func (*Channelable) DeepCopyInto ¶ added in v0.7.0
func (in *Channelable) DeepCopyInto(out *Channelable)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Channelable) DeepCopyObject ¶ added in v0.7.0
func (in *Channelable) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Channelable) GetFullType ¶ added in v0.11.0
func (s *Channelable) GetFullType() duck.Populatable
GetFullType implements duck.Implementable
func (*Channelable) GetListType ¶ added in v0.7.0
func (c *Channelable) GetListType() runtime.Object
GetListType implements apis.Listable
func (*Channelable) Populate ¶ added in v0.7.0
func (c *Channelable) Populate()
Populate implements duck.Populatable
type ChannelableList ¶ added in v0.7.0
type ChannelableList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Channelable `json:"items"` }
ChannelableList is a list of Channelable resources.
func (*ChannelableList) DeepCopy ¶ added in v0.7.0
func (in *ChannelableList) DeepCopy() *ChannelableList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChannelableList.
func (*ChannelableList) DeepCopyInto ¶ added in v0.7.0
func (in *ChannelableList) DeepCopyInto(out *ChannelableList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ChannelableList) DeepCopyObject ¶ added in v0.7.0
func (in *ChannelableList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ChannelableSpec ¶ added in v0.7.0
type ChannelableSpec struct { SubscribableTypeSpec `json:",inline"` // DeliverySpec contains options controlling the event delivery // +optional Delivery *DeliverySpec `json:"delivery,omitempty"` }
ChannelableSpec contains Spec of the Channelable object
func (*ChannelableSpec) DeepCopy ¶ added in v0.7.0
func (in *ChannelableSpec) DeepCopy() *ChannelableSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChannelableSpec.
func (*ChannelableSpec) DeepCopyInto ¶ added in v0.7.0
func (in *ChannelableSpec) DeepCopyInto(out *ChannelableSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ChannelableStatus ¶ added in v0.7.0
type ChannelableStatus struct { // inherits duck/v1 Status, which currently provides: // * ObservedGeneration - the 'Generation' of the Service that was last processed by the controller. // * Conditions - the latest available observations of a resource's current state. duckv1.Status `json:",inline"` // AddressStatus is the part where the Channelable fulfills the Addressable contract. v1alpha1.AddressStatus `json:",inline"` // Subscribers is populated with the statuses of each of the Channelable's subscribers. SubscribableTypeStatus `json:",inline"` // ErrorChannel is set by the channel when it supports native error handling via a channel // +optional ErrorChannel *corev1.ObjectReference `json:"errorChannel,omitempty"` }
ChannelableStatus contains the Status of a Channelable object.
func (*ChannelableStatus) DeepCopy ¶ added in v0.7.0
func (in *ChannelableStatus) DeepCopy() *ChannelableStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChannelableStatus.
func (*ChannelableStatus) DeepCopyInto ¶ added in v0.7.0
func (in *ChannelableStatus) DeepCopyInto(out *ChannelableStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DeliverySpec ¶ added in v0.10.0
type DeliverySpec struct { // DeadLetterSink is the sink receiving event that couldn't be sent to // a destination. // +optional DeadLetterSink *duckv1.Destination `json:"deadLetterSink,omitempty"` // Retry is the minimum number of retries the sender should attempt when // sending an event before moving it to the dead letter sink. // +optional Retry *int32 `json:"retry,omitempty"` // BackoffPolicy is the retry backoff policy (linear, exponential) // +optional BackoffPolicy *BackoffPolicyType `json:"backoffPolicy,omitempty"` // BackoffDelay is the delay before retrying. // More information on Duration format: https://www.ietf.org/rfc/rfc3339.txt // // For linear policy, backoff delay is the time interval between retries. // For exponential policy , backoff delay is backoffDelay*2^<numberOfRetries> // +optional BackoffDelay *string `json:"backoffDelay,omitempty"` }
DeliverySpec contains the delivery options for event senders, such as channelable and source.
func (*DeliverySpec) DeepCopy ¶ added in v0.10.0
func (in *DeliverySpec) DeepCopy() *DeliverySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliverySpec.
func (*DeliverySpec) DeepCopyInto ¶ added in v0.10.0
func (in *DeliverySpec) DeepCopyInto(out *DeliverySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DeliveryStatus ¶ added in v0.10.0
type DeliveryStatus struct { // DeadLetterChannel is the reference to the native, platform specific channel // where failed events are sent to. // +optional DeadLetterChannel *corev1.ObjectReference `json:"deadLetterChannel,omitempty"` }
DeliveryStatus contains the Status of an object supporting delivery options.
func (*DeliveryStatus) DeepCopy ¶ added in v0.10.0
func (in *DeliveryStatus) DeepCopy() *DeliveryStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryStatus.
func (*DeliveryStatus) DeepCopyInto ¶ added in v0.10.0
func (in *DeliveryStatus) DeepCopyInto(out *DeliveryStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Resource ¶ added in v0.8.0
type Resource struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` }
Resource is a skeleton type wrapping all Kubernetes resources. It is typically used to watch arbitrary other resources (such as any Source or Addressable). This is not a real resource.
func (*Resource) DeepCopy ¶ added in v0.8.0
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Resource.
func (*Resource) DeepCopyInto ¶ added in v0.8.0
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Resource) DeepCopyObject ¶ added in v0.8.0
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Resource) GetListType ¶ added in v0.8.0
GetListType implements apis.Listable.
type ResourceList ¶ added in v0.8.0
type ResourceList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []Resource `json:"items"` }
ResourceList is a list of KResource resources
func (*ResourceList) DeepCopy ¶ added in v0.8.0
func (in *ResourceList) DeepCopy() *ResourceList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceList.
func (*ResourceList) DeepCopyInto ¶ added in v0.8.0
func (in *ResourceList) DeepCopyInto(out *ResourceList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ResourceList) DeepCopyObject ¶ added in v0.8.0
func (in *ResourceList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type Subscribable ¶
type Subscribable struct { // This is the list of subscriptions for this subscribable. // +patchMergeKey=uid // +patchStrategy=merge Subscribers []SubscriberSpec `json:"subscribers,omitempty" patchStrategy:"merge" patchMergeKey:"uid"` }
Subscribable is the schema for the subscribable portion of the spec section of the resource.
func (*Subscribable) DeepCopy ¶
func (in *Subscribable) DeepCopy() *Subscribable
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Subscribable.
func (*Subscribable) DeepCopyInto ¶
func (in *Subscribable) DeepCopyInto(out *Subscribable)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Subscribable) GetFullType ¶
func (s *Subscribable) GetFullType() duck.Populatable
GetFullType implements duck.Implementable
type SubscribableStatus ¶ added in v0.7.0
type SubscribableStatus struct { // This is the list of subscription's statuses for this channel. // +patchMergeKey=uid // +patchStrategy=merge Subscribers []SubscriberStatus `json:"subscribers,omitempty" patchStrategy:"merge" patchMergeKey:"uid"` }
SubscribableStatus is the schema for the subscribable's status portion of the status section of the resource.
func (*SubscribableStatus) DeepCopy ¶ added in v0.7.0
func (in *SubscribableStatus) DeepCopy() *SubscribableStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscribableStatus.
func (*SubscribableStatus) DeepCopyInto ¶ added in v0.7.0
func (in *SubscribableStatus) DeepCopyInto(out *SubscribableStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SubscribableType ¶ added in v0.7.0
type SubscribableType struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` // SubscribableTypeSpec is the part where Subscribable object is // configured as to be compatible with Subscribable contract. Spec SubscribableTypeSpec `json:"spec"` // SubscribableTypeStatus is the part where SubscribableStatus object is // configured as to be compatible with Subscribable contract. Status SubscribableTypeStatus `json:"status"` }
SubscribableType is a skeleton type wrapping Subscribable in the manner we expect resource writers defining compatible resources to embed it. We will typically use this type to deserialize SubscribableType ObjectReferences and access the Subscription data. This is not a real resource.
func (*SubscribableType) DeepCopy ¶ added in v0.7.0
func (in *SubscribableType) DeepCopy() *SubscribableType
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscribableType.
func (*SubscribableType) DeepCopyInto ¶ added in v0.7.0
func (in *SubscribableType) DeepCopyInto(out *SubscribableType)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SubscribableType) DeepCopyObject ¶ added in v0.7.0
func (in *SubscribableType) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*SubscribableType) GetListType ¶ added in v0.7.0
func (c *SubscribableType) GetListType() runtime.Object
GetListType implements apis.Listable
func (*SubscribableType) Populate ¶ added in v0.7.0
func (c *SubscribableType) Populate()
Populate implements duck.Populatable
type SubscribableTypeList ¶ added in v0.7.0
type SubscribableTypeList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []SubscribableType `json:"items"` }
SubscribableTypeList is a list of SubscribableType resources
func (*SubscribableTypeList) DeepCopy ¶ added in v0.7.0
func (in *SubscribableTypeList) DeepCopy() *SubscribableTypeList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscribableTypeList.
func (*SubscribableTypeList) DeepCopyInto ¶ added in v0.7.0
func (in *SubscribableTypeList) DeepCopyInto(out *SubscribableTypeList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SubscribableTypeList) DeepCopyObject ¶ added in v0.7.0
func (in *SubscribableTypeList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type SubscribableTypeSpec ¶ added in v0.7.0
type SubscribableTypeSpec struct {
Subscribable *Subscribable `json:"subscribable,omitempty"`
}
SubscribableTypeSpec shows how we expect folks to embed Subscribable in their Spec field.
func (*SubscribableTypeSpec) DeepCopy ¶ added in v0.7.0
func (in *SubscribableTypeSpec) DeepCopy() *SubscribableTypeSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscribableTypeSpec.
func (*SubscribableTypeSpec) DeepCopyInto ¶ added in v0.7.0
func (in *SubscribableTypeSpec) DeepCopyInto(out *SubscribableTypeSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SubscribableTypeStatus ¶ added in v0.7.0
type SubscribableTypeStatus struct {
SubscribableStatus *SubscribableStatus `json:"subscribableStatus,omitempty"`
}
SubscribableTypeStatus shows how we expect folks to embed Subscribable in their Status field.
func (*SubscribableTypeStatus) AddSubscriberToSubscribableStatus ¶ added in v0.9.0
func (s *SubscribableTypeStatus) AddSubscriberToSubscribableStatus(subscriberStatus SubscriberStatus)
AddSubscriberToSubscribableStatus method is a Helper method for type SubscribableTypeStatus, if Subscribable Status needs to be appended with Subscribers, use this function, so that the value is reflected in both the duplicate fields residing in SubscribableTypeStatus
func (*SubscribableTypeStatus) DeepCopy ¶ added in v0.7.0
func (in *SubscribableTypeStatus) DeepCopy() *SubscribableTypeStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscribableTypeStatus.
func (*SubscribableTypeStatus) DeepCopyInto ¶ added in v0.7.0
func (in *SubscribableTypeStatus) DeepCopyInto(out *SubscribableTypeStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*SubscribableTypeStatus) GetSubscribableTypeStatus ¶ added in v0.9.0
func (s *SubscribableTypeStatus) GetSubscribableTypeStatus() *SubscribableStatus
GetSubscribableTypeStatus method Returns the Default SubscribableStatus in this case it's SubscribableStatus This is w.r.t https://github.com/knative/eventing/pull/1685#discussion_r314797276 Due to change in the API, we support reading of SubscribableTypeStatus#DeprecatedSubscribableStatus in a logical way where we read the V2 value first and if the value is absent then we read the V1 value, Having this function here makes it convinient to read the default value at runtime.
func (*SubscribableTypeStatus) SetSubscribableTypeStatus ¶ added in v0.9.0
func (s *SubscribableTypeStatus) SetSubscribableTypeStatus(subscriberStatus SubscribableStatus)
SetSubscribableTypeStatus method sets the SubscribableStatus Values in th SubscribableTypeStatus structs This helper function ensures that we set both the values (SubscribableStatus and DeprecatedSubscribableStatus)
type SubscriberSpec ¶ added in v0.7.0
type SubscriberSpec struct { // UID is used to understand the origin of the subscriber. // +optional UID types.UID `json:"uid,omitempty"` // Generation of the origin of the subscriber with uid:UID. // +optional Generation int64 `json:"generation,omitempty"` // +optional SubscriberURI *apis.URL `json:"subscriberURI,omitempty"` // +optional ReplyURI *apis.URL `json:"replyURI,omitempty"` // +optional DeadLetterSinkURI *apis.URL `json:"deadLetterSink,omitempty"` }
SubscriberSpec defines a single subscriber to a Subscribable. Ref is a reference to the Subscription this SubscriberSpec was created for SubscriberURI is the endpoint for the subscriber ReplyURI is the endpoint for the reply At least one of SubscriberURI and ReplyURI must be present
func (*SubscriberSpec) DeepCopy ¶ added in v0.7.0
func (in *SubscriberSpec) DeepCopy() *SubscriberSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscriberSpec.
func (*SubscriberSpec) DeepCopyInto ¶ added in v0.7.0
func (in *SubscriberSpec) DeepCopyInto(out *SubscriberSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SubscriberStatus ¶ added in v0.7.0
type SubscriberStatus struct { // UID is used to understand the origin of the subscriber. // +optional UID types.UID `json:"uid,omitempty"` // Generation of the origin of the subscriber with uid:UID. // +optional ObservedGeneration int64 `json:"observedGeneration,omitempty"` // Status of the subscriber. // +optional Ready corev1.ConditionStatus `json:"ready,omitempty"` // A human readable message indicating details of Ready status. // +optional Message string `json:"message,omitempty"` }
SubscriberStatus defines the status of a single subscriber to a Channel.
func (*SubscriberStatus) DeepCopy ¶ added in v0.7.0
func (in *SubscriberStatus) DeepCopy() *SubscriberStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SubscriberStatus.
func (*SubscriberStatus) DeepCopyInto ¶ added in v0.7.0
func (in *SubscriberStatus) DeepCopyInto(out *SubscriberStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.