github.com/jenkins-x/jx-api@v0.0.24/pkg/config/zz_generated.deepcopy.go (about) 1 // +build !ignore_autogenerated 2 3 // Code generated by deepcopy-gen. DO NOT EDIT. 4 5 package config 6 7 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 8 func (in *Application) DeepCopyInto(out *Application) { 9 *out = *in 10 return 11 } 12 13 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Application. 14 func (in *Application) DeepCopy() *Application { 15 if in == nil { 16 return nil 17 } 18 out := new(Application) 19 in.DeepCopyInto(out) 20 return out 21 } 22 23 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 24 func (in *ApplicationConfig) DeepCopyInto(out *ApplicationConfig) { 25 *out = *in 26 if in.Applications != nil { 27 in, out := &in.Applications, &out.Applications 28 *out = make([]Application, len(*in)) 29 copy(*out, *in) 30 } 31 return 32 } 33 34 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationConfig. 35 func (in *ApplicationConfig) DeepCopy() *ApplicationConfig { 36 if in == nil { 37 return nil 38 } 39 out := new(ApplicationConfig) 40 in.DeepCopyInto(out) 41 return out 42 } 43 44 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 45 func (in *AutoUpdateConfig) DeepCopyInto(out *AutoUpdateConfig) { 46 *out = *in 47 return 48 } 49 50 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AutoUpdateConfig. 51 func (in *AutoUpdateConfig) DeepCopy() *AutoUpdateConfig { 52 if in == nil { 53 return nil 54 } 55 out := new(AutoUpdateConfig) 56 in.DeepCopyInto(out) 57 return out 58 } 59 60 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 61 func (in *AzureConfig) DeepCopyInto(out *AzureConfig) { 62 *out = *in 63 return 64 } 65 66 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureConfig. 67 func (in *AzureConfig) DeepCopy() *AzureConfig { 68 if in == nil { 69 return nil 70 } 71 out := new(AzureConfig) 72 in.DeepCopyInto(out) 73 return out 74 } 75 76 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 77 func (in *BuildPackConfig) DeepCopyInto(out *BuildPackConfig) { 78 *out = *in 79 if in.BuildPackLibrary != nil { 80 in, out := &in.BuildPackLibrary, &out.BuildPackLibrary 81 *out = new(BuildPackLibrary) 82 **out = **in 83 } 84 return 85 } 86 87 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildPackConfig. 88 func (in *BuildPackConfig) DeepCopy() *BuildPackConfig { 89 if in == nil { 90 return nil 91 } 92 out := new(BuildPackConfig) 93 in.DeepCopyInto(out) 94 return out 95 } 96 97 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 98 func (in *BuildPackLibrary) DeepCopyInto(out *BuildPackLibrary) { 99 *out = *in 100 return 101 } 102 103 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildPackLibrary. 104 func (in *BuildPackLibrary) DeepCopy() *BuildPackLibrary { 105 if in == nil { 106 return nil 107 } 108 out := new(BuildPackLibrary) 109 in.DeepCopyInto(out) 110 return out 111 } 112 113 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 114 func (in *ClusterConfig) DeepCopyInto(out *ClusterConfig) { 115 *out = *in 116 if in.AzureConfig != nil { 117 in, out := &in.AzureConfig, &out.AzureConfig 118 *out = new(AzureConfig) 119 **out = **in 120 } 121 if in.GKEConfig != nil { 122 in, out := &in.GKEConfig, &out.GKEConfig 123 *out = new(GKEConfig) 124 **out = **in 125 } 126 if in.DevEnvApprovers != nil { 127 in, out := &in.DevEnvApprovers, &out.DevEnvApprovers 128 *out = make([]string, len(*in)) 129 copy(*out, *in) 130 } 131 return 132 } 133 134 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfig. 135 func (in *ClusterConfig) DeepCopy() *ClusterConfig { 136 if in == nil { 137 return nil 138 } 139 out := new(ClusterConfig) 140 in.DeepCopyInto(out) 141 return out 142 } 143 144 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 145 func (in *EnvironmentConfig) DeepCopyInto(out *EnvironmentConfig) { 146 *out = *in 147 out.Ingress = in.Ingress 148 return 149 } 150 151 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentConfig. 152 func (in *EnvironmentConfig) DeepCopy() *EnvironmentConfig { 153 if in == nil { 154 return nil 155 } 156 out := new(EnvironmentConfig) 157 in.DeepCopyInto(out) 158 return out 159 } 160 161 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 162 func (in *GKEConfig) DeepCopyInto(out *GKEConfig) { 163 *out = *in 164 return 165 } 166 167 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GKEConfig. 168 func (in *GKEConfig) DeepCopy() *GKEConfig { 169 if in == nil { 170 return nil 171 } 172 out := new(GKEConfig) 173 in.DeepCopyInto(out) 174 return out 175 } 176 177 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 178 func (in *GithubAppConfig) DeepCopyInto(out *GithubAppConfig) { 179 *out = *in 180 return 181 } 182 183 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAppConfig. 184 func (in *GithubAppConfig) DeepCopy() *GithubAppConfig { 185 if in == nil { 186 return nil 187 } 188 out := new(GithubAppConfig) 189 in.DeepCopyInto(out) 190 return out 191 } 192 193 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 194 func (in *IngressConfig) DeepCopyInto(out *IngressConfig) { 195 *out = *in 196 out.TLS = in.TLS 197 return 198 } 199 200 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressConfig. 201 func (in *IngressConfig) DeepCopy() *IngressConfig { 202 if in == nil { 203 return nil 204 } 205 out := new(IngressConfig) 206 in.DeepCopyInto(out) 207 return out 208 } 209 210 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 211 func (in *JxInstallProfile) DeepCopyInto(out *JxInstallProfile) { 212 *out = *in 213 return 214 } 215 216 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JxInstallProfile. 217 func (in *JxInstallProfile) DeepCopy() *JxInstallProfile { 218 if in == nil { 219 return nil 220 } 221 out := new(JxInstallProfile) 222 in.DeepCopyInto(out) 223 return out 224 } 225 226 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 227 func (in *RequirementsConfig) DeepCopyInto(out *RequirementsConfig) { 228 *out = *in 229 out.AutoUpdate = in.AutoUpdate 230 if in.BuildPacks != nil { 231 in, out := &in.BuildPacks, &out.BuildPacks 232 *out = new(BuildPackConfig) 233 (*in).DeepCopyInto(*out) 234 } 235 in.Cluster.DeepCopyInto(&out.Cluster) 236 if in.Environments != nil { 237 in, out := &in.Environments, &out.Environments 238 *out = make([]EnvironmentConfig, len(*in)) 239 copy(*out, *in) 240 } 241 if in.GithubApp != nil { 242 in, out := &in.GithubApp, &out.GithubApp 243 *out = new(GithubAppConfig) 244 **out = **in 245 } 246 out.Ingress = in.Ingress 247 if in.PipelineUser != nil { 248 in, out := &in.PipelineUser, &out.PipelineUser 249 *out = new(UserNameEmailConfig) 250 **out = **in 251 } 252 out.Storage = in.Storage 253 in.Vault.DeepCopyInto(&out.Vault) 254 out.Velero = in.Velero 255 out.VersionStream = in.VersionStream 256 return 257 } 258 259 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequirementsConfig. 260 func (in *RequirementsConfig) DeepCopy() *RequirementsConfig { 261 if in == nil { 262 return nil 263 } 264 out := new(RequirementsConfig) 265 in.DeepCopyInto(out) 266 return out 267 } 268 269 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 270 func (in *RequirementsValues) DeepCopyInto(out *RequirementsValues) { 271 *out = *in 272 if in.RequirementsConfig != nil { 273 in, out := &in.RequirementsConfig, &out.RequirementsConfig 274 *out = new(RequirementsConfig) 275 (*in).DeepCopyInto(*out) 276 } 277 return 278 } 279 280 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequirementsValues. 281 func (in *RequirementsValues) DeepCopy() *RequirementsValues { 282 if in == nil { 283 return nil 284 } 285 out := new(RequirementsValues) 286 in.DeepCopyInto(out) 287 return out 288 } 289 290 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 291 func (in *StorageConfig) DeepCopyInto(out *StorageConfig) { 292 *out = *in 293 out.Logs = in.Logs 294 out.Reports = in.Reports 295 out.Repository = in.Repository 296 out.Backup = in.Backup 297 return 298 } 299 300 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageConfig. 301 func (in *StorageConfig) DeepCopy() *StorageConfig { 302 if in == nil { 303 return nil 304 } 305 out := new(StorageConfig) 306 in.DeepCopyInto(out) 307 return out 308 } 309 310 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 311 func (in *StorageEntryConfig) DeepCopyInto(out *StorageEntryConfig) { 312 *out = *in 313 return 314 } 315 316 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageEntryConfig. 317 func (in *StorageEntryConfig) DeepCopy() *StorageEntryConfig { 318 if in == nil { 319 return nil 320 } 321 out := new(StorageEntryConfig) 322 in.DeepCopyInto(out) 323 return out 324 } 325 326 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 327 func (in *TLSConfig) DeepCopyInto(out *TLSConfig) { 328 *out = *in 329 return 330 } 331 332 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSConfig. 333 func (in *TLSConfig) DeepCopy() *TLSConfig { 334 if in == nil { 335 return nil 336 } 337 out := new(TLSConfig) 338 in.DeepCopyInto(out) 339 return out 340 } 341 342 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 343 func (in *UserNameEmailConfig) DeepCopyInto(out *UserNameEmailConfig) { 344 *out = *in 345 return 346 } 347 348 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserNameEmailConfig. 349 func (in *UserNameEmailConfig) DeepCopy() *UserNameEmailConfig { 350 if in == nil { 351 return nil 352 } 353 out := new(UserNameEmailConfig) 354 in.DeepCopyInto(out) 355 return out 356 } 357 358 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 359 func (in *VaultAWSConfig) DeepCopyInto(out *VaultAWSConfig) { 360 *out = *in 361 out.VaultAWSUnsealConfig = in.VaultAWSUnsealConfig 362 return 363 } 364 365 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAWSConfig. 366 func (in *VaultAWSConfig) DeepCopy() *VaultAWSConfig { 367 if in == nil { 368 return nil 369 } 370 out := new(VaultAWSConfig) 371 in.DeepCopyInto(out) 372 return out 373 } 374 375 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 376 func (in *VaultAWSUnsealConfig) DeepCopyInto(out *VaultAWSUnsealConfig) { 377 *out = *in 378 return 379 } 380 381 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAWSUnsealConfig. 382 func (in *VaultAWSUnsealConfig) DeepCopy() *VaultAWSUnsealConfig { 383 if in == nil { 384 return nil 385 } 386 out := new(VaultAWSUnsealConfig) 387 in.DeepCopyInto(out) 388 return out 389 } 390 391 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 392 func (in *VaultAzureConfig) DeepCopyInto(out *VaultAzureConfig) { 393 *out = *in 394 return 395 } 396 397 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAzureConfig. 398 func (in *VaultAzureConfig) DeepCopy() *VaultAzureConfig { 399 if in == nil { 400 return nil 401 } 402 out := new(VaultAzureConfig) 403 in.DeepCopyInto(out) 404 return out 405 } 406 407 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 408 func (in *VaultConfig) DeepCopyInto(out *VaultConfig) { 409 *out = *in 410 if in.AWSConfig != nil { 411 in, out := &in.AWSConfig, &out.AWSConfig 412 *out = new(VaultAWSConfig) 413 **out = **in 414 } 415 if in.AzureConfig != nil { 416 in, out := &in.AzureConfig, &out.AzureConfig 417 *out = new(VaultAzureConfig) 418 **out = **in 419 } 420 return 421 } 422 423 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultConfig. 424 func (in *VaultConfig) DeepCopy() *VaultConfig { 425 if in == nil { 426 return nil 427 } 428 out := new(VaultConfig) 429 in.DeepCopyInto(out) 430 return out 431 } 432 433 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 434 func (in *VeleroConfig) DeepCopyInto(out *VeleroConfig) { 435 *out = *in 436 return 437 } 438 439 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VeleroConfig. 440 func (in *VeleroConfig) DeepCopy() *VeleroConfig { 441 if in == nil { 442 return nil 443 } 444 out := new(VeleroConfig) 445 in.DeepCopyInto(out) 446 return out 447 } 448 449 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 450 func (in *VersionStreamConfig) DeepCopyInto(out *VersionStreamConfig) { 451 *out = *in 452 return 453 } 454 455 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VersionStreamConfig. 456 func (in *VersionStreamConfig) DeepCopy() *VersionStreamConfig { 457 if in == nil { 458 return nil 459 } 460 out := new(VersionStreamConfig) 461 in.DeepCopyInto(out) 462 return out 463 }