// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // LDAPAttributeMappingApplyConfiguration represents an declarative configuration of the LDAPAttributeMapping type for use // with apply. type LDAPAttributeMappingApplyConfiguration struct { ID []string `json:"id,omitempty"` PreferredUsername []string `json:"preferredUsername,omitempty"` Name []string `json:"name,omitempty"` Email []string `json:"email,omitempty"` } // LDAPAttributeMappingApplyConfiguration constructs an declarative configuration of the LDAPAttributeMapping type for use with // apply. func LDAPAttributeMapping() *LDAPAttributeMappingApplyConfiguration { return &LDAPAttributeMappingApplyConfiguration{} } // WithID adds the given value to the ID field in the declarative configuration // and returns the receiver, so that objects can be build by chaining "With" function invocations. // If called multiple times, values provided by each call will be appended to the ID field. func (b *LDAPAttributeMappingApplyConfiguration) WithID(values ...string) *LDAPAttributeMappingApplyConfiguration { for i := range values { b.ID = append(b.ID, values[i]) } return b } // WithPreferredUsername adds the given value to the PreferredUsername field in the declarative configuration // and returns the receiver, so that objects can be build by chaining "With" function invocations. // If called multiple times, values provided by each call will be appended to the PreferredUsername field. func (b *LDAPAttributeMappingApplyConfiguration) WithPreferredUsername(values ...string) *LDAPAttributeMappingApplyConfiguration { for i := range values { b.PreferredUsername = append(b.PreferredUsername, values[i]) } return b } // WithName adds the given value to the Name field in the declarative configuration // and returns the receiver, so that objects can be build by chaining "With" function invocations. // If called multiple times, values provided by each call will be appended to the Name field. func (b *LDAPAttributeMappingApplyConfiguration) WithName(values ...string) *LDAPAttributeMappingApplyConfiguration { for i := range values { b.Name = append(b.Name, values[i]) } return b } // WithEmail adds the given value to the Email field in the declarative configuration // and returns the receiver, so that objects can be build by chaining "With" function invocations. // If called multiple times, values provided by each call will be appended to the Email field. func (b *LDAPAttributeMappingApplyConfiguration) WithEmail(values ...string) *LDAPAttributeMappingApplyConfiguration { for i := range values { b.Email = append(b.Email, values[i]) } return b }