github.com/kyma-project/kyma/components/asset-store-controller-manager@v0.0.0-20191203152857-3792b5df17c5/pkg/apis/assetstore/v1alpha2/zz_generated.deepcopy.go (about) 1 // +build !ignore_autogenerated 2 3 // Code generated by controller-gen. DO NOT EDIT. 4 5 package v1alpha2 6 7 import ( 8 "k8s.io/apimachinery/pkg/runtime" 9 ) 10 11 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 12 func (in *Asset) DeepCopyInto(out *Asset) { 13 *out = *in 14 out.TypeMeta = in.TypeMeta 15 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 16 in.Spec.DeepCopyInto(&out.Spec) 17 in.Status.DeepCopyInto(&out.Status) 18 } 19 20 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Asset. 21 func (in *Asset) DeepCopy() *Asset { 22 if in == nil { 23 return nil 24 } 25 out := new(Asset) 26 in.DeepCopyInto(out) 27 return out 28 } 29 30 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 31 func (in *Asset) DeepCopyObject() runtime.Object { 32 if c := in.DeepCopy(); c != nil { 33 return c 34 } 35 return nil 36 } 37 38 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 39 func (in *AssetBucketRef) DeepCopyInto(out *AssetBucketRef) { 40 *out = *in 41 } 42 43 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetBucketRef. 44 func (in *AssetBucketRef) DeepCopy() *AssetBucketRef { 45 if in == nil { 46 return nil 47 } 48 out := new(AssetBucketRef) 49 in.DeepCopyInto(out) 50 return out 51 } 52 53 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 54 func (in *AssetFile) DeepCopyInto(out *AssetFile) { 55 *out = *in 56 if in.Metadata != nil { 57 in, out := &in.Metadata, &out.Metadata 58 *out = new(runtime.RawExtension) 59 (*in).DeepCopyInto(*out) 60 } 61 } 62 63 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetFile. 64 func (in *AssetFile) DeepCopy() *AssetFile { 65 if in == nil { 66 return nil 67 } 68 out := new(AssetFile) 69 in.DeepCopyInto(out) 70 return out 71 } 72 73 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 74 func (in *AssetList) DeepCopyInto(out *AssetList) { 75 *out = *in 76 out.TypeMeta = in.TypeMeta 77 out.ListMeta = in.ListMeta 78 if in.Items != nil { 79 in, out := &in.Items, &out.Items 80 *out = make([]Asset, len(*in)) 81 for i := range *in { 82 (*in)[i].DeepCopyInto(&(*out)[i]) 83 } 84 } 85 } 86 87 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetList. 88 func (in *AssetList) DeepCopy() *AssetList { 89 if in == nil { 90 return nil 91 } 92 out := new(AssetList) 93 in.DeepCopyInto(out) 94 return out 95 } 96 97 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 98 func (in *AssetList) DeepCopyObject() runtime.Object { 99 if c := in.DeepCopy(); c != nil { 100 return c 101 } 102 return nil 103 } 104 105 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 106 func (in *AssetSource) DeepCopyInto(out *AssetSource) { 107 *out = *in 108 if in.ValidationWebhookService != nil { 109 in, out := &in.ValidationWebhookService, &out.ValidationWebhookService 110 *out = make([]AssetWebhookService, len(*in)) 111 for i := range *in { 112 (*in)[i].DeepCopyInto(&(*out)[i]) 113 } 114 } 115 if in.MutationWebhookService != nil { 116 in, out := &in.MutationWebhookService, &out.MutationWebhookService 117 *out = make([]AssetWebhookService, len(*in)) 118 for i := range *in { 119 (*in)[i].DeepCopyInto(&(*out)[i]) 120 } 121 } 122 if in.MetadataWebhookService != nil { 123 in, out := &in.MetadataWebhookService, &out.MetadataWebhookService 124 *out = make([]WebhookService, len(*in)) 125 copy(*out, *in) 126 } 127 } 128 129 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetSource. 130 func (in *AssetSource) DeepCopy() *AssetSource { 131 if in == nil { 132 return nil 133 } 134 out := new(AssetSource) 135 in.DeepCopyInto(out) 136 return out 137 } 138 139 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 140 func (in *AssetSpec) DeepCopyInto(out *AssetSpec) { 141 *out = *in 142 in.CommonAssetSpec.DeepCopyInto(&out.CommonAssetSpec) 143 } 144 145 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetSpec. 146 func (in *AssetSpec) DeepCopy() *AssetSpec { 147 if in == nil { 148 return nil 149 } 150 out := new(AssetSpec) 151 in.DeepCopyInto(out) 152 return out 153 } 154 155 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 156 func (in *AssetStatus) DeepCopyInto(out *AssetStatus) { 157 *out = *in 158 in.CommonAssetStatus.DeepCopyInto(&out.CommonAssetStatus) 159 } 160 161 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetStatus. 162 func (in *AssetStatus) DeepCopy() *AssetStatus { 163 if in == nil { 164 return nil 165 } 166 out := new(AssetStatus) 167 in.DeepCopyInto(out) 168 return out 169 } 170 171 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 172 func (in *AssetStatusRef) DeepCopyInto(out *AssetStatusRef) { 173 *out = *in 174 if in.Files != nil { 175 in, out := &in.Files, &out.Files 176 *out = make([]AssetFile, len(*in)) 177 for i := range *in { 178 (*in)[i].DeepCopyInto(&(*out)[i]) 179 } 180 } 181 } 182 183 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetStatusRef. 184 func (in *AssetStatusRef) DeepCopy() *AssetStatusRef { 185 if in == nil { 186 return nil 187 } 188 out := new(AssetStatusRef) 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 *AssetWebhookService) DeepCopyInto(out *AssetWebhookService) { 195 *out = *in 196 out.WebhookService = in.WebhookService 197 if in.Parameters != nil { 198 in, out := &in.Parameters, &out.Parameters 199 *out = new(runtime.RawExtension) 200 (*in).DeepCopyInto(*out) 201 } 202 } 203 204 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AssetWebhookService. 205 func (in *AssetWebhookService) DeepCopy() *AssetWebhookService { 206 if in == nil { 207 return nil 208 } 209 out := new(AssetWebhookService) 210 in.DeepCopyInto(out) 211 return out 212 } 213 214 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 215 func (in *Bucket) DeepCopyInto(out *Bucket) { 216 *out = *in 217 out.TypeMeta = in.TypeMeta 218 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 219 out.Spec = in.Spec 220 in.Status.DeepCopyInto(&out.Status) 221 } 222 223 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Bucket. 224 func (in *Bucket) DeepCopy() *Bucket { 225 if in == nil { 226 return nil 227 } 228 out := new(Bucket) 229 in.DeepCopyInto(out) 230 return out 231 } 232 233 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 234 func (in *Bucket) DeepCopyObject() runtime.Object { 235 if c := in.DeepCopy(); c != nil { 236 return c 237 } 238 return nil 239 } 240 241 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 242 func (in *BucketList) DeepCopyInto(out *BucketList) { 243 *out = *in 244 out.TypeMeta = in.TypeMeta 245 out.ListMeta = in.ListMeta 246 if in.Items != nil { 247 in, out := &in.Items, &out.Items 248 *out = make([]Bucket, len(*in)) 249 for i := range *in { 250 (*in)[i].DeepCopyInto(&(*out)[i]) 251 } 252 } 253 } 254 255 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BucketList. 256 func (in *BucketList) DeepCopy() *BucketList { 257 if in == nil { 258 return nil 259 } 260 out := new(BucketList) 261 in.DeepCopyInto(out) 262 return out 263 } 264 265 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 266 func (in *BucketList) DeepCopyObject() runtime.Object { 267 if c := in.DeepCopy(); c != nil { 268 return c 269 } 270 return nil 271 } 272 273 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 274 func (in *BucketSpec) DeepCopyInto(out *BucketSpec) { 275 *out = *in 276 out.CommonBucketSpec = in.CommonBucketSpec 277 } 278 279 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BucketSpec. 280 func (in *BucketSpec) DeepCopy() *BucketSpec { 281 if in == nil { 282 return nil 283 } 284 out := new(BucketSpec) 285 in.DeepCopyInto(out) 286 return out 287 } 288 289 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 290 func (in *BucketStatus) DeepCopyInto(out *BucketStatus) { 291 *out = *in 292 in.CommonBucketStatus.DeepCopyInto(&out.CommonBucketStatus) 293 } 294 295 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BucketStatus. 296 func (in *BucketStatus) DeepCopy() *BucketStatus { 297 if in == nil { 298 return nil 299 } 300 out := new(BucketStatus) 301 in.DeepCopyInto(out) 302 return out 303 } 304 305 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 306 func (in *ClusterAsset) DeepCopyInto(out *ClusterAsset) { 307 *out = *in 308 out.TypeMeta = in.TypeMeta 309 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 310 in.Spec.DeepCopyInto(&out.Spec) 311 in.Status.DeepCopyInto(&out.Status) 312 } 313 314 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterAsset. 315 func (in *ClusterAsset) DeepCopy() *ClusterAsset { 316 if in == nil { 317 return nil 318 } 319 out := new(ClusterAsset) 320 in.DeepCopyInto(out) 321 return out 322 } 323 324 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 325 func (in *ClusterAsset) DeepCopyObject() runtime.Object { 326 if c := in.DeepCopy(); c != nil { 327 return c 328 } 329 return nil 330 } 331 332 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 333 func (in *ClusterAssetList) DeepCopyInto(out *ClusterAssetList) { 334 *out = *in 335 out.TypeMeta = in.TypeMeta 336 out.ListMeta = in.ListMeta 337 if in.Items != nil { 338 in, out := &in.Items, &out.Items 339 *out = make([]ClusterAsset, len(*in)) 340 for i := range *in { 341 (*in)[i].DeepCopyInto(&(*out)[i]) 342 } 343 } 344 } 345 346 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterAssetList. 347 func (in *ClusterAssetList) DeepCopy() *ClusterAssetList { 348 if in == nil { 349 return nil 350 } 351 out := new(ClusterAssetList) 352 in.DeepCopyInto(out) 353 return out 354 } 355 356 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 357 func (in *ClusterAssetList) DeepCopyObject() runtime.Object { 358 if c := in.DeepCopy(); c != nil { 359 return c 360 } 361 return nil 362 } 363 364 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 365 func (in *ClusterAssetSpec) DeepCopyInto(out *ClusterAssetSpec) { 366 *out = *in 367 in.CommonAssetSpec.DeepCopyInto(&out.CommonAssetSpec) 368 } 369 370 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterAssetSpec. 371 func (in *ClusterAssetSpec) DeepCopy() *ClusterAssetSpec { 372 if in == nil { 373 return nil 374 } 375 out := new(ClusterAssetSpec) 376 in.DeepCopyInto(out) 377 return out 378 } 379 380 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 381 func (in *ClusterAssetStatus) DeepCopyInto(out *ClusterAssetStatus) { 382 *out = *in 383 in.CommonAssetStatus.DeepCopyInto(&out.CommonAssetStatus) 384 } 385 386 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterAssetStatus. 387 func (in *ClusterAssetStatus) DeepCopy() *ClusterAssetStatus { 388 if in == nil { 389 return nil 390 } 391 out := new(ClusterAssetStatus) 392 in.DeepCopyInto(out) 393 return out 394 } 395 396 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 397 func (in *ClusterBucket) DeepCopyInto(out *ClusterBucket) { 398 *out = *in 399 out.TypeMeta = in.TypeMeta 400 in.ObjectMeta.DeepCopyInto(&out.ObjectMeta) 401 out.Spec = in.Spec 402 in.Status.DeepCopyInto(&out.Status) 403 } 404 405 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBucket. 406 func (in *ClusterBucket) DeepCopy() *ClusterBucket { 407 if in == nil { 408 return nil 409 } 410 out := new(ClusterBucket) 411 in.DeepCopyInto(out) 412 return out 413 } 414 415 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 416 func (in *ClusterBucket) DeepCopyObject() runtime.Object { 417 if c := in.DeepCopy(); c != nil { 418 return c 419 } 420 return nil 421 } 422 423 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 424 func (in *ClusterBucketList) DeepCopyInto(out *ClusterBucketList) { 425 *out = *in 426 out.TypeMeta = in.TypeMeta 427 out.ListMeta = in.ListMeta 428 if in.Items != nil { 429 in, out := &in.Items, &out.Items 430 *out = make([]ClusterBucket, len(*in)) 431 for i := range *in { 432 (*in)[i].DeepCopyInto(&(*out)[i]) 433 } 434 } 435 } 436 437 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBucketList. 438 func (in *ClusterBucketList) DeepCopy() *ClusterBucketList { 439 if in == nil { 440 return nil 441 } 442 out := new(ClusterBucketList) 443 in.DeepCopyInto(out) 444 return out 445 } 446 447 // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object. 448 func (in *ClusterBucketList) DeepCopyObject() runtime.Object { 449 if c := in.DeepCopy(); c != nil { 450 return c 451 } 452 return nil 453 } 454 455 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 456 func (in *ClusterBucketSpec) DeepCopyInto(out *ClusterBucketSpec) { 457 *out = *in 458 out.CommonBucketSpec = in.CommonBucketSpec 459 } 460 461 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBucketSpec. 462 func (in *ClusterBucketSpec) DeepCopy() *ClusterBucketSpec { 463 if in == nil { 464 return nil 465 } 466 out := new(ClusterBucketSpec) 467 in.DeepCopyInto(out) 468 return out 469 } 470 471 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 472 func (in *ClusterBucketStatus) DeepCopyInto(out *ClusterBucketStatus) { 473 *out = *in 474 in.CommonBucketStatus.DeepCopyInto(&out.CommonBucketStatus) 475 } 476 477 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterBucketStatus. 478 func (in *ClusterBucketStatus) DeepCopy() *ClusterBucketStatus { 479 if in == nil { 480 return nil 481 } 482 out := new(ClusterBucketStatus) 483 in.DeepCopyInto(out) 484 return out 485 } 486 487 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 488 func (in *CommonAssetSpec) DeepCopyInto(out *CommonAssetSpec) { 489 *out = *in 490 in.Source.DeepCopyInto(&out.Source) 491 out.BucketRef = in.BucketRef 492 if in.Parameters != nil { 493 in, out := &in.Parameters, &out.Parameters 494 *out = new(runtime.RawExtension) 495 (*in).DeepCopyInto(*out) 496 } 497 } 498 499 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonAssetSpec. 500 func (in *CommonAssetSpec) DeepCopy() *CommonAssetSpec { 501 if in == nil { 502 return nil 503 } 504 out := new(CommonAssetSpec) 505 in.DeepCopyInto(out) 506 return out 507 } 508 509 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 510 func (in *CommonAssetStatus) DeepCopyInto(out *CommonAssetStatus) { 511 *out = *in 512 in.AssetRef.DeepCopyInto(&out.AssetRef) 513 in.LastHeartbeatTime.DeepCopyInto(&out.LastHeartbeatTime) 514 } 515 516 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonAssetStatus. 517 func (in *CommonAssetStatus) DeepCopy() *CommonAssetStatus { 518 if in == nil { 519 return nil 520 } 521 out := new(CommonAssetStatus) 522 in.DeepCopyInto(out) 523 return out 524 } 525 526 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 527 func (in *CommonBucketSpec) DeepCopyInto(out *CommonBucketSpec) { 528 *out = *in 529 } 530 531 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonBucketSpec. 532 func (in *CommonBucketSpec) DeepCopy() *CommonBucketSpec { 533 if in == nil { 534 return nil 535 } 536 out := new(CommonBucketSpec) 537 in.DeepCopyInto(out) 538 return out 539 } 540 541 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 542 func (in *CommonBucketStatus) DeepCopyInto(out *CommonBucketStatus) { 543 *out = *in 544 in.LastHeartbeatTime.DeepCopyInto(&out.LastHeartbeatTime) 545 } 546 547 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonBucketStatus. 548 func (in *CommonBucketStatus) DeepCopy() *CommonBucketStatus { 549 if in == nil { 550 return nil 551 } 552 out := new(CommonBucketStatus) 553 in.DeepCopyInto(out) 554 return out 555 } 556 557 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 558 func (in *WebhookService) DeepCopyInto(out *WebhookService) { 559 *out = *in 560 } 561 562 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WebhookService. 563 func (in *WebhookService) DeepCopy() *WebhookService { 564 if in == nil { 565 return nil 566 } 567 out := new(WebhookService) 568 in.DeepCopyInto(out) 569 return out 570 }