- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for DeleteServiceAccount (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/peer-rest-client.go
_, err = deleteUserRPC.Call(ctx, client.gridConn(), grid.NewMSSWith(map[string]string{ peerRESTUser: accessKey, })) return err } // DeleteServiceAccount - delete a specific service account. func (client *peerRESTClient) DeleteServiceAccount(ctx context.Context, accessKey string) (err error) { _, err = deleteSvcActRPC.Call(ctx, client.gridConn(), grid.NewMSSWith(map[string]string{ peerRESTUser: accessKey, }))
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 26.1K bytes - Click Count (0) -
cmd/admin-handlers-users.go
writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL) return } writeSuccessResponseJSON(w, encryptedData) } // DeleteServiceAccount - DELETE /minio/admin/v3/delete-service-account func (a adminAPIHandlers) DeleteServiceAccount(w http.ResponseWriter, r *http.Request) { ctx := r.Context() // Get current object layer instance. objectAPI := newObjectLayerFn()
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 90.6K bytes - Click Count (0) -
cmd/admin-handlers-users_test.go
AccessKey: "restricted", SecretKey: "restricted123", }) if err != nil { c.Fatalf("could not create service account") } defer func() { _ = s.adm.DeleteServiceAccount(ctx, "restricted") }() } else { // Create a regular user and attach consoleAdmin policy err := s.adm.AddUser(ctx, "foobar", "foobar123") if err != nil { c.Fatalf("could not create user")
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Oct 15 17:00:45 GMT 2025 - 50.6K bytes - Click Count (0)