Rename existing field using python SDK for a meta().id

Hello,

I Am trying to figure out if I can rename an existing field using PYTHON SDK.

{
   "id": "12345",
   "docType": "Car" 
}

I need to rename “id” field to “carId” and get this:

{
   "carId": "12345",
   "docType": "Car"  
}

Instead of the N1Ql query do we have a way to update the same using the SDK.

TIA

You can use SDK get and UPDATE (remove old field and store new field as old value)
OR Subdoc operation
Sub-Document Operations with the Python SDK | Couchbase Docs