ErrorResponseLog

錯誤傳回給用戶端。

JSON 表示法
{
  "code": enum (Code),
  "httpStatusCode": integer,
  "message": string,
  "details": [
    {
      "@type": string,
      field1: ...,
      ...
    }
  ]
}
欄位
code

enum (Code)

錯誤的標準代碼。

httpStatusCode

integer

錯誤回應的 HTTP 狀態碼。

message

string

傳回給用戶端的錯誤訊息。

details[]

object

如要進一步瞭解該錯誤,請參閱 https://cloud.google.com/apis/design/errors

包含任意類型欄位的物件。額外的 "@type" 欄位則包含能辨識類型的 URI。例如:{ "id": 1234, "@type": "types.example.com/standard/id" }.