Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UserNotificationHandler (0.08 sec)

  1. cmd/iam.go

    		err = sys.store.UserNotificationHandler(ctx, accessKey, regUser)
    	case stsPrefix:
    		accessKey := path.Dir(strings.TrimPrefix(event.keyPath, iamConfigSTSPrefix))
    		err = sys.store.UserNotificationHandler(ctx, accessKey, stsUser)
    	case svcPrefix:
    		accessKey := path.Dir(strings.TrimPrefix(event.keyPath, iamConfigServiceAccountsPrefix))
    		err = sys.store.UserNotificationHandler(ctx, accessKey, svcUser)
    	case groupsPrefix:
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    		// the cache.
    		m.Delete(userOrGroup)
    		cache.updatedAt = time.Now()
    
    		err = nil
    	}
    	return err
    }
    
    // UserNotificationHandler - handles updating a user/STS account/service account
    // from storage.
    func (store *IAMStoreSys) UserNotificationHandler(ctx context.Context, accessKey string, userType IAMUserType) error {
    	if accessKey == "" {
    		return errInvalidArgument
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
Back to top