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 v1alpha2 20 21 import ( 22 runtime "k8s.io/apimachinery/pkg/runtime" 23 ) 24 25 // StructuredResourceHandleApplyConfiguration represents an declarative configuration of the StructuredResourceHandle type for use 26 // with apply. 27 type StructuredResourceHandleApplyConfiguration struct { 28 VendorClassParameters *runtime.RawExtension `json:"vendorClassParameters,omitempty"` 29 VendorClaimParameters *runtime.RawExtension `json:"vendorClaimParameters,omitempty"` 30 NodeName *string `json:"nodeName,omitempty"` 31 Results []DriverAllocationResultApplyConfiguration `json:"results,omitempty"` 32 } 33 34 // StructuredResourceHandleApplyConfiguration constructs an declarative configuration of the StructuredResourceHandle type for use with 35 // apply. 36 func StructuredResourceHandle() *StructuredResourceHandleApplyConfiguration { 37 return &StructuredResourceHandleApplyConfiguration{} 38 } 39 40 // WithVendorClassParameters sets the VendorClassParameters field in the declarative configuration to the given value 41 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 42 // If called multiple times, the VendorClassParameters field is set to the value of the last call. 43 func (b *StructuredResourceHandleApplyConfiguration) WithVendorClassParameters(value runtime.RawExtension) *StructuredResourceHandleApplyConfiguration { 44 b.VendorClassParameters = &value 45 return b 46 } 47 48 // WithVendorClaimParameters sets the VendorClaimParameters field in the declarative configuration to the given value 49 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 50 // If called multiple times, the VendorClaimParameters field is set to the value of the last call. 51 func (b *StructuredResourceHandleApplyConfiguration) WithVendorClaimParameters(value runtime.RawExtension) *StructuredResourceHandleApplyConfiguration { 52 b.VendorClaimParameters = &value 53 return b 54 } 55 56 // WithNodeName sets the NodeName field in the declarative configuration to the given value 57 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 58 // If called multiple times, the NodeName field is set to the value of the last call. 59 func (b *StructuredResourceHandleApplyConfiguration) WithNodeName(value string) *StructuredResourceHandleApplyConfiguration { 60 b.NodeName = &value 61 return b 62 } 63 64 // WithResults adds the given value to the Results field in the declarative configuration 65 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 66 // If called multiple times, values provided by each call will be appended to the Results field. 67 func (b *StructuredResourceHandleApplyConfiguration) WithResults(values ...*DriverAllocationResultApplyConfiguration) *StructuredResourceHandleApplyConfiguration { 68 for i := range values { 69 if values[i] == nil { 70 panic("nil value passed to WithResults") 71 } 72 b.Results = append(b.Results, *values[i]) 73 } 74 return b 75 } 76