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