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

delete noupdate on enabled field of AuthConfig

This commit is contained in:
carolyn 2018-05-15 14:24:49 -07:00 committed by Craig Jellick
parent b0633c4115
commit 399c3285f8

View File

@ -84,7 +84,7 @@ type AuthConfig struct {
metav1.ObjectMeta `json:"metadata,omitempty"`
Type string `json:"type" norman:"noupdate"`
Enabled bool `json:"enabled,omitempty" norman:"noupdate"`
Enabled bool `json:"enabled,omitempty"`
AccessMode string `json:"accessMode,omitempty" norman:"required,notnullable,type=enum,options=required|restricted|unrestricted"`
AllowedPrincipalIDs []string `json:"allowedPrincipalIds,omitempty" norman:"type=array[reference[principal]]"`
}