Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ReplicateObject (0.07 sec)

  1. docs/bucket/replication/setup_replication.sh

        "s3:ReplicateTags",
        "s3:AbortMultipartUpload",
        "s3:GetObject",
        "s3:GetObjectVersion",
        "s3:GetObjectVersionTagging",
        "s3:PutObject",
        "s3:DeleteObject",
        "s3:ReplicateObject",
        "s3:ReplicateDelete"
       ],
       "Resource": [
        "arn:aws:s3:::bucket/*"
       ]
      }
     ]
    }
    EOF
    mc admin policy create dest replpolicy ./replpolicy.json
    cat ./replpolicy.json
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	if !reflect.DeepEqual(compareMeta1, compareMeta2) {
    		return replicateMetadata
    	}
    
    	return replicateNone
    }
    
    // replicateObject replicates the specified version of the object to destination bucket
    // The source object is then updated to reflect the replication status.
    func replicateObject(ctx context.Context, ri ReplicateObjectInfo, objectAPI ObjectLayer) {
    	var replicationStatus replication.StatusType
    	defer func() {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 116.1K bytes
    - Viewed (0)
  3. docs/bucket/replication/README.md

    The following minimal permission policy is needed by admin user setting up replication on the `source`:
    
    ```
    {
     "Version": "2012-10-17",
     "Statement": [
      {
        "Action": [
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. cmd/bucket-replication-handlers.go

    		if err != nil && !isReplicationPermissionCheck(ErrorRespToObjectError(err, bucket, obj)) {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErrWithErr(ErrReplicationValidationError, fmt.Errorf("s3:ReplicateObject permissions missing for replication user: %w", err)), r.URL)
    			return
    		}
    
    		err = c.RemoveObject(ctx, clnt.Bucket, obj, minio.RemoveObjectOptions{
    			VersionID: ui.VersionID,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top