1
0
mirror of https://github.com/rancher/types.git synced 2025-04-27 18:25:05 +00:00

Merge pull request #1145 from mrajashree/userattrib

Add UserInfo field to UserAttributes
This commit is contained in:
Rajashree Mandaogane 2020-05-22 11:12:07 -07:00 committed by GitHub
commit 0db99d3f04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -80,6 +80,7 @@ type UserAttribute struct {
metav1.ObjectMeta `json:"metadata,omitempty"`
UserName string
UserPrincipal Principal
GroupPrincipals map[string]Principals // the value is a []Principal, but code generator cannot handle slice as a value
LastRefresh string
NeedsRefresh bool

View File

@ -10063,6 +10063,7 @@ func (in *UserAttribute) DeepCopyInto(out *UserAttribute) {
*out = *in
out.TypeMeta = in.TypeMeta
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
in.UserPrincipal.DeepCopyInto(&out.UserPrincipal)
if in.GroupPrincipals != nil {
in, out := &in.GroupPrincipals, &out.GroupPrincipals
*out = make(map[string]Principals, len(*in))

View File

@ -14,6 +14,7 @@ const (
UserAttributeFieldRemoved = "removed"
UserAttributeFieldUUID = "uuid"
UserAttributeFieldUserName = "userName"
UserAttributeFieldUserPrincipal = "userPrincipal"
)
type UserAttribute struct {
@ -29,4 +30,5 @@ type UserAttribute struct {
Removed string `json:"removed,omitempty" yaml:"removed,omitempty"`
UUID string `json:"uuid,omitempty" yaml:"uuid,omitempty"`
UserName string `json:"userName,omitempty" yaml:"userName,omitempty"`
UserPrincipal *Principal `json:"userPrincipal,omitempty" yaml:"userPrincipal,omitempty"`
}