v1

package
v1.1.1 Latest Latest
Warning

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

Go to latest
Published: Mar 17, 2026 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BackfillRequestApplyConfiguration

type BackfillRequestApplyConfiguration struct {
	metav1.TypeMetaApplyConfiguration    `json:",inline"`
	*metav1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"`
	Spec                                 *BackfillRequestSpecApplyConfiguration   `json:"spec,omitempty"`
	Status                               *BackfillRequestStatusApplyConfiguration `json:"status,omitempty"`
}

BackfillRequestApplyConfiguration represents a declarative configuration of the BackfillRequest type for use with apply.

BackfillRequest is the Schema for the backfill request API

func BackfillRequest

func BackfillRequest(name, namespace string) *BackfillRequestApplyConfiguration

BackfillRequest constructs a declarative configuration of the BackfillRequest type for use with apply.

func (*BackfillRequestApplyConfiguration) GetAPIVersion

func (b *BackfillRequestApplyConfiguration) GetAPIVersion() *string

GetAPIVersion retrieves the value of the APIVersion field in the declarative configuration.

func (*BackfillRequestApplyConfiguration) GetKind

GetKind retrieves the value of the Kind field in the declarative configuration.

func (*BackfillRequestApplyConfiguration) GetName

GetName retrieves the value of the Name field in the declarative configuration.

func (*BackfillRequestApplyConfiguration) GetNamespace

func (b *BackfillRequestApplyConfiguration) GetNamespace() *string

GetNamespace retrieves the value of the Namespace field in the declarative configuration.

func (BackfillRequestApplyConfiguration) IsApplyConfiguration

func (b BackfillRequestApplyConfiguration) IsApplyConfiguration()

func (*BackfillRequestApplyConfiguration) WithAPIVersion

WithAPIVersion sets the APIVersion field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the APIVersion field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithAnnotations

WithAnnotations puts the entries into the Annotations field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, the entries provided by each call will be put on the Annotations field, overwriting an existing map entries in Annotations field with the same key.

func (*BackfillRequestApplyConfiguration) WithCreationTimestamp

WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the CreationTimestamp field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithDeletionGracePeriodSeconds

