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 import ( 22 apicorev1 "k8s.io/api/core/v1" 23 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" 24 types "k8s.io/apimachinery/pkg/types" 25 managedfields "k8s.io/apimachinery/pkg/util/managedfields" 26 internal "k8s.io/client-go/applyconfigurations/internal" 27 v1 "k8s.io/client-go/applyconfigurations/meta/v1" 28 ) 29 30 // ServiceAccountApplyConfiguration represents an declarative configuration of the ServiceAccount type for use 31 // with apply. 32 type ServiceAccountApplyConfiguration struct { 33 v1.TypeMetaApplyConfiguration `json:",inline"` 34 *v1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"` 35 Secrets []ObjectReferenceApplyConfiguration `json:"secrets,omitempty"` 36 ImagePullSecrets []LocalObjectReferenceApplyConfiguration `json:"imagePullSecrets,omitempty"` 37 AutomountServiceAccountToken *bool `json:"automountServiceAccountToken,omitempty"` 38 } 39 40 // ServiceAccount constructs an declarative configuration of the ServiceAccount type for use with 41 // apply. 42 func ServiceAccount(name, namespace string) *ServiceAccountApplyConfiguration { 43 b := &ServiceAccountApplyConfiguration{} 44 b.WithName(name) 45 b.WithNamespace(namespace) 46 b.WithKind("ServiceAccount") 47 b.WithAPIVersion("v1") 48 return b 49 } 50 51 // ExtractServiceAccount extracts the applied configuration owned by fieldManager from 52 // serviceAccount. If no managedFields are found in serviceAccount for fieldManager, a 53 // ServiceAccountApplyConfiguration is returned with only the Name, Namespace (if applicable), 54 // APIVersion and Kind populated. It is possible that no managed fields were found for because other 55 // field managers have taken ownership of all the fields previously owned by fieldManager, or because 56 // the fieldManager never owned fields any fields. 57 // serviceAccount must be a unmodified ServiceAccount API object that was retrieved from the Kubernetes API. 58 // ExtractServiceAccount provides a way to perform a extract/modify-in-place/apply workflow. 59 // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously 60 // applied if another fieldManager has updated or force applied any of the previously applied fields. 61 // Experimental! 62 func ExtractServiceAccount(serviceAccount *apicorev1.ServiceAccount, fieldManager string) (*ServiceAccountApplyConfiguration, error) { 63 return extractServiceAccount(serviceAccount, fieldManager, "") 64 } 65 66 // ExtractServiceAccountStatus is the same as ExtractServiceAccount except 67 // that it extracts the status subresource applied configuration. 68 // Experimental! 69 func ExtractServiceAccountStatus(serviceAccount *apicorev1.ServiceAccount, fieldManager string) (*ServiceAccountApplyConfiguration, error) { 70 return extractServiceAccount(serviceAccount, fieldManager, "status") 71 } 72 73 func extractServiceAccount(serviceAccount *apicorev1.ServiceAccount, fieldManager string, subresource string) (*ServiceAccountApplyConfiguration, error) { 74 b := &ServiceAccountApplyConfiguration{} 75 err := managedfields.ExtractInto(serviceAccount, internal.Parser().Type("io.k8s.api.core.v1.ServiceAccount"), fieldManager, b, subresource) 76 if err != nil { 77 return nil, err 78 } 79 b.WithName(serviceAccount.Name) 80 b.WithNamespace(serviceAccount.Namespace) 81 82 b.WithKind("ServiceAccount") 83 b.WithAPIVersion("v1") 84 return b, nil 85 } 86 87 // WithKind sets the Kind field in the declarative configuration to the given value 88 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 89 // If called multiple times, the Kind field is set to the value of the last call. 90 func (b *ServiceAccountApplyConfiguration) WithKind(value string) *ServiceAccountApplyConfiguration { 91 b.Kind = &value 92 return b 93 } 94 95 // WithAPIVersion sets the APIVersion field in the declarative configuration to the given value 96 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 97 // If called multiple times, the APIVersion field is set to the value of the last call. 98 func (b *ServiceAccountApplyConfiguration) WithAPIVersion(value string) *ServiceAccountApplyConfiguration { 99 b.APIVersion = &value 100 return b 101 } 102 103 // WithName sets the Name field in the declarative configuration to the given value 104 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 105 // If called multiple times, the Name field is set to the value of the last call. 106 func (b *ServiceAccountApplyConfiguration) WithName(value string) *ServiceAccountApplyConfiguration { 107 b.ensureObjectMetaApplyConfigurationExists() 108 b.Name = &value 109 return b 110 } 111 112 // WithGenerateName sets the GenerateName field in the declarative configuration to the given value 113 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 114 // If called multiple times, the GenerateName field is set to the value of the last call. 115 func (b *ServiceAccountApplyConfiguration) WithGenerateName(value string) *ServiceAccountApplyConfiguration { 116 b.ensureObjectMetaApplyConfigurationExists() 117 b.GenerateName = &value 118 return b 119 } 120 121 // WithNamespace sets the Namespace field in the declarative configuration to the given value 122 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 123 // If called multiple times, the Namespace field is set to the value of the last call. 124 func (b *ServiceAccountApplyConfiguration) WithNamespace(value string) *ServiceAccountApplyConfiguration { 125 b.ensureObjectMetaApplyConfigurationExists() 126 b.Namespace = &value 127 return b 128 } 129 130 // WithUID sets the UID field in the declarative configuration to the given value 131 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 132 // If called multiple times, the UID field is set to the value of the last call. 133 func (b *ServiceAccountApplyConfiguration) WithUID(value types.UID) *ServiceAccountApplyConfiguration { 134 b.ensureObjectMetaApplyConfigurationExists() 135 b.UID = &value 136 return b 137 } 138 139 // WithResourceVersion sets the ResourceVersion field in the declarative configuration to the given value 140 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 141 // If called multiple times, the ResourceVersion field is set to the value of the last call. 142 func (b *ServiceAccountApplyConfiguration) WithResourceVersion(value string) *ServiceAccountApplyConfiguration { 143 b.ensureObjectMetaApplyConfigurationExists() 144 b.ResourceVersion = &value 145 return b 146 } 147 148 // WithGeneration sets the Generation field in the declarative configuration to the given value 149 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 150 // If called multiple times, the Generation field is set to the value of the last call. 151 func (b *ServiceAccountApplyConfiguration) WithGeneration(value int64) *ServiceAccountApplyConfiguration { 152 b.ensureObjectMetaApplyConfigurationExists() 153 b.Generation = &value 154 return b 155 } 156 157 // WithCreationTimestamp sets the CreationTimestamp field in the declarative configuration to the given value 158 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 159 // If called multiple times, the CreationTimestamp field is set to the value of the last call. 160 func (b *ServiceAccountApplyConfiguration) WithCreationTimestamp(value metav1.Time) *ServiceAccountApplyConfiguration { 161 b.ensureObjectMetaApplyConfigurationExists() 162 b.CreationTimestamp = &value 163 return b 164 } 165 166 // WithDeletionTimestamp sets the DeletionTimestamp field in the declarative configuration to the given value 167 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 168 // If called multiple times, the DeletionTimestamp field is set to the value of the last call. 169 func (b *ServiceAccountApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *ServiceAccountApplyConfiguration { 170 b.ensureObjectMetaApplyConfigurationExists() 171 b.DeletionTimestamp = &value 172 return b 173 } 174 175 // WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds field in the declarative configuration to the given value 176 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 177 // If called multiple times, the DeletionGracePeriodSeconds field is set to the value of the last call. 178 func (b *ServiceAccountApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *ServiceAccountApplyConfiguration { 179 b.ensureObjectMetaApplyConfigurationExists() 180 b.DeletionGracePeriodSeconds = &value 181 return b 182 } 183 184 // WithLabels puts the entries into the Labels field in the declarative configuration 185 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 186 // If called multiple times, the entries provided by each call will be put on the Labels field, 187 // overwriting an existing map entries in Labels field with the same key. 188 func (b *ServiceAccountApplyConfiguration) WithLabels(entries map[string]string) *ServiceAccountApplyConfiguration { 189 b.ensureObjectMetaApplyConfigurationExists() 190 if b.Labels == nil && len(entries) > 0 { 191 b.Labels = make(map[string]string, len(entries)) 192 } 193 for k, v := range entries { 194 b.Labels[k] = v 195 } 196 return b 197 } 198 199 // WithAnnotations puts the entries into the Annotations field in the declarative configuration 200 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 201 // If called multiple times, the entries provided by each call will be put on the Annotations field, 202 // overwriting an existing map entries in Annotations field with the same key. 203 func (b *ServiceAccountApplyConfiguration) WithAnnotations(entries map[string]string) *ServiceAccountApplyConfiguration { 204 b.ensureObjectMetaApplyConfigurationExists() 205 if b.Annotations == nil && len(entries) > 0 { 206 b.Annotations = make(map[string]string, len(entries)) 207 } 208 for k, v := range entries { 209 b.Annotations[k] = v 210 } 211 return b 212 } 213 214 // WithOwnerReferences adds the given value to the OwnerReferences field in the declarative configuration 215 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 216 // If called multiple times, values provided by each call will be appended to the OwnerReferences field. 217 func (b *ServiceAccountApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *ServiceAccountApplyConfiguration { 218 b.ensureObjectMetaApplyConfigurationExists() 219 for i := range values { 220 if values[i] == nil { 221 panic("nil value passed to WithOwnerReferences") 222 } 223 b.OwnerReferences = append(b.OwnerReferences, *values[i]) 224 } 225 return b 226 } 227 228 // WithFinalizers adds the given value to the Finalizers field in the declarative configuration 229 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 230 // If called multiple times, values provided by each call will be appended to the Finalizers field. 231 func (b *ServiceAccountApplyConfiguration) WithFinalizers(values ...string) *ServiceAccountApplyConfiguration { 232 b.ensureObjectMetaApplyConfigurationExists() 233 for i := range values { 234 b.Finalizers = append(b.Finalizers, values[i]) 235 } 236 return b 237 } 238 239 func (b *ServiceAccountApplyConfiguration) ensureObjectMetaApplyConfigurationExists() { 240 if b.ObjectMetaApplyConfiguration == nil { 241 b.ObjectMetaApplyConfiguration = &v1.ObjectMetaApplyConfiguration{} 242 } 243 } 244 245 // WithSecrets adds the given value to the Secrets field in the declarative configuration 246 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 247 // If called multiple times, values provided by each call will be appended to the Secrets field. 248 func (b *ServiceAccountApplyConfiguration) WithSecrets(values ...*ObjectReferenceApplyConfiguration) *ServiceAccountApplyConfiguration { 249 for i := range values { 250 if values[i] == nil { 251 panic("nil value passed to WithSecrets") 252 } 253 b.Secrets = append(b.Secrets, *values[i]) 254 } 255 return b 256 } 257 258 // WithImagePullSecrets adds the given value to the ImagePullSecrets field in the declarative configuration 259 // and returns the receiver, so that objects can be build by chaining "With" function invocations. 260 // If called multiple times, values provided by each call will be appended to the ImagePullSecrets field. 261 func (b *ServiceAccountApplyConfiguration) WithImagePullSecrets(values ...*LocalObjectReferenceApplyConfiguration) *ServiceAccountApplyConfiguration { 262 for i := range values { 263 if values[i] == nil { 264 panic("nil value passed to WithImagePullSecrets") 265 } 266 b.ImagePullSecrets = append(b.ImagePullSecrets, *values[i]) 267 } 268 return b 269 } 270 271 // WithAutomountServiceAccountToken sets the AutomountServiceAccountToken field in the declarative configuration to the given value 272 // and returns the receiver, so that objects can be built by chaining "With" function invocations. 273 // If called multiple times, the AutomountServiceAccountToken field is set to the value of the last call. 274 func (b *ServiceAccountApplyConfiguration) WithAutomountServiceAccountToken(value bool) *ServiceAccountApplyConfiguration { 275 b.AutomountServiceAccountToken = &value 276 return b 277 } 278