2026-04-15 10:16:10 +02:00
|
|
|
// Code generated by controller-gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package v1alpha1
|
|
|
|
|
|
|
|
|
|
// GroupSpecApplyConfiguration represents a declarative configuration of the GroupSpec type for use
|
|
|
|
|
// with apply.
|
|
|
|
|
//
|
2026-04-21 15:42:11 +02:00
|
|
|
// GroupSpec defines the desired state of Group.
|
2026-04-15 10:16:10 +02:00
|
|
|
type GroupSpecApplyConfiguration struct {
|
2026-04-21 15:42:11 +02:00
|
|
|
// Name of the group.
|
2026-04-15 10:16:10 +02:00
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GroupSpecApplyConfiguration constructs a declarative configuration of the GroupSpec type for use with
|
|
|
|
|
// apply.
|
|
|
|
|
func GroupSpec() *GroupSpecApplyConfiguration {
|
|
|
|
|
return &GroupSpecApplyConfiguration{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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 (b *GroupSpecApplyConfiguration) WithName(value string) *GroupSpecApplyConfiguration {
|
|
|
|
|
b.Name = &value
|
|
|
|
|
return b
|
|
|
|
|
}
|