func (b *BackfillRequestApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *BackfillRequestApplyConfiguration

WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithDeletionTimestamp

WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the DeletionTimestamp field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithFinalizers

WithFinalizers adds the given value to the Finalizers field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the Finalizers field.

func (*BackfillRequestApplyConfiguration) WithGenerateName

WithGenerateName sets the GenerateName field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the GenerateName field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithGeneration

WithGeneration sets the Generation field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Generation field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithKind

WithKind sets the Kind field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Kind field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithLabels

WithLabels puts the entries into the Labels field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, the entries provided by each call will be put on the Labels field, overwriting an existing map entries in Labels field with the same key.

func (*BackfillRequestApplyConfiguration) WithName

WithName sets the Name field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Name field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithNamespace

WithNamespace sets the Namespace field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Namespace field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithOwnerReferences

WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the OwnerReferences field.

func (*BackfillRequestApplyConfiguration) WithResourceVersion

WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the ResourceVersion field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithSpec

WithSpec sets the Spec field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Spec field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithStatus

WithStatus sets the Status field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Status field is set to the value of the last call.

func (*BackfillRequestApplyConfiguration) WithUID

WithUID sets the UID field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the UID field is set to the value of the last call.

type BackfillRequestSpecApplyConfiguration

type BackfillRequestSpecApplyConfiguration struct {
	// StreamClass is the name of the stream class to backfill
	StreamClass *string `json:"streamClass,omitempty"`
	// StreamId is the ID of the stream to backfill
	StreamId *string `json:"streamId,omitempty"`
	// Completed indicates whether the backfill request has been completed
	Completed *bool `json:"completed,omitempty"`
}

BackfillRequestSpecApplyConfiguration represents a declarative configuration of the BackfillRequestSpec type for use with apply.

BackfillRequestSpec defines the desired state of a backfill request

func BackfillRequestSpec

func BackfillRequestSpec() *BackfillRequestSpecApplyConfiguration

BackfillRequestSpecApplyConfiguration constructs a declarative configuration of the BackfillRequestSpec type for use with apply.

func (*BackfillRequestSpecApplyConfiguration) WithCompleted

WithCompleted sets the Completed field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Completed field is set to the value of the last call.

func (*BackfillRequestSpecApplyConfiguration) WithStreamClass

WithStreamClass sets the StreamClass field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the StreamClass field is set to the value of the last call.

func (*BackfillRequestSpecApplyConfiguration) WithStreamId

WithStreamId sets the StreamId field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the StreamId field is set to the value of the last call.

type BackfillRequestStatusApplyConfiguration

type BackfillRequestStatusApplyConfiguration struct {
	// Phase represents the current phase of the backfill request
	Phase *streamingv1.Phase `json:"phase,omitempty"`
	// Conditions represent the latest available observations
	Conditions []metav1.ConditionApplyConfiguration `json:"conditions,omitempty"`
}

BackfillRequestStatusApplyConfiguration represents a declarative configuration of the BackfillRequestStatus type for use with apply.

BackfillRequestStatus defines the observed state of a backfill request

func BackfillRequestStatus

func BackfillRequestStatus() *BackfillRequestStatusApplyConfiguration

BackfillRequestStatusApplyConfiguration constructs a declarative configuration of the BackfillRequestStatus type for use with apply.

func (*BackfillRequestStatusApplyConfiguration) WithConditions

WithConditions adds the given value to the Conditions field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the Conditions field.

func (*BackfillRequestStatusApplyConfiguration) WithPhase

WithPhase sets the Phase field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Phase field is set to the value of the last call.

type StreamClassApplyConfiguration

type StreamClassApplyConfiguration struct {
	metav1.TypeMetaApplyConfiguration    `json:",inline"`
	*metav1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"`
	Spec                                 *StreamClassSpecApplyConfiguration   `json:"spec,omitempty"`
	Status                               *StreamClassStatusApplyConfiguration `json:"status,omitempty"`
}

StreamClassApplyConfiguration represents a declarative configuration of the StreamClass type for use with apply.

StreamClass is the Schema for the stream class API

func StreamClass

func StreamClass(name, namespace string) *StreamClassApplyConfiguration

StreamClass constructs a declarative configuration of the StreamClass type for use with apply.

func (*StreamClassApplyConfiguration) GetAPIVersion

func (b *StreamClassApplyConfiguration) GetAPIVersion() *string

GetAPIVersion retrieves the value of the APIVersion field in the declarative configuration.

func (*StreamClassApplyConfiguration) GetKind

func (b *StreamClassApplyConfiguration) GetKind() *string

GetKind retrieves the value of the Kind field in the declarative configuration.

func (*StreamClassApplyConfiguration) GetName

func (b *StreamClassApplyConfiguration) GetName() *string

GetName retrieves the value of the Name field in the declarative configuration.

func (*StreamClassApplyConfiguration) GetNamespace

func (b *StreamClassApplyConfiguration) GetNamespace() *string

GetNamespace retrieves the value of the Namespace field in the declarative configuration.

func (StreamClassApplyConfiguration) IsApplyConfiguration

func (b StreamClassApplyConfiguration) IsApplyConfiguration()

func (*StreamClassApplyConfiguration) WithAPIVersion

WithAPIVersion sets the APIVersion field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the APIVersion field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithAnnotations

WithAnnotations puts the entries into the Annotations field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, the entries provided by each call will be put on the Annotations field, overwriting an existing map entries in Annotations field with the same key.

func (*StreamClassApplyConfiguration) WithCreationTimestamp

WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the CreationTimestamp field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithDeletionGracePeriodSeconds

func (b *StreamClassApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *StreamClassApplyConfiguration

WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithDeletionTimestamp

WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the DeletionTimestamp field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithFinalizers

WithFinalizers adds the given value to the Finalizers field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the Finalizers field.

func (*StreamClassApplyConfiguration) WithGenerateName

WithGenerateName sets the GenerateName field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the GenerateName field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithGeneration

WithGeneration sets the Generation field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Generation field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithKind

WithKind sets the Kind field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Kind field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithLabels

WithLabels puts the entries into the Labels field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, the entries provided by each call will be put on the Labels field, overwriting an existing map entries in Labels field with the same key.

func (*StreamClassApplyConfiguration) WithName

WithName sets the Name field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Name field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithNamespace

WithNamespace sets the Namespace field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Namespace field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithOwnerReferences

WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the OwnerReferences field.

func (*StreamClassApplyConfiguration) WithResourceVersion

WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the ResourceVersion field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithSpec

WithSpec sets the Spec field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Spec field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithStatus

WithStatus sets the Status field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Status field is set to the value of the last call.

func (*StreamClassApplyConfiguration) WithUID

WithUID sets the UID field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the UID field is set to the value of the last call.

type StreamClassSpecApplyConfiguration

type StreamClassSpecApplyConfiguration struct {
	// APIGroupRef is the api group of the stream class to watch for
	APIGroupRef *string `json:"apiGroupRef,omitempty"`
	// APIVersion is the API version of the stream class to watch for
	APIVersion *string `json:"apiVersion,omitempty"`
	// KindRef is the kind of the stream class to watch for
	KindRef *string `json:"kindRef,omitempty"`
	// PluralName is the plural name of the stream class to watch for
	PluralName *string `json:"pluralName,omitempty"`
	// SecretRefs is a list of fields to be extracted from the secret
	SecretRefs []string `json:"secretRefs,omitempty"`
}

StreamClassSpecApplyConfiguration represents a declarative configuration of the StreamClassSpec type for use with apply.

StreamClassSpec defines the desired state of a stream class to watch

func StreamClassSpec

func StreamClassSpec() *StreamClassSpecApplyConfiguration

StreamClassSpecApplyConfiguration constructs a declarative configuration of the StreamClassSpec type for use with apply.

func (*StreamClassSpecApplyConfiguration) WithAPIGroupRef

WithAPIGroupRef sets the APIGroupRef field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the APIGroupRef field is set to the value of the last call.

func (*StreamClassSpecApplyConfiguration) WithAPIVersion

WithAPIVersion sets the APIVersion field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the APIVersion field is set to the value of the last call.

func (*StreamClassSpecApplyConfiguration) WithKindRef

WithKindRef sets the KindRef field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the KindRef field is set to the value of the last call.

func (*StreamClassSpecApplyConfiguration) WithPluralName

WithPluralName sets the PluralName field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the PluralName field is set to the value of the last call.

func (*StreamClassSpecApplyConfiguration) WithSecretRefs

WithSecretRefs adds the given value to the SecretRefs field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the SecretRefs field.

type StreamClassStatusApplyConfiguration

type StreamClassStatusApplyConfiguration struct {
	// Phase represents the current phase of the stream class
	Phase *streamingv1.Phase `json:"phase,omitempty"`
	// Conditions represent the latest available observations
	Conditions []metav1.ConditionApplyConfiguration `json:"conditions,omitempty"`
}

StreamClassStatusApplyConfiguration represents a declarative configuration of the StreamClassStatus type for use with apply.

StreamClassStatus defines the observed state of a stream class

func StreamClassStatus

func StreamClassStatus() *StreamClassStatusApplyConfiguration

StreamClassStatusApplyConfiguration constructs a declarative configuration of the StreamClassStatus type for use with apply.

func (*StreamClassStatusApplyConfiguration) WithConditions

WithConditions adds the given value to the Conditions field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the Conditions field.

func (*StreamClassStatusApplyConfiguration) WithPhase

WithPhase sets the Phase field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Phase field is set to the value of the last call.

type StreamingJobTemplateApplyConfiguration

type StreamingJobTemplateApplyConfiguration struct {
	metav1.TypeMetaApplyConfiguration    `json:",inline"`
	*metav1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"`
	Spec                                 *batchv1.Job `json:"spec,omitempty"`
}

StreamingJobTemplateApplyConfiguration represents a declarative configuration of the StreamingJobTemplate type for use with apply.

StreamingJobTemplate is a schema for streaming job templates

func StreamingJobTemplate

func StreamingJobTemplate(name, namespace string) *StreamingJobTemplateApplyConfiguration

StreamingJobTemplate constructs a declarative configuration of the StreamingJobTemplate type for use with apply.

func (*StreamingJobTemplateApplyConfiguration) GetAPIVersion

func (b *StreamingJobTemplateApplyConfiguration) GetAPIVersion() *string

GetAPIVersion retrieves the value of the APIVersion field in the declarative configuration.

func (*StreamingJobTemplateApplyConfiguration) GetKind

GetKind retrieves the value of the Kind field in the declarative configuration.

func (*StreamingJobTemplateApplyConfiguration) GetName

GetName retrieves the value of the Name field in the declarative configuration.

func (*StreamingJobTemplateApplyConfiguration) GetNamespace

GetNamespace retrieves the value of the Namespace field in the declarative configuration.

func (StreamingJobTemplateApplyConfiguration) IsApplyConfiguration

func (b StreamingJobTemplateApplyConfiguration) IsApplyConfiguration()

func (*StreamingJobTemplateApplyConfiguration) WithAPIVersion

WithAPIVersion sets the APIVersion field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the APIVersion field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithAnnotations

WithAnnotations puts the entries into the Annotations field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, the entries provided by each call will be put on the Annotations field, overwriting an existing map entries in Annotations field with the same key.

func (*StreamingJobTemplateApplyConfiguration) WithCreationTimestamp

WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the CreationTimestamp field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithDeletionGracePeriodSeconds

WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithDeletionTimestamp

WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the DeletionTimestamp field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithFinalizers

WithFinalizers adds the given value to the Finalizers field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the Finalizers field.

func (*StreamingJobTemplateApplyConfiguration) WithGenerateName

WithGenerateName sets the GenerateName field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the GenerateName field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithGeneration

WithGeneration sets the Generation field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Generation field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithKind

WithKind sets the Kind field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Kind field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithLabels

WithLabels puts the entries into the Labels field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, the entries provided by each call will be put on the Labels field, overwriting an existing map entries in Labels field with the same key.

func (*StreamingJobTemplateApplyConfiguration) WithName

WithName sets the Name field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Name field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithNamespace

WithNamespace sets the Namespace field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Namespace field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithOwnerReferences

WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration and returns the receiver, so that objects can be build by chaining "With" function invocations. If called multiple times, values provided by each call will be appended to the OwnerReferences field.

func (*StreamingJobTemplateApplyConfiguration) WithResourceVersion

WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the ResourceVersion field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithSpec

WithSpec sets the Spec field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the Spec field is set to the value of the last call.

func (*StreamingJobTemplateApplyConfiguration) WithUID

WithUID sets the UID field in the declarative configuration to the given value and returns the receiver, so that objects can be built by chaining "With" function invocations. If called multiple times, the UID field is set to the value of the last call.

Jump to

Keyboard shortcuts

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