Regenerate swagger, api, conversion and other code that needs to be regenerated

This commit is contained in:
Jan Chaloupka
2016-05-18 14:41:56 +02:00
parent ebe56f5ff9
commit e3aa900d52
16 changed files with 517 additions and 229 deletions

View File

@@ -2746,6 +2746,17 @@ func DeepCopy_api_SecretList(in SecretList, out *SecretList, c *conversion.Clone
func DeepCopy_api_SecretVolumeSource(in SecretVolumeSource, out *SecretVolumeSource, c *conversion.Cloner) error {
out.SecretName = in.SecretName
if in.Items != nil {
in, out := in.Items, &out.Items
*out = make([]KeyToPath, len(in))
for i := range in {
if err := DeepCopy_api_KeyToPath(in[i], &(*out)[i], c); err != nil {
return err
}
}
} else {
out.Items = nil
}
return nil
}