@ -25,23 +25,19 @@ const (
// of the legacy proto package is being used.
const _ = proto . ProtoPackageIsVersion4
type ErrorDetails struct {
// Error information relevant to an error that was wrapped by the backend.
type WrappedError struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The TraceId that can be used for OpenTelemetry.
TraceId string ` protobuf:"bytes,1,opt,name=TraceId,proto3" json:"TraceId,omitempty" `
// A request ID.
RequestId string ` protobuf:"bytes,2,opt,name=request_id,proto3" json:"request_id,omitempty" `
// An Error ID.
ErrorId string ` protobuf:"bytes,3,opt,name=error_id,proto3" json:"error_id,omitempty" `
// Request-field-specific error details.
RequestFields [ ] * FieldError ` protobuf:"bytes,4,rep,name=request_fields,proto3" json:"request_fields,omitempty" `
// An string indicating what operation was being run when the wrapped error was created.
Op string ` protobuf:"bytes,1,opt,name=op,proto3" json:"op,omitempty" `
Message string ` protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty" `
}
func ( x * ErrorDetails ) Reset ( ) {
* x = ErrorDetails { }
func ( x * WrappedError ) Reset ( ) {
* x = WrappedError { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_v1_error_proto_msgTypes [ 0 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -49,13 +45,13 @@ func (x *ErrorDetails) Reset() {
}
}
func ( x * ErrorDetails ) String ( ) string {
func ( x * Wrapped Error) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ErrorDetails ) ProtoMessage ( ) { }
func ( * Wrapped Error) ProtoMessage ( ) { }
func ( x * ErrorDetails ) ProtoReflect ( ) protoreflect . Message {
func ( x * Wrapped Error) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_v1_error_proto_msgTypes [ 0 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -67,30 +63,67 @@ func (x *ErrorDetails) ProtoReflect() protoreflect.Message {
return mi . MessageOf ( x )
}
// Deprecated: Use ErrorDetails .ProtoReflect.Descriptor instead.
func ( * ErrorDetails ) Descriptor ( ) ( [ ] byte , [ ] int ) {
// Deprecated: Use Wrapped Error.ProtoReflect.Descriptor instead.
func ( * Wrapped Error) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_v1_error_proto_rawDescGZIP ( ) , [ ] int { 0 }
}
func ( x * ErrorDetails) GetTraceId ( ) string {
func ( x * WrappedError) GetOp ( ) string {
if x != nil {
return x . TraceId
return x . Op
}
return ""
}
func ( x * ErrorDetails) GetRequestId ( ) string {
func ( x * WrappedError) GetMessage ( ) string {
if x != nil {
return x . RequestId
return x . Message
}
return ""
}
func ( x * ErrorDetails ) GetErrorId ( ) string {
if x != nil {
return x . ErrorId
// Additional details regarding a specific error.
type ErrorDetails struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// Request-field-specific error details.
RequestFields [ ] * FieldError ` protobuf:"bytes,1,rep,name=request_fields,proto3" json:"request_fields,omitempty" `
// The errors that were wrapped in the backend for this returned error.
WrappedErrors [ ] * WrappedError ` protobuf:"bytes,2,rep,name=wrapped_errors,proto3" json:"wrapped_errors,omitempty" `
}
func ( x * ErrorDetails ) Reset ( ) {
* x = ErrorDetails { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_v1_error_proto_msgTypes [ 1 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
return ""
}
func ( x * ErrorDetails ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * ErrorDetails ) ProtoMessage ( ) { }
func ( x * ErrorDetails ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_v1_error_proto_msgTypes [ 1 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use ErrorDetails.ProtoReflect.Descriptor instead.
func ( * ErrorDetails ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_v1_error_proto_rawDescGZIP ( ) , [ ] int { 1 }
}
func ( x * ErrorDetails ) GetRequestFields ( ) [ ] * FieldError {
@ -100,6 +133,13 @@ func (x *ErrorDetails) GetRequestFields() []*FieldError {
return nil
}
func ( x * ErrorDetails ) GetWrappedErrors ( ) [ ] * WrappedError {
if x != nil {
return x . WrappedErrors
}
return nil
}
// FieldErrors contains error information on a per field basis.
type FieldError struct {
state protoimpl . MessageState
@ -115,7 +155,7 @@ type FieldError struct {
func ( x * FieldError ) Reset ( ) {
* x = FieldError { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_v1_error_proto_msgTypes [ 1 ]
mi := & file_controller_api_v1_error_proto_msgTypes [ 2 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@ -128,7 +168,7 @@ func (x *FieldError) String() string {
func ( * FieldError ) ProtoMessage ( ) { }
func ( x * FieldError ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_v1_error_proto_msgTypes [ 1 ]
mi := & file_controller_api_v1_error_proto_msgTypes [ 2 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@ -141,7 +181,7 @@ func (x *FieldError) ProtoReflect() protoreflect.Message {
// Deprecated: Use FieldError.ProtoReflect.Descriptor instead.
func ( * FieldError ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_v1_error_proto_rawDescGZIP ( ) , [ ] int { 1 }
return file_controller_api_v1_error_proto_rawDescGZIP ( ) , [ ] int { 2 }
}
func ( x * FieldError ) GetName ( ) string {
@ -164,10 +204,10 @@ type Error struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
// The HTTP Status code applicable to this error .
Status int32 ` protobuf:"varint,1,opt,name=status,proto3" json:"status ,omitempty"`
// An application-specific error string .
Code string ` protobuf:"bytes,2,opt,name=code,proto3" json:"code ,omitempty"`
// The kind of error this is .
Kind string ` protobuf:"bytes,1,opt,name=kind,proto3" json:"kind ,omitempty"`
// An string indicating what operation was being run when the error was returned .
Op string ` protobuf:"bytes,2,opt,name=op,proto3" json:"op ,omitempty"`
// A human-readable explanation specific to this occurrence of the error.
Message string ` protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty" `
// Additional metadata regarding the error. Depending on the error, different fields will be populated.
@ -177,7 +217,7 @@ type Error struct {
func ( x * Error ) Reset ( ) {
* x = Error { }
if protoimpl . UnsafeEnabled {
mi := & file_controller_api_v1_error_proto_msgTypes [ 2 ]
mi := & file_controller_api_v1_error_proto_msgTypes [ 3 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@ -190,7 +230,7 @@ func (x *Error) String() string {
func ( * Error ) ProtoMessage ( ) { }
func ( x * Error ) ProtoReflect ( ) protoreflect . Message {
mi := & file_controller_api_v1_error_proto_msgTypes [ 2 ]
mi := & file_controller_api_v1_error_proto_msgTypes [ 3 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@ -203,19 +243,19 @@ func (x *Error) ProtoReflect() protoreflect.Message {
// Deprecated: Use Error.ProtoReflect.Descriptor instead.
func ( * Error ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_controller_api_v1_error_proto_rawDescGZIP ( ) , [ ] int { 2 }
return file_controller_api_v1_error_proto_rawDescGZIP ( ) , [ ] int { 3 }
}
func ( x * Error ) Get Status( ) int32 {
func ( x * Error ) Get Kind( ) string {
if x != nil {
return x . Status
return x . Kind
}
return 0
return ""
}
func ( x * Error ) Get Code ( ) string {
func ( x * Error ) Get Op ( ) string {
if x != nil {
return x . Code
return x . Op
}
return ""
}
@ -240,35 +280,37 @@ var file_controller_api_v1_error_proto_rawDesc = []byte{
0x0a , 0x1d , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2f , 0x61 , 0x70 , 0x69 ,
0x2f , 0x76 , 0x31 , 0x2f , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x12 ,
0x11 , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 , 0x2e ,
0x76 , 0x31 , 0x22 , 0xab , 0x01 , 0x0a , 0x0c , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x44 , 0x65 , 0x74 , 0x61 ,
0x69 , 0x6c , 0x73 , 0x12 , 0x18 , 0x0a , 0x07 , 0x54 , 0x72 , 0x61 , 0x63 , 0x65 , 0x49 , 0x64 , 0x18 , 0x01 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x54 , 0x72 , 0x61 , 0x63 , 0x65 , 0x49 , 0x64 , 0x12 , 0x1e , 0x0a ,
0x0a , 0x72 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x5f , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x0a , 0x72 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x5f , 0x69 , 0x64 , 0x12 , 0x1a , 0x0a ,
0x08 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x5f , 0x69 , 0x64 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 ,
0x08 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x5f , 0x69 , 0x64 , 0x12 , 0x45 , 0x0a , 0x0e , 0x72 , 0x65 , 0x71 ,
0x75 , 0x65 , 0x73 , 0x74 , 0x5f , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x73 , 0x18 , 0x04 , 0x20 , 0x03 , 0x28 ,
0x0b , 0x32 , 0x1d , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 ,
0x70 , 0x69 , 0x2e , 0x76 , 0x31 , 0x2e , 0x46 , 0x69 , 0x65 , 0x6c , 0x64 , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 ,
0x52 , 0x0e , 0x72 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x5f , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x73 ,
0x22 , 0x42 , 0x0a , 0x0a , 0x46 , 0x69 , 0x65 , 0x6c , 0x64 , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x12 , 0x12 ,
0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 ,
0x6d , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x22 , 0x88 , 0x01 , 0x0a , 0x05 , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x12 , 0x16 ,
0x0a , 0x06 , 0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x06 ,
0x73 , 0x74 , 0x61 , 0x74 , 0x75 , 0x73 , 0x12 , 0x12 , 0x0a , 0x04 , 0x63 , 0x6f , 0x64 , 0x65 , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x63 , 0x6f , 0x64 , 0x65 , 0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x65 ,
0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x6d , 0x65 , 0x73 ,
0x73 , 0x61 , 0x67 , 0x65 , 0x12 , 0x39 , 0x0a , 0x07 , 0x64 , 0x65 , 0x74 , 0x61 , 0x69 , 0x6c , 0x73 , 0x18 ,
0x04 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1f , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c ,
0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 , 0x2e , 0x76 , 0x31 , 0x2e , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x44 ,
0x65 , 0x74 , 0x61 , 0x69 , 0x6c , 0x73 , 0x52 , 0x07 , 0x64 , 0x65 , 0x74 , 0x61 , 0x69 , 0x6c , 0x73 , 0x42 ,
0x3f , 0x5a , 0x3d , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x68 , 0x61 ,
0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2f , 0x62 , 0x6f , 0x75 , 0x6e , 0x64 , 0x61 , 0x72 , 0x79 ,
0x2f , 0x69 , 0x6e , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x2f , 0x67 , 0x65 , 0x6e , 0x2f , 0x63 , 0x6f ,
0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2f , 0x61 , 0x70 , 0x69 , 0x3b , 0x61 , 0x70 , 0x69 ,
0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x76 , 0x31 , 0x22 , 0x38 , 0x0a , 0x0c , 0x57 , 0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x64 , 0x45 , 0x72 , 0x72 ,
0x6f , 0x72 , 0x12 , 0x0e , 0x0a , 0x02 , 0x6f , 0x70 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x02 ,
0x6f , 0x70 , 0x12 , 0x18 , 0x0a , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x22 , 0x9e , 0x01 , 0x0a ,
0x0c , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x44 , 0x65 , 0x74 , 0x61 , 0x69 , 0x6c , 0x73 , 0x12 , 0x45 , 0x0a ,
0x0e , 0x72 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x5f , 0x66 , 0x69 , 0x65 , 0x6c , 0x64 , 0x73 , 0x18 ,
0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1d , 0x2e , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c ,
0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 , 0x2e , 0x76 , 0x31 , 0x2e , 0x46 , 0x69 , 0x65 , 0x6c , 0x64 , 0x45 ,
0x72 , 0x72 , 0x6f , 0x72 , 0x52 , 0x0e , 0x72 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x5f , 0x66 , 0x69 ,
0x65 , 0x6c , 0x64 , 0x73 , 0x12 , 0x47 , 0x0a , 0x0e , 0x77 , 0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x64 , 0x5f ,
0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x73 , 0x18 , 0x02 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1f , 0x2e , 0x63 ,
0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 , 0x2e , 0x76 , 0x31 ,
0x2e , 0x57 , 0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x64 , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x52 , 0x0e , 0x77 ,
0x72 , 0x61 , 0x70 , 0x70 , 0x65 , 0x64 , 0x5f , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x73 , 0x22 , 0x42 , 0x0a ,
0x0a , 0x46 , 0x69 , 0x65 , 0x6c , 0x64 , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e ,
0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 ,
0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x18 , 0x02 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 , 0x72 , 0x69 , 0x70 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x22 , 0x80 , 0x01 , 0x0a , 0x05 , 0x45 , 0x72 , 0x72 , 0x6f , 0x72 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6b ,
0x69 , 0x6e , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x04 , 0x6b , 0x69 , 0x6e , 0x64 , 0x12 ,
0x0e , 0x0a , 0x02 , 0x6f , 0x70 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x02 , 0x6f , 0x70 , 0x12 ,
0x18 , 0x0a , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x07 , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x12 , 0x39 , 0x0a , 0x07 , 0x64 , 0x65 , 0x74 ,
0x61 , 0x69 , 0x6c , 0x73 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x1f , 0x2e , 0x63 , 0x6f , 0x6e ,
0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2e , 0x61 , 0x70 , 0x69 , 0x2e , 0x76 , 0x31 , 0x2e , 0x45 ,
0x72 , 0x72 , 0x6f , 0x72 , 0x44 , 0x65 , 0x74 , 0x61 , 0x69 , 0x6c , 0x73 , 0x52 , 0x07 , 0x64 , 0x65 , 0x74 ,
0x61 , 0x69 , 0x6c , 0x73 , 0x42 , 0x3f , 0x5a , 0x3d , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 ,
0x6f , 0x6d , 0x2f , 0x68 , 0x61 , 0x73 , 0x68 , 0x69 , 0x63 , 0x6f , 0x72 , 0x70 , 0x2f , 0x62 , 0x6f , 0x75 ,
0x6e , 0x64 , 0x61 , 0x72 , 0x79 , 0x2f , 0x69 , 0x6e , 0x74 , 0x65 , 0x72 , 0x6e , 0x61 , 0x6c , 0x2f , 0x67 ,
0x65 , 0x6e , 0x2f , 0x63 , 0x6f , 0x6e , 0x74 , 0x72 , 0x6f , 0x6c , 0x6c , 0x65 , 0x72 , 0x2f , 0x61 , 0x70 ,
0x69 , 0x3b , 0x61 , 0x70 , 0x69 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
@ -283,20 +325,22 @@ func file_controller_api_v1_error_proto_rawDescGZIP() []byte {
return file_controller_api_v1_error_proto_rawDescData
}
var file_controller_api_v1_error_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 3 )
var file_controller_api_v1_error_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 4 )
var file_controller_api_v1_error_proto_goTypes = [ ] interface { } {
( * ErrorDetails ) ( nil ) , // 0: controller.api.v1.ErrorDetails
( * FieldError ) ( nil ) , // 1: controller.api.v1.FieldError
( * Error ) ( nil ) , // 2: controller.api.v1.Error
( * WrappedError ) ( nil ) , // 0: controller.api.v1.WrappedError
( * ErrorDetails ) ( nil ) , // 1: controller.api.v1.ErrorDetails
( * FieldError ) ( nil ) , // 2: controller.api.v1.FieldError
( * Error ) ( nil ) , // 3: controller.api.v1.Error
}
var file_controller_api_v1_error_proto_depIdxs = [ ] int32 {
1 , // 0: controller.api.v1.ErrorDetails.request_fields:type_name -> controller.api.v1.FieldError
0 , // 1: controller.api.v1.Error.details:type_name -> controller.api.v1.ErrorDetails
2 , // [2:2] is the sub-list for method output_type
2 , // [2:2] is the sub-list for method input_type
2 , // [2:2] is the sub-list for extension type_name
2 , // [2:2] is the sub-list for extension extendee
0 , // [0:2] is the sub-list for field type_name
2 , // 0: controller.api.v1.ErrorDetails.request_fields:type_name -> controller.api.v1.FieldError
0 , // 1: controller.api.v1.ErrorDetails.wrapped_errors:type_name -> controller.api.v1.WrappedError
1 , // 2: controller.api.v1.Error.details:type_name -> controller.api.v1.ErrorDetails
3 , // [3:3] is the sub-list for method output_type
3 , // [3:3] is the sub-list for method input_type
3 , // [3:3] is the sub-list for extension type_name
3 , // [3:3] is the sub-list for extension extendee
0 , // [0:3] is the sub-list for field type_name
}
func init ( ) { file_controller_api_v1_error_proto_init ( ) }
@ -306,7 +350,7 @@ func file_controller_api_v1_error_proto_init() {
}
if ! protoimpl . UnsafeEnabled {
file_controller_api_v1_error_proto_msgTypes [ 0 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * ErrorDetails ) ; i {
switch v := v . ( * Wrapped Error) ; i {
case 0 :
return & v . state
case 1 :
@ -318,7 +362,7 @@ func file_controller_api_v1_error_proto_init() {
}
}
file_controller_api_v1_error_proto_msgTypes [ 1 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Field Error) ; i {
switch v := v . ( * ErrorDetails ) ; i {
case 0 :
return & v . state
case 1 :
@ -330,6 +374,18 @@ func file_controller_api_v1_error_proto_init() {
}
}
file_controller_api_v1_error_proto_msgTypes [ 2 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * FieldError ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_controller_api_v1_error_proto_msgTypes [ 3 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * Error ) ; i {
case 0 :
return & v . state
@ -348,7 +404,7 @@ func file_controller_api_v1_error_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_controller_api_v1_error_proto_rawDesc ,
NumEnums : 0 ,
NumMessages : 3 ,
NumMessages : 4 ,
NumExtensions : 0 ,
NumServices : 0 ,
} ,