- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for GetBucketReplicationConfig (0.12 seconds)
-
cmd/api-router.go
Queries("encryption", "") // GetBucketObjectLockConfig router.Methods(http.MethodGet). HandlerFunc(s3APIMiddleware(api.GetBucketObjectLockConfigHandler)). Queries("object-lock", "") // GetBucketReplicationConfig router.Methods(http.MethodGet). HandlerFunc(s3APIMiddleware(api.GetBucketReplicationConfigHandler)). Queries("replication", "") // GetBucketVersioning router.Methods(http.MethodGet).
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 24 04:05:19 GMT 2025 - 23.3K bytes - Click Count (0) -
cmd/bucket-replication-handlers.go
// ---------- // Gets the replication configuration for a bucket. func (api objectAPIHandlers) GetBucketReplicationConfigHandler(w http.ResponseWriter, r *http.Request) { ctx := newContext(r, w, "GetBucketReplicationConfig") defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r)) vars := mux.Vars(r) bucket := vars["bucket"] objectAPI := api.ObjectAPI() if objectAPI == nil {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Aug 15 12:04:40 GMT 2024 - 23.3K bytes - Click Count (0)