123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /*
- Copyright The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- // Code generated by applyconfiguration-gen. DO NOT EDIT.
- package v1
- import (
- batchv1 "k8s.io/api/batch/v1"
- corev1 "k8s.io/client-go/applyconfigurations/core/v1"
- metav1 "k8s.io/client-go/applyconfigurations/meta/v1"
- )
- // JobSpecApplyConfiguration represents an declarative configuration of the JobSpec type for use
- // with apply.
- type JobSpecApplyConfiguration struct {
- Parallelism *int32 `json:"parallelism,omitempty"`
- Completions *int32 `json:"completions,omitempty"`
- ActiveDeadlineSeconds *int64 `json:"activeDeadlineSeconds,omitempty"`
- PodFailurePolicy *PodFailurePolicyApplyConfiguration `json:"podFailurePolicy,omitempty"`
- BackoffLimit *int32 `json:"backoffLimit,omitempty"`
- BackoffLimitPerIndex *int32 `json:"backoffLimitPerIndex,omitempty"`
- MaxFailedIndexes *int32 `json:"maxFailedIndexes,omitempty"`
- Selector *metav1.LabelSelectorApplyConfiguration `json:"selector,omitempty"`
- ManualSelector *bool `json:"manualSelector,omitempty"`
- Template *corev1.PodTemplateSpecApplyConfiguration `json:"template,omitempty"`
- TTLSecondsAfterFinished *int32 `json:"ttlSecondsAfterFinished,omitempty"`
- CompletionMode *batchv1.CompletionMode `json:"completionMode,omitempty"`
- Suspend *bool `json:"suspend,omitempty"`
- PodReplacementPolicy *batchv1.PodReplacementPolicy `json:"podReplacementPolicy,omitempty"`
- }
- // JobSpecApplyConfiguration constructs an declarative configuration of the JobSpec type for use with
- // apply.
- func JobSpec() *JobSpecApplyConfiguration {
- return &JobSpecApplyConfiguration{}
- }
- // WithParallelism sets the Parallelism 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 Parallelism field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithParallelism(value int32) *JobSpecApplyConfiguration {
- b.Parallelism = &value
- return b
- }
- // WithCompletions sets the Completions 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 Completions field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithCompletions(value int32) *JobSpecApplyConfiguration {
- b.Completions = &value
- return b
- }
- // WithActiveDeadlineSeconds sets the ActiveDeadlineSeconds 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 ActiveDeadlineSeconds field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithActiveDeadlineSeconds(value int64) *JobSpecApplyConfiguration {
- b.ActiveDeadlineSeconds = &value
- return b
- }
- // WithPodFailurePolicy sets the PodFailurePolicy 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 PodFailurePolicy field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithPodFailurePolicy(value *PodFailurePolicyApplyConfiguration) *JobSpecApplyConfiguration {
- b.PodFailurePolicy = value
- return b
- }
- // WithBackoffLimit sets the BackoffLimit 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 BackoffLimit field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithBackoffLimit(value int32) *JobSpecApplyConfiguration {
- b.BackoffLimit = &value
- return b
- }
- // WithBackoffLimitPerIndex sets the BackoffLimitPerIndex 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 BackoffLimitPerIndex field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithBackoffLimitPerIndex(value int32) *JobSpecApplyConfiguration {
- b.BackoffLimitPerIndex = &value
- return b
- }
- // WithMaxFailedIndexes sets the MaxFailedIndexes 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 MaxFailedIndexes field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithMaxFailedIndexes(value int32) *JobSpecApplyConfiguration {
- b.MaxFailedIndexes = &value
- return b
- }
- // WithSelector sets the Selector 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 Selector field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithSelector(value *metav1.LabelSelectorApplyConfiguration) *JobSpecApplyConfiguration {
- b.Selector = value
- return b
- }
- // WithManualSelector sets the ManualSelector 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 ManualSelector field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithManualSelector(value bool) *JobSpecApplyConfiguration {
- b.ManualSelector = &value
- return b
- }
- // WithTemplate sets the Template 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 Template field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithTemplate(value *corev1.PodTemplateSpecApplyConfiguration) *JobSpecApplyConfiguration {
- b.Template = value
- return b
- }
- // WithTTLSecondsAfterFinished sets the TTLSecondsAfterFinished 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 TTLSecondsAfterFinished field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithTTLSecondsAfterFinished(value int32) *JobSpecApplyConfiguration {
- b.TTLSecondsAfterFinished = &value
- return b
- }
- // WithCompletionMode sets the CompletionMode 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 CompletionMode field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithCompletionMode(value batchv1.CompletionMode) *JobSpecApplyConfiguration {
- b.CompletionMode = &value
- return b
- }
- // WithSuspend sets the Suspend 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 Suspend field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithSuspend(value bool) *JobSpecApplyConfiguration {
- b.Suspend = &value
- return b
- }
- // WithPodReplacementPolicy sets the PodReplacementPolicy 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 PodReplacementPolicy field is set to the value of the last call.
- func (b *JobSpecApplyConfiguration) WithPodReplacementPolicy(value batchv1.PodReplacementPolicy) *JobSpecApplyConfiguration {
- b.PodReplacementPolicy = &value
- return b
- }
|