Method: providers.vehicles.updateAttributes

部分更新車輛屬性。系統只會更新要求中提及的屬性,其他屬性不會改變。注意:這在 vehicles.update 中不同,因此系統會將整個 attributes 欄位替換為 UpdateVehicleRequest 中的欄位,並移除要求中未提供的屬性。

HTTP 要求

POST https://fleetengine.googleapis.com/v1/{name=providers/*/vehicles/*}:updateAttributes

這個網址使用 gRPC 轉碼語法。

路徑參數

參數
name

string

必要欄位。格式須為 providers/{provider}/vehicles/{vehicle}。提供者必須是發出此呼叫的服務帳戶所屬 Google Cloud 專案的專案 ID (例如 sample-cloud-project)。

要求主體

要求主體的資料會採用以下結構:

JSON 表示法
{
  "header": {
    object (RequestHeader)
  },
  "attributes": [
    {
      object (VehicleAttribute)
    }
  ]
}
欄位
header

object (RequestHeader)

標準 Fleet Engine 要求標頭。

attributes[]

object (VehicleAttribute)

必要欄位。要更新的車輛屬性。但不會變更或移除未提及的屬性。

回應主體

vehicles.updateAttributes 回應訊息。

如果成功,回應主體會含有以下結構的資料:

JSON 表示法
{
  "attributes": [
    {
      object (VehicleAttribute)
    }
  ]
}
欄位
attributes[]

object (VehicleAttribute)

必要欄位。更新後的車輛屬性完整清單,包括新屬性、經修改和未修改的屬性。