1
0
mirror of https://github.com/rancher/types.git synced 2025-08-02 05:11:59 +00:00

Generated changes

This commit is contained in:
rajashree 2019-11-11 10:40:56 -08:00 committed by Alena Prokharchyk
parent 731077e635
commit 7129615e54
3 changed files with 12 additions and 0 deletions

View File

@ -17,6 +17,7 @@ const (
FreeIpaConfigFieldGroupObjectClass = "groupObjectClass"
FreeIpaConfigFieldGroupSearchAttribute = "groupSearchAttribute"
FreeIpaConfigFieldGroupSearchBase = "groupSearchBase"
FreeIpaConfigFieldGroupSearchFilter = "groupSearchFilter"
FreeIpaConfigFieldLabels = "labels"
FreeIpaConfigFieldName = "name"
FreeIpaConfigFieldOwnerReferences = "ownerReferences"
@ -36,6 +37,7 @@ const (
FreeIpaConfigFieldUserObjectClass = "userObjectClass"
FreeIpaConfigFieldUserSearchAttribute = "userSearchAttribute"
FreeIpaConfigFieldUserSearchBase = "userSearchBase"
FreeIpaConfigFieldUserSearchFilter = "userSearchFilter"
)
type FreeIpaConfig struct {
@ -54,6 +56,7 @@ type FreeIpaConfig struct {
GroupObjectClass string `json:"groupObjectClass,omitempty" yaml:"groupObjectClass,omitempty"`
GroupSearchAttribute string `json:"groupSearchAttribute,omitempty" yaml:"groupSearchAttribute,omitempty"`
GroupSearchBase string `json:"groupSearchBase,omitempty" yaml:"groupSearchBase,omitempty"`
GroupSearchFilter string `json:"groupSearchFilter,omitempty" yaml:"groupSearchFilter,omitempty"`
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
OwnerReferences []OwnerReference `json:"ownerReferences,omitempty" yaml:"ownerReferences,omitempty"`
@ -73,4 +76,5 @@ type FreeIpaConfig struct {
UserObjectClass string `json:"userObjectClass,omitempty" yaml:"userObjectClass,omitempty"`
UserSearchAttribute string `json:"userSearchAttribute,omitempty" yaml:"userSearchAttribute,omitempty"`
UserSearchBase string `json:"userSearchBase,omitempty" yaml:"userSearchBase,omitempty"`
UserSearchFilter string `json:"userSearchFilter,omitempty" yaml:"userSearchFilter,omitempty"`
}

View File

@ -21,6 +21,7 @@ const (
LdapConfigFieldGroupObjectClass = "groupObjectClass"
LdapConfigFieldGroupSearchAttribute = "groupSearchAttribute"
LdapConfigFieldGroupSearchBase = "groupSearchBase"
LdapConfigFieldGroupSearchFilter = "groupSearchFilter"
LdapConfigFieldLabels = "labels"
LdapConfigFieldName = "name"
LdapConfigFieldNestedGroupMembershipEnabled = "nestedGroupMembershipEnabled"
@ -41,6 +42,7 @@ const (
LdapConfigFieldUserObjectClass = "userObjectClass"
LdapConfigFieldUserSearchAttribute = "userSearchAttribute"
LdapConfigFieldUserSearchBase = "userSearchBase"
LdapConfigFieldUserSearchFilter = "userSearchFilter"
)
type LdapConfig struct {
@ -60,6 +62,7 @@ type LdapConfig struct {
GroupObjectClass string `json:"groupObjectClass,omitempty" yaml:"groupObjectClass,omitempty"`
GroupSearchAttribute string `json:"groupSearchAttribute,omitempty" yaml:"groupSearchAttribute,omitempty"`
GroupSearchBase string `json:"groupSearchBase,omitempty" yaml:"groupSearchBase,omitempty"`
GroupSearchFilter string `json:"groupSearchFilter,omitempty" yaml:"groupSearchFilter,omitempty"`
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
NestedGroupMembershipEnabled bool `json:"nestedGroupMembershipEnabled,omitempty" yaml:"nestedGroupMembershipEnabled,omitempty"`
@ -80,6 +83,7 @@ type LdapConfig struct {
UserObjectClass string `json:"userObjectClass,omitempty" yaml:"userObjectClass,omitempty"`
UserSearchAttribute string `json:"userSearchAttribute,omitempty" yaml:"userSearchAttribute,omitempty"`
UserSearchBase string `json:"userSearchBase,omitempty" yaml:"userSearchBase,omitempty"`
UserSearchFilter string `json:"userSearchFilter,omitempty" yaml:"userSearchFilter,omitempty"`
}
type LdapConfigCollection struct {

View File

@ -17,6 +17,7 @@ const (
OpenLdapConfigFieldGroupObjectClass = "groupObjectClass"
OpenLdapConfigFieldGroupSearchAttribute = "groupSearchAttribute"
OpenLdapConfigFieldGroupSearchBase = "groupSearchBase"
OpenLdapConfigFieldGroupSearchFilter = "groupSearchFilter"
OpenLdapConfigFieldLabels = "labels"
OpenLdapConfigFieldName = "name"
OpenLdapConfigFieldNestedGroupMembershipEnabled = "nestedGroupMembershipEnabled"
@ -37,6 +38,7 @@ const (
OpenLdapConfigFieldUserObjectClass = "userObjectClass"
OpenLdapConfigFieldUserSearchAttribute = "userSearchAttribute"
OpenLdapConfigFieldUserSearchBase = "userSearchBase"
OpenLdapConfigFieldUserSearchFilter = "userSearchFilter"
)
type OpenLdapConfig struct {
@ -55,6 +57,7 @@ type OpenLdapConfig struct {
GroupObjectClass string `json:"groupObjectClass,omitempty" yaml:"groupObjectClass,omitempty"`
GroupSearchAttribute string `json:"groupSearchAttribute,omitempty" yaml:"groupSearchAttribute,omitempty"`
GroupSearchBase string `json:"groupSearchBase,omitempty" yaml:"groupSearchBase,omitempty"`
GroupSearchFilter string `json:"groupSearchFilter,omitempty" yaml:"groupSearchFilter,omitempty"`
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
NestedGroupMembershipEnabled bool `json:"nestedGroupMembershipEnabled,omitempty" yaml:"nestedGroupMembershipEnabled,omitempty"`
@ -75,4 +78,5 @@ type OpenLdapConfig struct {
UserObjectClass string `json:"userObjectClass,omitempty" yaml:"userObjectClass,omitempty"`
UserSearchAttribute string `json:"userSearchAttribute,omitempty" yaml:"userSearchAttribute,omitempty"`
UserSearchBase string `json:"userSearchBase,omitempty" yaml:"userSearchBase,omitempty"`
UserSearchFilter string `json:"userSearchFilter,omitempty" yaml:"userSearchFilter,omitempty"`
}