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 v1 20 21 // VolumeProjectionApplyConfiguration represents an declarative configuration of the VolumeProjection type for use 22 // with apply. 23 type VolumeProjectionApplyConfiguration struct { 24 Secret *SecretProjectionApplyConfiguration `json:"secret,omitempty"` 25 DownwardAPI *DownwardAPIProjectionApplyConfiguration `json:"downwardAPI,omitempty"` 26 ConfigMap *ConfigMapProjectionApplyConfiguration `json:"configMap,omitempty"` 27 ServiceAccountToken *ServiceAccountTokenProjectionApplyConfiguration `json:"serviceAccountToken,omitempty"` 28 ClusterTrustBundle *ClusterTrustBundleProjectionApplyConfiguration `json:"clusterTrustBundle,omitempty"` 29 } 30 31 // VolumeProjectionApplyConfiguration constructs an declarative configuration of the VolumeProjection type for use with 32 // apply. 33 func VolumeProjection() *VolumeProjectionApplyConfiguration { 34 return &VolumeProjectionApplyConfiguration{} 35 } 36 37 // WithSecret sets the Secret field in the declarative configuration to the given value 38 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 39 // If called multiple times, the Secret field is set to the value of the last call. 40 func (b *VolumeProjectionApplyConfiguration) WithSecret(value *SecretProjectionApplyConfiguration) *VolumeProjectionApplyConfiguration { 41 b.Secret = value 42 return b 43 } 44 45 // WithDownwardAPI sets the DownwardAPI field in the declarative configuration to the given value 46 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 47 // If called multiple times, the DownwardAPI field is set to the value of the last call. 48 func (b *VolumeProjectionApplyConfiguration) WithDownwardAPI(value *DownwardAPIProjectionApplyConfiguration) *VolumeProjectionApplyConfiguration { 49 b.DownwardAPI = value 50 return b 51 } 52 53 // WithConfigMap sets the ConfigMap field in the declarative configuration to the given value 54 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 55 // If called multiple times, the ConfigMap field is set to the value of the last call. 56 func (b *VolumeProjectionApplyConfiguration) WithConfigMap(value *ConfigMapProjectionApplyConfiguration) *VolumeProjectionApplyConfiguration { 57 b.ConfigMap = value 58 return b 59 } 60 61 // WithServiceAccountToken sets the ServiceAccountToken field in the declarative configuration to the given value 62 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 63 // If called multiple times, the ServiceAccountToken field is set to the value of the last call. 64 func (b *VolumeProjectionApplyConfiguration) WithServiceAccountToken(value *ServiceAccountTokenProjectionApplyConfiguration) *VolumeProjectionApplyConfiguration { 65 b.ServiceAccountToken = value 66 return b 67 } 68 69 // WithClusterTrustBundle sets the ClusterTrustBundle field in the declarative configuration to the given value 70 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 71 // If called multiple times, the ClusterTrustBundle field is set to the value of the last call. 72 func (b *VolumeProjectionApplyConfiguration) WithClusterTrustBundle(value *ClusterTrustBundleProjectionApplyConfiguration) *VolumeProjectionApplyConfiguration { 73 b.ClusterTrustBundle = value 74 return b 75 } 76