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 ¶
- Variables
- type ClusterSync
- type ClusterSyncList
- type ClusterSyncSpec
- type ClusterSyncStatus
- type ObjectReference
- type ServiceMetadataWatcher
- type ServiceMetadataWatcherList
- type ServiceMetadataWatcherSpec
- type ServiceMetadataWatcherStatus
- type WatchedField
- type WatchedResource
- type WatchedServiceObject
- type WatchedServiceObjectStatus
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 ClusterSync ¶ added in v1.6.0
type ClusterSync struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ClusterSyncSpec `json:"spec,omitempty"` // +optional Status ClusterSyncStatus `json:"status,omitempty"` }
ClusterSync is the Schema for the ClusterSync API
func (*ClusterSync) DeepCopy ¶ added in v1.6.0
func (in *ClusterSync) DeepCopy() *ClusterSync
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSync.
func (*ClusterSync) DeepCopyInto ¶ added in v1.6.0
func (in *ClusterSync) DeepCopyInto(out *ClusterSync)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterSync) DeepCopyObject ¶ added in v1.6.0
func (in *ClusterSync) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterSyncList ¶ added in v1.6.0
type ClusterSyncList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ClusterSync `json:"items"` }
ClusterSyncList contains a list of ClusterSync
func (*ClusterSyncList) DeepCopy ¶ added in v1.6.0
func (in *ClusterSyncList) DeepCopy() *ClusterSyncList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSyncList.
func (*ClusterSyncList) DeepCopyInto ¶ added in v1.6.0
func (in *ClusterSyncList) DeepCopyInto(out *ClusterSyncList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterSyncList) DeepCopyObject ¶ added in v1.6.0
func (in *ClusterSyncList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterSyncSpec ¶ added in v1.6.0
type ClusterSyncSpec struct { // +required // +kubebuilder:validation:Required WatchedResources []WatchedResource `json:"watchedResources"` // +optional InitialData string `json:"initialData,omitempty"` }
ClusterSyncSpec defines the desired state of ClusterSync
func (*ClusterSyncSpec) DeepCopy ¶ added in v1.6.0
func (in *ClusterSyncSpec) DeepCopy() *ClusterSyncSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSyncSpec.
func (*ClusterSyncSpec) DeepCopyInto ¶ added in v1.6.0
func (in *ClusterSyncSpec) DeepCopyInto(out *ClusterSyncSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ClusterSyncStatus ¶ added in v1.6.0
type ClusterSyncStatus struct { // +optional LastSyncTime *metav1.Time `json:"lastSyncTime,omitempty"` // +optional LastSyncStatus *string `json:"lastSyncStatus,omitempty"` // +optional LastSyncError *string `json:"lastSyncError,omitempty"` // +optional SyncedData *string `json:"syncedData,omitempty"` // +optional SyncedDataHash *string `json:"syncedDataHash,omitempty"` }
ClusterSyncStatus defines the observed state of ClusterSync
func (*ClusterSyncStatus) DeepCopy ¶ added in v1.6.0
func (in *ClusterSyncStatus) DeepCopy() *ClusterSyncStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterSyncStatus.
func (*ClusterSyncStatus) DeepCopyInto ¶ added in v1.6.0
func (in *ClusterSyncStatus) DeepCopyInto(out *ClusterSyncStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
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 WatchedResource ¶ added in v1.6.0
type WatchedResource struct { // Kind of the resource Kind string `json:"kind"` // API version of the resource APIVersion string `json:"apiVersion"` // Namespace of the resource Namespace string `json:"namespace"` // Name of the resource // +optional Name string `json:"name,omitempty"` // Label selector for the resource // +optional LabelSelector *metav1.LabelSelector `json:"labelSelector,omitempty"` }
func (*WatchedResource) DeepCopy ¶ added in v1.6.0
func (in *WatchedResource) DeepCopy() *WatchedResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WatchedResource.
func (*WatchedResource) DeepCopyInto ¶ added in v1.6.0
func (in *WatchedResource) DeepCopyInto(out *WatchedResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*WatchedResource) GVK ¶ added in v1.6.0
func (res *WatchedResource) GVK() (schema.GroupVersionKind, error)
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.