Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for keyrotate (0.09 sec)

  1. cmd/batch-handlers_gen.go

    					return
    				}
    			}
    		case "KeyRotate":
    			if dc.IsNil() {
    				err = dc.ReadNil()
    				if err != nil {
    					err = msgp.WrapError(err, "KeyRotate")
    					return
    				}
    				z.KeyRotate = nil
    			} else {
    				if z.KeyRotate == nil {
    					z.KeyRotate = new(BatchJobKeyRotateV1)
    				}
    				err = z.KeyRotate.DecodeMsg(dc)
    				if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. cmd/batch-rotate.go

    func (r BatchJobKeyRotateV1) Notify(ctx context.Context, ri *batchJobInfo) error {
    	return notifyEndpoint(ctx, ri, r.Flags.Notify.Endpoint, r.Flags.Notify.Token)
    }
    
    // KeyRotate rotates encryption key of an object
    func (r *BatchJobKeyRotateV1) KeyRotate(ctx context.Context, api ObjectLayer, objInfo ObjectInfo) error {
    	srcBucket := r.Bucket
    	srcObject := objInfo.Name
    
    	if objInfo.DeleteMarker || !objInfo.VersionPurgeStatus.Empty() {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Sep 18 17:59:03 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top