102d230321
* Generate client for jobs * Revert changes in client and openapi
26 lines
1004 B
Go
26 lines
1004 B
Go
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v0alpha1
|
|
|
|
// SyncJobOptionsApplyConfiguration represents a declarative configuration of the SyncJobOptions type for use
|
|
// with apply.
|
|
type SyncJobOptionsApplyConfiguration struct {
|
|
Incremental *bool `json:"incremental,omitempty"`
|
|
}
|
|
|
|
// SyncJobOptionsApplyConfiguration constructs a declarative configuration of the SyncJobOptions type for use with
|
|
// apply.
|
|
func SyncJobOptions() *SyncJobOptionsApplyConfiguration {
|
|
return &SyncJobOptionsApplyConfiguration{}
|
|
}
|
|
|
|
// WithIncremental sets the Incremental 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 Incremental field is set to the value of the last call.
|
|
func (b *SyncJobOptionsApplyConfiguration) WithIncremental(value bool) *SyncJobOptionsApplyConfiguration {
|
|
b.Incremental = &value
|
|
return b
|
|
}
|