1
0
mirror of https://github.com/rancher/types.git synced 2025-07-31 04:49:37 +00:00

Mark required fields not nullable

This commit is contained in:
rajashree 2019-06-25 11:19:57 -07:00 committed by Alena Prokharchyk
parent 67c773940a
commit 4ca17511e2

View File

@ -167,10 +167,10 @@ type GoogleOauthConfig struct {
metav1.ObjectMeta `json:"metadata,omitempty"`
AuthConfig `json:",inline" mapstructure:",squash"`
OauthCredential string `json:"oauthCredential,omitempty" norman:"required,type=password"`
ServiceAccountCredential string `json:"serviceAccountCredential,omitempty" norman:"required,type=password"`
AdminEmail string `json:"adminEmail,omitempty"`
Hostname string `json:"hostname,omitempty" norman:"required,noupdate"`
OauthCredential string `json:"oauthCredential,omitempty" norman:"required,type=password,notnullable"`
ServiceAccountCredential string `json:"serviceAccountCredential,omitempty" norman:"required,type=password,notnullable"`
AdminEmail string `json:"adminEmail,omitempty" norman:"required,notnullable"`
Hostname string `json:"hostname,omitempty" norman:"required,notnullable,noupdate"`
UserInfoEndpoint string `json:"userInfoEndpoint" norman:"default=https://openidconnect.googleapis.com/v1/userinfo,required,notnullable"`
}