Documentation
¶
Index ¶
- type LeaderWorkerSetOperatorApplyConfiguration
- func ExtractLeaderWorkerSetOperator(leaderWorkerSetOperator *leaderworkersetoperatorv1.LeaderWorkerSetOperator, ...) (*LeaderWorkerSetOperatorApplyConfiguration, error)
- func ExtractLeaderWorkerSetOperatorFrom(leaderWorkerSetOperator *leaderworkersetoperatorv1.LeaderWorkerSetOperator, ...) (*LeaderWorkerSetOperatorApplyConfiguration, error)
- func ExtractLeaderWorkerSetOperatorStatus(leaderWorkerSetOperator *leaderworkersetoperatorv1.LeaderWorkerSetOperator, ...) (*LeaderWorkerSetOperatorApplyConfiguration, error)
- func LeaderWorkerSetOperator(name string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) GetAPIVersion() *string
- func (b *LeaderWorkerSetOperatorApplyConfiguration) GetKind() *string
- func (b *LeaderWorkerSetOperatorApplyConfiguration) GetName() *string
- func (b *LeaderWorkerSetOperatorApplyConfiguration) GetNamespace() *string
- func (b LeaderWorkerSetOperatorApplyConfiguration) IsApplyConfiguration()
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithAPIVersion(value string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithAnnotations(entries map[string]string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithCreationTimestamp(value apismetav1.Time) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithDeletionTimestamp(value apismetav1.Time) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithFinalizers(values ...string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithGenerateName(value string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithGeneration(value int64) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithKind(value string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithLabels(entries map[string]string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithName(value string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithNamespace(value string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithOwnerReferences(values ...*metav1.OwnerReferenceApplyConfiguration) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithResourceVersion(value string) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithSpec(value *LeaderWorkerSetOperatorSpecApplyConfiguration) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithStatus(value *LeaderWorkerSetOperatorStatusApplyConfiguration) *LeaderWorkerSetOperatorApplyConfiguration
- func (b *LeaderWorkerSetOperatorApplyConfiguration) WithUID(value types.UID) *LeaderWorkerSetOperatorApplyConfiguration
- type LeaderWorkerSetOperatorSpecApplyConfiguration
- func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithLogLevel(value apioperatorv1.LogLevel) *LeaderWorkerSetOperatorSpecApplyConfiguration
- func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithManagementState(value apioperatorv1.ManagementState) *LeaderWorkerSetOperatorSpecApplyConfiguration
- func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithObservedConfig(value runtime.RawExtension) *LeaderWorkerSetOperatorSpecApplyConfiguration
- func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithOperatorLogLevel(value apioperatorv1.LogLevel) *LeaderWorkerSetOperatorSpecApplyConfiguration
- func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithUnsupportedConfigOverrides(value runtime.RawExtension) *LeaderWorkerSetOperatorSpecApplyConfiguration
- type LeaderWorkerSetOperatorStatusApplyConfiguration
- func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithConditions(values ...*operatorv1.OperatorConditionApplyConfiguration) *LeaderWorkerSetOperatorStatusApplyConfiguration
- func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithGenerations(values ...*operatorv1.GenerationStatusApplyConfiguration) *LeaderWorkerSetOperatorStatusApplyConfiguration
- func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithLatestAvailableRevision(value int32) *LeaderWorkerSetOperatorStatusApplyConfiguration
- func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithObservedGeneration(value int64) *LeaderWorkerSetOperatorStatusApplyConfiguration
- func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithReadyReplicas(value int32) *LeaderWorkerSetOperatorStatusApplyConfiguration
- func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithVersion(value string) *LeaderWorkerSetOperatorStatusApplyConfiguration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LeaderWorkerSetOperatorApplyConfiguration ¶
type LeaderWorkerSetOperatorApplyConfiguration struct {
metav1.TypeMetaApplyConfiguration `json:",inline"`
*metav1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"`
// spec holds user settable values for configuration
Spec *LeaderWorkerSetOperatorSpecApplyConfiguration `json:"spec,omitempty"`
// status holds observed values from the cluster. They may not be overridden.
Status *LeaderWorkerSetOperatorStatusApplyConfiguration `json:"status,omitempty"`
}
LeaderWorkerSetOperatorApplyConfiguration represents a declarative configuration of the LeaderWorkerSetOperator type for use with apply.
LeaderWorkerSetOperator is the Schema for the LeaderWorkerSetOperator API
func ExtractLeaderWorkerSetOperator ¶
func ExtractLeaderWorkerSetOperator(leaderWorkerSetOperator *leaderworkersetoperatorv1.LeaderWorkerSetOperator, fieldManager string) (*LeaderWorkerSetOperatorApplyConfiguration, error)
ExtractLeaderWorkerSetOperator extracts the applied configuration owned by fieldManager from leaderWorkerSetOperator. If no managedFields are found in leaderWorkerSetOperator for fieldManager, a LeaderWorkerSetOperatorApplyConfiguration is returned with only the Name, Namespace (if applicable), APIVersion and Kind populated. It is possible that no managed fields were found for because other field managers have taken ownership of all the fields previously owned by fieldManager, or because the fieldManager never owned fields any fields. leaderWorkerSetOperator must be a unmodified LeaderWorkerSetOperator API object that was retrieved from the Kubernetes API. ExtractLeaderWorkerSetOperator provides a way to perform a extract/modify-in-place/apply workflow. Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously applied if another fieldManager has updated or force applied any of the previously applied fields.
func ExtractLeaderWorkerSetOperatorFrom ¶
func ExtractLeaderWorkerSetOperatorFrom(leaderWorkerSetOperator *leaderworkersetoperatorv1.LeaderWorkerSetOperator, fieldManager string, subresource string) (*LeaderWorkerSetOperatorApplyConfiguration, error)
ExtractLeaderWorkerSetOperatorFrom extracts the applied configuration owned by fieldManager from leaderWorkerSetOperator for the specified subresource. Pass an empty string for subresource to extract the main resource. Common subresources include "status", "scale", etc. leaderWorkerSetOperator must be a unmodified LeaderWorkerSetOperator API object that was retrieved from the Kubernetes API. ExtractLeaderWorkerSetOperatorFrom provides a way to perform a extract/modify-in-place/apply workflow. Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously applied if another fieldManager has updated or force applied any of the previously applied fields.
func ExtractLeaderWorkerSetOperatorStatus ¶
func ExtractLeaderWorkerSetOperatorStatus(leaderWorkerSetOperator *leaderworkersetoperatorv1.LeaderWorkerSetOperator, fieldManager string) (*LeaderWorkerSetOperatorApplyConfiguration, error)
ExtractLeaderWorkerSetOperatorStatus extracts the applied configuration owned by fieldManager from leaderWorkerSetOperator for the status subresource.
func LeaderWorkerSetOperator ¶
func LeaderWorkerSetOperator(name string) *LeaderWorkerSetOperatorApplyConfiguration
LeaderWorkerSetOperator constructs a declarative configuration of the LeaderWorkerSetOperator type for use with apply.
func (*LeaderWorkerSetOperatorApplyConfiguration) GetAPIVersion ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) GetAPIVersion() *string
GetAPIVersion retrieves the value of the APIVersion field in the declarative configuration.
func (*LeaderWorkerSetOperatorApplyConfiguration) GetKind ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) GetKind() *string
GetKind retrieves the value of the Kind field in the declarative configuration.
func (*LeaderWorkerSetOperatorApplyConfiguration) GetName ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) GetName() *string
GetName retrieves the value of the Name field in the declarative configuration.
func (*LeaderWorkerSetOperatorApplyConfiguration) GetNamespace ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) GetNamespace() *string
GetNamespace retrieves the value of the Namespace field in the declarative configuration.
func (LeaderWorkerSetOperatorApplyConfiguration) IsApplyConfiguration ¶
func (b LeaderWorkerSetOperatorApplyConfiguration) IsApplyConfiguration()
func (*LeaderWorkerSetOperatorApplyConfiguration) WithAPIVersion ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithAPIVersion(value string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithAnnotations ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithAnnotations(entries map[string]string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithCreationTimestamp ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithCreationTimestamp(value apismetav1.Time) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithDeletionGracePeriodSeconds ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithDeletionTimestamp ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithDeletionTimestamp(value apismetav1.Time) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithFinalizers ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithFinalizers(values ...string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithGenerateName ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithGenerateName(value string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithGeneration ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithGeneration(value int64) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithKind ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithKind(value string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithLabels ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithLabels(entries map[string]string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithName ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithName(value string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithNamespace ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithNamespace(value string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithOwnerReferences ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithOwnerReferences(values ...*metav1.OwnerReferenceApplyConfiguration) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithResourceVersion ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithResourceVersion(value string) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithSpec ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithSpec(value *LeaderWorkerSetOperatorSpecApplyConfiguration) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithStatus ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithStatus(value *LeaderWorkerSetOperatorStatusApplyConfiguration) *LeaderWorkerSetOperatorApplyConfiguration
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 (*LeaderWorkerSetOperatorApplyConfiguration) WithUID ¶
func (b *LeaderWorkerSetOperatorApplyConfiguration) WithUID(value types.UID) *LeaderWorkerSetOperatorApplyConfiguration
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 LeaderWorkerSetOperatorSpecApplyConfiguration ¶
type LeaderWorkerSetOperatorSpecApplyConfiguration struct {
operatorv1.OperatorSpecApplyConfiguration `json:",inline"`
}
LeaderWorkerSetOperatorSpecApplyConfiguration represents a declarative configuration of the LeaderWorkerSetOperatorSpec type for use with apply.
LeaderWorkerSetOperatorSpec defines the desired state of LeaderWorkerSetOperator
func LeaderWorkerSetOperatorSpec ¶
func LeaderWorkerSetOperatorSpec() *LeaderWorkerSetOperatorSpecApplyConfiguration
LeaderWorkerSetOperatorSpecApplyConfiguration constructs a declarative configuration of the LeaderWorkerSetOperatorSpec type for use with apply.
func (*LeaderWorkerSetOperatorSpecApplyConfiguration) WithLogLevel ¶
func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithLogLevel(value apioperatorv1.LogLevel) *LeaderWorkerSetOperatorSpecApplyConfiguration
WithLogLevel sets the LogLevel 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 LogLevel field is set to the value of the last call.
func (*LeaderWorkerSetOperatorSpecApplyConfiguration) WithManagementState ¶
func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithManagementState(value apioperatorv1.ManagementState) *LeaderWorkerSetOperatorSpecApplyConfiguration
WithManagementState sets the ManagementState 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 ManagementState field is set to the value of the last call.
func (*LeaderWorkerSetOperatorSpecApplyConfiguration) WithObservedConfig ¶
func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithObservedConfig(value runtime.RawExtension) *LeaderWorkerSetOperatorSpecApplyConfiguration
WithObservedConfig sets the ObservedConfig 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 ObservedConfig field is set to the value of the last call.
func (*LeaderWorkerSetOperatorSpecApplyConfiguration) WithOperatorLogLevel ¶
func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithOperatorLogLevel(value apioperatorv1.LogLevel) *LeaderWorkerSetOperatorSpecApplyConfiguration
WithOperatorLogLevel sets the OperatorLogLevel 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 OperatorLogLevel field is set to the value of the last call.
func (*LeaderWorkerSetOperatorSpecApplyConfiguration) WithUnsupportedConfigOverrides ¶
func (b *LeaderWorkerSetOperatorSpecApplyConfiguration) WithUnsupportedConfigOverrides(value runtime.RawExtension) *LeaderWorkerSetOperatorSpecApplyConfiguration
WithUnsupportedConfigOverrides sets the UnsupportedConfigOverrides 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 UnsupportedConfigOverrides field is set to the value of the last call.
type LeaderWorkerSetOperatorStatusApplyConfiguration ¶
type LeaderWorkerSetOperatorStatusApplyConfiguration struct {
operatorv1.OperatorStatusApplyConfiguration `json:",inline"`
}
LeaderWorkerSetOperatorStatusApplyConfiguration represents a declarative configuration of the LeaderWorkerSetOperatorStatus type for use with apply.
LeaderWorkerSetOperatorStatus defines the observed state of LeaderWorkerSetOperator
func LeaderWorkerSetOperatorStatus ¶
func LeaderWorkerSetOperatorStatus() *LeaderWorkerSetOperatorStatusApplyConfiguration
LeaderWorkerSetOperatorStatusApplyConfiguration constructs a declarative configuration of the LeaderWorkerSetOperatorStatus type for use with apply.
func (*LeaderWorkerSetOperatorStatusApplyConfiguration) WithConditions ¶
func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithConditions(values ...*operatorv1.OperatorConditionApplyConfiguration) *LeaderWorkerSetOperatorStatusApplyConfiguration
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 (*LeaderWorkerSetOperatorStatusApplyConfiguration) WithGenerations ¶
func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithGenerations(values ...*operatorv1.GenerationStatusApplyConfiguration) *LeaderWorkerSetOperatorStatusApplyConfiguration
WithGenerations adds the given value to the Generations 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 Generations field.
func (*LeaderWorkerSetOperatorStatusApplyConfiguration) WithLatestAvailableRevision ¶
func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithLatestAvailableRevision(value int32) *LeaderWorkerSetOperatorStatusApplyConfiguration
WithLatestAvailableRevision sets the LatestAvailableRevision 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 LatestAvailableRevision field is set to the value of the last call.
func (*LeaderWorkerSetOperatorStatusApplyConfiguration) WithObservedGeneration ¶
func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithObservedGeneration(value int64) *LeaderWorkerSetOperatorStatusApplyConfiguration
WithObservedGeneration sets the ObservedGeneration 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 ObservedGeneration field is set to the value of the last call.
func (*LeaderWorkerSetOperatorStatusApplyConfiguration) WithReadyReplicas ¶
func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithReadyReplicas(value int32) *LeaderWorkerSetOperatorStatusApplyConfiguration
WithReadyReplicas sets the ReadyReplicas 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 ReadyReplicas field is set to the value of the last call.
func (*LeaderWorkerSetOperatorStatusApplyConfiguration) WithVersion ¶
func (b *LeaderWorkerSetOperatorStatusApplyConfiguration) WithVersion(value string) *LeaderWorkerSetOperatorStatusApplyConfiguration
WithVersion sets the Version 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 Version field is set to the value of the last call.