/* 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 v1alpha3 // WorkloadReferenceApplyConfiguration represents a declarative configuration of the WorkloadReference type for use // with apply. // // WorkloadReference references the Workload object together with the template // that was used to create a particular PodGroup. type WorkloadReferenceApplyConfiguration struct { // WorkloadName is the name of the Workload object that contains a template // that was used when creating a pod group. It must // be a DNS name. // This field is required. WorkloadName *string `json:"workloadName,omitempty"` // TemplateName is the name of a template within the Workload object that // was used to create a pod group. It must be a DNS label. // This field is required. TemplateName *string `json:"templateName,omitempty"` } // WorkloadReferenceApplyConfiguration constructs a declarative configuration of the WorkloadReference type for use with // apply. func WorkloadReference() *WorkloadReferenceApplyConfiguration { return &WorkloadReferenceApplyConfiguration{} } // WithWorkloadName sets the WorkloadName 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 WorkloadName field is set to the value of the last call. func (b *WorkloadReferenceApplyConfiguration) WithWorkloadName(value string) *WorkloadReferenceApplyConfiguration { b.WorkloadName = &value return b } // WithTemplateName sets the TemplateName 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 TemplateName field is set to the value of the last call. func (b *WorkloadReferenceApplyConfiguration) WithTemplateName(value string) *WorkloadReferenceApplyConfiguration { b.TemplateName = &value return b }