Documentation ¶
Overview ¶
+groupName=event.ibm.kubeform.com
Index ¶
- Variables
- func GetDecoder() map[string]jsoniter.ValDecoder
- func GetEncoder() map[string]jsoniter.ValEncoder
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type StreamsTopic
- func (in *StreamsTopic) DeepCopy() *StreamsTopic
- func (in *StreamsTopic) DeepCopyInto(out *StreamsTopic)
- func (in *StreamsTopic) DeepCopyObject() runtime.Object
- func (r *StreamsTopic) SetupWebhookWithManager(mgr ctrl.Manager) error
- func (r *StreamsTopic) ValidateCreate() error
- func (r *StreamsTopic) ValidateDelete() error
- func (r *StreamsTopic) ValidateUpdate(old runtime.Object) error
- type StreamsTopicList
- type StreamsTopicSpec
- type StreamsTopicSpecResource
- type StreamsTopicStatus
Constants ¶
This section is empty.
Variables ¶
var ( // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. SchemeBuilder runtime.SchemeBuilder AddToScheme = localSchemeBuilder.AddToScheme )
var SchemeGroupVersion = schema.GroupVersion{Group: event.GroupName, Version: "v1alpha1"}
Functions ¶
func GetDecoder ¶
func GetDecoder() map[string]jsoniter.ValDecoder
func GetEncoder ¶
func GetEncoder() map[string]jsoniter.ValEncoder
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type StreamsTopic ¶
type StreamsTopic struct { metav1.TypeMeta `json:",inline,omitempty"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec StreamsTopicSpec `json:"spec,omitempty"` Status StreamsTopicStatus `json:"status,omitempty"` }
func (*StreamsTopic) DeepCopy ¶
func (in *StreamsTopic) DeepCopy() *StreamsTopic
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StreamsTopic.
func (*StreamsTopic) DeepCopyInto ¶
func (in *StreamsTopic) DeepCopyInto(out *StreamsTopic)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StreamsTopic) DeepCopyObject ¶
func (in *StreamsTopic) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*StreamsTopic) SetupWebhookWithManager ¶
func (r *StreamsTopic) SetupWebhookWithManager(mgr ctrl.Manager) error
func (*StreamsTopic) ValidateCreate ¶
func (r *StreamsTopic) ValidateCreate() error
ValidateCreate implements webhook.Validator so a webhook will be registered for the type
func (*StreamsTopic) ValidateDelete ¶
func (r *StreamsTopic) ValidateDelete() error
ValidateDelete implements webhook.Validator so a webhook will be registered for the type
func (*StreamsTopic) ValidateUpdate ¶
func (r *StreamsTopic) ValidateUpdate(old runtime.Object) error
ValidateUpdate implements webhook.Validator so a webhook will be registered for the type
type StreamsTopicList ¶
type StreamsTopicList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` // Items is a list of StreamsTopic CRD objects Items []StreamsTopic `json:"items,omitempty"` }
StreamsTopicList is a list of StreamsTopics
func (*StreamsTopicList) DeepCopy ¶
func (in *StreamsTopicList) DeepCopy() *StreamsTopicList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StreamsTopicList.
func (*StreamsTopicList) DeepCopyInto ¶
func (in *StreamsTopicList) DeepCopyInto(out *StreamsTopicList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*StreamsTopicList) DeepCopyObject ¶
func (in *StreamsTopicList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type StreamsTopicSpec ¶
type StreamsTopicSpec struct { State *StreamsTopicSpecResource `json:"state,omitempty" tf:"-"` Resource StreamsTopicSpecResource `json:"resource" tf:"resource"` UpdatePolicy base.UpdatePolicy `json:"updatePolicy,omitempty" tf:"-"` TerminationPolicy base.TerminationPolicy `json:"terminationPolicy,omitempty" tf:"-"` ProviderRef core.LocalObjectReference `json:"providerRef" tf:"-"` BackendRef *core.LocalObjectReference `json:"backendRef,omitempty" tf:"-"` }
func (*StreamsTopicSpec) DeepCopy ¶
func (in *StreamsTopicSpec) DeepCopy() *StreamsTopicSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StreamsTopicSpec.
func (*StreamsTopicSpec) DeepCopyInto ¶
func (in *StreamsTopicSpec) DeepCopyInto(out *StreamsTopicSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StreamsTopicSpecResource ¶
type StreamsTopicSpecResource struct { ID string `json:"id,omitempty" tf:"id,omitempty"` // The configuration parameters of a topic // +optional Config map[string]string `json:"config,omitempty" tf:"config"` // Kafka brokers addresses for interacting with Kafka native API // +optional KafkaBrokersSasl []string `json:"kafkaBrokersSasl,omitempty" tf:"kafka_brokers_sasl"` // API endpoint for interacting with Event Streams REST API // +optional KafkaHTTPURL *string `json:"kafkaHTTPURL,omitempty" tf:"kafka_http_url"` // The name of the topic Name *string `json:"name" tf:"name"` // The number of partitions // +optional Partitions *int64 `json:"partitions,omitempty" tf:"partitions"` // The CRN of the Event Streams instance ResourceInstanceID *string `json:"resourceInstanceID" tf:"resource_instance_id"` }
func (*StreamsTopicSpecResource) DeepCopy ¶
func (in *StreamsTopicSpecResource) DeepCopy() *StreamsTopicSpecResource
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StreamsTopicSpecResource.
func (*StreamsTopicSpecResource) DeepCopyInto ¶
func (in *StreamsTopicSpecResource) DeepCopyInto(out *StreamsTopicSpecResource)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StreamsTopicStatus ¶
type StreamsTopicStatus struct { // Resource generation, which is updated on mutation by the API Server. // +optional ObservedGeneration int64 `json:"observedGeneration,omitempty"` // +optional Phase status.Status `json:"phase,omitempty"` // +optional Conditions []kmapi.Condition `json:"conditions,omitempty"` }
func (*StreamsTopicStatus) DeepCopy ¶
func (in *StreamsTopicStatus) DeepCopy() *StreamsTopicStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StreamsTopicStatus.
func (*StreamsTopicStatus) DeepCopyInto ¶
func (in *StreamsTopicStatus) DeepCopyInto(out *StreamsTopicStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.