You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/proto/local/controller/api/v1/error.proto

38 lines
1.1 KiB

syntax = "proto3";
package controller.api.v1;
option go_package = "github.com/hashicorp/boundary/internal/gen/controller/api;api";
message ErrorDetails {
// The TraceId that can be used for OpenTelemetry.
string TraceId = 1 [json_name="TraceId"];
// A request ID.
string request_id = 2 [json_name="request_id"];
// An Error ID.
string error_id = 3 [json_name="error_id"];
// Request-field-specific error details.
repeated FieldError request_fields = 4 [json_name="request_fields"];
}
// FieldErrors contains error information on a per field basis.
message FieldError {
// The name of the field.
string name = 1;
// The description of the error.
string description = 2;
}
// Error is returned by the JSON API when an error occurs.
message Error {
// The HTTP Status code applicable to this error.
int32 status = 1;
// An application-specific error string.
string code = 2;
// A human-readable explanation specific to this occurrence of the error.
string message = 3;
// Additional metadata regarding the error. Depending on the error, different fields will be populated.
ErrorDetails details = 4;
}