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" }