- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ListSTSAccounts (0.07 sec)
-
cmd/iam.go
return nil, ctx.Err() } } // ListSTSAccounts - lists all STS accounts associated to a specific user func (sys *IAMSys) ListSTSAccounts(ctx context.Context, accessKey string) ([]auth.Credentials, error) { if !sys.Initialized() { return nil, errServerNotInitialized } select { case <-sys.configLoaded: return sys.store.ListSTSAccounts(ctx, accessKey) case <-ctx.Done():
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
cmd/iam-store.go
v.SessionToken = "" serviceAccounts = append(serviceAccounts, v) } } } return serviceAccounts, nil } // ListSTSAccounts - lists only STS accounts from the cache. func (store *IAMStoreSys) ListSTSAccounts(ctx context.Context, accessKey string) ([]auth.Credentials, error) { cache := store.rlock() defer store.runlock() var stsAccounts []auth.Credentials
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
cmd/admin-handlers-users.go
} accessKeyMap := make(map[string]madmin.ListAccessKeysResp) for _, user := range checkedUserList { accessKeys := madmin.ListAccessKeysResp{} if listSTSKeys { stsKeys, err := globalIAMSys.ListSTSAccounts(ctx, user) if err != nil { writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } for _, sts := range stsKeys {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 03 23:11:02 UTC 2024 - 85.1K bytes - Viewed (0)