Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package v1alpha1 contains API Schema definitions for the registry.ethos.adobe.com v1alpha1 API group +kubebuilder:object:generate=true +groupName=registry.ethos.adobe.com
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "registry.ethos.adobe.com", Version: "v1alpha1"} // 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 ObjectReference ¶
type ObjectReference struct {
	Name       string `json:"name"`
	APIVersion string `json:"apiVersion"`
	Kind       string `json:"kind"`
}
    func (*ObjectReference) DeepCopy ¶
func (in *ObjectReference) DeepCopy() *ObjectReference
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectReference.
func (*ObjectReference) DeepCopyInto ¶
func (in *ObjectReference) DeepCopyInto(out *ObjectReference)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ObjectReference) String ¶
func (o *ObjectReference) String() string
type ServiceMetadataWatcher ¶
type ServiceMetadataWatcher struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec   ServiceMetadataWatcherSpec   `json:"spec,omitempty"`
	Status ServiceMetadataWatcherStatus `json:"status,omitempty"`
}
    ServiceMetadataWatcher is the Schema for the servicemetadatawatchers API
func (*ServiceMetadataWatcher) DeepCopy ¶
func (in *ServiceMetadataWatcher) DeepCopy() *ServiceMetadataWatcher
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceMetadataWatcher.
func (*ServiceMetadataWatcher) DeepCopyInto ¶
func (in *ServiceMetadataWatcher) DeepCopyInto(out *ServiceMetadataWatcher)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceMetadataWatcher) DeepCopyObject ¶
func (in *ServiceMetadataWatcher) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceMetadataWatcherList ¶
type ServiceMetadataWatcherList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ServiceMetadataWatcher `json:"items"`
}
    ServiceMetadataWatcherList contains a list of ServiceMetadataWatcher
func (*ServiceMetadataWatcherList) DeepCopy ¶
func (in *ServiceMetadataWatcherList) DeepCopy() *ServiceMetadataWatcherList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceMetadataWatcherList.
func (*ServiceMetadataWatcherList) DeepCopyInto ¶
func (in *ServiceMetadataWatcherList) DeepCopyInto(out *ServiceMetadataWatcherList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ServiceMetadataWatcherList) DeepCopyObject ¶
func (in *ServiceMetadataWatcherList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ServiceMetadataWatcherSpec ¶
type ServiceMetadataWatcherSpec struct {
	WatchedServiceObjects []WatchedServiceObject `json:"watchedServiceObjects"`
}
    ServiceMetadataWatcherSpec defines the desired state of ServiceMetadataWatcher
func (*ServiceMetadataWatcherSpec) DeepCopy ¶
func (in *ServiceMetadataWatcherSpec) DeepCopy() *ServiceMetadataWatcherSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceMetadataWatcherSpec.
func (*ServiceMetadataWatcherSpec) DeepCopyInto ¶
func (in *ServiceMetadataWatcherSpec) DeepCopyInto(out *ServiceMetadataWatcherSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServiceMetadataWatcherStatus ¶
type ServiceMetadataWatcherStatus struct {
	WatchedServiceObjects []WatchedServiceObjectStatus `json:"watchedServiceObjects"`
}
    ServiceMetadataWatcherStatus defines the observed state of ServiceMetadataWatcher
func (*ServiceMetadataWatcherStatus) DeepCopy ¶
func (in *ServiceMetadataWatcherStatus) DeepCopy() *ServiceMetadataWatcherStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceMetadataWatcherStatus.
func (*ServiceMetadataWatcherStatus) DeepCopyInto ¶
func (in *ServiceMetadataWatcherStatus) DeepCopyInto(out *ServiceMetadataWatcherStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WatchedField ¶
func (*WatchedField) DeepCopy ¶
func (in *WatchedField) DeepCopy() *WatchedField
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WatchedField.
func (*WatchedField) DeepCopyInto ¶
func (in *WatchedField) DeepCopyInto(out *WatchedField)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WatchedServiceObject ¶
type WatchedServiceObject struct {
	ObjectReference ObjectReference `json:"objectReference"`
	WatchedFields   []WatchedField  `json:"watchedFields"`
}
    func (*WatchedServiceObject) DeepCopy ¶
func (in *WatchedServiceObject) DeepCopy() *WatchedServiceObject
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WatchedServiceObject.
func (*WatchedServiceObject) DeepCopyInto ¶
func (in *WatchedServiceObject) DeepCopyInto(out *WatchedServiceObject)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type WatchedServiceObjectStatus ¶
type WatchedServiceObjectStatus struct {
	LastUpdated     metav1.Time     `json:"lastUpdated"`
	ObjectReference ObjectReference `json:"objectReference"`
	Errors          []string        `json:"errors"`
}
    func (*WatchedServiceObjectStatus) DeepCopy ¶
func (in *WatchedServiceObjectStatus) DeepCopy() *WatchedServiceObjectStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WatchedServiceObjectStatus.
func (*WatchedServiceObjectStatus) DeepCopyInto ¶
func (in *WatchedServiceObjectStatus) DeepCopyInto(out *WatchedServiceObjectStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.