Files
grafana/apps/provisioning/pkg/generated/applyconfiguration/provisioning/v0alpha1/syncjoboptions.go
T
Roberto Jiménez Sánchez 102d230321 Provisioning: generate client for jobs (#109242)
* Generate client for jobs

* Revert changes in client and openapi
2025-08-06 10:32:11 +00:00

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
}