1
0
mirror of https://github.com/rancher/types.git synced 2025-09-16 23:08:25 +00:00

Generated Changes

This commit is contained in:
Prachi Damle
2019-09-11 13:17:50 -07:00
committed by Alena Prokharchyk
parent 5f653d2d37
commit 5809c05fa1

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"`
}