UpdateVehicleLog
Stay organized with collections
Save and categorize content based on your preferences.
outlined_flag
This documentation details the UpdateVehicle request and response within Fleet Engine.
UpdateVehicleRequestLog records the request sent to Fleet Engine, the response, and any errors encountered.
UpdateVehicleRequestLog includes details such as request header, vehicle ID, vehicle data, and fields to update.
Developers can utilize this information to understand and debug UpdateVehicle operations in their applications.
Details on UpdateVehicle request and response.
Fields
request
object (UpdateVehicleRequestLog )
The request sent to Fleet Engine.
response
object (VehicleLog )
The response returned to the client. If the RPC call results in an error the response is not set.
errorResponse
object (ErrorResponseLog )
The error response returned to the client. It will be unset if the RPC call succeeded.
UpdateVehicleRequestLog
Details on the UpdateVehicle request.
JSON representation
{
"header" : {
object (RequestHeaderLog )
} ,
"vehicleId" : string ,
"vehicle" : {
object (VehicleLog )
} ,
"updateMask" : string
}
Fields
vehicleId
string
The ID of the vehicle being updated.
vehicle
object (VehicleLog )
The vehicle specified in the update request.
updateMask
string (FieldMask format)
The field mask indicating which fields to update.
This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-27 UTC.
[null,null,["Last updated 2025-08-27 UTC."],[],["The document details the structure for `UpdateVehicle` requests and responses. The `UpdateVehicleRequestLog` includes the request header, the `vehicleId`, the `vehicle` object to be updated, and an `updateMask` specifying which fields to modify. The overall JSON representation of the request contains fields to obtain the `request`, `response` or `errorResponse`. The `response` returns the updated vehicle information, while the `errorResponse` indicates a failed operation.\n"]]