k8s.io/client-go@v0.31.1/applyconfigurations/resource/v1alpha3/deviceclaim.go (about) 1 /* 2 Copyright The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 // Code generated by applyconfiguration-gen. DO NOT EDIT. 18 19 package v1alpha3 20 21 // DeviceClaimApplyConfiguration represents a declarative configuration of the DeviceClaim type for use 22 // with apply. 23 type DeviceClaimApplyConfiguration struct { 24 Requests []DeviceRequestApplyConfiguration `json:"requests,omitempty"` 25 Constraints []DeviceConstraintApplyConfiguration `json:"constraints,omitempty"` 26 Config []DeviceClaimConfigurationApplyConfiguration `json:"config,omitempty"` 27 } 28 29 // DeviceClaimApplyConfiguration constructs a declarative configuration of the DeviceClaim type for use with 30 // apply. 31 func DeviceClaim() *DeviceClaimApplyConfiguration { 32 return &DeviceClaimApplyConfiguration{} 33 } 34 35 // WithRequests adds the given value to the Requests field in the declarative configuration 36 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 37 // If called multiple times, values provided by each call will be appended to the Requests field. 38 func (b *DeviceClaimApplyConfiguration) WithRequests(values ...*DeviceRequestApplyConfiguration) *DeviceClaimApplyConfiguration { 39 for i := range values { 40 if values[i] == nil { 41 panic("nil value passed to WithRequests") 42 } 43 b.Requests = append(b.Requests, *values[i]) 44 } 45 return b 46 } 47 48 // WithConstraints adds the given value to the Constraints field in the declarative configuration 49 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 50 // If called multiple times, values provided by each call will be appended to the Constraints field. 51 func (b *DeviceClaimApplyConfiguration) WithConstraints(values ...*DeviceConstraintApplyConfiguration) *DeviceClaimApplyConfiguration { 52 for i := range values { 53 if values[i] == nil { 54 panic("nil value passed to WithConstraints") 55 } 56 b.Constraints = append(b.Constraints, *values[i]) 57 } 58 return b 59 } 60 61 // WithConfig adds the given value to the Config field in the declarative configuration 62 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 63 // If called multiple times, values provided by each call will be appended to the Config field. 64 func (b *DeviceClaimApplyConfiguration) WithConfig(values ...*DeviceClaimConfigurationApplyConfiguration) *DeviceClaimApplyConfiguration { 65 for i := range values { 66 if values[i] == nil { 67 panic("nil value passed to WithConfig") 68 } 69 b.Config = append(b.Config, *values[i]) 70 } 71 return b 72 }