1
0
mirror of https://github.com/rancher/types.git synced 2025-06-27 14:06:49 +00:00

Generated Changes

This commit is contained in:
Prachi Damle 2019-10-25 11:25:21 -07:00 committed by Alena Prokharchyk
parent 50f60a68b2
commit 6a1ca1a57b

View File

@ -4,6 +4,7 @@ const (
RegistryCredentialType = "registryCredential"
RegistryCredentialFieldAuth = "auth"
RegistryCredentialFieldDescription = "description"
RegistryCredentialFieldEmail = "email"
RegistryCredentialFieldPassword = "password"
RegistryCredentialFieldUsername = "username"
)
@ -11,6 +12,7 @@ const (
type RegistryCredential struct {
Auth string `json:"auth,omitempty" yaml:"auth,omitempty"`
Description string `json:"description,omitempty" yaml:"description,omitempty"`
Email string `json:"email,omitempty" yaml:"email,omitempty"`
Password string `json:"password,omitempty" yaml:"password,omitempty"`
Username string `json:"username,omitempty" yaml:"username,omitempty"`
}