in pkg/apis/v1/zz_generated.deepcopy.go [88:130]
func (in *BlockDevice) DeepCopyInto(out *BlockDevice) {
*out = *in
if in.DeleteOnTermination != nil {
in, out := &in.DeleteOnTermination, &out.DeleteOnTermination
*out = new(bool)
**out = **in
}
if in.Encrypted != nil {
in, out := &in.Encrypted, &out.Encrypted
*out = new(bool)
**out = **in
}
if in.IOPS != nil {
in, out := &in.IOPS, &out.IOPS
*out = new(int64)
**out = **in
}
if in.KMSKeyID != nil {
in, out := &in.KMSKeyID, &out.KMSKeyID
*out = new(string)
**out = **in
}
if in.SnapshotID != nil {
in, out := &in.SnapshotID, &out.SnapshotID
*out = new(string)
**out = **in
}
if in.Throughput != nil {
in, out := &in.Throughput, &out.Throughput
*out = new(int64)
**out = **in
}
if in.VolumeSize != nil {
in, out := &in.VolumeSize, &out.VolumeSize
x := (*in).DeepCopy()
*out = &x
}
if in.VolumeType != nil {
in, out := &in.VolumeType, &out.VolumeType
*out = new(string)
**out = **in
}
}